Files
advent-of-code-2023/day_16/flamegraph.svg

491 lines
1.4 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="1254" onload="init(evt)" viewBox="0 0 1200 1254" 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="1254" 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="1237.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="1237.00"> </text><svg id="frames" x="10" width="1180" total_samples="25274"><g><title>[[heap]] (3 samples, 0.01%)</title><rect x="0.0040%" y="1173" width="0.0119%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="3"/><text x="0.2540%" y="1183.50"></text></g><g><title>_RINvMs0_NtNtCsdXkAvhoL9ja_5cargo4core5shellNtB6_5Shell10print_jsonNtNtNtBa_3ops21cargo_output_metadata10ExportInfoECsca6Df0Dex53_5cargo (3 samples, 0.01%)</title><rect x="0.0910%" y="917" width="0.0119%" height="15" fill="rgb(217,0,24)" fg:x="23" fg:w="3"/><text x="0.3410%" y="927.50"></text></g><g><title>main (6 samples, 0.02%)</title><rect x="0.0831%" y="1157" width="0.0237%" height="15" fill="rgb(221,193,54)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1167.50"></text></g><g><title>std::rt::lang_start_internal (6 samples, 0.02%)</title><rect x="0.0831%" y="1141" width="0.0237%" height="15" fill="rgb(248,212,6)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1151.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.02%)</title><rect x="0.0831%" y="1125" width="0.0237%" height="15" fill="rgb(208,68,35)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1135.50"></text></g><g><title>std::panicking::try (6 samples, 0.02%)</title><rect x="0.0831%" y="1109" width="0.0237%" height="15" fill="rgb(232,128,0)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1119.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.02%)</title><rect x="0.0831%" y="1093" width="0.0237%" height="15" fill="rgb(207,160,47)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1103.50"></text></g><g><title>std::rt::lang_start_internal::_{{closure}} (6 samples, 0.02%)</title><rect x="0.0831%" y="1077" width="0.0237%" height="15" fill="rgb(228,23,34)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1087.50"></text></g><g><title>std::panic::catch_unwind (6 samples, 0.02%)</title><rect x="0.0831%" y="1061" width="0.0237%" height="15" fill="rgb(218,30,26)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1071.50"></text></g><g><title>std::panicking::try (6 samples, 0.02%)</title><rect x="0.0831%" y="1045" width="0.0237%" height="15" fill="rgb(220,122,19)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1055.50"></text></g><g><title>std::panicking::try::do_call (6 samples, 0.02%)</title><rect x="0.0831%" y="1029" width="0.0237%" height="15" fill="rgb(250,228,42)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1039.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (6 samples, 0.02%)</title><rect x="0.0831%" y="1013" width="0.0237%" height="15" fill="rgb(240,193,28)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1023.50"></text></g><g><title>_RNCINvNtCsa38RyOPu2rR_3std2rt10lang_startuE0Csca6Df0Dex53_5cargo.llvm.8313254326611871207 (6 samples, 0.02%)</title><rect x="0.0831%" y="997" width="0.0237%" height="15" fill="rgb(216,20,37)" fg:x="21" fg:w="6"/><text x="0.3331%" y="1007.50"></text></g><g><title>_RINvNtNtCsa38RyOPu2rR_3std10sys_common9backtrace28___rust_begin_short_backtraceFEuuECsca6Df0Dex53_5cargo (6 samples, 0.02%)</title><rect x="0.0831%" y="981" width="0.0237%" height="15" fill="rgb(206,188,39)" fg:x="21" fg:w="6"/><text x="0.3331%" y="991.50"></text></g><g><title>_RNvCsca6Df0Dex53_5cargo4main (6 samples, 0.02%)</title><rect x="0.0831%" y="965" width="0.0237%" height="15" fill="rgb(217,207,13)" fg:x="21" fg:w="6"/><text x="0.3331%" y="975.50"></text></g><g><title>_RNvNtCsca6Df0Dex53_5cargo3cli4main (6 samples, 0.02%)</title><rect x="0.0831%" y="949" width="0.0237%" height="15" fill="rgb(231,73,38)" fg:x="21" fg:w="6"/><text x="0.3331%" y="959.50"></text></g><g><title>_RNvNtNtCsca6Df0Dex53_5cargo8commands8metadata4exec.llvm.8313254326611871207 (4 samples, 0.02%)</title><rect x="0.0910%" y="933" width="0.0158%" height="15" fill="rgb(225,20,46)" fg:x="23" fg:w="4"/><text x="0.3410%" y="943.50"></text></g><g><title>[libc.so.6] (22 samples, 0.09%)</title><rect x="0.0277%" y="1173" width="0.0870%" height="15" fill="rgb(210,31,41)" fg:x="7" fg:w="22"/><text x="0.2777%" y="1183.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4util4toml13read_manifest (6 samples, 0.02%)</title><rect x="0.1741%" y="1157" width="0.0237%" height="15" fill="rgb(221,200,47)" fg:x="44" fg:w="6"/><text x="0.4241%" y="1167.50"></text></g><g><title>_RNvMsv_NtNtCsdXkAvhoL9ja_5cargo4util4tomlNtB5_12TomlManifest16to_real_manifest (4 samples, 0.02%)</title><rect x="0.1820%" y="1141" width="0.0158%" height="15" fill="rgb(226,26,5)" fg:x="46" fg:w="4"/><text x="0.4320%" y="1151.50"></text></g><g><title>[unknown] (23 samples, 0.09%)</title><rect x="0.1147%" y="1173" width="0.0910%" height="15" fill="rgb(249,33,26)" fg:x="29" fg:w="23"/><text x="0.3647%" y="1183.50"></text></g><g><title>cargo (56 samples, 0.22%)</title><rect x="0.0000%" y="1189" width="0.2216%" height="15" fill="rgb(235,183,28)" fg:x="0" fg:w="56"/><text x="0.2500%" y="1199.50"></text></g><g><title>malloc (3 samples, 0.01%)</title><rect x="0.2097%" y="1173" width="0.0119%" height="15" fill="rgb(221,5,38)" fg:x="53" fg:w="3"/><text x="0.4597%" y="1183.50"></text></g><g><title>[[heap]] (3 samples, 0.01%)</title><rect x="0.2216%" y="1173" width="0.0119%" height="15" fill="rgb(247,18,42)" fg:x="56" fg:w="3"/><text x="0.4716%" y="1183.50"></text></g><g><title>[[stack]] (11 samples, 0.04%)</title><rect x="0.2334%" y="1173" width="0.0435%" height="15" fill="rgb(241,131,45)" fg:x="59" fg:w="11"/><text x="0.4834%" y="1183.50"></text></g><g><title>[ld-linux-x86-64.so.2] (10 samples, 0.04%)</title><rect x="0.2374%" y="1157" width="0.0396%" height="15" fill="rgb(249,31,29)" fg:x="60" fg:w="10"/><text x="0.4874%" y="1167.50"></text></g><g><title>[anon] (3 samples, 0.01%)</title><rect x="0.2770%" y="1173" width="0.0119%" height="15" fill="rgb(225,111,53)" fg:x="70" fg:w="3"/><text x="0.5270%" y="1183.50"></text></g><g><title>[gnuplot] (22 samples, 0.09%)</title><rect x="0.3007%" y="1013" width="0.0870%" height="15" fill="rgb(238,160,17)" fg:x="76" fg:w="22"/><text x="0.5507%" y="1023.50"></text></g><g><title>__fprintf_chk (16 samples, 0.06%)</title><rect x="0.3244%" y="997" width="0.0633%" height="15" fill="rgb(214,148,48)" fg:x="82" fg:w="16"/><text x="0.5744%" y="1007.50"></text></g><g><title>[libc.so.6] (16 samples, 0.06%)</title><rect x="0.3244%" y="981" width="0.0633%" height="15" fill="rgb(232,36,49)" fg:x="82" fg:w="16"/><text x="0.5744%" y="991.50"></text></g><g><title>[libc.so.6] (16 samples, 0.06%)</title><rect x="0.3244%" y="965" width="0.0633%" height="15" fill="rgb(209,103,24)" fg:x="82" fg:w="16"/><text x="0.5744%" y="975.50"></text></g><g><title>[libc.so.6] (15 samples, 0.06%)</title><rect x="0.3284%" y="949" width="0.0593%" height="15" fill="rgb(229,88,8)" fg:x="83" fg:w="15"/><text x="0.5784%" y="959.50"></text></g><g><title>[libc.so.6] (15 samples, 0.06%)</title><rect x="0.3284%" y="933" width="0.0593%" height="15" fill="rgb(213,181,19)" fg:x="83" fg:w="15"/><text x="0.5784%" y="943.50"></text></g><g><title>[libc.so.6] (7 samples, 0.03%)</title><rect x="0.3601%" y="917" width="0.0277%" height="15" fill="rgb(254,191,54)" fg:x="91" fg:w="7"/><text x="0.6101%" y="927.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="0.3680%" y="901" width="0.0198%" height="15" fill="rgb(241,83,37)" fg:x="93" fg:w="5"/><text x="0.6180%" y="911.50"></text></g><g><title>[gnuplot] (26 samples, 0.10%)</title><rect x="0.2888%" y="1061" width="0.1029%" height="15" fill="rgb(233,36,39)" fg:x="73" fg:w="26"/><text x="0.5388%" y="1071.50"></text></g><g><title>[gnuplot] (26 samples, 0.10%)</title><rect x="0.2888%" y="1045" width="0.1029%" height="15" fill="rgb(226,3,54)" fg:x="73" fg:w="26"/><text x="0.5388%" y="1055.50"></text></g><g><title>[gnuplot] (24 samples, 0.09%)</title><rect x="0.2967%" y="1029" width="0.0950%" height="15" fill="rgb(245,192,40)" fg:x="75" fg:w="24"/><text x="0.5467%" y="1039.50"></text></g><g><title>[gnuplot] (27 samples, 0.11%)</title><rect x="0.2888%" y="1093" width="0.1068%" height="15" fill="rgb(238,167,29)" fg:x="73" fg:w="27"/><text x="0.5388%" y="1103.50"></text></g><g><title>[gnuplot] (27 samples, 0.11%)</title><rect x="0.2888%" y="1077" width="0.1068%" height="15" fill="rgb(232,182,51)" fg:x="73" fg:w="27"/><text x="0.5388%" y="1087.50"></text></g><g><title>[gnuplot] (28 samples, 0.11%)</title><rect x="0.2888%" y="1125" width="0.1108%" height="15" fill="rgb(231,60,39)" fg:x="73" fg:w="28"/><text x="0.5388%" y="1135.50"></text></g><g><title>[gnuplot] (28 samples, 0.11%)</title><rect x="0.2888%" y="1109" width="0.1108%" height="15" fill="rgb(208,69,12)" fg:x="73" fg:w="28"/><text x="0.5388%" y="1119.50"></text></g><g><title>[gnuplot] (31 samples, 0.12%)</title><rect x="0.2888%" y="1173" width="0.1227%" height="15" fill="rgb(235,93,37)" fg:x="73" fg:w="31"/><text x="0.5388%" y="1183.50"></text></g><g><title>__libc_start_main (31 samples, 0.12%)</title><rect x="0.2888%" y="1157" width="0.1227%" height="15" fill="rgb(213,116,39)" fg:x="73" fg:w="31"/><text x="0.5388%" y="1167.50"></text></g><g><title>[libc.so.6] (31 samples, 0.12%)</title><rect x="0.2888%" y="1141" width="0.1227%" height="15" fill="rgb(222,207,29)" fg:x="73" fg:w="31"/><text x="0.5388%" y="1151.50"></text></g><g><title>exit (3 samples, 0.01%)</title><rect x="0.3996%" y="1125" width="0.0119%" height="15" fill="rgb(206,96,30)" fg:x="101" fg:w="3"/><text x="0.6496%" y="1135.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="0.3996%" y="1109" width="0.0119%" height="15" fill="rgb(218,138,4)" fg:x="101" fg:w="3"/><text x="0.6496%" y="1119.50"></text></g><g><title>[ld-linux-x86-64.so.2] (580 samples, 2.29%)</title><rect x="2.4887%" y="1093" width="2.2948%" height="15" fill="rgb(250,191,14)" fg:x="629" fg:w="580"/><text x="2.7387%" y="1103.50">[..</text></g><g><title>[ld-linux-x86-64.so.2] (533 samples, 2.11%)</title><rect x="2.6747%" y="1077" width="2.1089%" height="15" fill="rgb(239,60,40)" fg:x="676" fg:w="533"/><text x="2.9247%" y="1087.50">[..</text></g><g><title>[ld-linux-x86-64.so.2] (40 samples, 0.16%)</title><rect x="4.6253%" y="1061" width="0.1583%" height="15" fill="rgb(206,27,48)" fg:x="1169" fg:w="40"/><text x="4.8753%" y="1071.50"></text></g><g><title>[ld-linux-x86-64.so.2] (18 samples, 0.07%)</title><rect x="4.7124%" y="1045" width="0.0712%" height="15" fill="rgb(225,35,8)" fg:x="1191" fg:w="18"/><text x="4.9624%" y="1055.50"></text></g><g><title>[ld-linux-x86-64.so.2] (712 samples, 2.82%)</title><rect x="2.1326%" y="1125" width="2.8171%" height="15" fill="rgb(250,213,24)" fg:x="539" fg:w="712"/><text x="2.3826%" y="1135.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (681 samples, 2.69%)</title><rect x="2.2553%" y="1109" width="2.6945%" height="15" fill="rgb(247,123,22)" fg:x="570" fg:w="681"/><text x="2.5053%" y="1119.50">[l..</text></g><g><title>_dl_catch_exception (41 samples, 0.16%)</title><rect x="4.7875%" y="1093" width="0.1622%" height="15" fill="rgb(231,138,38)" fg:x="1210" fg:w="41"/><text x="5.0375%" y="1103.50"></text></g><g><title>[ld-linux-x86-64.so.2] (41 samples, 0.16%)</title><rect x="4.7875%" y="1077" width="0.1622%" height="15" fill="rgb(231,145,46)" fg:x="1210" fg:w="41"/><text x="5.0375%" y="1087.50"></text></g><g><title>[ld-linux-x86-64.so.2] (41 samples, 0.16%)</title><rect x="4.7875%" y="1061" width="0.1622%" height="15" fill="rgb(251,118,11)" fg:x="1210" fg:w="41"/><text x="5.0375%" y="1071.50"></text></g><g><title>[ld-linux-x86-64.so.2] (35 samples, 0.14%)</title><rect x="4.8113%" y="1045" width="0.1385%" height="15" fill="rgb(217,147,25)" fg:x="1216" fg:w="35"/><text x="5.0613%" y="1055.50"></text></g><g><title>[ld-linux-x86-64.so.2] (14 samples, 0.06%)</title><rect x="4.8944%" y="1029" width="0.0554%" height="15" fill="rgb(247,81,37)" fg:x="1237" fg:w="14"/><text x="5.1444%" y="1039.50"></text></g><g><title>[libheif.so.1.17.5] (48 samples, 0.19%)</title><rect x="4.9498%" y="1125" width="0.1899%" height="15" fill="rgb(209,12,38)" fg:x="1251" fg:w="48"/><text x="5.1998%" y="1135.50"></text></g><g><title>[libheif.so.1.17.5] (48 samples, 0.19%)</title><rect x="4.9498%" y="1109" width="0.1899%" height="15" fill="rgb(227,1,9)" fg:x="1251" fg:w="48"/><text x="5.1998%" y="1119.50"></text></g><g><title>de265_init (48 samples, 0.19%)</title><rect x="4.9498%" y="1093" width="0.1899%" height="15" fill="rgb(248,47,43)" fg:x="1251" fg:w="48"/><text x="5.1998%" y="1103.50"></text></g><g><title>init_scan_orders (48 samples, 0.19%)</title><rect x="4.9498%" y="1077" width="0.1899%" height="15" fill="rgb(221,10,30)" fg:x="1251" fg:w="48"/><text x="5.1998%" y="1087.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="933" width="0.0119%" height="15" fill="rgb(210,229,1)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="943.50"></text></g><g><title>_dl_catch_exception (3 samples, 0.01%)</title><rect x="5.1753%" y="917" width="0.0119%" height="15" fill="rgb(222,148,37)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="927.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="5.1753%" y="901" width="0.0119%" height="15" fill="rgb(234,67,33)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="911.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="885" width="0.0119%" height="15" fill="rgb(247,98,35)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="895.50"></text></g><g><title>_dl_catch_exception (3 samples, 0.01%)</title><rect x="5.1753%" y="869" width="0.0119%" height="15" fill="rgb(247,138,52)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="879.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="853" width="0.0119%" height="15" fill="rgb(213,79,30)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="863.50"></text></g><g><title>_dl_catch_exception (3 samples, 0.01%)</title><rect x="5.1753%" y="837" width="0.0119%" height="15" fill="rgb(246,177,23)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="847.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="821" width="0.0119%" height="15" fill="rgb(230,62,27)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="831.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="805" width="0.0119%" height="15" fill="rgb(216,154,8)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="815.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="5.1753%" y="789" width="0.0119%" height="15" fill="rgb(244,35,45)" fg:x="1308" fg:w="3"/><text x="5.4253%" y="799.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="5.1871%" y="933" width="0.0356%" height="15" fill="rgb(251,115,12)" fg:x="1311" fg:w="9"/><text x="5.4371%" y="943.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="5.1871%" y="917" width="0.0356%" height="15" fill="rgb(240,54,50)" fg:x="1311" fg:w="9"/><text x="5.4371%" y="927.50"></text></g><g><title>[libc.so.6] (18 samples, 0.07%)</title><rect x="5.1674%" y="949" width="0.0712%" height="15" fill="rgb(233,84,52)" fg:x="1306" fg:w="18"/><text x="5.4174%" y="959.50"></text></g><g><title>[libc.so.6] (25 samples, 0.10%)</title><rect x="5.1436%" y="981" width="0.0989%" height="15" fill="rgb(207,117,47)" fg:x="1300" fg:w="25"/><text x="5.3936%" y="991.50"></text></g><g><title>[libc.so.6] (22 samples, 0.09%)</title><rect x="5.1555%" y="965" width="0.0870%" height="15" fill="rgb(249,43,39)" fg:x="1303" fg:w="22"/><text x="5.4055%" y="975.50"></text></g><g><title>[libwx_baseu-3.2.so.0.2.2] (27 samples, 0.11%)</title><rect x="5.1397%" y="1125" width="0.1068%" height="15" fill="rgb(209,38,44)" fg:x="1299" fg:w="27"/><text x="5.3897%" y="1135.50"></text></g><g><title>wxGet_wxConvLocalPtr (26 samples, 0.10%)</title><rect x="5.1436%" y="1109" width="0.1029%" height="15" fill="rgb(236,212,23)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1119.50"></text></g><g><title>wxCSConv::wxCSConv (26 samples, 0.10%)</title><rect x="5.1436%" y="1093" width="0.1029%" height="15" fill="rgb(242,79,21)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1103.50"></text></g><g><title>wxCSConv::DoCreate (26 samples, 0.10%)</title><rect x="5.1436%" y="1077" width="0.1029%" height="15" fill="rgb(211,96,35)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1087.50"></text></g><g><title>wxMBConv_iconv::wxMBConv_iconv (26 samples, 0.10%)</title><rect x="5.1436%" y="1061" width="0.1029%" height="15" fill="rgb(253,215,40)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1071.50"></text></g><g><title>iconv_open (26 samples, 0.10%)</title><rect x="5.1436%" y="1045" width="0.1029%" height="15" fill="rgb(211,81,21)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1055.50"></text></g><g><title>__gconv_open (26 samples, 0.10%)</title><rect x="5.1436%" y="1029" width="0.1029%" height="15" fill="rgb(208,190,38)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1039.50"></text></g><g><title>[libc.so.6] (26 samples, 0.10%)</title><rect x="5.1436%" y="1013" width="0.1029%" height="15" fill="rgb(235,213,38)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1023.50"></text></g><g><title>[libc.so.6] (26 samples, 0.10%)</title><rect x="5.1436%" y="997" width="0.1029%" height="15" fill="rgb(237,122,38)" fg:x="1300" fg:w="26"/><text x="5.3936%" y="1007.50"></text></g><g><title>[ld-linux-x86-64.so.2] (802 samples, 3.17%)</title><rect x="2.0891%" y="1157" width="3.1732%" height="15" fill="rgb(244,218,35)" fg:x="528" fg:w="802"/><text x="2.3391%" y="1167.50">[ld..</text></g><g><title>[ld-linux-x86-64.so.2] (793 samples, 3.14%)</title><rect x="2.1247%" y="1141" width="3.1376%" height="15" fill="rgb(240,68,47)" fg:x="537" fg:w="793"/><text x="2.3747%" y="1151.50">[ld..</text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (4 samples, 0.02%)</title><rect x="5.2465%" y="1125" width="0.0158%" height="15" fill="rgb(210,16,53)" fg:x="1326" fg:w="4"/><text x="5.4965%" y="1135.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (3 samples, 0.01%)</title><rect x="5.2505%" y="1109" width="0.0119%" height="15" fill="rgb(235,124,12)" fg:x="1327" fg:w="3"/><text x="5.5005%" y="1119.50"></text></g><g><title>[libheif.so.1.17.5] (37 samples, 0.15%)</title><rect x="5.2663%" y="1157" width="0.1464%" height="15" fill="rgb(224,169,11)" fg:x="1331" fg:w="37"/><text x="5.5163%" y="1167.50"></text></g><g><title>[libheif.so.1.17.5] (37 samples, 0.15%)</title><rect x="5.2663%" y="1141" width="0.1464%" height="15" fill="rgb(250,166,2)" fg:x="1331" fg:w="37"/><text x="5.5163%" y="1151.50"></text></g><g><title>de265_init (37 samples, 0.15%)</title><rect x="5.2663%" y="1125" width="0.1464%" height="15" fill="rgb(242,216,29)" fg:x="1331" fg:w="37"/><text x="5.5163%" y="1135.50"></text></g><g><title>init_scan_orders (36 samples, 0.14%)</title><rect x="5.2702%" y="1109" width="0.1424%" height="15" fill="rgb(230,116,27)" fg:x="1332" fg:w="36"/><text x="5.5202%" y="1119.50"></text></g><g><title>[ld-linux-x86-64.so.2] (1,266 samples, 5.01%)</title><rect x="0.4115%" y="1173" width="5.0091%" height="15" fill="rgb(228,99,48)" fg:x="104" fg:w="1266"/><text x="0.6615%" y="1183.50">[ld-li..</text></g><g><title>[libQt5Gui.so.5.15.11] (4 samples, 0.02%)</title><rect x="5.4245%" y="1173" width="0.0158%" height="15" fill="rgb(253,11,6)" fg:x="1371" fg:w="4"/><text x="5.6745%" y="1183.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="5.4245%" y="1157" width="0.0158%" height="15" fill="rgb(247,143,39)" fg:x="1371" fg:w="4"/><text x="5.6745%" y="1167.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1157" width="0.0198%" height="15" fill="rgb(236,97,10)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1167.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1141" width="0.0198%" height="15" fill="rgb(233,208,19)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1151.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1125" width="0.0198%" height="15" fill="rgb(216,164,2)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1135.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1109" width="0.0198%" height="15" fill="rgb(220,129,5)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1119.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1093" width="0.0198%" height="15" fill="rgb(242,17,10)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1103.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1077" width="0.0198%" height="15" fill="rgb(242,107,0)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1087.50"></text></g><g><title>[gnuplot] (5 samples, 0.02%)</title><rect x="5.5432%" y="1061" width="0.0198%" height="15" fill="rgb(251,28,31)" fg:x="1401" fg:w="5"/><text x="5.7932%" y="1071.50"></text></g><g><title>[libc.so.6] (14 samples, 0.06%)</title><rect x="5.5630%" y="1157" width="0.0554%" height="15" fill="rgb(233,223,10)" fg:x="1406" fg:w="14"/><text x="5.8130%" y="1167.50"></text></g><g><title>[libc.so.6] (45 samples, 0.18%)</title><rect x="5.4443%" y="1173" width="0.1780%" height="15" fill="rgb(215,21,27)" fg:x="1376" fg:w="45"/><text x="5.6943%" y="1183.50"></text></g><g><title>[libwx_baseu-3.2.so.0.2.2] (4 samples, 0.02%)</title><rect x="5.6738%" y="1173" width="0.0158%" height="15" fill="rgb(232,23,21)" fg:x="1434" fg:w="4"/><text x="5.9238%" y="1183.50"></text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="5.6738%" y="1157" width="0.0158%" height="15" fill="rgb(244,5,23)" fg:x="1434" fg:w="4"/><text x="5.9238%" y="1167.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (12 samples, 0.05%)</title><rect x="5.6896%" y="1173" width="0.0475%" height="15" fill="rgb(226,81,46)" fg:x="1438" fg:w="12"/><text x="5.9396%" y="1183.50"></text></g><g><title>[ld-linux-x86-64.so.2] (12 samples, 0.05%)</title><rect x="5.6896%" y="1157" width="0.0475%" height="15" fill="rgb(247,70,30)" fg:x="1438" fg:w="12"/><text x="5.9396%" y="1167.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="5.7450%" y="1157" width="0.0158%" height="15" fill="rgb(212,68,19)" fg:x="1452" fg:w="4"/><text x="5.9950%" y="1167.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="5.7490%" y="1141" width="0.0119%" height="15" fill="rgb(240,187,13)" fg:x="1453" fg:w="3"/><text x="5.9990%" y="1151.50"></text></g><g><title>[unknown] (8 samples, 0.03%)</title><rect x="5.7371%" y="1173" width="0.0317%" height="15" fill="rgb(223,113,26)" fg:x="1450" fg:w="8"/><text x="5.9871%" y="1183.50"></text></g><g><title>gnuplot (1,415 samples, 5.60%)</title><rect x="0.2216%" y="1189" width="5.5986%" height="15" fill="rgb(206,192,2)" fg:x="56" fg:w="1415"/><text x="0.4716%" y="1199.50">gnuplot</text></g><g><title>read (5 samples, 0.02%)</title><rect x="5.8004%" y="1173" width="0.0198%" height="15" fill="rgb(241,108,4)" fg:x="1466" fg:w="5"/><text x="6.0504%" y="1183.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (5 samples, 0.02%)</title><rect x="5.8202%" y="1173" width="0.0198%" height="15" fill="rgb(247,173,49)" fg:x="1471" fg:w="5"/><text x="6.0702%" y="1183.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (13 samples, 0.05%)</title><rect x="5.8479%" y="1157" width="0.0514%" height="15" fill="rgb(224,114,35)" fg:x="1478" fg:w="13"/><text x="6.0979%" y="1167.50"></text></g><g><title>[[heap]] (16 samples, 0.06%)</title><rect x="5.8400%" y="1173" width="0.0633%" height="15" fill="rgb(245,159,27)" fg:x="1476" fg:w="16"/><text x="6.0900%" y="1183.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTakeAtPosition&gt;::split_at_position1_complete (20 samples, 0.08%)</title><rect x="5.9152%" y="1157" width="0.0791%" height="15" fill="rgb(245,172,44)" fg:x="1495" fg:w="20"/><text x="6.1652%" y="1167.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (6 samples, 0.02%)</title><rect x="5.9983%" y="1157" width="0.0237%" height="15" fill="rgb(236,23,11)" fg:x="1516" fg:w="6"/><text x="6.2483%" y="1167.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="6.0220%" y="1157" width="0.0119%" height="15" fill="rgb(205,117,38)" fg:x="1522" fg:w="3"/><text x="6.2720%" y="1167.50"></text></g><g><title>memchr::arch::x86_64::memchr::memrchr_raw::find_avx2 (6 samples, 0.02%)</title><rect x="6.0418%" y="1157" width="0.0237%" height="15" fill="rgb(237,72,25)" fg:x="1527" fg:w="6"/><text x="6.2918%" y="1167.50"></text></g><g><title>[[stack]] (42 samples, 0.17%)</title><rect x="5.9033%" y="1173" width="0.1662%" height="15" fill="rgb(244,70,9)" fg:x="1492" fg:w="42"/><text x="6.1533%" y="1183.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="6.0813%" y="1157" width="0.0277%" height="15" fill="rgb(217,125,39)" fg:x="1537" fg:w="7"/><text x="6.3313%" y="1167.50"></text></g><g><title>oorandom::Rand64::rand_range (66 samples, 0.26%)</title><rect x="6.1090%" y="1157" width="0.2611%" height="15" fill="rgb(235,36,10)" fg:x="1544" fg:w="66"/><text x="6.3590%" y="1167.50"></text></g><g><title>[anon] (85 samples, 0.34%)</title><rect x="6.0695%" y="1173" width="0.3363%" height="15" fill="rgb(251,123,47)" fg:x="1534" fg:w="85"/><text x="6.3195%" y="1183.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="6.3741%" y="1157" width="0.0317%" height="15" fill="rgb(221,13,13)" fg:x="1611" fg:w="8"/><text x="6.6241%" y="1167.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.02%)</title><rect x="6.4058%" y="1173" width="0.0237%" height="15" fill="rgb(238,131,9)" fg:x="1619" fg:w="6"/><text x="6.6558%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="6.5720%" y="757" width="0.0277%" height="15" fill="rgb(211,50,8)" fg:x="1661" fg:w="7"/><text x="6.8220%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="6.5720%" y="741" width="0.0277%" height="15" fill="rgb(245,182,24)" fg:x="1661" fg:w="7"/><text x="6.8220%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="6.5720%" y="725" width="0.0277%" height="15" fill="rgb(242,14,37)" fg:x="1661" fg:w="7"/><text x="6.8220%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.03%)</title><rect x="6.5720%" y="709" width="0.0277%" height="15" fill="rgb(246,228,12)" fg:x="1661" fg:w="7"/><text x="6.8220%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="6.5799%" y="693" width="0.0198%" height="15" fill="rgb(213,55,15)" fg:x="1663" fg:w="5"/><text x="6.8299%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="6.5878%" y="677" width="0.0119%" height="15" fill="rgb(209,9,3)" fg:x="1665" fg:w="3"/><text x="6.8378%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="6.5720%" y="805" width="0.0475%" height="15" fill="rgb(230,59,30)" fg:x="1661" fg:w="12"/><text x="6.8220%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="6.5720%" y="789" width="0.0475%" height="15" fill="rgb(209,121,21)" fg:x="1661" fg:w="12"/><text x="6.8220%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="6.5720%" y="773" width="0.0475%" height="15" fill="rgb(220,109,13)" fg:x="1661" fg:w="12"/><text x="6.8220%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="6.5997%" y="757" width="0.0198%" height="15" fill="rgb(232,18,1)" fg:x="1668" fg:w="5"/><text x="6.8497%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.5997%" y="741" width="0.0198%" height="15" fill="rgb(215,41,42)" fg:x="1668" fg:w="5"/><text x="6.8497%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="6.5997%" y="725" width="0.0198%" height="15" fill="rgb(224,123,36)" fg:x="1668" fg:w="5"/><text x="6.8497%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="6.5997%" y="709" width="0.0198%" height="15" fill="rgb(240,125,3)" fg:x="1668" fg:w="5"/><text x="6.8497%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.02%)</title><rect x="6.5997%" y="693" width="0.0198%" height="15" fill="rgb(205,98,50)" fg:x="1668" fg:w="5"/><text x="6.8497%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="6.6076%" y="677" width="0.0119%" height="15" fill="rgb(205,185,37)" fg:x="1670" fg:w="3"/><text x="6.8576%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.6195%" y="741" width="0.0119%" height="15" fill="rgb(238,207,15)" fg:x="1673" fg:w="3"/><text x="6.8695%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="6.6195%" y="725" width="0.0119%" height="15" fill="rgb(213,199,42)" fg:x="1673" fg:w="3"/><text x="6.8695%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="6.6195%" y="709" width="0.0119%" height="15" fill="rgb(235,201,11)" fg:x="1673" fg:w="3"/><text x="6.8695%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="6.6195%" y="693" width="0.0119%" height="15" fill="rgb(207,46,11)" fg:x="1673" fg:w="3"/><text x="6.8695%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.08%)</title><rect x="6.5720%" y="853" width="0.0791%" height="15" fill="rgb(241,35,35)" fg:x="1661" fg:w="20"/><text x="6.8220%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="6.5720%" y="837" width="0.0791%" height="15" fill="rgb(243,32,47)" fg:x="1661" fg:w="20"/><text x="6.8220%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="6.5720%" y="821" width="0.0791%" height="15" fill="rgb(247,202,23)" fg:x="1661" fg:w="20"/><text x="6.8220%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="6.6195%" y="805" width="0.0317%" height="15" fill="rgb(219,102,11)" fg:x="1673" fg:w="8"/><text x="6.8695%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="6.6195%" y="789" width="0.0317%" height="15" fill="rgb(243,110,44)" fg:x="1673" fg:w="8"/><text x="6.8695%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="6.6195%" y="773" width="0.0317%" height="15" fill="rgb(222,74,54)" fg:x="1673" fg:w="8"/><text x="6.8695%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="6.6195%" y="757" width="0.0317%" height="15" fill="rgb(216,99,12)" fg:x="1673" fg:w="8"/><text x="6.8695%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="6.6313%" y="741" width="0.0198%" height="15" fill="rgb(226,22,26)" fg:x="1676" fg:w="5"/><text x="6.8813%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.6313%" y="725" width="0.0198%" height="15" fill="rgb(217,163,10)" fg:x="1676" fg:w="5"/><text x="6.8813%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="6.6313%" y="709" width="0.0198%" height="15" fill="rgb(213,25,53)" fg:x="1676" fg:w="5"/><text x="6.8813%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="6.6313%" y="693" width="0.0198%" height="15" fill="rgb(252,105,26)" fg:x="1676" fg:w="5"/><text x="6.8813%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.02%)</title><rect x="6.6313%" y="677" width="0.0198%" height="15" fill="rgb(220,39,43)" fg:x="1676" fg:w="5"/><text x="6.8813%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="6.6353%" y="661" width="0.0158%" height="15" fill="rgb(229,68,48)" fg:x="1677" fg:w="4"/><text x="6.8853%" y="671.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="6.6353%" y="645" width="0.0158%" height="15" fill="rgb(252,8,32)" fg:x="1677" fg:w="4"/><text x="6.8853%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.6511%" y="597" width="0.0119%" height="15" fill="rgb(223,20,43)" fg:x="1681" fg:w="3"/><text x="6.9011%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.6511%" y="581" width="0.0119%" height="15" fill="rgb(229,81,49)" fg:x="1681" fg:w="3"/><text x="6.9011%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.6511%" y="565" width="0.0119%" height="15" fill="rgb(236,28,36)" fg:x="1681" fg:w="3"/><text x="6.9011%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.6511%" y="645" width="0.0198%" height="15" fill="rgb(249,185,26)" fg:x="1681" fg:w="5"/><text x="6.9011%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.6511%" y="629" width="0.0198%" height="15" fill="rgb(249,174,33)" fg:x="1681" fg:w="5"/><text x="6.9011%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.6511%" y="613" width="0.0198%" height="15" fill="rgb(233,201,37)" fg:x="1681" fg:w="5"/><text x="6.9011%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.6709%" y="517" width="0.0119%" height="15" fill="rgb(221,78,26)" fg:x="1686" fg:w="3"/><text x="6.9209%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.6709%" y="501" width="0.0119%" height="15" fill="rgb(250,127,30)" fg:x="1686" fg:w="3"/><text x="6.9209%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.6709%" y="485" width="0.0119%" height="15" fill="rgb(230,49,44)" fg:x="1686" fg:w="3"/><text x="6.9209%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="6.5720%" y="949" width="0.1345%" height="15" fill="rgb(229,67,23)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.13%)</title><rect x="6.5720%" y="933" width="0.1345%" height="15" fill="rgb(249,83,47)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (34 samples, 0.13%)</title><rect x="6.5720%" y="917" width="0.1345%" height="15" fill="rgb(215,43,3)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="6.5720%" y="901" width="0.1345%" height="15" fill="rgb(238,154,13)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.13%)</title><rect x="6.5720%" y="885" width="0.1345%" height="15" fill="rgb(219,56,2)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (34 samples, 0.13%)</title><rect x="6.5720%" y="869" width="0.1345%" height="15" fill="rgb(233,0,4)" fg:x="1661" fg:w="34"/><text x="6.8220%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="6.6511%" y="853" width="0.0554%" height="15" fill="rgb(235,30,7)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.06%)</title><rect x="6.6511%" y="837" width="0.0554%" height="15" fill="rgb(250,79,13)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="6.6511%" y="821" width="0.0554%" height="15" fill="rgb(211,146,34)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="6.6511%" y="805" width="0.0554%" height="15" fill="rgb(228,22,38)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="6.6511%" y="789" width="0.0554%" height="15" fill="rgb(235,168,5)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="6.6511%" y="773" width="0.0554%" height="15" fill="rgb(221,155,16)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.06%)</title><rect x="6.6511%" y="757" width="0.0554%" height="15" fill="rgb(215,215,53)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="6.6511%" y="741" width="0.0554%" height="15" fill="rgb(223,4,10)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="6.6511%" y="725" width="0.0554%" height="15" fill="rgb(234,103,6)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="6.6511%" y="709" width="0.0554%" height="15" fill="rgb(227,97,0)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="6.6511%" y="693" width="0.0554%" height="15" fill="rgb(234,150,53)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="6.6511%" y="677" width="0.0554%" height="15" fill="rgb(228,201,54)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="6.6511%" y="661" width="0.0554%" height="15" fill="rgb(222,22,37)" fg:x="1681" fg:w="14"/><text x="6.9011%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="6.6709%" y="645" width="0.0356%" height="15" fill="rgb(237,53,32)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="6.6709%" y="629" width="0.0356%" height="15" fill="rgb(233,25,53)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="6.6709%" y="613" width="0.0356%" height="15" fill="rgb(210,40,34)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="6.6709%" y="597" width="0.0356%" height="15" fill="rgb(241,220,44)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="6.6709%" y="581" width="0.0356%" height="15" fill="rgb(235,28,35)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="6.6709%" y="565" width="0.0356%" height="15" fill="rgb(210,56,17)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="6.6709%" y="549" width="0.0356%" height="15" fill="rgb(224,130,29)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="6.6709%" y="533" width="0.0356%" height="15" fill="rgb(235,212,8)" fg:x="1686" fg:w="9"/><text x="6.9209%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="6.6828%" y="517" width="0.0237%" height="15" fill="rgb(223,33,50)" fg:x="1689" fg:w="6"/><text x="6.9328%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="6.6828%" y="501" width="0.0237%" height="15" fill="rgb(219,149,13)" fg:x="1689" fg:w="6"/><text x="6.9328%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.6867%" y="485" width="0.0198%" height="15" fill="rgb(250,156,29)" fg:x="1690" fg:w="5"/><text x="6.9367%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.6867%" y="469" width="0.0198%" height="15" fill="rgb(216,193,19)" fg:x="1690" fg:w="5"/><text x="6.9367%" y="479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="6.6907%" y="453" width="0.0158%" height="15" fill="rgb(216,135,14)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="463.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="6.6907%" y="437" width="0.0158%" height="15" fill="rgb(241,47,5)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="447.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="6.6907%" y="421" width="0.0158%" height="15" fill="rgb(233,42,35)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="431.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="6.6907%" y="405" width="0.0158%" height="15" fill="rgb(231,13,6)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="415.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="6.6907%" y="389" width="0.0158%" height="15" fill="rgb(207,181,40)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="399.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="6.6907%" y="373" width="0.0158%" height="15" fill="rgb(254,173,49)" fg:x="1691" fg:w="4"/><text x="6.9407%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.2088744067846635343 (35 samples, 0.14%)</title><rect x="6.5720%" y="1013" width="0.1385%" height="15" fill="rgb(221,1,38)" fg:x="1661" fg:w="35"/><text x="6.8220%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.14%)</title><rect x="6.5720%" y="997" width="0.1385%" height="15" fill="rgb(206,124,46)" fg:x="1661" fg:w="35"/><text x="6.8220%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.14%)</title><rect x="6.5720%" y="981" width="0.1385%" height="15" fill="rgb(249,21,11)" fg:x="1661" fg:w="35"/><text x="6.8220%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (35 samples, 0.14%)</title><rect x="6.5720%" y="965" width="0.1385%" height="15" fill="rgb(222,201,40)" fg:x="1661" fg:w="35"/><text x="6.8220%" y="975.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="6.7223%" y="965" width="0.0277%" height="15" fill="rgb(235,61,29)" fg:x="1699" fg:w="7"/><text x="6.9723%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="6.7263%" y="949" width="0.0237%" height="15" fill="rgb(219,207,3)" fg:x="1700" fg:w="6"/><text x="6.9763%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="6.7302%" y="933" width="0.0198%" height="15" fill="rgb(222,56,46)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="943.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="6.7302%" y="917" width="0.0198%" height="15" fill="rgb(239,76,54)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="927.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="6.7302%" y="901" width="0.0198%" height="15" fill="rgb(231,124,27)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="911.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="6.7302%" y="885" width="0.0198%" height="15" fill="rgb(249,195,6)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="895.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="6.7302%" y="869" width="0.0198%" height="15" fill="rgb(237,174,47)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="879.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="6.7302%" y="853" width="0.0198%" height="15" fill="rgb(206,201,31)" fg:x="1701" fg:w="5"/><text x="6.9802%" y="863.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="6.7500%" y="901" width="0.0158%" height="15" fill="rgb(231,57,52)" fg:x="1706" fg:w="4"/><text x="7.0000%" y="911.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="6.7500%" y="885" width="0.0158%" height="15" fill="rgb(248,177,22)" fg:x="1706" fg:w="4"/><text x="7.0000%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.2088744067846635343 (15 samples, 0.06%)</title><rect x="6.7105%" y="1013" width="0.0593%" height="15" fill="rgb(215,211,37)" fg:x="1696" fg:w="15"/><text x="6.9605%" y="1023.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.06%)</title><rect x="6.7105%" y="997" width="0.0593%" height="15" fill="rgb(241,128,51)" fg:x="1696" fg:w="15"/><text x="6.9605%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="6.7223%" y="981" width="0.0475%" height="15" fill="rgb(227,165,31)" fg:x="1699" fg:w="12"/><text x="6.9723%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="6.7500%" y="965" width="0.0198%" height="15" fill="rgb(228,167,24)" fg:x="1706" fg:w="5"/><text x="7.0000%" y="975.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="6.7500%" y="949" width="0.0198%" height="15" fill="rgb(228,143,12)" fg:x="1706" fg:w="5"/><text x="7.0000%" y="959.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="6.7500%" y="933" width="0.0198%" height="15" fill="rgb(249,149,8)" fg:x="1706" fg:w="5"/><text x="7.0000%" y="943.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="6.7500%" y="917" width="0.0198%" height="15" fill="rgb(243,35,44)" fg:x="1706" fg:w="5"/><text x="7.0000%" y="927.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="6.7738%" y="709" width="0.0514%" height="15" fill="rgb(246,89,9)" fg:x="1712" fg:w="13"/><text x="7.0238%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.04%)</title><rect x="6.7817%" y="693" width="0.0435%" height="15" fill="rgb(233,213,13)" fg:x="1714" fg:w="11"/><text x="7.0317%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="6.7856%" y="677" width="0.0396%" height="15" fill="rgb(233,141,41)" fg:x="1715" fg:w="10"/><text x="7.0356%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="6.8133%" y="661" width="0.0119%" height="15" fill="rgb(239,167,4)" fg:x="1722" fg:w="3"/><text x="7.0633%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="6.7738%" y="757" width="0.0554%" height="15" fill="rgb(209,217,16)" fg:x="1712" fg:w="14"/><text x="7.0238%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.06%)</title><rect x="6.7738%" y="741" width="0.0554%" height="15" fill="rgb(219,88,35)" fg:x="1712" fg:w="14"/><text x="7.0238%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (14 samples, 0.06%)</title><rect x="6.7738%" y="725" width="0.0554%" height="15" fill="rgb(220,193,23)" fg:x="1712" fg:w="14"/><text x="7.0238%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="6.8292%" y="693" width="0.0554%" height="15" fill="rgb(230,90,52)" fg:x="1726" fg:w="14"/><text x="7.0792%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="6.8331%" y="677" width="0.0514%" height="15" fill="rgb(252,106,19)" fg:x="1727" fg:w="13"/><text x="7.0831%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="6.8529%" y="661" width="0.0317%" height="15" fill="rgb(206,74,20)" fg:x="1732" fg:w="8"/><text x="7.1029%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="6.7738%" y="805" width="0.1147%" height="15" fill="rgb(230,138,44)" fg:x="1712" fg:w="29"/><text x="7.0238%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="6.7738%" y="789" width="0.1147%" height="15" fill="rgb(235,182,43)" fg:x="1712" fg:w="29"/><text x="7.0238%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="6.7738%" y="773" width="0.1147%" height="15" fill="rgb(242,16,51)" fg:x="1712" fg:w="29"/><text x="7.0238%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="6.8292%" y="757" width="0.0593%" height="15" fill="rgb(248,9,4)" fg:x="1726" fg:w="15"/><text x="7.0792%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="6.8292%" y="741" width="0.0593%" height="15" fill="rgb(210,31,22)" fg:x="1726" fg:w="15"/><text x="7.0792%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (15 samples, 0.06%)</title><rect x="6.8292%" y="725" width="0.0593%" height="15" fill="rgb(239,54,39)" fg:x="1726" fg:w="15"/><text x="7.0792%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (15 samples, 0.06%)</title><rect x="6.8292%" y="709" width="0.0593%" height="15" fill="rgb(230,99,41)" fg:x="1726" fg:w="15"/><text x="7.0792%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.2088744067846635343 (33 samples, 0.13%)</title><rect x="6.7698%" y="1013" width="0.1306%" height="15" fill="rgb(253,106,12)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="6.7698%" y="997" width="0.1306%" height="15" fill="rgb(213,46,41)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="6.7698%" y="981" width="0.1306%" height="15" fill="rgb(215,133,35)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (33 samples, 0.13%)</title><rect x="6.7698%" y="965" width="0.1306%" height="15" fill="rgb(213,28,5)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="6.7698%" y="949" width="0.1306%" height="15" fill="rgb(215,77,49)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="6.7698%" y="933" width="0.1306%" height="15" fill="rgb(248,100,22)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (33 samples, 0.13%)</title><rect x="6.7698%" y="917" width="0.1306%" height="15" fill="rgb(208,67,9)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="6.7698%" y="901" width="0.1306%" height="15" fill="rgb(219,133,21)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="6.7698%" y="885" width="0.1306%" height="15" fill="rgb(246,46,29)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (33 samples, 0.13%)</title><rect x="6.7698%" y="869" width="0.1306%" height="15" fill="rgb(246,185,52)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="6.7698%" y="853" width="0.1306%" height="15" fill="rgb(252,136,11)" fg:x="1711" fg:w="33"/><text x="7.0198%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.13%)</title><rect x="6.7738%" y="837" width="0.1266%" height="15" fill="rgb(219,138,53)" fg:x="1712" fg:w="32"/><text x="7.0238%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (32 samples, 0.13%)</title><rect x="6.7738%" y="821" width="0.1266%" height="15" fill="rgb(211,51,23)" fg:x="1712" fg:w="32"/><text x="7.0238%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="6.8885%" y="805" width="0.0119%" height="15" fill="rgb(247,221,28)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="6.8885%" y="789" width="0.0119%" height="15" fill="rgb(251,222,45)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8885%" y="773" width="0.0119%" height="15" fill="rgb(217,162,53)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.8885%" y="757" width="0.0119%" height="15" fill="rgb(229,93,14)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.8885%" y="741" width="0.0119%" height="15" fill="rgb(209,67,49)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8885%" y="725" width="0.0119%" height="15" fill="rgb(213,87,29)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.8885%" y="709" width="0.0119%" height="15" fill="rgb(205,151,52)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.8885%" y="693" width="0.0119%" height="15" fill="rgb(253,215,39)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.8885%" y="677" width="0.0119%" height="15" fill="rgb(221,220,41)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8885%" y="661" width="0.0119%" height="15" fill="rgb(218,133,21)" fg:x="1741" fg:w="3"/><text x="7.1385%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (167 samples, 0.66%)</title><rect x="6.9004%" y="757" width="0.6608%" height="15" fill="rgb(221,193,43)" fg:x="1744" fg:w="167"/><text x="7.1504%" y="767.50"></text></g><g><title>exp (91 samples, 0.36%)</title><rect x="7.2011%" y="741" width="0.3601%" height="15" fill="rgb(240,128,52)" fg:x="1820" fg:w="91"/><text x="7.4511%" y="751.50"></text></g><g><title>[libm.so.6] (75 samples, 0.30%)</title><rect x="7.2644%" y="725" width="0.2967%" height="15" fill="rgb(253,114,12)" fg:x="1836" fg:w="75"/><text x="7.5144%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (54 samples, 0.21%)</title><rect x="7.5611%" y="757" width="0.2137%" height="15" fill="rgb(215,223,47)" fg:x="1911" fg:w="54"/><text x="7.8111%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (54 samples, 0.21%)</title><rect x="7.5611%" y="741" width="0.2137%" height="15" fill="rgb(248,225,23)" fg:x="1911" fg:w="54"/><text x="7.8111%" y="751.50"></text></g><g><title>exp (29 samples, 0.11%)</title><rect x="7.6600%" y="725" width="0.1147%" height="15" fill="rgb(250,108,0)" fg:x="1936" fg:w="29"/><text x="7.9100%" y="735.50"></text></g><g><title>[libm.so.6] (25 samples, 0.10%)</title><rect x="7.6759%" y="709" width="0.0989%" height="15" fill="rgb(228,208,7)" fg:x="1940" fg:w="25"/><text x="7.9259%" y="719.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="7.7946%" y="613" width="0.0119%" height="15" fill="rgb(244,45,10)" fg:x="1970" fg:w="3"/><text x="8.0446%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.7946%" y="597" width="0.0119%" height="15" fill="rgb(207,125,25)" fg:x="1970" fg:w="3"/><text x="8.0446%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="7.8381%" y="485" width="0.0514%" height="15" fill="rgb(210,195,18)" fg:x="1981" fg:w="13"/><text x="8.0881%" y="495.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="7.8777%" y="469" width="0.0119%" height="15" fill="rgb(249,80,12)" fg:x="1991" fg:w="3"/><text x="8.1277%" y="479.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.8777%" y="453" width="0.0119%" height="15" fill="rgb(221,65,9)" fg:x="1991" fg:w="3"/><text x="8.1277%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="7.8064%" y="533" width="0.1345%" height="15" fill="rgb(235,49,36)" fg:x="1973" fg:w="34"/><text x="8.0564%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="7.8381%" y="517" width="0.1029%" height="15" fill="rgb(225,32,20)" fg:x="1981" fg:w="26"/><text x="8.0881%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="7.8381%" y="501" width="0.1029%" height="15" fill="rgb(215,141,46)" fg:x="1981" fg:w="26"/><text x="8.0881%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="7.8895%" y="485" width="0.0514%" height="15" fill="rgb(250,160,47)" fg:x="1994" fg:w="13"/><text x="8.1395%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="7.8895%" y="469" width="0.0514%" height="15" fill="rgb(216,222,40)" fg:x="1994" fg:w="13"/><text x="8.1395%" y="479.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="7.9014%" y="453" width="0.0396%" height="15" fill="rgb(234,217,39)" fg:x="1997" fg:w="10"/><text x="8.1514%" y="463.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="7.9054%" y="437" width="0.0356%" height="15" fill="rgb(207,178,40)" fg:x="1998" fg:w="9"/><text x="8.1554%" y="447.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="7.9489%" y="501" width="0.0158%" height="15" fill="rgb(221,136,13)" fg:x="2009" fg:w="4"/><text x="8.1989%" y="511.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="7.9489%" y="485" width="0.0158%" height="15" fill="rgb(249,199,10)" fg:x="2009" fg:w="4"/><text x="8.1989%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="7.9647%" y="469" width="0.0633%" height="15" fill="rgb(249,222,13)" fg:x="2013" fg:w="16"/><text x="8.2147%" y="479.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="8.0003%" y="453" width="0.0277%" height="15" fill="rgb(244,185,38)" fg:x="2022" fg:w="7"/><text x="8.2503%" y="463.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="8.0003%" y="437" width="0.0277%" height="15" fill="rgb(236,202,9)" fg:x="2022" fg:w="7"/><text x="8.2503%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.28%)</title><rect x="7.8064%" y="581" width="0.2770%" height="15" fill="rgb(250,229,37)" fg:x="1973" fg:w="70"/><text x="8.0564%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (70 samples, 0.28%)</title><rect x="7.8064%" y="565" width="0.2770%" height="15" fill="rgb(206,174,23)" fg:x="1973" fg:w="70"/><text x="8.0564%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (70 samples, 0.28%)</title><rect x="7.8064%" y="549" width="0.2770%" height="15" fill="rgb(211,33,43)" fg:x="1973" fg:w="70"/><text x="8.0564%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (36 samples, 0.14%)</title><rect x="7.9410%" y="533" width="0.1424%" height="15" fill="rgb(245,58,50)" fg:x="2007" fg:w="36"/><text x="8.1910%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="7.9410%" y="517" width="0.1424%" height="15" fill="rgb(244,68,36)" fg:x="2007" fg:w="36"/><text x="8.1910%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="7.9647%" y="501" width="0.1187%" height="15" fill="rgb(232,229,15)" fg:x="2013" fg:w="30"/><text x="8.2147%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="7.9647%" y="485" width="0.1187%" height="15" fill="rgb(254,30,23)" fg:x="2013" fg:w="30"/><text x="8.2147%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="8.0280%" y="469" width="0.0554%" height="15" fill="rgb(235,160,14)" fg:x="2029" fg:w="14"/><text x="8.2780%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="8.0280%" y="453" width="0.0554%" height="15" fill="rgb(212,155,44)" fg:x="2029" fg:w="14"/><text x="8.2780%" y="463.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="8.0557%" y="437" width="0.0277%" height="15" fill="rgb(226,2,50)" fg:x="2036" fg:w="7"/><text x="8.3057%" y="447.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="8.0557%" y="421" width="0.0277%" height="15" fill="rgb(234,177,6)" fg:x="2036" fg:w="7"/><text x="8.3057%" y="431.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.0953%" y="501" width="0.0158%" height="15" fill="rgb(217,24,9)" fg:x="2046" fg:w="4"/><text x="8.3453%" y="511.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.0953%" y="485" width="0.0158%" height="15" fill="rgb(220,13,46)" fg:x="2046" fg:w="4"/><text x="8.3453%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="8.1111%" y="469" width="0.0633%" height="15" fill="rgb(239,221,27)" fg:x="2050" fg:w="16"/><text x="8.3611%" y="479.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.1586%" y="453" width="0.0158%" height="15" fill="rgb(222,198,25)" fg:x="2062" fg:w="4"/><text x="8.4086%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="8.0834%" y="517" width="0.1504%" height="15" fill="rgb(211,99,13)" fg:x="2043" fg:w="38"/><text x="8.3334%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="8.1111%" y="501" width="0.1227%" height="15" fill="rgb(232,111,31)" fg:x="2050" fg:w="31"/><text x="8.3611%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="8.1111%" y="485" width="0.1227%" height="15" fill="rgb(245,82,37)" fg:x="2050" fg:w="31"/><text x="8.3611%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="8.1744%" y="469" width="0.0593%" height="15" fill="rgb(227,149,46)" fg:x="2066" fg:w="15"/><text x="8.4244%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="8.1744%" y="453" width="0.0593%" height="15" fill="rgb(218,36,50)" fg:x="2066" fg:w="15"/><text x="8.4244%" y="463.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="8.2061%" y="437" width="0.0277%" height="15" fill="rgb(226,80,48)" fg:x="2074" fg:w="7"/><text x="8.4561%" y="447.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.2140%" y="421" width="0.0198%" height="15" fill="rgb(238,224,15)" fg:x="2076" fg:w="5"/><text x="8.4640%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="8.2615%" y="453" width="0.0435%" height="15" fill="rgb(241,136,10)" fg:x="2088" fg:w="11"/><text x="8.5115%" y="463.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.2892%" y="437" width="0.0158%" height="15" fill="rgb(208,32,45)" fg:x="2095" fg:w="4"/><text x="8.5392%" y="447.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.2892%" y="421" width="0.0158%" height="15" fill="rgb(207,135,9)" fg:x="2095" fg:w="4"/><text x="8.5392%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (143 samples, 0.57%)</title><rect x="7.7867%" y="629" width="0.5658%" height="15" fill="rgb(206,86,44)" fg:x="1968" fg:w="143"/><text x="8.0367%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (138 samples, 0.55%)</title><rect x="7.8064%" y="613" width="0.5460%" height="15" fill="rgb(245,177,15)" fg:x="1973" fg:w="138"/><text x="8.0564%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (138 samples, 0.55%)</title><rect x="7.8064%" y="597" width="0.5460%" height="15" fill="rgb(206,64,50)" fg:x="1973" fg:w="138"/><text x="8.0564%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (68 samples, 0.27%)</title><rect x="8.0834%" y="581" width="0.2691%" height="15" fill="rgb(234,36,40)" fg:x="2043" fg:w="68"/><text x="8.3334%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (68 samples, 0.27%)</title><rect x="8.0834%" y="565" width="0.2691%" height="15" fill="rgb(213,64,8)" fg:x="2043" fg:w="68"/><text x="8.3334%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (68 samples, 0.27%)</title><rect x="8.0834%" y="549" width="0.2691%" height="15" fill="rgb(210,75,36)" fg:x="2043" fg:w="68"/><text x="8.3334%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (68 samples, 0.27%)</title><rect x="8.0834%" y="533" width="0.2691%" height="15" fill="rgb(229,88,21)" fg:x="2043" fg:w="68"/><text x="8.3334%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.12%)</title><rect x="8.2338%" y="517" width="0.1187%" height="15" fill="rgb(252,204,47)" fg:x="2081" fg:w="30"/><text x="8.4838%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="8.2338%" y="501" width="0.1187%" height="15" fill="rgb(208,77,27)" fg:x="2081" fg:w="30"/><text x="8.4838%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="8.2615%" y="485" width="0.0910%" height="15" fill="rgb(221,76,26)" fg:x="2088" fg:w="23"/><text x="8.5115%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="8.2615%" y="469" width="0.0910%" height="15" fill="rgb(225,139,18)" fg:x="2088" fg:w="23"/><text x="8.5115%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="8.3050%" y="453" width="0.0475%" height="15" fill="rgb(230,137,11)" fg:x="2099" fg:w="12"/><text x="8.5550%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="8.3050%" y="437" width="0.0475%" height="15" fill="rgb(212,28,1)" fg:x="2099" fg:w="12"/><text x="8.5550%" y="447.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="8.3287%" y="421" width="0.0237%" height="15" fill="rgb(248,164,17)" fg:x="2105" fg:w="6"/><text x="8.5787%" y="431.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.3327%" y="405" width="0.0198%" height="15" fill="rgb(222,171,42)" fg:x="2106" fg:w="5"/><text x="8.5827%" y="415.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.3525%" y="597" width="0.0158%" height="15" fill="rgb(243,84,45)" fg:x="2111" fg:w="4"/><text x="8.6025%" y="607.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.3525%" y="581" width="0.0158%" height="15" fill="rgb(252,49,23)" fg:x="2111" fg:w="4"/><text x="8.6025%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.3920%" y="469" width="0.0356%" height="15" fill="rgb(215,19,7)" fg:x="2121" fg:w="9"/><text x="8.6420%" y="479.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.4118%" y="453" width="0.0158%" height="15" fill="rgb(238,81,41)" fg:x="2126" fg:w="4"/><text x="8.6618%" y="463.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.4158%" y="437" width="0.0119%" height="15" fill="rgb(210,199,37)" fg:x="2127" fg:w="3"/><text x="8.6658%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="8.3683%" y="517" width="0.0910%" height="15" fill="rgb(244,192,49)" fg:x="2115" fg:w="23"/><text x="8.6183%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="8.3920%" y="501" width="0.0673%" height="15" fill="rgb(226,211,11)" fg:x="2121" fg:w="17"/><text x="8.6420%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="8.3920%" y="485" width="0.0673%" height="15" fill="rgb(236,162,54)" fg:x="2121" fg:w="17"/><text x="8.6420%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="8.4276%" y="469" width="0.0317%" height="15" fill="rgb(220,229,9)" fg:x="2130" fg:w="8"/><text x="8.6776%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="8.4276%" y="453" width="0.0317%" height="15" fill="rgb(250,87,22)" fg:x="2130" fg:w="8"/><text x="8.6776%" y="463.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="8.4355%" y="437" width="0.0237%" height="15" fill="rgb(239,43,17)" fg:x="2132" fg:w="6"/><text x="8.6855%" y="447.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.4435%" y="421" width="0.0158%" height="15" fill="rgb(231,177,25)" fg:x="2134" fg:w="4"/><text x="8.6935%" y="431.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="8.4751%" y="485" width="0.0198%" height="15" fill="rgb(219,179,1)" fg:x="2142" fg:w="5"/><text x="8.7251%" y="495.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.4751%" y="469" width="0.0198%" height="15" fill="rgb(238,219,53)" fg:x="2142" fg:w="5"/><text x="8.7251%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.4949%" y="453" width="0.0356%" height="15" fill="rgb(232,167,36)" fg:x="2147" fg:w="9"/><text x="8.7449%" y="463.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="8.5068%" y="437" width="0.0237%" height="15" fill="rgb(244,19,51)" fg:x="2150" fg:w="6"/><text x="8.7568%" y="447.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.5107%" y="421" width="0.0198%" height="15" fill="rgb(224,6,22)" fg:x="2151" fg:w="5"/><text x="8.7607%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.20%)</title><rect x="8.3683%" y="565" width="0.2018%" height="15" fill="rgb(224,145,5)" fg:x="2115" fg:w="51"/><text x="8.6183%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.20%)</title><rect x="8.3683%" y="549" width="0.2018%" height="15" fill="rgb(234,130,49)" fg:x="2115" fg:w="51"/><text x="8.6183%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (51 samples, 0.20%)</title><rect x="8.3683%" y="533" width="0.2018%" height="15" fill="rgb(254,6,2)" fg:x="2115" fg:w="51"/><text x="8.6183%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.11%)</title><rect x="8.4593%" y="517" width="0.1108%" height="15" fill="rgb(208,96,46)" fg:x="2138" fg:w="28"/><text x="8.7093%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="8.4593%" y="501" width="0.1108%" height="15" fill="rgb(239,3,39)" fg:x="2138" fg:w="28"/><text x="8.7093%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="8.4949%" y="485" width="0.0752%" height="15" fill="rgb(233,210,1)" fg:x="2147" fg:w="19"/><text x="8.7449%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="8.4949%" y="469" width="0.0752%" height="15" fill="rgb(244,137,37)" fg:x="2147" fg:w="19"/><text x="8.7449%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="8.5305%" y="453" width="0.0396%" height="15" fill="rgb(240,136,2)" fg:x="2156" fg:w="10"/><text x="8.7805%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.5305%" y="437" width="0.0396%" height="15" fill="rgb(239,18,37)" fg:x="2156" fg:w="10"/><text x="8.7805%" y="447.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.5542%" y="421" width="0.0158%" height="15" fill="rgb(218,185,22)" fg:x="2162" fg:w="4"/><text x="8.8042%" y="431.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.5542%" y="405" width="0.0158%" height="15" fill="rgb(225,218,4)" fg:x="2162" fg:w="4"/><text x="8.8042%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.5978%" y="453" width="0.0356%" height="15" fill="rgb(230,182,32)" fg:x="2173" fg:w="9"/><text x="8.8478%" y="463.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="8.6136%" y="437" width="0.0198%" height="15" fill="rgb(242,56,43)" fg:x="2177" fg:w="5"/><text x="8.8636%" y="447.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.6136%" y="421" width="0.0198%" height="15" fill="rgb(233,99,24)" fg:x="2177" fg:w="5"/><text x="8.8636%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="8.5701%" y="501" width="0.0989%" height="15" fill="rgb(234,209,42)" fg:x="2166" fg:w="25"/><text x="8.8201%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="8.5978%" y="485" width="0.0712%" height="15" fill="rgb(227,7,12)" fg:x="2173" fg:w="18"/><text x="8.8478%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="8.5978%" y="469" width="0.0712%" height="15" fill="rgb(245,203,43)" fg:x="2173" fg:w="18"/><text x="8.8478%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="8.6334%" y="453" width="0.0356%" height="15" fill="rgb(238,205,33)" fg:x="2182" fg:w="9"/><text x="8.8834%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.6334%" y="437" width="0.0356%" height="15" fill="rgb(231,56,7)" fg:x="2182" fg:w="9"/><text x="8.8834%" y="447.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.6532%" y="421" width="0.0158%" height="15" fill="rgb(244,186,29)" fg:x="2187" fg:w="4"/><text x="8.9032%" y="431.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.6532%" y="405" width="0.0158%" height="15" fill="rgb(234,111,31)" fg:x="2187" fg:w="4"/><text x="8.9032%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="8.6927%" y="437" width="0.0396%" height="15" fill="rgb(241,149,10)" fg:x="2197" fg:w="10"/><text x="8.9427%" y="447.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="8.7125%" y="421" width="0.0198%" height="15" fill="rgb(249,206,44)" fg:x="2202" fg:w="5"/><text x="8.9625%" y="431.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.7125%" y="405" width="0.0198%" height="15" fill="rgb(251,153,30)" fg:x="2202" fg:w="5"/><text x="8.9625%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (104 samples, 0.41%)</title><rect x="8.3525%" y="629" width="0.4115%" height="15" fill="rgb(239,152,38)" fg:x="2111" fg:w="104"/><text x="8.6025%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104 samples, 0.41%)</title><rect x="8.3525%" y="613" width="0.4115%" height="15" fill="rgb(249,139,47)" fg:x="2111" fg:w="104"/><text x="8.6025%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (100 samples, 0.40%)</title><rect x="8.3683%" y="597" width="0.3957%" height="15" fill="rgb(244,64,35)" fg:x="2115" fg:w="100"/><text x="8.6183%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (100 samples, 0.40%)</title><rect x="8.3683%" y="581" width="0.3957%" height="15" fill="rgb(216,46,15)" fg:x="2115" fg:w="100"/><text x="8.6183%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.19%)</title><rect x="8.5701%" y="565" width="0.1939%" height="15" fill="rgb(250,74,19)" fg:x="2166" fg:w="49"/><text x="8.8201%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.19%)</title><rect x="8.5701%" y="549" width="0.1939%" height="15" fill="rgb(249,42,33)" fg:x="2166" fg:w="49"/><text x="8.8201%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="8.5701%" y="533" width="0.1939%" height="15" fill="rgb(242,149,17)" fg:x="2166" fg:w="49"/><text x="8.8201%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="8.5701%" y="517" width="0.1939%" height="15" fill="rgb(244,29,21)" fg:x="2166" fg:w="49"/><text x="8.8201%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (24 samples, 0.09%)</title><rect x="8.6690%" y="501" width="0.0950%" height="15" fill="rgb(220,130,37)" fg:x="2191" fg:w="24"/><text x="8.9190%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="8.6690%" y="485" width="0.0950%" height="15" fill="rgb(211,67,2)" fg:x="2191" fg:w="24"/><text x="8.9190%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="8.6927%" y="469" width="0.0712%" height="15" fill="rgb(235,68,52)" fg:x="2197" fg:w="18"/><text x="8.9427%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="8.6927%" y="453" width="0.0712%" height="15" fill="rgb(246,142,3)" fg:x="2197" fg:w="18"/><text x="8.9427%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="8.7323%" y="437" width="0.0317%" height="15" fill="rgb(241,25,7)" fg:x="2207" fg:w="8"/><text x="8.9823%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="8.7323%" y="421" width="0.0317%" height="15" fill="rgb(242,119,39)" fg:x="2207" fg:w="8"/><text x="8.9823%" y="431.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="8.7402%" y="405" width="0.0237%" height="15" fill="rgb(241,98,45)" fg:x="2209" fg:w="6"/><text x="8.9902%" y="415.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="8.7442%" y="389" width="0.0198%" height="15" fill="rgb(254,28,30)" fg:x="2210" fg:w="5"/><text x="8.9942%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.7639%" y="501" width="0.0198%" height="15" fill="rgb(241,142,54)" fg:x="2215" fg:w="5"/><text x="9.0139%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.7639%" y="485" width="0.0198%" height="15" fill="rgb(222,85,15)" fg:x="2215" fg:w="5"/><text x="9.0139%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.7639%" y="469" width="0.0198%" height="15" fill="rgb(210,85,47)" fg:x="2215" fg:w="5"/><text x="9.0139%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.7719%" y="453" width="0.0119%" height="15" fill="rgb(224,206,25)" fg:x="2217" fg:w="3"/><text x="9.0219%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.7719%" y="437" width="0.0119%" height="15" fill="rgb(243,201,19)" fg:x="2217" fg:w="3"/><text x="9.0219%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.7639%" y="549" width="0.0356%" height="15" fill="rgb(236,59,4)" fg:x="2215" fg:w="9"/><text x="9.0139%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.7639%" y="533" width="0.0356%" height="15" fill="rgb(254,179,45)" fg:x="2215" fg:w="9"/><text x="9.0139%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.7639%" y="517" width="0.0356%" height="15" fill="rgb(226,14,10)" fg:x="2215" fg:w="9"/><text x="9.0139%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.7837%" y="501" width="0.0158%" height="15" fill="rgb(244,27,41)" fg:x="2220" fg:w="4"/><text x="9.0337%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.7837%" y="485" width="0.0158%" height="15" fill="rgb(235,35,32)" fg:x="2220" fg:w="4"/><text x="9.0337%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.7837%" y="469" width="0.0158%" height="15" fill="rgb(218,68,31)" fg:x="2220" fg:w="4"/><text x="9.0337%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.7837%" y="453" width="0.0158%" height="15" fill="rgb(207,120,37)" fg:x="2220" fg:w="4"/><text x="9.0337%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="8.8114%" y="469" width="0.0237%" height="15" fill="rgb(227,98,0)" fg:x="2227" fg:w="6"/><text x="9.0614%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.8233%" y="453" width="0.0119%" height="15" fill="rgb(207,7,3)" fg:x="2230" fg:w="3"/><text x="9.0733%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.8352%" y="341" width="0.0198%" height="15" fill="rgb(206,98,19)" fg:x="2233" fg:w="5"/><text x="9.0852%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.8352%" y="389" width="0.0356%" height="15" fill="rgb(217,5,26)" fg:x="2233" fg:w="9"/><text x="9.0852%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.8352%" y="373" width="0.0356%" height="15" fill="rgb(235,190,38)" fg:x="2233" fg:w="9"/><text x="9.0852%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.8352%" y="357" width="0.0356%" height="15" fill="rgb(247,86,24)" fg:x="2233" fg:w="9"/><text x="9.0852%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.8549%" y="341" width="0.0158%" height="15" fill="rgb(205,101,16)" fg:x="2238" fg:w="4"/><text x="9.1049%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.8549%" y="325" width="0.0158%" height="15" fill="rgb(246,168,33)" fg:x="2238" fg:w="4"/><text x="9.1049%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (278 samples, 1.10%)</title><rect x="7.7867%" y="677" width="1.0999%" height="15" fill="rgb(231,114,1)" fg:x="1968" fg:w="278"/><text x="8.0367%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (278 samples, 1.10%)</title><rect x="7.7867%" y="661" width="1.0999%" height="15" fill="rgb(207,184,53)" fg:x="1968" fg:w="278"/><text x="8.0367%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (278 samples, 1.10%)</title><rect x="7.7867%" y="645" width="1.0999%" height="15" fill="rgb(224,95,51)" fg:x="1968" fg:w="278"/><text x="8.0367%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.12%)</title><rect x="8.7639%" y="629" width="0.1227%" height="15" fill="rgb(212,188,45)" fg:x="2215" fg:w="31"/><text x="9.0139%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.12%)</title><rect x="8.7639%" y="613" width="0.1227%" height="15" fill="rgb(223,154,38)" fg:x="2215" fg:w="31"/><text x="9.0139%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="8.7639%" y="597" width="0.1227%" height="15" fill="rgb(251,22,52)" fg:x="2215" fg:w="31"/><text x="9.0139%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="8.7639%" y="581" width="0.1227%" height="15" fill="rgb(229,209,22)" fg:x="2215" fg:w="31"/><text x="9.0139%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="8.7639%" y="565" width="0.1227%" height="15" fill="rgb(234,138,34)" fg:x="2215" fg:w="31"/><text x="9.0139%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.09%)</title><rect x="8.7996%" y="549" width="0.0870%" height="15" fill="rgb(212,95,11)" fg:x="2224" fg:w="22"/><text x="9.0496%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.09%)</title><rect x="8.7996%" y="533" width="0.0870%" height="15" fill="rgb(240,179,47)" fg:x="2224" fg:w="22"/><text x="9.0496%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="8.7996%" y="517" width="0.0870%" height="15" fill="rgb(240,163,11)" fg:x="2224" fg:w="22"/><text x="9.0496%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="8.8114%" y="501" width="0.0752%" height="15" fill="rgb(236,37,12)" fg:x="2227" fg:w="19"/><text x="9.0614%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="8.8114%" y="485" width="0.0752%" height="15" fill="rgb(232,164,16)" fg:x="2227" fg:w="19"/><text x="9.0614%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="8.8352%" y="469" width="0.0514%" height="15" fill="rgb(244,205,15)" fg:x="2233" fg:w="13"/><text x="9.0852%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="8.8352%" y="453" width="0.0514%" height="15" fill="rgb(223,117,47)" fg:x="2233" fg:w="13"/><text x="9.0852%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="8.8352%" y="437" width="0.0514%" height="15" fill="rgb(244,107,35)" fg:x="2233" fg:w="13"/><text x="9.0852%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="8.8352%" y="421" width="0.0514%" height="15" fill="rgb(205,140,8)" fg:x="2233" fg:w="13"/><text x="9.0852%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="8.8352%" y="405" width="0.0514%" height="15" fill="rgb(228,84,46)" fg:x="2233" fg:w="13"/><text x="9.0852%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="8.8708%" y="389" width="0.0158%" height="15" fill="rgb(254,188,9)" fg:x="2242" fg:w="4"/><text x="9.1208%" y="399.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="8.8708%" y="373" width="0.0158%" height="15" fill="rgb(206,112,54)" fg:x="2242" fg:w="4"/><text x="9.1208%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.8708%" y="357" width="0.0158%" height="15" fill="rgb(216,84,49)" fg:x="2242" fg:w="4"/><text x="9.1208%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.8708%" y="341" width="0.0158%" height="15" fill="rgb(214,194,35)" fg:x="2242" fg:w="4"/><text x="9.1208%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.8708%" y="325" width="0.0158%" height="15" fill="rgb(249,28,3)" fg:x="2242" fg:w="4"/><text x="9.1208%" y="335.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.8945%" y="597" width="0.0158%" height="15" fill="rgb(222,56,52)" fg:x="2248" fg:w="4"/><text x="9.1445%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.8985%" y="581" width="0.0119%" height="15" fill="rgb(245,217,50)" fg:x="2249" fg:w="3"/><text x="9.1485%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="8.9301%" y="469" width="0.0237%" height="15" fill="rgb(213,201,24)" fg:x="2257" fg:w="6"/><text x="9.1801%" y="479.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="8.9380%" y="453" width="0.0158%" height="15" fill="rgb(248,116,28)" fg:x="2259" fg:w="4"/><text x="9.1880%" y="463.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="8.9380%" y="437" width="0.0158%" height="15" fill="rgb(219,72,43)" fg:x="2259" fg:w="4"/><text x="9.1880%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="8.9103%" y="517" width="0.0633%" height="15" fill="rgb(209,138,14)" fg:x="2252" fg:w="16"/><text x="9.1603%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="8.9301%" y="501" width="0.0435%" height="15" fill="rgb(222,18,33)" fg:x="2257" fg:w="11"/><text x="9.1801%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="8.9301%" y="485" width="0.0435%" height="15" fill="rgb(213,199,7)" fg:x="2257" fg:w="11"/><text x="9.1801%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="8.9539%" y="469" width="0.0198%" height="15" fill="rgb(250,110,10)" fg:x="2263" fg:w="5"/><text x="9.2039%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.9539%" y="453" width="0.0198%" height="15" fill="rgb(248,123,6)" fg:x="2263" fg:w="5"/><text x="9.2039%" y="463.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.9618%" y="437" width="0.0119%" height="15" fill="rgb(206,91,31)" fg:x="2265" fg:w="3"/><text x="9.2118%" y="447.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="8.9618%" y="421" width="0.0119%" height="15" fill="rgb(211,154,13)" fg:x="2265" fg:w="3"/><text x="9.2118%" y="431.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.9816%" y="485" width="0.0119%" height="15" fill="rgb(225,148,7)" fg:x="2270" fg:w="3"/><text x="9.2316%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.9934%" y="453" width="0.0158%" height="15" fill="rgb(220,160,43)" fg:x="2273" fg:w="4"/><text x="9.2434%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="8.9103%" y="565" width="0.1187%" height="15" fill="rgb(213,52,39)" fg:x="2252" fg:w="30"/><text x="9.1603%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="8.9103%" y="549" width="0.1187%" height="15" fill="rgb(243,137,7)" fg:x="2252" fg:w="30"/><text x="9.1603%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="8.9103%" y="533" width="0.1187%" height="15" fill="rgb(230,79,13)" fg:x="2252" fg:w="30"/><text x="9.1603%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="8.9736%" y="517" width="0.0554%" height="15" fill="rgb(247,105,23)" fg:x="2268" fg:w="14"/><text x="9.2236%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="8.9736%" y="501" width="0.0554%" height="15" fill="rgb(223,179,41)" fg:x="2268" fg:w="14"/><text x="9.2236%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.9934%" y="485" width="0.0356%" height="15" fill="rgb(218,9,34)" fg:x="2273" fg:w="9"/><text x="9.2434%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.9934%" y="469" width="0.0356%" height="15" fill="rgb(222,106,8)" fg:x="2273" fg:w="9"/><text x="9.2434%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.0093%" y="453" width="0.0198%" height="15" fill="rgb(211,220,0)" fg:x="2277" fg:w="5"/><text x="9.2593%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.0093%" y="437" width="0.0198%" height="15" fill="rgb(229,52,16)" fg:x="2277" fg:w="5"/><text x="9.2593%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.0449%" y="453" width="0.0198%" height="15" fill="rgb(212,155,18)" fg:x="2286" fg:w="5"/><text x="9.2949%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="9.0290%" y="501" width="0.0554%" height="15" fill="rgb(242,21,14)" fg:x="2282" fg:w="14"/><text x="9.2790%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="9.0449%" y="485" width="0.0396%" height="15" fill="rgb(222,19,48)" fg:x="2286" fg:w="10"/><text x="9.2949%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="9.0449%" y="469" width="0.0396%" height="15" fill="rgb(232,45,27)" fg:x="2286" fg:w="10"/><text x="9.2949%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.0647%" y="453" width="0.0198%" height="15" fill="rgb(249,103,42)" fg:x="2291" fg:w="5"/><text x="9.3147%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.0647%" y="437" width="0.0198%" height="15" fill="rgb(246,81,33)" fg:x="2291" fg:w="5"/><text x="9.3147%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.1003%" y="437" width="0.0198%" height="15" fill="rgb(252,33,42)" fg:x="2300" fg:w="5"/><text x="9.3503%" y="447.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.1082%" y="421" width="0.0119%" height="15" fill="rgb(209,212,41)" fg:x="2302" fg:w="3"/><text x="9.3582%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.26%)</title><rect x="8.8866%" y="613" width="0.2572%" height="15" fill="rgb(207,154,6)" fg:x="2246" fg:w="65"/><text x="9.1366%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (59 samples, 0.23%)</title><rect x="8.9103%" y="597" width="0.2334%" height="15" fill="rgb(223,64,47)" fg:x="2252" fg:w="59"/><text x="9.1603%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (59 samples, 0.23%)</title><rect x="8.9103%" y="581" width="0.2334%" height="15" fill="rgb(211,161,38)" fg:x="2252" fg:w="59"/><text x="9.1603%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.11%)</title><rect x="9.0290%" y="565" width="0.1147%" height="15" fill="rgb(219,138,40)" fg:x="2282" fg:w="29"/><text x="9.2790%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="9.0290%" y="549" width="0.1147%" height="15" fill="rgb(241,228,46)" fg:x="2282" fg:w="29"/><text x="9.2790%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="9.0290%" y="533" width="0.1147%" height="15" fill="rgb(223,209,38)" fg:x="2282" fg:w="29"/><text x="9.2790%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="9.0290%" y="517" width="0.1147%" height="15" fill="rgb(236,164,45)" fg:x="2282" fg:w="29"/><text x="9.2790%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="9.0844%" y="501" width="0.0593%" height="15" fill="rgb(231,15,5)" fg:x="2296" fg:w="15"/><text x="9.3344%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="9.0844%" y="485" width="0.0593%" height="15" fill="rgb(252,35,15)" fg:x="2296" fg:w="15"/><text x="9.3344%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="9.1003%" y="469" width="0.0435%" height="15" fill="rgb(248,181,18)" fg:x="2300" fg:w="11"/><text x="9.3503%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="9.1003%" y="453" width="0.0435%" height="15" fill="rgb(233,39,42)" fg:x="2300" fg:w="11"/><text x="9.3503%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.1200%" y="437" width="0.0237%" height="15" fill="rgb(238,110,33)" fg:x="2305" fg:w="6"/><text x="9.3700%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.1200%" y="421" width="0.0237%" height="15" fill="rgb(233,195,10)" fg:x="2305" fg:w="6"/><text x="9.3700%" y="431.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.1280%" y="405" width="0.0158%" height="15" fill="rgb(254,105,3)" fg:x="2307" fg:w="4"/><text x="9.3780%" y="415.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="9.1280%" y="389" width="0.0158%" height="15" fill="rgb(221,225,9)" fg:x="2307" fg:w="4"/><text x="9.3780%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.1754%" y="453" width="0.0119%" height="15" fill="rgb(224,227,45)" fg:x="2319" fg:w="3"/><text x="9.4254%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="9.1636%" y="501" width="0.0396%" height="15" fill="rgb(229,198,43)" fg:x="2316" fg:w="10"/><text x="9.4136%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="9.1754%" y="485" width="0.0277%" height="15" fill="rgb(206,209,35)" fg:x="2319" fg:w="7"/><text x="9.4254%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="9.1754%" y="469" width="0.0277%" height="15" fill="rgb(245,195,53)" fg:x="2319" fg:w="7"/><text x="9.4254%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="9.1873%" y="453" width="0.0158%" height="15" fill="rgb(240,92,26)" fg:x="2322" fg:w="4"/><text x="9.4373%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.1873%" y="437" width="0.0158%" height="15" fill="rgb(207,40,23)" fg:x="2322" fg:w="4"/><text x="9.4373%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.2110%" y="437" width="0.0119%" height="15" fill="rgb(223,111,35)" fg:x="2328" fg:w="3"/><text x="9.4610%" y="447.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.2110%" y="421" width="0.0119%" height="15" fill="rgb(229,147,28)" fg:x="2328" fg:w="3"/><text x="9.4610%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="9.1636%" y="549" width="0.0712%" height="15" fill="rgb(211,29,28)" fg:x="2316" fg:w="18"/><text x="9.4136%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="9.1636%" y="533" width="0.0712%" height="15" fill="rgb(228,72,33)" fg:x="2316" fg:w="18"/><text x="9.4136%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="9.1636%" y="517" width="0.0712%" height="15" fill="rgb(205,214,31)" fg:x="2316" fg:w="18"/><text x="9.4136%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="9.2031%" y="501" width="0.0317%" height="15" fill="rgb(224,111,15)" fg:x="2326" fg:w="8"/><text x="9.4531%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="9.2031%" y="485" width="0.0317%" height="15" fill="rgb(253,21,26)" fg:x="2326" fg:w="8"/><text x="9.4531%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.2110%" y="469" width="0.0237%" height="15" fill="rgb(245,139,43)" fg:x="2328" fg:w="6"/><text x="9.4610%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.2110%" y="453" width="0.0237%" height="15" fill="rgb(252,170,7)" fg:x="2328" fg:w="6"/><text x="9.4610%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.2229%" y="437" width="0.0119%" height="15" fill="rgb(231,118,14)" fg:x="2331" fg:w="3"/><text x="9.4729%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.2229%" y="421" width="0.0119%" height="15" fill="rgb(238,83,0)" fg:x="2331" fg:w="3"/><text x="9.4729%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="9.2348%" y="549" width="0.0158%" height="15" fill="rgb(221,39,39)" fg:x="2334" fg:w="4"/><text x="9.4848%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.2348%" y="533" width="0.0158%" height="15" fill="rgb(222,119,46)" fg:x="2334" fg:w="4"/><text x="9.4848%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.2348%" y="517" width="0.0158%" height="15" fill="rgb(222,165,49)" fg:x="2334" fg:w="4"/><text x="9.4848%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.2348%" y="501" width="0.0158%" height="15" fill="rgb(219,113,52)" fg:x="2334" fg:w="4"/><text x="9.4848%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.2506%" y="325" width="0.0119%" height="15" fill="rgb(214,7,15)" fg:x="2338" fg:w="3"/><text x="9.5006%" y="335.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.2506%" y="309" width="0.0119%" height="15" fill="rgb(235,32,4)" fg:x="2338" fg:w="3"/><text x="9.5006%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.2506%" y="373" width="0.0198%" height="15" fill="rgb(238,90,54)" fg:x="2338" fg:w="5"/><text x="9.5006%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.2506%" y="357" width="0.0198%" height="15" fill="rgb(213,208,19)" fg:x="2338" fg:w="5"/><text x="9.5006%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.2506%" y="341" width="0.0198%" height="15" fill="rgb(233,156,4)" fg:x="2338" fg:w="5"/><text x="9.5006%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.2704%" y="309" width="0.0119%" height="15" fill="rgb(207,194,5)" fg:x="2343" fg:w="3"/><text x="9.5204%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="9.2506%" y="421" width="0.0396%" height="15" fill="rgb(206,111,30)" fg:x="2338" fg:w="10"/><text x="9.5006%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="9.2506%" y="405" width="0.0396%" height="15" fill="rgb(243,70,54)" fg:x="2338" fg:w="10"/><text x="9.5006%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="9.2506%" y="389" width="0.0396%" height="15" fill="rgb(242,28,8)" fg:x="2338" fg:w="10"/><text x="9.5006%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.2704%" y="373" width="0.0198%" height="15" fill="rgb(219,106,18)" fg:x="2343" fg:w="5"/><text x="9.5204%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.2704%" y="357" width="0.0198%" height="15" fill="rgb(244,222,10)" fg:x="2343" fg:w="5"/><text x="9.5204%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.2704%" y="341" width="0.0198%" height="15" fill="rgb(236,179,52)" fg:x="2343" fg:w="5"/><text x="9.5204%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.2704%" y="325" width="0.0198%" height="15" fill="rgb(213,23,39)" fg:x="2343" fg:w="5"/><text x="9.5204%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.2902%" y="309" width="0.0119%" height="15" fill="rgb(238,48,10)" fg:x="2348" fg:w="3"/><text x="9.5402%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.2902%" y="357" width="0.0237%" height="15" fill="rgb(251,196,23)" fg:x="2348" fg:w="6"/><text x="9.5402%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.2902%" y="341" width="0.0237%" height="15" fill="rgb(250,152,24)" fg:x="2348" fg:w="6"/><text x="9.5402%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.2902%" y="325" width="0.0237%" height="15" fill="rgb(209,150,17)" fg:x="2348" fg:w="6"/><text x="9.5402%" y="335.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.3020%" y="309" width="0.0119%" height="15" fill="rgb(234,202,34)" fg:x="2351" fg:w="3"/><text x="9.5520%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.3020%" y="293" width="0.0119%" height="15" fill="rgb(253,148,53)" fg:x="2351" fg:w="3"/><text x="9.5520%" y="303.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.3020%" y="277" width="0.0119%" height="15" fill="rgb(218,129,16)" fg:x="2351" fg:w="3"/><text x="9.5520%" y="287.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.3020%" y="261" width="0.0119%" height="15" fill="rgb(216,85,19)" fg:x="2351" fg:w="3"/><text x="9.5520%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.3139%" y="293" width="0.0119%" height="15" fill="rgb(235,228,7)" fg:x="2354" fg:w="3"/><text x="9.5639%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="9.2506%" y="469" width="0.0870%" height="15" fill="rgb(245,175,0)" fg:x="2338" fg:w="22"/><text x="9.5006%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="9.2506%" y="453" width="0.0870%" height="15" fill="rgb(208,168,36)" fg:x="2338" fg:w="22"/><text x="9.5006%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="9.2506%" y="437" width="0.0870%" height="15" fill="rgb(246,171,24)" fg:x="2338" fg:w="22"/><text x="9.5006%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="9.2902%" y="421" width="0.0475%" height="15" fill="rgb(215,142,24)" fg:x="2348" fg:w="12"/><text x="9.5402%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="9.2902%" y="405" width="0.0475%" height="15" fill="rgb(250,187,7)" fg:x="2348" fg:w="12"/><text x="9.5402%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="9.2902%" y="389" width="0.0475%" height="15" fill="rgb(228,66,33)" fg:x="2348" fg:w="12"/><text x="9.5402%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="9.2902%" y="373" width="0.0475%" height="15" fill="rgb(234,215,21)" fg:x="2348" fg:w="12"/><text x="9.5402%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.3139%" y="357" width="0.0237%" height="15" fill="rgb(222,191,20)" fg:x="2354" fg:w="6"/><text x="9.5639%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.3139%" y="341" width="0.0237%" height="15" fill="rgb(245,79,54)" fg:x="2354" fg:w="6"/><text x="9.5639%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.3139%" y="325" width="0.0237%" height="15" fill="rgb(240,10,37)" fg:x="2354" fg:w="6"/><text x="9.5639%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.3139%" y="309" width="0.0237%" height="15" fill="rgb(214,192,32)" fg:x="2354" fg:w="6"/><text x="9.5639%" y="319.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.3258%" y="293" width="0.0119%" height="15" fill="rgb(209,36,54)" fg:x="2357" fg:w="3"/><text x="9.5758%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.3258%" y="277" width="0.0119%" height="15" fill="rgb(220,10,11)" fg:x="2357" fg:w="3"/><text x="9.5758%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.3377%" y="309" width="0.0158%" height="15" fill="rgb(221,106,17)" fg:x="2360" fg:w="4"/><text x="9.5877%" y="319.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.3416%" y="293" width="0.0119%" height="15" fill="rgb(251,142,44)" fg:x="2361" fg:w="3"/><text x="9.5916%" y="303.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.3416%" y="277" width="0.0119%" height="15" fill="rgb(238,13,15)" fg:x="2361" fg:w="3"/><text x="9.5916%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.3377%" y="357" width="0.0277%" height="15" fill="rgb(208,107,27)" fg:x="2360" fg:w="7"/><text x="9.5877%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="9.3377%" y="341" width="0.0277%" height="15" fill="rgb(205,136,37)" fg:x="2360" fg:w="7"/><text x="9.5877%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="9.3377%" y="325" width="0.0277%" height="15" fill="rgb(250,205,27)" fg:x="2360" fg:w="7"/><text x="9.5877%" y="335.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.3535%" y="309" width="0.0119%" height="15" fill="rgb(210,80,43)" fg:x="2364" fg:w="3"/><text x="9.6035%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.3535%" y="293" width="0.0119%" height="15" fill="rgb(247,160,36)" fg:x="2364" fg:w="3"/><text x="9.6035%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.3654%" y="293" width="0.0119%" height="15" fill="rgb(234,13,49)" fg:x="2367" fg:w="3"/><text x="9.6154%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="9.3377%" y="405" width="0.0554%" height="15" fill="rgb(234,122,0)" fg:x="2360" fg:w="14"/><text x="9.5877%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="9.3377%" y="389" width="0.0554%" height="15" fill="rgb(207,146,38)" fg:x="2360" fg:w="14"/><text x="9.5877%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="9.3377%" y="373" width="0.0554%" height="15" fill="rgb(207,177,25)" fg:x="2360" fg:w="14"/><text x="9.5877%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="9.3654%" y="357" width="0.0277%" height="15" fill="rgb(211,178,42)" fg:x="2367" fg:w="7"/><text x="9.6154%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.3654%" y="341" width="0.0277%" height="15" fill="rgb(230,69,54)" fg:x="2367" fg:w="7"/><text x="9.6154%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="9.3654%" y="325" width="0.0277%" height="15" fill="rgb(214,135,41)" fg:x="2367" fg:w="7"/><text x="9.6154%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="9.3654%" y="309" width="0.0277%" height="15" fill="rgb(237,67,25)" fg:x="2367" fg:w="7"/><text x="9.6154%" y="319.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="9.3772%" y="293" width="0.0158%" height="15" fill="rgb(222,189,50)" fg:x="2370" fg:w="4"/><text x="9.6272%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.3772%" y="277" width="0.0158%" height="15" fill="rgb(245,148,34)" fg:x="2370" fg:w="4"/><text x="9.6272%" y="287.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.3812%" y="261" width="0.0119%" height="15" fill="rgb(222,29,6)" fg:x="2371" fg:w="3"/><text x="9.6312%" y="271.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.3812%" y="245" width="0.0119%" height="15" fill="rgb(221,189,43)" fg:x="2371" fg:w="3"/><text x="9.6312%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4010%" y="229" width="0.0119%" height="15" fill="rgb(207,36,27)" fg:x="2376" fg:w="3"/><text x="9.6510%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.4010%" y="277" width="0.0237%" height="15" fill="rgb(217,90,24)" fg:x="2376" fg:w="6"/><text x="9.6510%" y="287.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.4010%" y="261" width="0.0237%" height="15" fill="rgb(224,66,35)" fg:x="2376" fg:w="6"/><text x="9.6510%" y="271.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.4010%" y="245" width="0.0237%" height="15" fill="rgb(221,13,50)" fg:x="2376" fg:w="6"/><text x="9.6510%" y="255.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.4128%" y="229" width="0.0119%" height="15" fill="rgb(236,68,49)" fg:x="2379" fg:w="3"/><text x="9.6628%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4128%" y="213" width="0.0119%" height="15" fill="rgb(229,146,28)" fg:x="2379" fg:w="3"/><text x="9.6628%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4247%" y="213" width="0.0119%" height="15" fill="rgb(225,31,38)" fg:x="2382" fg:w="3"/><text x="9.6747%" y="223.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (76 samples, 0.30%)</title><rect x="9.1438%" y="613" width="0.3007%" height="15" fill="rgb(250,208,3)" fg:x="2311" fg:w="76"/><text x="9.3938%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (76 samples, 0.30%)</title><rect x="9.1438%" y="597" width="0.3007%" height="15" fill="rgb(246,54,23)" fg:x="2311" fg:w="76"/><text x="9.3938%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (71 samples, 0.28%)</title><rect x="9.1636%" y="581" width="0.2809%" height="15" fill="rgb(243,76,11)" fg:x="2316" fg:w="71"/><text x="9.4136%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (71 samples, 0.28%)</title><rect x="9.1636%" y="565" width="0.2809%" height="15" fill="rgb(245,21,50)" fg:x="2316" fg:w="71"/><text x="9.4136%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (49 samples, 0.19%)</title><rect x="9.2506%" y="549" width="0.1939%" height="15" fill="rgb(228,9,43)" fg:x="2338" fg:w="49"/><text x="9.5006%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (49 samples, 0.19%)</title><rect x="9.2506%" y="533" width="0.1939%" height="15" fill="rgb(208,100,47)" fg:x="2338" fg:w="49"/><text x="9.5006%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.19%)</title><rect x="9.2506%" y="517" width="0.1939%" height="15" fill="rgb(232,26,8)" fg:x="2338" fg:w="49"/><text x="9.5006%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="9.2506%" y="501" width="0.1939%" height="15" fill="rgb(216,166,38)" fg:x="2338" fg:w="49"/><text x="9.5006%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="9.2506%" y="485" width="0.1939%" height="15" fill="rgb(251,202,51)" fg:x="2338" fg:w="49"/><text x="9.5006%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="9.3377%" y="469" width="0.1068%" height="15" fill="rgb(254,216,34)" fg:x="2360" fg:w="27"/><text x="9.5877%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="9.3377%" y="453" width="0.1068%" height="15" fill="rgb(251,32,27)" fg:x="2360" fg:w="27"/><text x="9.5877%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="9.3377%" y="437" width="0.1068%" height="15" fill="rgb(208,127,28)" fg:x="2360" fg:w="27"/><text x="9.5877%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="9.3377%" y="421" width="0.1068%" height="15" fill="rgb(224,137,22)" fg:x="2360" fg:w="27"/><text x="9.5877%" y="431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="9.3931%" y="405" width="0.0514%" height="15" fill="rgb(254,70,32)" fg:x="2374" fg:w="13"/><text x="9.6431%" y="415.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="9.3931%" y="389" width="0.0514%" height="15" fill="rgb(229,75,37)" fg:x="2374" fg:w="13"/><text x="9.6431%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="9.3931%" y="373" width="0.0514%" height="15" fill="rgb(252,64,23)" fg:x="2374" fg:w="13"/><text x="9.6431%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="9.4010%" y="357" width="0.0435%" height="15" fill="rgb(232,162,48)" fg:x="2376" fg:w="11"/><text x="9.6510%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="9.4010%" y="341" width="0.0435%" height="15" fill="rgb(246,160,12)" fg:x="2376" fg:w="11"/><text x="9.6510%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="9.4010%" y="325" width="0.0435%" height="15" fill="rgb(247,166,0)" fg:x="2376" fg:w="11"/><text x="9.6510%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="9.4010%" y="309" width="0.0435%" height="15" fill="rgb(249,219,21)" fg:x="2376" fg:w="11"/><text x="9.6510%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="9.4010%" y="293" width="0.0435%" height="15" fill="rgb(205,209,3)" fg:x="2376" fg:w="11"/><text x="9.6510%" y="303.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.4247%" y="277" width="0.0198%" height="15" fill="rgb(243,44,1)" fg:x="2382" fg:w="5"/><text x="9.6747%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.4247%" y="261" width="0.0198%" height="15" fill="rgb(206,159,16)" fg:x="2382" fg:w="5"/><text x="9.6747%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.4247%" y="245" width="0.0198%" height="15" fill="rgb(244,77,30)" fg:x="2382" fg:w="5"/><text x="9.6747%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.4247%" y="229" width="0.0198%" height="15" fill="rgb(218,69,12)" fg:x="2382" fg:w="5"/><text x="9.6747%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4524%" y="389" width="0.0119%" height="15" fill="rgb(212,87,7)" fg:x="2389" fg:w="3"/><text x="9.7024%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.4524%" y="437" width="0.0237%" height="15" fill="rgb(245,114,25)" fg:x="2389" fg:w="6"/><text x="9.7024%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.4524%" y="421" width="0.0237%" height="15" fill="rgb(210,61,42)" fg:x="2389" fg:w="6"/><text x="9.7024%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.4524%" y="405" width="0.0237%" height="15" fill="rgb(211,52,33)" fg:x="2389" fg:w="6"/><text x="9.7024%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.4643%" y="389" width="0.0119%" height="15" fill="rgb(234,58,33)" fg:x="2392" fg:w="3"/><text x="9.7143%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4643%" y="373" width="0.0119%" height="15" fill="rgb(220,115,36)" fg:x="2392" fg:w="3"/><text x="9.7143%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4761%" y="373" width="0.0119%" height="15" fill="rgb(243,153,54)" fg:x="2395" fg:w="3"/><text x="9.7261%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="9.4524%" y="485" width="0.0475%" height="15" fill="rgb(251,47,18)" fg:x="2389" fg:w="12"/><text x="9.7024%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="9.4524%" y="469" width="0.0475%" height="15" fill="rgb(242,102,42)" fg:x="2389" fg:w="12"/><text x="9.7024%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="9.4524%" y="453" width="0.0475%" height="15" fill="rgb(234,31,38)" fg:x="2389" fg:w="12"/><text x="9.7024%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.4761%" y="437" width="0.0237%" height="15" fill="rgb(221,117,51)" fg:x="2395" fg:w="6"/><text x="9.7261%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.4761%" y="421" width="0.0237%" height="15" fill="rgb(212,20,18)" fg:x="2395" fg:w="6"/><text x="9.7261%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.4761%" y="405" width="0.0237%" height="15" fill="rgb(245,133,36)" fg:x="2395" fg:w="6"/><text x="9.7261%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.4761%" y="389" width="0.0237%" height="15" fill="rgb(212,6,19)" fg:x="2395" fg:w="6"/><text x="9.7261%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.4880%" y="373" width="0.0119%" height="15" fill="rgb(218,1,36)" fg:x="2398" fg:w="3"/><text x="9.7380%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4880%" y="357" width="0.0119%" height="15" fill="rgb(246,84,54)" fg:x="2398" fg:w="3"/><text x="9.7380%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.4999%" y="373" width="0.0119%" height="15" fill="rgb(242,110,6)" fg:x="2401" fg:w="3"/><text x="9.7499%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.4999%" y="421" width="0.0237%" height="15" fill="rgb(214,47,5)" fg:x="2401" fg:w="6"/><text x="9.7499%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.4999%" y="405" width="0.0237%" height="15" fill="rgb(218,159,25)" fg:x="2401" fg:w="6"/><text x="9.7499%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.4999%" y="389" width="0.0237%" height="15" fill="rgb(215,211,28)" fg:x="2401" fg:w="6"/><text x="9.7499%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.5118%" y="373" width="0.0119%" height="15" fill="rgb(238,59,32)" fg:x="2404" fg:w="3"/><text x="9.7618%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5118%" y="357" width="0.0119%" height="15" fill="rgb(226,82,3)" fg:x="2404" fg:w="3"/><text x="9.7618%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5236%" y="357" width="0.0119%" height="15" fill="rgb(240,164,32)" fg:x="2407" fg:w="3"/><text x="9.7736%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="9.4445%" y="533" width="0.1029%" height="15" fill="rgb(232,46,7)" fg:x="2387" fg:w="26"/><text x="9.6945%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="9.4524%" y="517" width="0.0950%" height="15" fill="rgb(229,129,53)" fg:x="2389" fg:w="24"/><text x="9.7024%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="9.4524%" y="501" width="0.0950%" height="15" fill="rgb(234,188,29)" fg:x="2389" fg:w="24"/><text x="9.7024%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="9.4999%" y="485" width="0.0475%" height="15" fill="rgb(246,141,4)" fg:x="2401" fg:w="12"/><text x="9.7499%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="9.4999%" y="469" width="0.0475%" height="15" fill="rgb(229,23,39)" fg:x="2401" fg:w="12"/><text x="9.7499%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="9.4999%" y="453" width="0.0475%" height="15" fill="rgb(206,12,3)" fg:x="2401" fg:w="12"/><text x="9.7499%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="9.4999%" y="437" width="0.0475%" height="15" fill="rgb(252,226,20)" fg:x="2401" fg:w="12"/><text x="9.7499%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.5236%" y="421" width="0.0237%" height="15" fill="rgb(216,123,35)" fg:x="2407" fg:w="6"/><text x="9.7736%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.5236%" y="405" width="0.0237%" height="15" fill="rgb(212,68,40)" fg:x="2407" fg:w="6"/><text x="9.7736%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.5236%" y="389" width="0.0237%" height="15" fill="rgb(254,125,32)" fg:x="2407" fg:w="6"/><text x="9.7736%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.5236%" y="373" width="0.0237%" height="15" fill="rgb(253,97,22)" fg:x="2407" fg:w="6"/><text x="9.7736%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.5355%" y="357" width="0.0119%" height="15" fill="rgb(241,101,14)" fg:x="2410" fg:w="3"/><text x="9.7855%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5355%" y="341" width="0.0119%" height="15" fill="rgb(238,103,29)" fg:x="2410" fg:w="3"/><text x="9.7855%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5553%" y="373" width="0.0119%" height="15" fill="rgb(233,195,47)" fg:x="2415" fg:w="3"/><text x="9.8053%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.5553%" y="421" width="0.0237%" height="15" fill="rgb(246,218,30)" fg:x="2415" fg:w="6"/><text x="9.8053%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="9.5553%" y="405" width="0.0237%" height="15" fill="rgb(219,145,47)" fg:x="2415" fg:w="6"/><text x="9.8053%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="9.5553%" y="389" width="0.0237%" height="15" fill="rgb(243,12,26)" fg:x="2415" fg:w="6"/><text x="9.8053%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.5671%" y="373" width="0.0119%" height="15" fill="rgb(214,87,16)" fg:x="2418" fg:w="3"/><text x="9.8171%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5671%" y="357" width="0.0119%" height="15" fill="rgb(208,99,42)" fg:x="2418" fg:w="3"/><text x="9.8171%" y="367.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.5671%" y="341" width="0.0119%" height="15" fill="rgb(253,99,2)" fg:x="2418" fg:w="3"/><text x="9.8171%" y="351.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.5671%" y="325" width="0.0119%" height="15" fill="rgb(220,168,23)" fg:x="2418" fg:w="3"/><text x="9.8171%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5790%" y="357" width="0.0119%" height="15" fill="rgb(242,38,24)" fg:x="2421" fg:w="3"/><text x="9.8290%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="9.5553%" y="469" width="0.0435%" height="15" fill="rgb(225,182,9)" fg:x="2415" fg:w="11"/><text x="9.8053%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="9.5553%" y="453" width="0.0435%" height="15" fill="rgb(243,178,37)" fg:x="2415" fg:w="11"/><text x="9.8053%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="9.5553%" y="437" width="0.0435%" height="15" fill="rgb(232,139,19)" fg:x="2415" fg:w="11"/><text x="9.8053%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.5790%" y="421" width="0.0198%" height="15" fill="rgb(225,201,24)" fg:x="2421" fg:w="5"/><text x="9.8290%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.5790%" y="405" width="0.0198%" height="15" fill="rgb(221,47,46)" fg:x="2421" fg:w="5"/><text x="9.8290%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.5790%" y="389" width="0.0198%" height="15" fill="rgb(249,23,13)" fg:x="2421" fg:w="5"/><text x="9.8290%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.5790%" y="373" width="0.0198%" height="15" fill="rgb(219,9,5)" fg:x="2421" fg:w="5"/><text x="9.8290%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.5988%" y="293" width="0.0119%" height="15" fill="rgb(254,171,16)" fg:x="2426" fg:w="3"/><text x="9.8488%" y="303.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.5988%" y="277" width="0.0119%" height="15" fill="rgb(230,171,20)" fg:x="2426" fg:w="3"/><text x="9.8488%" y="287.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (185 samples, 0.73%)</title><rect x="8.8866%" y="677" width="0.7320%" height="15" fill="rgb(210,71,41)" fg:x="2246" fg:w="185"/><text x="9.1366%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (185 samples, 0.73%)</title><rect x="8.8866%" y="661" width="0.7320%" height="15" fill="rgb(206,173,20)" fg:x="2246" fg:w="185"/><text x="9.1366%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (185 samples, 0.73%)</title><rect x="8.8866%" y="645" width="0.7320%" height="15" fill="rgb(233,88,34)" fg:x="2246" fg:w="185"/><text x="9.1366%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (185 samples, 0.73%)</title><rect x="8.8866%" y="629" width="0.7320%" height="15" fill="rgb(223,209,46)" fg:x="2246" fg:w="185"/><text x="9.1366%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (44 samples, 0.17%)</title><rect x="9.4445%" y="613" width="0.1741%" height="15" fill="rgb(250,43,18)" fg:x="2387" fg:w="44"/><text x="9.6945%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (44 samples, 0.17%)</title><rect x="9.4445%" y="597" width="0.1741%" height="15" fill="rgb(208,13,10)" fg:x="2387" fg:w="44"/><text x="9.6945%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (44 samples, 0.17%)</title><rect x="9.4445%" y="581" width="0.1741%" height="15" fill="rgb(212,200,36)" fg:x="2387" fg:w="44"/><text x="9.6945%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (44 samples, 0.17%)</title><rect x="9.4445%" y="565" width="0.1741%" height="15" fill="rgb(225,90,30)" fg:x="2387" fg:w="44"/><text x="9.6945%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (44 samples, 0.17%)</title><rect x="9.4445%" y="549" width="0.1741%" height="15" fill="rgb(236,182,39)" fg:x="2387" fg:w="44"/><text x="9.6945%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="9.5474%" y="533" width="0.0712%" height="15" fill="rgb(212,144,35)" fg:x="2413" fg:w="18"/><text x="9.7974%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="9.5474%" y="517" width="0.0712%" height="15" fill="rgb(228,63,44)" fg:x="2413" fg:w="18"/><text x="9.7974%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="9.5553%" y="501" width="0.0633%" height="15" fill="rgb(228,109,6)" fg:x="2415" fg:w="16"/><text x="9.8053%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="9.5553%" y="485" width="0.0633%" height="15" fill="rgb(238,117,24)" fg:x="2415" fg:w="16"/><text x="9.8053%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="9.5988%" y="469" width="0.0198%" height="15" fill="rgb(242,26,26)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="9.5988%" y="453" width="0.0198%" height="15" fill="rgb(221,92,48)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.5988%" y="437" width="0.0198%" height="15" fill="rgb(209,209,32)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.5988%" y="421" width="0.0198%" height="15" fill="rgb(221,70,22)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.5988%" y="405" width="0.0198%" height="15" fill="rgb(248,145,5)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.5988%" y="389" width="0.0198%" height="15" fill="rgb(226,116,26)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.5988%" y="373" width="0.0198%" height="15" fill="rgb(244,5,17)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.5988%" y="357" width="0.0198%" height="15" fill="rgb(252,159,33)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.5988%" y="341" width="0.0198%" height="15" fill="rgb(206,71,0)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.5988%" y="325" width="0.0198%" height="15" fill="rgb(233,118,54)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.5988%" y="309" width="0.0198%" height="15" fill="rgb(234,83,48)" fg:x="2426" fg:w="5"/><text x="9.8488%" y="319.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.6423%" y="629" width="0.0158%" height="15" fill="rgb(228,3,54)" fg:x="2437" fg:w="4"/><text x="9.8923%" y="639.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="9.6423%" y="613" width="0.0158%" height="15" fill="rgb(226,155,13)" fg:x="2437" fg:w="4"/><text x="9.8923%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.6581%" y="453" width="0.0119%" height="15" fill="rgb(241,28,37)" fg:x="2441" fg:w="3"/><text x="9.9081%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="9.6581%" y="501" width="0.0356%" height="15" fill="rgb(233,93,10)" fg:x="2441" fg:w="9"/><text x="9.9081%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="9.6581%" y="485" width="0.0356%" height="15" fill="rgb(225,113,19)" fg:x="2441" fg:w="9"/><text x="9.9081%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="9.6581%" y="469" width="0.0356%" height="15" fill="rgb(241,2,18)" fg:x="2441" fg:w="9"/><text x="9.9081%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.6700%" y="453" width="0.0237%" height="15" fill="rgb(228,207,21)" fg:x="2444" fg:w="6"/><text x="9.9200%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.6700%" y="437" width="0.0237%" height="15" fill="rgb(213,211,35)" fg:x="2444" fg:w="6"/><text x="9.9200%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.6779%" y="421" width="0.0158%" height="15" fill="rgb(209,83,10)" fg:x="2446" fg:w="4"/><text x="9.9279%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.6779%" y="405" width="0.0158%" height="15" fill="rgb(209,164,1)" fg:x="2446" fg:w="4"/><text x="9.9279%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.6977%" y="389" width="0.0119%" height="15" fill="rgb(213,184,43)" fg:x="2451" fg:w="3"/><text x="9.9477%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.6938%" y="437" width="0.0237%" height="15" fill="rgb(231,61,34)" fg:x="2450" fg:w="6"/><text x="9.9438%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.6977%" y="421" width="0.0198%" height="15" fill="rgb(235,75,3)" fg:x="2451" fg:w="5"/><text x="9.9477%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.6977%" y="405" width="0.0198%" height="15" fill="rgb(220,106,47)" fg:x="2451" fg:w="5"/><text x="9.9477%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="9.6581%" y="549" width="0.0831%" height="15" fill="rgb(210,196,33)" fg:x="2441" fg:w="21"/><text x="9.9081%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="9.6581%" y="533" width="0.0831%" height="15" fill="rgb(229,154,42)" fg:x="2441" fg:w="21"/><text x="9.9081%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="9.6581%" y="517" width="0.0831%" height="15" fill="rgb(228,114,26)" fg:x="2441" fg:w="21"/><text x="9.9081%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="9.6938%" y="501" width="0.0475%" height="15" fill="rgb(208,144,1)" fg:x="2450" fg:w="12"/><text x="9.9438%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="9.6938%" y="485" width="0.0475%" height="15" fill="rgb(239,112,37)" fg:x="2450" fg:w="12"/><text x="9.9438%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="9.6938%" y="469" width="0.0475%" height="15" fill="rgb(210,96,50)" fg:x="2450" fg:w="12"/><text x="9.9438%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="9.6938%" y="453" width="0.0475%" height="15" fill="rgb(222,178,2)" fg:x="2450" fg:w="12"/><text x="9.9438%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="9.7175%" y="437" width="0.0237%" height="15" fill="rgb(226,74,18)" fg:x="2456" fg:w="6"/><text x="9.9675%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.7175%" y="421" width="0.0237%" height="15" fill="rgb(225,67,54)" fg:x="2456" fg:w="6"/><text x="9.9675%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.7254%" y="405" width="0.0158%" height="15" fill="rgb(251,92,32)" fg:x="2458" fg:w="4"/><text x="9.9754%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.7254%" y="389" width="0.0158%" height="15" fill="rgb(228,149,22)" fg:x="2458" fg:w="4"/><text x="9.9754%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.7412%" y="437" width="0.0237%" height="15" fill="rgb(243,54,13)" fg:x="2462" fg:w="6"/><text x="9.9912%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.7491%" y="421" width="0.0158%" height="15" fill="rgb(243,180,28)" fg:x="2464" fg:w="4"/><text x="9.9991%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.7491%" y="405" width="0.0158%" height="15" fill="rgb(208,167,24)" fg:x="2464" fg:w="4"/><text x="9.9991%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.7729%" y="373" width="0.0119%" height="15" fill="rgb(245,73,45)" fg:x="2470" fg:w="3"/><text x="10.0229%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="9.7412%" y="485" width="0.0514%" height="15" fill="rgb(237,203,48)" fg:x="2462" fg:w="13"/><text x="9.9912%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="9.7412%" y="469" width="0.0514%" height="15" fill="rgb(211,197,16)" fg:x="2462" fg:w="13"/><text x="9.9912%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="9.7412%" y="453" width="0.0514%" height="15" fill="rgb(243,99,51)" fg:x="2462" fg:w="13"/><text x="9.9912%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="9.7650%" y="437" width="0.0277%" height="15" fill="rgb(215,123,29)" fg:x="2468" fg:w="7"/><text x="10.0150%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.7650%" y="421" width="0.0277%" height="15" fill="rgb(239,186,37)" fg:x="2468" fg:w="7"/><text x="10.0150%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.7729%" y="405" width="0.0198%" height="15" fill="rgb(252,136,39)" fg:x="2470" fg:w="5"/><text x="10.0229%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.7729%" y="389" width="0.0198%" height="15" fill="rgb(223,213,32)" fg:x="2470" fg:w="5"/><text x="10.0229%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.7927%" y="421" width="0.0277%" height="15" fill="rgb(233,115,5)" fg:x="2475" fg:w="7"/><text x="10.0427%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.8045%" y="405" width="0.0158%" height="15" fill="rgb(207,226,44)" fg:x="2478" fg:w="4"/><text x="10.0545%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.8045%" y="389" width="0.0158%" height="15" fill="rgb(208,126,0)" fg:x="2478" fg:w="4"/><text x="10.0545%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.8204%" y="421" width="0.0198%" height="15" fill="rgb(244,66,21)" fg:x="2482" fg:w="5"/><text x="10.0704%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.8204%" y="405" width="0.0198%" height="15" fill="rgb(222,97,12)" fg:x="2482" fg:w="5"/><text x="10.0704%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.8204%" y="389" width="0.0198%" height="15" fill="rgb(219,213,19)" fg:x="2482" fg:w="5"/><text x="10.0704%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.8204%" y="373" width="0.0198%" height="15" fill="rgb(252,169,30)" fg:x="2482" fg:w="5"/><text x="10.0704%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.8283%" y="357" width="0.0119%" height="15" fill="rgb(206,32,51)" fg:x="2484" fg:w="3"/><text x="10.0783%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.8283%" y="341" width="0.0119%" height="15" fill="rgb(250,172,42)" fg:x="2484" fg:w="3"/><text x="10.0783%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.8402%" y="341" width="0.0158%" height="15" fill="rgb(209,34,43)" fg:x="2487" fg:w="4"/><text x="10.0902%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.8402%" y="325" width="0.0158%" height="15" fill="rgb(223,11,35)" fg:x="2487" fg:w="4"/><text x="10.0902%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.8402%" y="309" width="0.0158%" height="15" fill="rgb(251,219,26)" fg:x="2487" fg:w="4"/><text x="10.0902%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.21%)</title><rect x="9.6581%" y="597" width="0.2097%" height="15" fill="rgb(231,119,3)" fg:x="2441" fg:w="53"/><text x="9.9081%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.21%)</title><rect x="9.6581%" y="581" width="0.2097%" height="15" fill="rgb(216,97,11)" fg:x="2441" fg:w="53"/><text x="9.9081%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (53 samples, 0.21%)</title><rect x="9.6581%" y="565" width="0.2097%" height="15" fill="rgb(223,59,9)" fg:x="2441" fg:w="53"/><text x="9.9081%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.13%)</title><rect x="9.7412%" y="549" width="0.1266%" height="15" fill="rgb(233,93,31)" fg:x="2462" fg:w="32"/><text x="9.9912%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.13%)</title><rect x="9.7412%" y="533" width="0.1266%" height="15" fill="rgb(239,81,33)" fg:x="2462" fg:w="32"/><text x="9.9912%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.13%)</title><rect x="9.7412%" y="517" width="0.1266%" height="15" fill="rgb(213,120,34)" fg:x="2462" fg:w="32"/><text x="9.9912%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (32 samples, 0.13%)</title><rect x="9.7412%" y="501" width="0.1266%" height="15" fill="rgb(243,49,53)" fg:x="2462" fg:w="32"/><text x="9.9912%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.08%)</title><rect x="9.7927%" y="485" width="0.0752%" height="15" fill="rgb(247,216,33)" fg:x="2475" fg:w="19"/><text x="10.0427%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="9.7927%" y="469" width="0.0752%" height="15" fill="rgb(226,26,14)" fg:x="2475" fg:w="19"/><text x="10.0427%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="9.7927%" y="453" width="0.0752%" height="15" fill="rgb(215,49,53)" fg:x="2475" fg:w="19"/><text x="10.0427%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="9.7927%" y="437" width="0.0752%" height="15" fill="rgb(245,162,40)" fg:x="2475" fg:w="19"/><text x="10.0427%" y="447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="9.8402%" y="421" width="0.0277%" height="15" fill="rgb(229,68,17)" fg:x="2487" fg:w="7"/><text x="10.0902%" y="431.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="9.8402%" y="405" width="0.0277%" height="15" fill="rgb(213,182,10)" fg:x="2487" fg:w="7"/><text x="10.0902%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.8402%" y="389" width="0.0277%" height="15" fill="rgb(245,125,30)" fg:x="2487" fg:w="7"/><text x="10.0902%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="9.8402%" y="373" width="0.0277%" height="15" fill="rgb(232,202,2)" fg:x="2487" fg:w="7"/><text x="10.0902%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="9.8402%" y="357" width="0.0277%" height="15" fill="rgb(237,140,51)" fg:x="2487" fg:w="7"/><text x="10.0902%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.8560%" y="341" width="0.0119%" height="15" fill="rgb(236,157,25)" fg:x="2491" fg:w="3"/><text x="10.1060%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.8560%" y="325" width="0.0119%" height="15" fill="rgb(219,209,0)" fg:x="2491" fg:w="3"/><text x="10.1060%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.8560%" y="309" width="0.0119%" height="15" fill="rgb(240,116,54)" fg:x="2491" fg:w="3"/><text x="10.1060%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="9.8560%" y="293" width="0.0119%" height="15" fill="rgb(216,10,36)" fg:x="2491" fg:w="3"/><text x="10.1060%" y="303.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="9.8758%" y="501" width="0.0198%" height="15" fill="rgb(222,72,44)" fg:x="2496" fg:w="5"/><text x="10.1258%" y="511.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.8837%" y="485" width="0.0119%" height="15" fill="rgb(232,159,9)" fg:x="2498" fg:w="3"/><text x="10.1337%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.8955%" y="421" width="0.0158%" height="15" fill="rgb(210,39,32)" fg:x="2501" fg:w="4"/><text x="10.1455%" y="431.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="9.8995%" y="405" width="0.0119%" height="15" fill="rgb(216,194,45)" fg:x="2502" fg:w="3"/><text x="10.1495%" y="415.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="9.8995%" y="389" width="0.0119%" height="15" fill="rgb(218,18,35)" fg:x="2502" fg:w="3"/><text x="10.1495%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="9.8955%" y="469" width="0.0356%" height="15" fill="rgb(207,83,51)" fg:x="2501" fg:w="9"/><text x="10.1455%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="9.8955%" y="453" width="0.0356%" height="15" fill="rgb(225,63,43)" fg:x="2501" fg:w="9"/><text x="10.1455%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="9.8955%" y="437" width="0.0356%" height="15" fill="rgb(207,57,36)" fg:x="2501" fg:w="9"/><text x="10.1455%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.9114%" y="421" width="0.0198%" height="15" fill="rgb(216,99,33)" fg:x="2505" fg:w="5"/><text x="10.1614%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.9114%" y="405" width="0.0198%" height="15" fill="rgb(225,42,16)" fg:x="2505" fg:w="5"/><text x="10.1614%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="9.9312%" y="469" width="0.0198%" height="15" fill="rgb(220,201,45)" fg:x="2510" fg:w="5"/><text x="10.1812%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.9312%" y="453" width="0.0198%" height="15" fill="rgb(225,33,4)" fg:x="2510" fg:w="5"/><text x="10.1812%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.9312%" y="437" width="0.0198%" height="15" fill="rgb(224,33,50)" fg:x="2510" fg:w="5"/><text x="10.1812%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.9312%" y="421" width="0.0198%" height="15" fill="rgb(246,198,51)" fg:x="2510" fg:w="5"/><text x="10.1812%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.9391%" y="405" width="0.0119%" height="15" fill="rgb(205,22,4)" fg:x="2512" fg:w="3"/><text x="10.1891%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.9391%" y="389" width="0.0119%" height="15" fill="rgb(206,3,8)" fg:x="2512" fg:w="3"/><text x="10.1891%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="9.8678%" y="517" width="0.1068%" height="15" fill="rgb(251,23,15)" fg:x="2494" fg:w="27"/><text x="10.1178%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="9.8955%" y="501" width="0.0791%" height="15" fill="rgb(252,88,28)" fg:x="2501" fg:w="20"/><text x="10.1455%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="9.8955%" y="485" width="0.0791%" height="15" fill="rgb(212,127,14)" fg:x="2501" fg:w="20"/><text x="10.1455%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="9.9509%" y="469" width="0.0237%" height="15" fill="rgb(247,145,37)" fg:x="2515" fg:w="6"/><text x="10.2009%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="9.9509%" y="453" width="0.0237%" height="15" fill="rgb(209,117,53)" fg:x="2515" fg:w="6"/><text x="10.2009%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="9.9509%" y="437" width="0.0237%" height="15" fill="rgb(212,90,42)" fg:x="2515" fg:w="6"/><text x="10.2009%" y="447.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="9.9589%" y="421" width="0.0158%" height="15" fill="rgb(218,164,37)" fg:x="2517" fg:w="4"/><text x="10.2089%" y="431.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="9.9589%" y="405" width="0.0158%" height="15" fill="rgb(246,65,34)" fg:x="2517" fg:w="4"/><text x="10.2089%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.9984%" y="453" width="0.0158%" height="15" fill="rgb(231,100,33)" fg:x="2527" fg:w="4"/><text x="10.2484%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.9984%" y="437" width="0.0158%" height="15" fill="rgb(228,126,14)" fg:x="2527" fg:w="4"/><text x="10.2484%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.9984%" y="421" width="0.0158%" height="15" fill="rgb(215,173,21)" fg:x="2527" fg:w="4"/><text x="10.2484%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (791 samples, 3.13%)</title><rect x="6.9004%" y="805" width="3.1297%" height="15" fill="rgb(210,6,40)" fg:x="1744" fg:w="791"/><text x="7.1504%" y="815.50">ray..</text></g><g><title>rayon_core::registry::in_worker (791 samples, 3.13%)</title><rect x="6.9004%" y="789" width="3.1297%" height="15" fill="rgb(212,48,18)" fg:x="1744" fg:w="791"/><text x="7.1504%" y="799.50">ray..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (791 samples, 3.13%)</title><rect x="6.9004%" y="773" width="3.1297%" height="15" fill="rgb(230,214,11)" fg:x="1744" fg:w="791"/><text x="7.1504%" y="783.50">_ZN..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (570 samples, 2.26%)</title><rect x="7.7748%" y="757" width="2.2553%" height="15" fill="rgb(254,105,39)" fg:x="1965" fg:w="570"/><text x="8.0248%" y="767.50">r..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (570 samples, 2.26%)</title><rect x="7.7748%" y="741" width="2.2553%" height="15" fill="rgb(245,158,5)" fg:x="1965" fg:w="570"/><text x="8.0248%" y="751.50">&lt;..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (570 samples, 2.26%)</title><rect x="7.7748%" y="725" width="2.2553%" height="15" fill="rgb(249,208,11)" fg:x="1965" fg:w="570"/><text x="8.0248%" y="735.50">r..</text></g><g><title>rayon_core::registry::in_worker (567 samples, 2.24%)</title><rect x="7.7867%" y="709" width="2.2434%" height="15" fill="rgb(210,39,28)" fg:x="1968" fg:w="567"/><text x="8.0367%" y="719.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (567 samples, 2.24%)</title><rect x="7.7867%" y="693" width="2.2434%" height="15" fill="rgb(211,56,53)" fg:x="1968" fg:w="567"/><text x="8.0367%" y="703.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (104 samples, 0.41%)</title><rect x="9.6186%" y="677" width="0.4115%" height="15" fill="rgb(226,201,30)" fg:x="2431" fg:w="104"/><text x="9.8686%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (104 samples, 0.41%)</title><rect x="9.6186%" y="661" width="0.4115%" height="15" fill="rgb(239,101,34)" fg:x="2431" fg:w="104"/><text x="9.8686%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104 samples, 0.41%)</title><rect x="9.6186%" y="645" width="0.4115%" height="15" fill="rgb(226,209,5)" fg:x="2431" fg:w="104"/><text x="9.8686%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (94 samples, 0.37%)</title><rect x="9.6581%" y="629" width="0.3719%" height="15" fill="rgb(250,105,47)" fg:x="2441" fg:w="94"/><text x="9.9081%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (94 samples, 0.37%)</title><rect x="9.6581%" y="613" width="0.3719%" height="15" fill="rgb(230,72,3)" fg:x="2441" fg:w="94"/><text x="9.9081%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.16%)</title><rect x="9.8678%" y="597" width="0.1622%" height="15" fill="rgb(232,218,39)" fg:x="2494" fg:w="41"/><text x="10.1178%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (41 samples, 0.16%)</title><rect x="9.8678%" y="581" width="0.1622%" height="15" fill="rgb(248,166,6)" fg:x="2494" fg:w="41"/><text x="10.1178%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.16%)</title><rect x="9.8678%" y="565" width="0.1622%" height="15" fill="rgb(247,89,20)" fg:x="2494" fg:w="41"/><text x="10.1178%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.16%)</title><rect x="9.8678%" y="549" width="0.1622%" height="15" fill="rgb(248,130,54)" fg:x="2494" fg:w="41"/><text x="10.1178%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (41 samples, 0.16%)</title><rect x="9.8678%" y="533" width="0.1622%" height="15" fill="rgb(234,196,4)" fg:x="2494" fg:w="41"/><text x="10.1178%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="9.9747%" y="517" width="0.0554%" height="15" fill="rgb(250,143,31)" fg:x="2521" fg:w="14"/><text x="10.2247%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="9.9747%" y="501" width="0.0554%" height="15" fill="rgb(211,110,34)" fg:x="2521" fg:w="14"/><text x="10.2247%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="9.9984%" y="485" width="0.0317%" height="15" fill="rgb(215,124,48)" fg:x="2527" fg:w="8"/><text x="10.2484%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="9.9984%" y="469" width="0.0317%" height="15" fill="rgb(216,46,13)" fg:x="2527" fg:w="8"/><text x="10.2484%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="10.0142%" y="453" width="0.0158%" height="15" fill="rgb(205,184,25)" fg:x="2531" fg:w="4"/><text x="10.2642%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.0142%" y="437" width="0.0158%" height="15" fill="rgb(228,1,10)" fg:x="2531" fg:w="4"/><text x="10.2642%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.0142%" y="421" width="0.0158%" height="15" fill="rgb(213,116,27)" fg:x="2531" fg:w="4"/><text x="10.2642%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.0142%" y="405" width="0.0158%" height="15" fill="rgb(241,95,50)" fg:x="2531" fg:w="4"/><text x="10.2642%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="10.0696%" y="581" width="0.0356%" height="15" fill="rgb(238,48,32)" fg:x="2545" fg:w="9"/><text x="10.3196%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="10.0776%" y="565" width="0.0277%" height="15" fill="rgb(235,113,49)" fg:x="2547" fg:w="7"/><text x="10.3276%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="10.0776%" y="549" width="0.0277%" height="15" fill="rgb(205,127,43)" fg:x="2547" fg:w="7"/><text x="10.3276%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="10.0855%" y="533" width="0.0198%" height="15" fill="rgb(250,162,2)" fg:x="2549" fg:w="5"/><text x="10.3355%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.0855%" y="517" width="0.0198%" height="15" fill="rgb(220,13,41)" fg:x="2549" fg:w="5"/><text x="10.3355%" y="527.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.0934%" y="501" width="0.0119%" height="15" fill="rgb(249,221,25)" fg:x="2551" fg:w="3"/><text x="10.3434%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.1132%" y="517" width="0.0158%" height="15" fill="rgb(215,208,19)" fg:x="2556" fg:w="4"/><text x="10.3632%" y="527.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.1171%" y="501" width="0.0119%" height="15" fill="rgb(236,175,2)" fg:x="2557" fg:w="3"/><text x="10.3671%" y="511.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="10.1171%" y="485" width="0.0119%" height="15" fill="rgb(241,52,2)" fg:x="2557" fg:w="3"/><text x="10.3671%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="10.0499%" y="629" width="0.1029%" height="15" fill="rgb(248,140,14)" fg:x="2540" fg:w="26"/><text x="10.2999%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="10.0696%" y="613" width="0.0831%" height="15" fill="rgb(253,22,42)" fg:x="2545" fg:w="21"/><text x="10.3196%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="10.0696%" y="597" width="0.0831%" height="15" fill="rgb(234,61,47)" fg:x="2545" fg:w="21"/><text x="10.3196%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="10.1052%" y="581" width="0.0475%" height="15" fill="rgb(208,226,15)" fg:x="2554" fg:w="12"/><text x="10.3552%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.1052%" y="565" width="0.0475%" height="15" fill="rgb(217,221,4)" fg:x="2554" fg:w="12"/><text x="10.3552%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.1132%" y="549" width="0.0396%" height="15" fill="rgb(212,174,34)" fg:x="2556" fg:w="10"/><text x="10.3632%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.1132%" y="533" width="0.0396%" height="15" fill="rgb(253,83,4)" fg:x="2556" fg:w="10"/><text x="10.3632%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="10.1290%" y="517" width="0.0237%" height="15" fill="rgb(250,195,49)" fg:x="2560" fg:w="6"/><text x="10.3790%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="10.1290%" y="501" width="0.0237%" height="15" fill="rgb(241,192,25)" fg:x="2560" fg:w="6"/><text x="10.3790%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.1844%" y="517" width="0.0198%" height="15" fill="rgb(208,124,10)" fg:x="2574" fg:w="5"/><text x="10.4344%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.1765%" y="565" width="0.0475%" height="15" fill="rgb(222,33,0)" fg:x="2572" fg:w="12"/><text x="10.4265%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.1844%" y="549" width="0.0396%" height="15" fill="rgb(234,209,28)" fg:x="2574" fg:w="10"/><text x="10.4344%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.1844%" y="533" width="0.0396%" height="15" fill="rgb(224,11,23)" fg:x="2574" fg:w="10"/><text x="10.4344%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="10.2042%" y="517" width="0.0198%" height="15" fill="rgb(232,99,1)" fg:x="2579" fg:w="5"/><text x="10.4542%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.2042%" y="501" width="0.0198%" height="15" fill="rgb(237,95,45)" fg:x="2579" fg:w="5"/><text x="10.4542%" y="511.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.2121%" y="485" width="0.0119%" height="15" fill="rgb(208,109,11)" fg:x="2581" fg:w="3"/><text x="10.4621%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.2279%" y="501" width="0.0198%" height="15" fill="rgb(216,190,48)" fg:x="2585" fg:w="5"/><text x="10.4779%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.23%)</title><rect x="10.0419%" y="677" width="0.2255%" height="15" fill="rgb(251,171,36)" fg:x="2538" fg:w="57"/><text x="10.2919%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="10.0499%" y="661" width="0.2176%" height="15" fill="rgb(230,62,22)" fg:x="2540" fg:w="55"/><text x="10.2999%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (55 samples, 0.22%)</title><rect x="10.0499%" y="645" width="0.2176%" height="15" fill="rgb(225,114,35)" fg:x="2540" fg:w="55"/><text x="10.2999%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.11%)</title><rect x="10.1527%" y="629" width="0.1147%" height="15" fill="rgb(215,118,42)" fg:x="2566" fg:w="29"/><text x="10.4027%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="10.1527%" y="613" width="0.1147%" height="15" fill="rgb(243,119,21)" fg:x="2566" fg:w="29"/><text x="10.4027%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="10.1765%" y="597" width="0.0910%" height="15" fill="rgb(252,177,53)" fg:x="2572" fg:w="23"/><text x="10.4265%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="10.1765%" y="581" width="0.0910%" height="15" fill="rgb(237,209,29)" fg:x="2572" fg:w="23"/><text x="10.4265%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="10.2239%" y="565" width="0.0435%" height="15" fill="rgb(212,65,23)" fg:x="2584" fg:w="11"/><text x="10.4739%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="10.2239%" y="549" width="0.0435%" height="15" fill="rgb(230,222,46)" fg:x="2584" fg:w="11"/><text x="10.4739%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.2279%" y="533" width="0.0396%" height="15" fill="rgb(215,135,32)" fg:x="2585" fg:w="10"/><text x="10.4779%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.2279%" y="517" width="0.0396%" height="15" fill="rgb(246,101,22)" fg:x="2585" fg:w="10"/><text x="10.4779%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="10.2477%" y="501" width="0.0198%" height="15" fill="rgb(206,107,13)" fg:x="2590" fg:w="5"/><text x="10.4977%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.2477%" y="485" width="0.0198%" height="15" fill="rgb(250,100,44)" fg:x="2590" fg:w="5"/><text x="10.4977%" y="495.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.2556%" y="469" width="0.0119%" height="15" fill="rgb(231,147,38)" fg:x="2592" fg:w="3"/><text x="10.5056%" y="479.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="10.2556%" y="453" width="0.0119%" height="15" fill="rgb(229,8,40)" fg:x="2592" fg:w="3"/><text x="10.5056%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="10.2754%" y="613" width="0.0317%" height="15" fill="rgb(221,135,30)" fg:x="2597" fg:w="8"/><text x="10.5254%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.2912%" y="597" width="0.0158%" height="15" fill="rgb(249,193,18)" fg:x="2601" fg:w="4"/><text x="10.5412%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.2912%" y="581" width="0.0158%" height="15" fill="rgb(209,133,39)" fg:x="2601" fg:w="4"/><text x="10.5412%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.3189%" y="581" width="0.0119%" height="15" fill="rgb(232,100,14)" fg:x="2608" fg:w="3"/><text x="10.5689%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="10.3189%" y="565" width="0.0119%" height="15" fill="rgb(224,185,1)" fg:x="2608" fg:w="3"/><text x="10.5689%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.08%)</title><rect x="10.2675%" y="677" width="0.0831%" height="15" fill="rgb(223,139,8)" fg:x="2595" fg:w="21"/><text x="10.5175%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="10.2675%" y="661" width="0.0831%" height="15" fill="rgb(232,213,38)" fg:x="2595" fg:w="21"/><text x="10.5175%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="10.2754%" y="645" width="0.0752%" height="15" fill="rgb(207,94,22)" fg:x="2597" fg:w="19"/><text x="10.5254%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="10.2754%" y="629" width="0.0752%" height="15" fill="rgb(219,183,54)" fg:x="2597" fg:w="19"/><text x="10.5254%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="10.3070%" y="613" width="0.0435%" height="15" fill="rgb(216,185,54)" fg:x="2605" fg:w="11"/><text x="10.5570%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="10.3070%" y="597" width="0.0435%" height="15" fill="rgb(254,217,39)" fg:x="2605" fg:w="11"/><text x="10.5570%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.3308%" y="581" width="0.0198%" height="15" fill="rgb(240,178,23)" fg:x="2611" fg:w="5"/><text x="10.5808%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.3308%" y="565" width="0.0198%" height="15" fill="rgb(218,11,47)" fg:x="2611" fg:w="5"/><text x="10.5808%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="10.3387%" y="549" width="0.0119%" height="15" fill="rgb(218,51,51)" fg:x="2613" fg:w="3"/><text x="10.5887%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.3387%" y="533" width="0.0119%" height="15" fill="rgb(238,126,27)" fg:x="2613" fg:w="3"/><text x="10.5887%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3506%" y="501" width="0.0158%" height="15" fill="rgb(249,202,22)" fg:x="2616" fg:w="4"/><text x="10.6006%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.3506%" y="485" width="0.0158%" height="15" fill="rgb(254,195,49)" fg:x="2616" fg:w="4"/><text x="10.6006%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.3506%" y="469" width="0.0158%" height="15" fill="rgb(208,123,14)" fg:x="2616" fg:w="4"/><text x="10.6006%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="10.3545%" y="453" width="0.0119%" height="15" fill="rgb(224,200,8)" fg:x="2617" fg:w="3"/><text x="10.6045%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.3545%" y="437" width="0.0119%" height="15" fill="rgb(217,61,36)" fg:x="2617" fg:w="3"/><text x="10.6045%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.3545%" y="421" width="0.0119%" height="15" fill="rgb(206,35,45)" fg:x="2617" fg:w="3"/><text x="10.6045%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="10.3545%" y="405" width="0.0119%" height="15" fill="rgb(217,65,33)" fg:x="2617" fg:w="3"/><text x="10.6045%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.3664%" y="437" width="0.0119%" height="15" fill="rgb(222,158,48)" fg:x="2620" fg:w="3"/><text x="10.6164%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.3664%" y="421" width="0.0119%" height="15" fill="rgb(254,2,54)" fg:x="2620" fg:w="3"/><text x="10.6164%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="10.3664%" y="405" width="0.0119%" height="15" fill="rgb(250,143,38)" fg:x="2620" fg:w="3"/><text x="10.6164%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="10.3506%" y="549" width="0.0435%" height="15" fill="rgb(248,25,0)" fg:x="2616" fg:w="11"/><text x="10.6006%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="10.3506%" y="533" width="0.0435%" height="15" fill="rgb(206,152,27)" fg:x="2616" fg:w="11"/><text x="10.6006%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="10.3506%" y="517" width="0.0435%" height="15" fill="rgb(240,77,30)" fg:x="2616" fg:w="11"/><text x="10.6006%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="10.3664%" y="501" width="0.0277%" height="15" fill="rgb(231,5,3)" fg:x="2620" fg:w="7"/><text x="10.6164%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.3664%" y="485" width="0.0277%" height="15" fill="rgb(207,226,32)" fg:x="2620" fg:w="7"/><text x="10.6164%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="10.3664%" y="469" width="0.0277%" height="15" fill="rgb(222,207,47)" fg:x="2620" fg:w="7"/><text x="10.6164%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="10.3664%" y="453" width="0.0277%" height="15" fill="rgb(229,115,45)" fg:x="2620" fg:w="7"/><text x="10.6164%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="10.3783%" y="437" width="0.0158%" height="15" fill="rgb(224,191,6)" fg:x="2623" fg:w="4"/><text x="10.6283%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.3783%" y="421" width="0.0158%" height="15" fill="rgb(230,227,24)" fg:x="2623" fg:w="4"/><text x="10.6283%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.3783%" y="405" width="0.0158%" height="15" fill="rgb(228,80,19)" fg:x="2623" fg:w="4"/><text x="10.6283%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.3783%" y="389" width="0.0158%" height="15" fill="rgb(247,229,0)" fg:x="2623" fg:w="4"/><text x="10.6283%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.3941%" y="437" width="0.0119%" height="15" fill="rgb(237,194,15)" fg:x="2627" fg:w="3"/><text x="10.6441%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.3941%" y="421" width="0.0119%" height="15" fill="rgb(219,203,20)" fg:x="2627" fg:w="3"/><text x="10.6441%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="10.3941%" y="405" width="0.0119%" height="15" fill="rgb(234,128,8)" fg:x="2627" fg:w="3"/><text x="10.6441%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="10.3941%" y="485" width="0.0237%" height="15" fill="rgb(248,202,8)" fg:x="2627" fg:w="6"/><text x="10.6441%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="10.3941%" y="469" width="0.0237%" height="15" fill="rgb(206,104,37)" fg:x="2627" fg:w="6"/><text x="10.6441%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="10.3941%" y="453" width="0.0237%" height="15" fill="rgb(223,8,27)" fg:x="2627" fg:w="6"/><text x="10.6441%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="10.4060%" y="437" width="0.0119%" height="15" fill="rgb(216,217,28)" fg:x="2630" fg:w="3"/><text x="10.6560%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4060%" y="421" width="0.0119%" height="15" fill="rgb(249,199,1)" fg:x="2630" fg:w="3"/><text x="10.6560%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.4060%" y="405" width="0.0119%" height="15" fill="rgb(240,85,17)" fg:x="2630" fg:w="3"/><text x="10.6560%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="10.4060%" y="389" width="0.0119%" height="15" fill="rgb(206,108,45)" fg:x="2630" fg:w="3"/><text x="10.6560%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.4178%" y="421" width="0.0158%" height="15" fill="rgb(245,210,41)" fg:x="2633" fg:w="4"/><text x="10.6678%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.4178%" y="405" width="0.0158%" height="15" fill="rgb(206,13,37)" fg:x="2633" fg:w="4"/><text x="10.6678%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.4178%" y="389" width="0.0158%" height="15" fill="rgb(250,61,18)" fg:x="2633" fg:w="4"/><text x="10.6678%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4376%" y="277" width="0.0119%" height="15" fill="rgb(235,172,48)" fg:x="2638" fg:w="3"/><text x="10.6876%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="10.3506%" y="597" width="0.1068%" height="15" fill="rgb(249,201,17)" fg:x="2616" fg:w="27"/><text x="10.6006%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="10.3506%" y="581" width="0.1068%" height="15" fill="rgb(219,208,6)" fg:x="2616" fg:w="27"/><text x="10.6006%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="10.3506%" y="565" width="0.1068%" height="15" fill="rgb(248,31,23)" fg:x="2616" fg:w="27"/><text x="10.6006%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.06%)</title><rect x="10.3941%" y="549" width="0.0633%" height="15" fill="rgb(245,15,42)" fg:x="2627" fg:w="16"/><text x="10.6441%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="10.3941%" y="533" width="0.0633%" height="15" fill="rgb(222,217,39)" fg:x="2627" fg:w="16"/><text x="10.6441%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="10.3941%" y="517" width="0.0633%" height="15" fill="rgb(210,219,27)" fg:x="2627" fg:w="16"/><text x="10.6441%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="10.3941%" y="501" width="0.0633%" height="15" fill="rgb(252,166,36)" fg:x="2627" fg:w="16"/><text x="10.6441%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="10.4178%" y="485" width="0.0396%" height="15" fill="rgb(245,132,34)" fg:x="2633" fg:w="10"/><text x="10.6678%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="10.4178%" y="469" width="0.0396%" height="15" fill="rgb(236,54,3)" fg:x="2633" fg:w="10"/><text x="10.6678%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.4178%" y="453" width="0.0396%" height="15" fill="rgb(241,173,43)" fg:x="2633" fg:w="10"/><text x="10.6678%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.4178%" y="437" width="0.0396%" height="15" fill="rgb(215,190,9)" fg:x="2633" fg:w="10"/><text x="10.6678%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="10.4336%" y="421" width="0.0237%" height="15" fill="rgb(242,101,16)" fg:x="2637" fg:w="6"/><text x="10.6836%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="10.4336%" y="405" width="0.0237%" height="15" fill="rgb(223,190,21)" fg:x="2637" fg:w="6"/><text x="10.6836%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="10.4336%" y="389" width="0.0237%" height="15" fill="rgb(215,228,25)" fg:x="2637" fg:w="6"/><text x="10.6836%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="10.4336%" y="373" width="0.0237%" height="15" fill="rgb(225,36,22)" fg:x="2637" fg:w="6"/><text x="10.6836%" y="383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="10.4376%" y="357" width="0.0198%" height="15" fill="rgb(251,106,46)" fg:x="2638" fg:w="5"/><text x="10.6876%" y="367.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="10.4376%" y="341" width="0.0198%" height="15" fill="rgb(208,90,1)" fg:x="2638" fg:w="5"/><text x="10.6876%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.4376%" y="325" width="0.0198%" height="15" fill="rgb(243,10,4)" fg:x="2638" fg:w="5"/><text x="10.6876%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.4376%" y="309" width="0.0198%" height="15" fill="rgb(212,137,27)" fg:x="2638" fg:w="5"/><text x="10.6876%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.4376%" y="293" width="0.0198%" height="15" fill="rgb(231,220,49)" fg:x="2638" fg:w="5"/><text x="10.6876%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4574%" y="517" width="0.0119%" height="15" fill="rgb(237,96,20)" fg:x="2643" fg:w="3"/><text x="10.7074%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (109 samples, 0.43%)</title><rect x="10.0419%" y="725" width="0.4313%" height="15" fill="rgb(239,229,30)" fg:x="2538" fg:w="109"/><text x="10.2919%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (109 samples, 0.43%)</title><rect x="10.0419%" y="709" width="0.4313%" height="15" fill="rgb(219,65,33)" fg:x="2538" fg:w="109"/><text x="10.2919%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (109 samples, 0.43%)</title><rect x="10.0419%" y="693" width="0.4313%" height="15" fill="rgb(243,134,7)" fg:x="2538" fg:w="109"/><text x="10.2919%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.12%)</title><rect x="10.3506%" y="677" width="0.1227%" height="15" fill="rgb(216,177,54)" fg:x="2616" fg:w="31"/><text x="10.6006%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.12%)</title><rect x="10.3506%" y="661" width="0.1227%" height="15" fill="rgb(211,160,20)" fg:x="2616" fg:w="31"/><text x="10.6006%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="10.3506%" y="645" width="0.1227%" height="15" fill="rgb(239,85,39)" fg:x="2616" fg:w="31"/><text x="10.6006%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="10.3506%" y="629" width="0.1227%" height="15" fill="rgb(232,125,22)" fg:x="2616" fg:w="31"/><text x="10.6006%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="10.3506%" y="613" width="0.1227%" height="15" fill="rgb(244,57,34)" fg:x="2616" fg:w="31"/><text x="10.6006%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="10.4574%" y="597" width="0.0158%" height="15" fill="rgb(214,203,32)" fg:x="2643" fg:w="4"/><text x="10.7074%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="10.4574%" y="581" width="0.0158%" height="15" fill="rgb(207,58,43)" fg:x="2643" fg:w="4"/><text x="10.7074%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.4574%" y="565" width="0.0158%" height="15" fill="rgb(215,193,15)" fg:x="2643" fg:w="4"/><text x="10.7074%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.4574%" y="549" width="0.0158%" height="15" fill="rgb(232,15,44)" fg:x="2643" fg:w="4"/><text x="10.7074%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="10.4574%" y="533" width="0.0158%" height="15" fill="rgb(212,3,48)" fg:x="2643" fg:w="4"/><text x="10.7074%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.4732%" y="661" width="0.0277%" height="15" fill="rgb(218,128,7)" fg:x="2647" fg:w="7"/><text x="10.7232%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.4811%" y="645" width="0.0198%" height="15" fill="rgb(226,216,39)" fg:x="2649" fg:w="5"/><text x="10.7311%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.4811%" y="629" width="0.0198%" height="15" fill="rgb(243,47,51)" fg:x="2649" fg:w="5"/><text x="10.7311%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="10.4890%" y="613" width="0.0119%" height="15" fill="rgb(241,183,40)" fg:x="2651" fg:w="3"/><text x="10.7390%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4890%" y="597" width="0.0119%" height="15" fill="rgb(231,217,32)" fg:x="2651" fg:w="3"/><text x="10.7390%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5088%" y="597" width="0.0119%" height="15" fill="rgb(229,61,38)" fg:x="2656" fg:w="3"/><text x="10.7588%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="10.4732%" y="725" width="0.0554%" height="15" fill="rgb(225,210,5)" fg:x="2647" fg:w="14"/><text x="10.7232%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="10.4732%" y="709" width="0.0554%" height="15" fill="rgb(231,79,45)" fg:x="2647" fg:w="14"/><text x="10.7232%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="10.4732%" y="693" width="0.0554%" height="15" fill="rgb(224,100,7)" fg:x="2647" fg:w="14"/><text x="10.7232%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="10.4732%" y="677" width="0.0554%" height="15" fill="rgb(241,198,18)" fg:x="2647" fg:w="14"/><text x="10.7232%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="10.5009%" y="661" width="0.0277%" height="15" fill="rgb(252,97,53)" fg:x="2654" fg:w="7"/><text x="10.7509%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.5009%" y="645" width="0.0277%" height="15" fill="rgb(220,88,7)" fg:x="2654" fg:w="7"/><text x="10.7509%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5088%" y="629" width="0.0198%" height="15" fill="rgb(213,176,14)" fg:x="2656" fg:w="5"/><text x="10.7588%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.5088%" y="613" width="0.0198%" height="15" fill="rgb(246,73,7)" fg:x="2656" fg:w="5"/><text x="10.7588%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.5286%" y="645" width="0.0198%" height="15" fill="rgb(245,64,36)" fg:x="2661" fg:w="5"/><text x="10.7786%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5286%" y="629" width="0.0198%" height="15" fill="rgb(245,80,10)" fg:x="2661" fg:w="5"/><text x="10.7786%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.5286%" y="613" width="0.0198%" height="15" fill="rgb(232,107,50)" fg:x="2661" fg:w="5"/><text x="10.7786%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="10.5365%" y="597" width="0.0119%" height="15" fill="rgb(253,3,0)" fg:x="2663" fg:w="3"/><text x="10.7865%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5365%" y="581" width="0.0119%" height="15" fill="rgb(212,99,53)" fg:x="2663" fg:w="3"/><text x="10.7865%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="10.5563%" y="597" width="0.0119%" height="15" fill="rgb(249,111,54)" fg:x="2668" fg:w="3"/><text x="10.8063%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="10.5563%" y="581" width="0.0119%" height="15" fill="rgb(249,55,30)" fg:x="2668" fg:w="3"/><text x="10.8063%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5682%" y="421" width="0.0119%" height="15" fill="rgb(237,47,42)" fg:x="2671" fg:w="3"/><text x="10.8182%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.5682%" y="469" width="0.0198%" height="15" fill="rgb(211,20,18)" fg:x="2671" fg:w="5"/><text x="10.8182%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5682%" y="453" width="0.0198%" height="15" fill="rgb(231,203,46)" fg:x="2671" fg:w="5"/><text x="10.8182%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="10.5682%" y="437" width="0.0198%" height="15" fill="rgb(237,142,3)" fg:x="2671" fg:w="5"/><text x="10.8182%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.5682%" y="517" width="0.0277%" height="15" fill="rgb(241,107,1)" fg:x="2671" fg:w="7"/><text x="10.8182%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="10.5682%" y="501" width="0.0277%" height="15" fill="rgb(229,83,13)" fg:x="2671" fg:w="7"/><text x="10.8182%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="10.5682%" y="485" width="0.0277%" height="15" fill="rgb(241,91,40)" fg:x="2671" fg:w="7"/><text x="10.8182%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (937 samples, 3.71%)</title><rect x="6.9004%" y="997" width="3.7074%" height="15" fill="rgb(225,3,45)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="1007.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (937 samples, 3.71%)</title><rect x="6.9004%" y="981" width="3.7074%" height="15" fill="rgb(244,223,14)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="991.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (937 samples, 3.71%)</title><rect x="6.9004%" y="965" width="3.7074%" height="15" fill="rgb(224,124,37)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="975.50">_ZN1..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (937 samples, 3.71%)</title><rect x="6.9004%" y="949" width="3.7074%" height="15" fill="rgb(251,171,30)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="959.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (937 samples, 3.71%)</title><rect x="6.9004%" y="933" width="3.7074%" height="15" fill="rgb(236,46,54)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="943.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (937 samples, 3.71%)</title><rect x="6.9004%" y="917" width="3.7074%" height="15" fill="rgb(245,213,5)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="927.50">_ZN1..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (937 samples, 3.71%)</title><rect x="6.9004%" y="901" width="3.7074%" height="15" fill="rgb(230,144,27)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="911.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (937 samples, 3.71%)</title><rect x="6.9004%" y="885" width="3.7074%" height="15" fill="rgb(220,86,6)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="895.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (937 samples, 3.71%)</title><rect x="6.9004%" y="869" width="3.7074%" height="15" fill="rgb(240,20,13)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="879.50">_ZN1..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (937 samples, 3.71%)</title><rect x="6.9004%" y="853" width="3.7074%" height="15" fill="rgb(217,89,34)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="863.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (937 samples, 3.71%)</title><rect x="6.9004%" y="837" width="3.7074%" height="15" fill="rgb(229,13,5)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="847.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (937 samples, 3.71%)</title><rect x="6.9004%" y="821" width="3.7074%" height="15" fill="rgb(244,67,35)" fg:x="1744" fg:w="937"/><text x="7.1504%" y="831.50">_ZN1..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (145 samples, 0.57%)</title><rect x="10.0340%" y="805" width="0.5737%" height="15" fill="rgb(221,40,2)" fg:x="2536" fg:w="145"/><text x="10.2840%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (145 samples, 0.57%)</title><rect x="10.0340%" y="789" width="0.5737%" height="15" fill="rgb(237,157,21)" fg:x="2536" fg:w="145"/><text x="10.2840%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (145 samples, 0.57%)</title><rect x="10.0340%" y="773" width="0.5737%" height="15" fill="rgb(222,94,11)" fg:x="2536" fg:w="145"/><text x="10.2840%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (143 samples, 0.57%)</title><rect x="10.0419%" y="757" width="0.5658%" height="15" fill="rgb(249,113,6)" fg:x="2538" fg:w="143"/><text x="10.2919%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (143 samples, 0.57%)</title><rect x="10.0419%" y="741" width="0.5658%" height="15" fill="rgb(238,137,36)" fg:x="2538" fg:w="143"/><text x="10.2919%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.08%)</title><rect x="10.5286%" y="725" width="0.0791%" height="15" fill="rgb(210,102,26)" fg:x="2661" fg:w="20"/><text x="10.7786%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.08%)</title><rect x="10.5286%" y="709" width="0.0791%" height="15" fill="rgb(218,30,30)" fg:x="2661" fg:w="20"/><text x="10.7786%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.08%)</title><rect x="10.5286%" y="693" width="0.0791%" height="15" fill="rgb(214,67,26)" fg:x="2661" fg:w="20"/><text x="10.7786%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="10.5286%" y="677" width="0.0791%" height="15" fill="rgb(251,9,53)" fg:x="2661" fg:w="20"/><text x="10.7786%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="10.5286%" y="661" width="0.0791%" height="15" fill="rgb(228,204,25)" fg:x="2661" fg:w="20"/><text x="10.7786%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.06%)</title><rect x="10.5484%" y="645" width="0.0593%" height="15" fill="rgb(207,153,8)" fg:x="2666" fg:w="15"/><text x="10.7984%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.06%)</title><rect x="10.5484%" y="629" width="0.0593%" height="15" fill="rgb(242,9,16)" fg:x="2666" fg:w="15"/><text x="10.7984%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="10.5484%" y="613" width="0.0593%" height="15" fill="rgb(217,211,10)" fg:x="2666" fg:w="15"/><text x="10.7984%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.5682%" y="597" width="0.0396%" height="15" fill="rgb(219,228,52)" fg:x="2671" fg:w="10"/><text x="10.8182%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.5682%" y="581" width="0.0396%" height="15" fill="rgb(231,92,29)" fg:x="2671" fg:w="10"/><text x="10.8182%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="10.5682%" y="565" width="0.0396%" height="15" fill="rgb(232,8,23)" fg:x="2671" fg:w="10"/><text x="10.8182%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="10.5682%" y="549" width="0.0396%" height="15" fill="rgb(216,211,34)" fg:x="2671" fg:w="10"/><text x="10.8182%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="10.5682%" y="533" width="0.0396%" height="15" fill="rgb(236,151,0)" fg:x="2671" fg:w="10"/><text x="10.8182%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="10.5959%" y="517" width="0.0119%" height="15" fill="rgb(209,168,3)" fg:x="2678" fg:w="3"/><text x="10.8459%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="10.5959%" y="501" width="0.0119%" height="15" fill="rgb(208,129,28)" fg:x="2678" fg:w="3"/><text x="10.8459%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.5959%" y="485" width="0.0119%" height="15" fill="rgb(229,78,22)" fg:x="2678" fg:w="3"/><text x="10.8459%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.2088744067846635343 (942 samples, 3.73%)</title><rect x="6.9004%" y="1013" width="3.7272%" height="15" fill="rgb(228,187,13)" fg:x="1744" fg:w="942"/><text x="7.1504%" y="1023.50">_ZN1..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="10.6077%" y="997" width="0.0198%" height="15" fill="rgb(240,119,24)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="1007.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="10.6077%" y="981" width="0.0198%" height="15" fill="rgb(209,194,42)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="991.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="10.6077%" y="965" width="0.0198%" height="15" fill="rgb(247,200,46)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="975.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="10.6077%" y="949" width="0.0198%" height="15" fill="rgb(218,76,16)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="959.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="10.6077%" y="933" width="0.0198%" height="15" fill="rgb(225,21,48)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="943.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="10.6077%" y="917" width="0.0198%" height="15" fill="rgb(239,223,50)" fg:x="2681" fg:w="5"/><text x="10.8577%" y="927.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="10.6790%" y="997" width="0.0198%" height="15" fill="rgb(244,45,21)" fg:x="2699" fg:w="5"/><text x="10.9290%" y="1007.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="10.6790%" y="981" width="0.0198%" height="15" fill="rgb(232,33,43)" fg:x="2699" fg:w="5"/><text x="10.9290%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="10.6987%" y="773" width="0.0514%" height="15" fill="rgb(209,8,3)" fg:x="2704" fg:w="13"/><text x="10.9487%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (13 samples, 0.05%)</title><rect x="10.6987%" y="757" width="0.0514%" height="15" fill="rgb(214,25,53)" fg:x="2704" fg:w="13"/><text x="10.9487%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (13 samples, 0.05%)</title><rect x="10.6987%" y="741" width="0.0514%" height="15" fill="rgb(254,186,54)" fg:x="2704" fg:w="13"/><text x="10.9487%" y="751.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (13 samples, 0.05%)</title><rect x="10.6987%" y="725" width="0.0514%" height="15" fill="rgb(208,174,49)" fg:x="2704" fg:w="13"/><text x="10.9487%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (9 samples, 0.04%)</title><rect x="10.7146%" y="709" width="0.0356%" height="15" fill="rgb(233,191,51)" fg:x="2708" fg:w="9"/><text x="10.9646%" y="719.50"></text></g><g><title>oorandom::Rand64::rand_range (5 samples, 0.02%)</title><rect x="10.7304%" y="693" width="0.0198%" height="15" fill="rgb(222,134,10)" fg:x="2712" fg:w="5"/><text x="10.9804%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="10.6987%" y="821" width="0.1108%" height="15" fill="rgb(230,226,20)" fg:x="2704" fg:w="28"/><text x="10.9487%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="10.6987%" y="805" width="0.1108%" height="15" fill="rgb(251,111,25)" fg:x="2704" fg:w="28"/><text x="10.9487%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="10.6987%" y="789" width="0.1108%" height="15" fill="rgb(224,40,46)" fg:x="2704" fg:w="28"/><text x="10.9487%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="10.7502%" y="773" width="0.0593%" height="15" fill="rgb(236,108,47)" fg:x="2717" fg:w="15"/><text x="11.0002%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="10.7502%" y="757" width="0.0593%" height="15" fill="rgb(234,93,0)" fg:x="2717" fg:w="15"/><text x="11.0002%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (15 samples, 0.06%)</title><rect x="10.7502%" y="741" width="0.0593%" height="15" fill="rgb(224,213,32)" fg:x="2717" fg:w="15"/><text x="11.0002%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (15 samples, 0.06%)</title><rect x="10.7502%" y="725" width="0.0593%" height="15" fill="rgb(251,11,48)" fg:x="2717" fg:w="15"/><text x="11.0002%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (15 samples, 0.06%)</title><rect x="10.7502%" y="709" width="0.0593%" height="15" fill="rgb(236,173,5)" fg:x="2717" fg:w="15"/><text x="11.0002%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (13 samples, 0.05%)</title><rect x="10.7581%" y="693" width="0.0514%" height="15" fill="rgb(230,95,12)" fg:x="2719" fg:w="13"/><text x="11.0081%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (6 samples, 0.02%)</title><rect x="10.7858%" y="677" width="0.0237%" height="15" fill="rgb(232,209,1)" fg:x="2726" fg:w="6"/><text x="11.0358%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="10.8095%" y="757" width="0.0712%" height="15" fill="rgb(232,6,1)" fg:x="2732" fg:w="18"/><text x="11.0595%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (18 samples, 0.07%)</title><rect x="10.8095%" y="741" width="0.0712%" height="15" fill="rgb(210,224,50)" fg:x="2732" fg:w="18"/><text x="11.0595%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (18 samples, 0.07%)</title><rect x="10.8095%" y="725" width="0.0712%" height="15" fill="rgb(228,127,35)" fg:x="2732" fg:w="18"/><text x="11.0595%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (18 samples, 0.07%)</title><rect x="10.8095%" y="709" width="0.0712%" height="15" fill="rgb(245,102,45)" fg:x="2732" fg:w="18"/><text x="11.0595%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (11 samples, 0.04%)</title><rect x="10.8372%" y="693" width="0.0435%" height="15" fill="rgb(214,1,49)" fg:x="2739" fg:w="11"/><text x="11.0872%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="10.8649%" y="677" width="0.0158%" height="15" fill="rgb(226,163,40)" fg:x="2746" fg:w="4"/><text x="11.1149%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.23%)</title><rect x="10.6987%" y="869" width="0.2295%" height="15" fill="rgb(239,212,28)" fg:x="2704" fg:w="58"/><text x="10.9487%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (58 samples, 0.23%)</title><rect x="10.6987%" y="853" width="0.2295%" height="15" fill="rgb(220,20,13)" fg:x="2704" fg:w="58"/><text x="10.9487%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (58 samples, 0.23%)</title><rect x="10.6987%" y="837" width="0.2295%" height="15" fill="rgb(210,164,35)" fg:x="2704" fg:w="58"/><text x="10.9487%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.12%)</title><rect x="10.8095%" y="821" width="0.1187%" height="15" fill="rgb(248,109,41)" fg:x="2732" fg:w="30"/><text x="11.0595%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="10.8095%" y="805" width="0.1187%" height="15" fill="rgb(238,23,50)" fg:x="2732" fg:w="30"/><text x="11.0595%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="10.8095%" y="789" width="0.1187%" height="15" fill="rgb(211,48,49)" fg:x="2732" fg:w="30"/><text x="11.0595%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="10.8095%" y="773" width="0.1187%" height="15" fill="rgb(223,36,21)" fg:x="2732" fg:w="30"/><text x="11.0595%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="10.8807%" y="757" width="0.0475%" height="15" fill="rgb(207,123,46)" fg:x="2750" fg:w="12"/><text x="11.1307%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.8807%" y="741" width="0.0475%" height="15" fill="rgb(240,218,32)" fg:x="2750" fg:w="12"/><text x="11.1307%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (12 samples, 0.05%)</title><rect x="10.8807%" y="725" width="0.0475%" height="15" fill="rgb(252,5,43)" fg:x="2750" fg:w="12"/><text x="11.1307%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (12 samples, 0.05%)</title><rect x="10.8807%" y="709" width="0.0475%" height="15" fill="rgb(252,84,19)" fg:x="2750" fg:w="12"/><text x="11.1307%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (12 samples, 0.05%)</title><rect x="10.8807%" y="693" width="0.0475%" height="15" fill="rgb(243,152,39)" fg:x="2750" fg:w="12"/><text x="11.1307%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="10.9084%" y="677" width="0.0198%" height="15" fill="rgb(234,160,15)" fg:x="2757" fg:w="5"/><text x="11.1584%" y="687.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="10.9164%" y="661" width="0.0119%" height="15" fill="rgb(237,34,20)" fg:x="2759" fg:w="3"/><text x="11.1664%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="10.9282%" y="757" width="0.0475%" height="15" fill="rgb(229,97,13)" fg:x="2762" fg:w="12"/><text x="11.1782%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (12 samples, 0.05%)</title><rect x="10.9282%" y="741" width="0.0475%" height="15" fill="rgb(234,71,50)" fg:x="2762" fg:w="12"/><text x="11.1782%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (12 samples, 0.05%)</title><rect x="10.9282%" y="725" width="0.0475%" height="15" fill="rgb(253,155,4)" fg:x="2762" fg:w="12"/><text x="11.1782%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (12 samples, 0.05%)</title><rect x="10.9282%" y="709" width="0.0475%" height="15" fill="rgb(222,185,37)" fg:x="2762" fg:w="12"/><text x="11.1782%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (6 samples, 0.02%)</title><rect x="10.9520%" y="693" width="0.0237%" height="15" fill="rgb(251,177,13)" fg:x="2768" fg:w="6"/><text x="11.2020%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="10.9599%" y="677" width="0.0158%" height="15" fill="rgb(250,179,40)" fg:x="2770" fg:w="4"/><text x="11.2099%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="10.9282%" y="805" width="0.0752%" height="15" fill="rgb(242,44,2)" fg:x="2762" fg:w="19"/><text x="11.1782%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="10.9282%" y="789" width="0.0752%" height="15" fill="rgb(216,177,13)" fg:x="2762" fg:w="19"/><text x="11.1782%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="10.9282%" y="773" width="0.0752%" height="15" fill="rgb(216,106,43)" fg:x="2762" fg:w="19"/><text x="11.1782%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="10.9757%" y="757" width="0.0277%" height="15" fill="rgb(216,183,2)" fg:x="2774" fg:w="7"/><text x="11.2257%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="10.9757%" y="741" width="0.0277%" height="15" fill="rgb(249,75,3)" fg:x="2774" fg:w="7"/><text x="11.2257%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="10.9757%" y="725" width="0.0277%" height="15" fill="rgb(219,67,39)" fg:x="2774" fg:w="7"/><text x="11.2257%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="10.9757%" y="709" width="0.0277%" height="15" fill="rgb(253,228,2)" fg:x="2774" fg:w="7"/><text x="11.2257%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (7 samples, 0.03%)</title><rect x="10.9757%" y="693" width="0.0277%" height="15" fill="rgb(235,138,27)" fg:x="2774" fg:w="7"/><text x="11.2257%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (6 samples, 0.02%)</title><rect x="10.9797%" y="677" width="0.0237%" height="15" fill="rgb(236,97,51)" fg:x="2775" fg:w="6"/><text x="11.2297%" y="687.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="10.9915%" y="661" width="0.0119%" height="15" fill="rgb(240,80,30)" fg:x="2778" fg:w="3"/><text x="11.2415%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="11.0034%" y="741" width="0.0435%" height="15" fill="rgb(230,178,19)" fg:x="2781" fg:w="11"/><text x="11.2534%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.04%)</title><rect x="11.0034%" y="725" width="0.0435%" height="15" fill="rgb(210,190,27)" fg:x="2781" fg:w="11"/><text x="11.2534%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (11 samples, 0.04%)</title><rect x="11.0034%" y="709" width="0.0435%" height="15" fill="rgb(222,107,31)" fg:x="2781" fg:w="11"/><text x="11.2534%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (11 samples, 0.04%)</title><rect x="11.0034%" y="693" width="0.0435%" height="15" fill="rgb(216,127,34)" fg:x="2781" fg:w="11"/><text x="11.2534%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (9 samples, 0.04%)</title><rect x="11.0113%" y="677" width="0.0356%" height="15" fill="rgb(234,116,52)" fg:x="2783" fg:w="9"/><text x="11.2613%" y="687.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="11.0311%" y="661" width="0.0158%" height="15" fill="rgb(222,124,15)" fg:x="2788" fg:w="4"/><text x="11.2811%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.09%)</title><rect x="11.0034%" y="805" width="0.0870%" height="15" fill="rgb(231,179,28)" fg:x="2781" fg:w="22"/><text x="11.2534%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="11.0034%" y="789" width="0.0870%" height="15" fill="rgb(226,93,45)" fg:x="2781" fg:w="22"/><text x="11.2534%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="11.0034%" y="773" width="0.0870%" height="15" fill="rgb(215,8,51)" fg:x="2781" fg:w="22"/><text x="11.2534%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="11.0034%" y="757" width="0.0870%" height="15" fill="rgb(223,106,5)" fg:x="2781" fg:w="22"/><text x="11.2534%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="11.0469%" y="741" width="0.0435%" height="15" fill="rgb(250,191,5)" fg:x="2792" fg:w="11"/><text x="11.2969%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="11.0469%" y="725" width="0.0435%" height="15" fill="rgb(242,132,44)" fg:x="2792" fg:w="11"/><text x="11.2969%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.04%)</title><rect x="11.0469%" y="709" width="0.0435%" height="15" fill="rgb(251,152,29)" fg:x="2792" fg:w="11"/><text x="11.2969%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (11 samples, 0.04%)</title><rect x="11.0469%" y="693" width="0.0435%" height="15" fill="rgb(218,179,5)" fg:x="2792" fg:w="11"/><text x="11.2969%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (11 samples, 0.04%)</title><rect x="11.0469%" y="677" width="0.0435%" height="15" fill="rgb(227,67,19)" fg:x="2792" fg:w="11"/><text x="11.2969%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="11.0707%" y="661" width="0.0198%" height="15" fill="rgb(233,119,31)" fg:x="2798" fg:w="5"/><text x="11.3207%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.19%)</title><rect x="10.9282%" y="869" width="0.1939%" height="15" fill="rgb(241,120,22)" fg:x="2762" fg:w="49"/><text x="11.1782%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.19%)</title><rect x="10.9282%" y="853" width="0.1939%" height="15" fill="rgb(224,102,30)" fg:x="2762" fg:w="49"/><text x="11.1782%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="10.9282%" y="837" width="0.1939%" height="15" fill="rgb(210,164,37)" fg:x="2762" fg:w="49"/><text x="11.1782%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="10.9282%" y="821" width="0.1939%" height="15" fill="rgb(226,191,16)" fg:x="2762" fg:w="49"/><text x="11.1782%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="11.0904%" y="805" width="0.0317%" height="15" fill="rgb(214,40,45)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="11.0904%" y="789" width="0.0317%" height="15" fill="rgb(244,29,26)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.0904%" y="773" width="0.0317%" height="15" fill="rgb(216,16,5)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="11.0904%" y="757" width="0.0317%" height="15" fill="rgb(249,76,35)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="11.0904%" y="741" width="0.0317%" height="15" fill="rgb(207,11,44)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.0904%" y="725" width="0.0317%" height="15" fill="rgb(228,190,49)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="11.0904%" y="709" width="0.0317%" height="15" fill="rgb(214,173,12)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="11.0904%" y="693" width="0.0317%" height="15" fill="rgb(218,26,35)" fg:x="2803" fg:w="8"/><text x="11.3404%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="11.0944%" y="677" width="0.0277%" height="15" fill="rgb(220,200,19)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.0944%" y="661" width="0.0277%" height="15" fill="rgb(239,95,49)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.0944%" y="645" width="0.0277%" height="15" fill="rgb(235,85,53)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.0944%" y="629" width="0.0277%" height="15" fill="rgb(233,133,31)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.0944%" y="613" width="0.0277%" height="15" fill="rgb(218,25,20)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.0944%" y="597" width="0.0277%" height="15" fill="rgb(252,210,38)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.0944%" y="581" width="0.0277%" height="15" fill="rgb(242,134,21)" fg:x="2804" fg:w="7"/><text x="11.3444%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="11.0984%" y="565" width="0.0237%" height="15" fill="rgb(213,28,48)" fg:x="2805" fg:w="6"/><text x="11.3484%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="11.0984%" y="549" width="0.0237%" height="15" fill="rgb(250,196,2)" fg:x="2805" fg:w="6"/><text x="11.3484%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.0984%" y="533" width="0.0237%" height="15" fill="rgb(227,5,17)" fg:x="2805" fg:w="6"/><text x="11.3484%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.1023%" y="517" width="0.0198%" height="15" fill="rgb(221,226,24)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.1023%" y="501" width="0.0198%" height="15" fill="rgb(211,5,48)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.1023%" y="485" width="0.0198%" height="15" fill="rgb(219,150,6)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="495.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="11.1023%" y="469" width="0.0198%" height="15" fill="rgb(251,46,16)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.1023%" y="453" width="0.0198%" height="15" fill="rgb(220,204,40)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.1023%" y="437" width="0.0198%" height="15" fill="rgb(211,85,2)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.1023%" y="421" width="0.0198%" height="15" fill="rgb(229,17,7)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.1023%" y="405" width="0.0198%" height="15" fill="rgb(239,72,28)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="415.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="11.1023%" y="389" width="0.0198%" height="15" fill="rgb(230,47,54)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="399.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.1023%" y="373" width="0.0198%" height="15" fill="rgb(214,50,8)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="383.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="11.1023%" y="357" width="0.0198%" height="15" fill="rgb(216,198,43)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="367.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="11.1023%" y="341" width="0.0198%" height="15" fill="rgb(234,20,35)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="351.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="11.1023%" y="325" width="0.0198%" height="15" fill="rgb(254,45,19)" fg:x="2806" fg:w="5"/><text x="11.3523%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.1221%" y="741" width="0.0119%" height="15" fill="rgb(219,14,44)" fg:x="2811" fg:w="3"/><text x="11.3721%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.1221%" y="725" width="0.0119%" height="15" fill="rgb(217,220,26)" fg:x="2811" fg:w="3"/><text x="11.3721%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.1221%" y="709" width="0.0119%" height="15" fill="rgb(213,158,28)" fg:x="2811" fg:w="3"/><text x="11.3721%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.1221%" y="789" width="0.0198%" height="15" fill="rgb(252,51,52)" fg:x="2811" fg:w="5"/><text x="11.3721%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.1221%" y="773" width="0.0198%" height="15" fill="rgb(246,89,16)" fg:x="2811" fg:w="5"/><text x="11.3721%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.1221%" y="757" width="0.0198%" height="15" fill="rgb(216,158,49)" fg:x="2811" fg:w="5"/><text x="11.3721%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.45%)</title><rect x="10.6987%" y="917" width="0.4511%" height="15" fill="rgb(236,107,19)" fg:x="2704" fg:w="114"/><text x="10.9487%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (114 samples, 0.45%)</title><rect x="10.6987%" y="901" width="0.4511%" height="15" fill="rgb(228,185,30)" fg:x="2704" fg:w="114"/><text x="10.9487%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (114 samples, 0.45%)</title><rect x="10.6987%" y="885" width="0.4511%" height="15" fill="rgb(246,134,8)" fg:x="2704" fg:w="114"/><text x="10.9487%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.1221%" y="869" width="0.0277%" height="15" fill="rgb(214,143,50)" fg:x="2811" fg:w="7"/><text x="11.3721%" y="879.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="11.1221%" y="853" width="0.0277%" height="15" fill="rgb(228,75,8)" fg:x="2811" fg:w="7"/><text x="11.3721%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.1221%" y="837" width="0.0277%" height="15" fill="rgb(207,175,4)" fg:x="2811" fg:w="7"/><text x="11.3721%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.1221%" y="821" width="0.0277%" height="15" fill="rgb(205,108,24)" fg:x="2811" fg:w="7"/><text x="11.3721%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.1221%" y="805" width="0.0277%" height="15" fill="rgb(244,120,49)" fg:x="2811" fg:w="7"/><text x="11.3721%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.1498%" y="757" width="0.0237%" height="15" fill="rgb(223,47,38)" fg:x="2818" fg:w="6"/><text x="11.3998%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.1498%" y="741" width="0.0237%" height="15" fill="rgb(229,179,11)" fg:x="2818" fg:w="6"/><text x="11.3998%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.1498%" y="725" width="0.0237%" height="15" fill="rgb(231,122,1)" fg:x="2818" fg:w="6"/><text x="11.3998%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.1498%" y="709" width="0.0237%" height="15" fill="rgb(245,119,9)" fg:x="2818" fg:w="6"/><text x="11.3998%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.1498%" y="805" width="0.0475%" height="15" fill="rgb(241,163,25)" fg:x="2818" fg:w="12"/><text x="11.3998%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.1498%" y="789" width="0.0475%" height="15" fill="rgb(217,214,3)" fg:x="2818" fg:w="12"/><text x="11.3998%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.1498%" y="773" width="0.0475%" height="15" fill="rgb(240,86,28)" fg:x="2818" fg:w="12"/><text x="11.3998%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.1735%" y="757" width="0.0237%" height="15" fill="rgb(215,47,9)" fg:x="2824" fg:w="6"/><text x="11.4235%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.1735%" y="741" width="0.0237%" height="15" fill="rgb(252,25,45)" fg:x="2824" fg:w="6"/><text x="11.4235%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.1735%" y="725" width="0.0237%" height="15" fill="rgb(251,164,9)" fg:x="2824" fg:w="6"/><text x="11.4235%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.1735%" y="709" width="0.0237%" height="15" fill="rgb(233,194,0)" fg:x="2824" fg:w="6"/><text x="11.4235%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.1735%" y="693" width="0.0237%" height="15" fill="rgb(249,111,24)" fg:x="2824" fg:w="6"/><text x="11.4235%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.1854%" y="677" width="0.0119%" height="15" fill="rgb(250,223,3)" fg:x="2827" fg:w="3"/><text x="11.4354%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.1973%" y="741" width="0.0237%" height="15" fill="rgb(236,178,37)" fg:x="2830" fg:w="6"/><text x="11.4473%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.1973%" y="725" width="0.0237%" height="15" fill="rgb(241,158,50)" fg:x="2830" fg:w="6"/><text x="11.4473%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.1973%" y="709" width="0.0237%" height="15" fill="rgb(213,121,41)" fg:x="2830" fg:w="6"/><text x="11.4473%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.1973%" y="693" width="0.0237%" height="15" fill="rgb(240,92,3)" fg:x="2830" fg:w="6"/><text x="11.4473%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.2091%" y="677" width="0.0119%" height="15" fill="rgb(205,123,3)" fg:x="2833" fg:w="3"/><text x="11.4591%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="11.1498%" y="853" width="0.0950%" height="15" fill="rgb(205,97,47)" fg:x="2818" fg:w="24"/><text x="11.3998%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="11.1498%" y="837" width="0.0950%" height="15" fill="rgb(247,152,14)" fg:x="2818" fg:w="24"/><text x="11.3998%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="11.1498%" y="821" width="0.0950%" height="15" fill="rgb(248,195,53)" fg:x="2818" fg:w="24"/><text x="11.3998%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="11.1973%" y="805" width="0.0475%" height="15" fill="rgb(226,201,16)" fg:x="2830" fg:w="12"/><text x="11.4473%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.1973%" y="789" width="0.0475%" height="15" fill="rgb(205,98,0)" fg:x="2830" fg:w="12"/><text x="11.4473%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.1973%" y="773" width="0.0475%" height="15" fill="rgb(214,191,48)" fg:x="2830" fg:w="12"/><text x="11.4473%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.1973%" y="757" width="0.0475%" height="15" fill="rgb(237,112,39)" fg:x="2830" fg:w="12"/><text x="11.4473%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.2210%" y="741" width="0.0237%" height="15" fill="rgb(247,203,27)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.2210%" y="725" width="0.0237%" height="15" fill="rgb(235,124,28)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.2210%" y="709" width="0.0237%" height="15" fill="rgb(208,207,46)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.2210%" y="693" width="0.0237%" height="15" fill="rgb(234,176,4)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.2210%" y="677" width="0.0237%" height="15" fill="rgb(230,133,28)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (6 samples, 0.02%)</title><rect x="11.2210%" y="661" width="0.0237%" height="15" fill="rgb(211,137,40)" fg:x="2836" fg:w="6"/><text x="11.4710%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.2448%" y="741" width="0.0237%" height="15" fill="rgb(254,35,13)" fg:x="2842" fg:w="6"/><text x="11.4948%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.2448%" y="725" width="0.0237%" height="15" fill="rgb(225,49,51)" fg:x="2842" fg:w="6"/><text x="11.4948%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.2448%" y="709" width="0.0237%" height="15" fill="rgb(251,10,15)" fg:x="2842" fg:w="6"/><text x="11.4948%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.2448%" y="693" width="0.0237%" height="15" fill="rgb(228,207,15)" fg:x="2842" fg:w="6"/><text x="11.4948%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.2448%" y="789" width="0.0475%" height="15" fill="rgb(241,99,19)" fg:x="2842" fg:w="12"/><text x="11.4948%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.2448%" y="773" width="0.0475%" height="15" fill="rgb(207,104,49)" fg:x="2842" fg:w="12"/><text x="11.4948%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.2448%" y="757" width="0.0475%" height="15" fill="rgb(234,99,18)" fg:x="2842" fg:w="12"/><text x="11.4948%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.2685%" y="741" width="0.0237%" height="15" fill="rgb(213,191,49)" fg:x="2848" fg:w="6"/><text x="11.5185%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.2685%" y="725" width="0.0237%" height="15" fill="rgb(210,226,19)" fg:x="2848" fg:w="6"/><text x="11.5185%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="11.2685%" y="709" width="0.0237%" height="15" fill="rgb(229,97,18)" fg:x="2848" fg:w="6"/><text x="11.5185%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="11.2685%" y="693" width="0.0237%" height="15" fill="rgb(211,167,15)" fg:x="2848" fg:w="6"/><text x="11.5185%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.02%)</title><rect x="11.2685%" y="677" width="0.0237%" height="15" fill="rgb(210,169,34)" fg:x="2848" fg:w="6"/><text x="11.5185%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="11.2764%" y="661" width="0.0158%" height="15" fill="rgb(241,121,31)" fg:x="2850" fg:w="4"/><text x="11.5264%" y="671.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="11.2804%" y="645" width="0.0119%" height="15" fill="rgb(232,40,11)" fg:x="2851" fg:w="3"/><text x="11.5304%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.2922%" y="725" width="0.0119%" height="15" fill="rgb(205,86,26)" fg:x="2854" fg:w="3"/><text x="11.5422%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="11.2922%" y="709" width="0.0119%" height="15" fill="rgb(231,126,28)" fg:x="2854" fg:w="3"/><text x="11.5422%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="11.2922%" y="693" width="0.0119%" height="15" fill="rgb(219,221,18)" fg:x="2854" fg:w="3"/><text x="11.5422%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="11.2922%" y="677" width="0.0119%" height="15" fill="rgb(211,40,0)" fg:x="2854" fg:w="3"/><text x="11.5422%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.2922%" y="789" width="0.0237%" height="15" fill="rgb(239,85,43)" fg:x="2854" fg:w="6"/><text x="11.5422%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.2922%" y="773" width="0.0237%" height="15" fill="rgb(231,55,21)" fg:x="2854" fg:w="6"/><text x="11.5422%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.2922%" y="757" width="0.0237%" height="15" fill="rgb(225,184,43)" fg:x="2854" fg:w="6"/><text x="11.5422%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.2922%" y="741" width="0.0237%" height="15" fill="rgb(251,158,41)" fg:x="2854" fg:w="6"/><text x="11.5422%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="11.3041%" y="725" width="0.0119%" height="15" fill="rgb(234,159,37)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3041%" y="709" width="0.0119%" height="15" fill="rgb(216,204,22)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="11.3041%" y="693" width="0.0119%" height="15" fill="rgb(214,17,3)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="11.3041%" y="677" width="0.0119%" height="15" fill="rgb(212,111,17)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="687.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="11.3041%" y="661" width="0.0119%" height="15" fill="rgb(221,157,24)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="671.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.3041%" y="645" width="0.0119%" height="15" fill="rgb(252,16,13)" fg:x="2857" fg:w="3"/><text x="11.5541%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3160%" y="709" width="0.0119%" height="15" fill="rgb(221,62,2)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3160%" y="693" width="0.0119%" height="15" fill="rgb(247,87,22)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3160%" y="677" width="0.0119%" height="15" fill="rgb(215,73,9)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3160%" y="661" width="0.0119%" height="15" fill="rgb(207,175,33)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3160%" y="645" width="0.0119%" height="15" fill="rgb(243,129,54)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3160%" y="629" width="0.0119%" height="15" fill="rgb(227,119,45)" fg:x="2860" fg:w="3"/><text x="11.5660%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (50 samples, 0.20%)</title><rect x="11.1498%" y="917" width="0.1978%" height="15" fill="rgb(205,109,36)" fg:x="2818" fg:w="50"/><text x="11.3998%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.20%)</title><rect x="11.1498%" y="901" width="0.1978%" height="15" fill="rgb(205,6,39)" fg:x="2818" fg:w="50"/><text x="11.3998%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.20%)</title><rect x="11.1498%" y="885" width="0.1978%" height="15" fill="rgb(221,32,16)" fg:x="2818" fg:w="50"/><text x="11.3998%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (50 samples, 0.20%)</title><rect x="11.1498%" y="869" width="0.1978%" height="15" fill="rgb(228,144,50)" fg:x="2818" fg:w="50"/><text x="11.3998%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.10%)</title><rect x="11.2448%" y="853" width="0.1029%" height="15" fill="rgb(229,201,53)" fg:x="2842" fg:w="26"/><text x="11.4948%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="11.2448%" y="837" width="0.1029%" height="15" fill="rgb(249,153,27)" fg:x="2842" fg:w="26"/><text x="11.4948%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="11.2448%" y="821" width="0.1029%" height="15" fill="rgb(227,106,25)" fg:x="2842" fg:w="26"/><text x="11.4948%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="11.2448%" y="805" width="0.1029%" height="15" fill="rgb(230,65,29)" fg:x="2842" fg:w="26"/><text x="11.4948%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="11.3160%" y="789" width="0.0317%" height="15" fill="rgb(221,57,46)" fg:x="2860" fg:w="8"/><text x="11.5660%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="11.3160%" y="773" width="0.0317%" height="15" fill="rgb(229,161,17)" fg:x="2860" fg:w="8"/><text x="11.5660%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.3160%" y="757" width="0.0317%" height="15" fill="rgb(222,213,11)" fg:x="2860" fg:w="8"/><text x="11.5660%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="11.3160%" y="741" width="0.0317%" height="15" fill="rgb(235,35,13)" fg:x="2860" fg:w="8"/><text x="11.5660%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="11.3160%" y="725" width="0.0317%" height="15" fill="rgb(233,158,34)" fg:x="2860" fg:w="8"/><text x="11.5660%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="11.3358%" y="709" width="0.0119%" height="15" fill="rgb(215,151,48)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="11.3358%" y="693" width="0.0119%" height="15" fill="rgb(229,84,14)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3358%" y="677" width="0.0119%" height="15" fill="rgb(229,68,14)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3358%" y="661" width="0.0119%" height="15" fill="rgb(243,106,26)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3358%" y="645" width="0.0119%" height="15" fill="rgb(206,45,38)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="11.3358%" y="629" width="0.0119%" height="15" fill="rgb(226,6,15)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3358%" y="613" width="0.0119%" height="15" fill="rgb(232,22,54)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3358%" y="597" width="0.0119%" height="15" fill="rgb(229,222,32)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3358%" y="581" width="0.0119%" height="15" fill="rgb(228,62,29)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="11.3358%" y="565" width="0.0119%" height="15" fill="rgb(251,103,34)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="11.3358%" y="549" width="0.0119%" height="15" fill="rgb(233,12,30)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3358%" y="533" width="0.0119%" height="15" fill="rgb(238,52,0)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3358%" y="517" width="0.0119%" height="15" fill="rgb(223,98,5)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3358%" y="501" width="0.0119%" height="15" fill="rgb(228,75,37)" fg:x="2865" fg:w="3"/><text x="11.5858%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.3476%" y="837" width="0.0158%" height="15" fill="rgb(205,115,49)" fg:x="2868" fg:w="4"/><text x="11.5976%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.3476%" y="821" width="0.0158%" height="15" fill="rgb(250,154,43)" fg:x="2868" fg:w="4"/><text x="11.5976%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.3476%" y="805" width="0.0158%" height="15" fill="rgb(226,43,29)" fg:x="2868" fg:w="4"/><text x="11.5976%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="11.3516%" y="789" width="0.0119%" height="15" fill="rgb(249,228,39)" fg:x="2869" fg:w="3"/><text x="11.6016%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3516%" y="773" width="0.0119%" height="15" fill="rgb(216,79,43)" fg:x="2869" fg:w="3"/><text x="11.6016%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3516%" y="757" width="0.0119%" height="15" fill="rgb(228,95,12)" fg:x="2869" fg:w="3"/><text x="11.6016%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3516%" y="741" width="0.0119%" height="15" fill="rgb(249,221,15)" fg:x="2869" fg:w="3"/><text x="11.6016%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.3635%" y="757" width="0.0198%" height="15" fill="rgb(233,34,13)" fg:x="2872" fg:w="5"/><text x="11.6135%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.3635%" y="741" width="0.0198%" height="15" fill="rgb(214,103,39)" fg:x="2872" fg:w="5"/><text x="11.6135%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.3635%" y="725" width="0.0198%" height="15" fill="rgb(251,126,39)" fg:x="2872" fg:w="5"/><text x="11.6135%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="11.3714%" y="709" width="0.0119%" height="15" fill="rgb(214,216,36)" fg:x="2874" fg:w="3"/><text x="11.6214%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.3714%" y="693" width="0.0119%" height="15" fill="rgb(220,221,8)" fg:x="2874" fg:w="3"/><text x="11.6214%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.3714%" y="677" width="0.0119%" height="15" fill="rgb(240,216,3)" fg:x="2874" fg:w="3"/><text x="11.6214%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.3714%" y="661" width="0.0119%" height="15" fill="rgb(232,218,17)" fg:x="2874" fg:w="3"/><text x="11.6214%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (180 samples, 0.71%)</title><rect x="10.6987%" y="965" width="0.7122%" height="15" fill="rgb(229,163,45)" fg:x="2704" fg:w="180"/><text x="10.9487%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (180 samples, 0.71%)</title><rect x="10.6987%" y="949" width="0.7122%" height="15" fill="rgb(231,110,42)" fg:x="2704" fg:w="180"/><text x="10.9487%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (180 samples, 0.71%)</title><rect x="10.6987%" y="933" width="0.7122%" height="15" fill="rgb(208,170,48)" fg:x="2704" fg:w="180"/><text x="10.9487%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="11.3476%" y="917" width="0.0633%" height="15" fill="rgb(239,116,25)" fg:x="2868" fg:w="16"/><text x="11.5976%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="11.3476%" y="901" width="0.0633%" height="15" fill="rgb(219,200,50)" fg:x="2868" fg:w="16"/><text x="11.5976%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="11.3476%" y="885" width="0.0633%" height="15" fill="rgb(245,200,0)" fg:x="2868" fg:w="16"/><text x="11.5976%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="11.3476%" y="869" width="0.0633%" height="15" fill="rgb(245,119,33)" fg:x="2868" fg:w="16"/><text x="11.5976%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="11.3476%" y="853" width="0.0633%" height="15" fill="rgb(231,125,12)" fg:x="2868" fg:w="16"/><text x="11.5976%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="11.3635%" y="837" width="0.0475%" height="15" fill="rgb(216,96,41)" fg:x="2872" fg:w="12"/><text x="11.6135%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="11.3635%" y="821" width="0.0475%" height="15" fill="rgb(248,43,45)" fg:x="2872" fg:w="12"/><text x="11.6135%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.3635%" y="805" width="0.0475%" height="15" fill="rgb(217,222,7)" fg:x="2872" fg:w="12"/><text x="11.6135%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.3635%" y="789" width="0.0475%" height="15" fill="rgb(233,28,6)" fg:x="2872" fg:w="12"/><text x="11.6135%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.3635%" y="773" width="0.0475%" height="15" fill="rgb(231,218,15)" fg:x="2872" fg:w="12"/><text x="11.6135%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.3832%" y="757" width="0.0277%" height="15" fill="rgb(226,171,48)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="11.3832%" y="741" width="0.0277%" height="15" fill="rgb(235,201,9)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.3832%" y="725" width="0.0277%" height="15" fill="rgb(217,80,15)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.3832%" y="709" width="0.0277%" height="15" fill="rgb(219,152,8)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.3832%" y="693" width="0.0277%" height="15" fill="rgb(243,107,38)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="11.3832%" y="677" width="0.0277%" height="15" fill="rgb(231,17,5)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.3832%" y="661" width="0.0277%" height="15" fill="rgb(209,25,54)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.3832%" y="645" width="0.0277%" height="15" fill="rgb(219,0,2)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.3832%" y="629" width="0.0277%" height="15" fill="rgb(246,9,5)" fg:x="2877" fg:w="7"/><text x="11.6332%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.3872%" y="613" width="0.0237%" height="15" fill="rgb(226,159,4)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.3872%" y="597" width="0.0237%" height="15" fill="rgb(219,175,34)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.3872%" y="581" width="0.0237%" height="15" fill="rgb(236,10,46)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.3872%" y="565" width="0.0237%" height="15" fill="rgb(240,211,16)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.3872%" y="549" width="0.0237%" height="15" fill="rgb(205,3,43)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.3872%" y="533" width="0.0237%" height="15" fill="rgb(245,7,22)" fg:x="2878" fg:w="6"/><text x="11.6372%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.3912%" y="517" width="0.0198%" height="15" fill="rgb(239,132,32)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.3912%" y="501" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.3912%" y="485" width="0.0198%" height="15" fill="rgb(254,200,22)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="495.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="11.3912%" y="469" width="0.0198%" height="15" fill="rgb(219,10,39)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="479.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.3912%" y="453" width="0.0198%" height="15" fill="rgb(226,210,39)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="463.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="11.3912%" y="437" width="0.0198%" height="15" fill="rgb(208,219,16)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="447.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="11.3912%" y="421" width="0.0198%" height="15" fill="rgb(216,158,51)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="431.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="11.3912%" y="405" width="0.0198%" height="15" fill="rgb(233,14,44)" fg:x="2879" fg:w="5"/><text x="11.6412%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.4109%" y="805" width="0.0237%" height="15" fill="rgb(237,97,39)" fg:x="2884" fg:w="6"/><text x="11.6609%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.4109%" y="789" width="0.0237%" height="15" fill="rgb(218,198,43)" fg:x="2884" fg:w="6"/><text x="11.6609%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.4109%" y="773" width="0.0237%" height="15" fill="rgb(231,104,20)" fg:x="2884" fg:w="6"/><text x="11.6609%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="11.4188%" y="757" width="0.0158%" height="15" fill="rgb(254,36,13)" fg:x="2886" fg:w="4"/><text x="11.6688%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.4188%" y="741" width="0.0158%" height="15" fill="rgb(248,14,50)" fg:x="2886" fg:w="4"/><text x="11.6688%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="11.4188%" y="725" width="0.0158%" height="15" fill="rgb(217,107,29)" fg:x="2886" fg:w="4"/><text x="11.6688%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="11.4188%" y="709" width="0.0158%" height="15" fill="rgb(251,169,33)" fg:x="2886" fg:w="4"/><text x="11.6688%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (4 samples, 0.02%)</title><rect x="11.4188%" y="693" width="0.0158%" height="15" fill="rgb(217,108,32)" fg:x="2886" fg:w="4"/><text x="11.6688%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.4228%" y="677" width="0.0119%" height="15" fill="rgb(219,66,42)" fg:x="2887" fg:w="3"/><text x="11.6728%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.4347%" y="741" width="0.0119%" height="15" fill="rgb(206,180,7)" fg:x="2890" fg:w="3"/><text x="11.6847%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="11.4347%" y="725" width="0.0119%" height="15" fill="rgb(208,226,31)" fg:x="2890" fg:w="3"/><text x="11.6847%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="11.4347%" y="709" width="0.0119%" height="15" fill="rgb(218,26,49)" fg:x="2890" fg:w="3"/><text x="11.6847%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="11.4347%" y="693" width="0.0119%" height="15" fill="rgb(233,197,48)" fg:x="2890" fg:w="3"/><text x="11.6847%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.4347%" y="677" width="0.0119%" height="15" fill="rgb(252,181,51)" fg:x="2890" fg:w="3"/><text x="11.6847%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="11.4109%" y="853" width="0.0435%" height="15" fill="rgb(253,90,19)" fg:x="2884" fg:w="11"/><text x="11.6609%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="11.4109%" y="837" width="0.0435%" height="15" fill="rgb(215,171,30)" fg:x="2884" fg:w="11"/><text x="11.6609%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="11.4109%" y="821" width="0.0435%" height="15" fill="rgb(214,222,9)" fg:x="2884" fg:w="11"/><text x="11.6609%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="11.4347%" y="805" width="0.0198%" height="15" fill="rgb(223,3,22)" fg:x="2890" fg:w="5"/><text x="11.6847%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.4347%" y="789" width="0.0198%" height="15" fill="rgb(225,196,46)" fg:x="2890" fg:w="5"/><text x="11.6847%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.4347%" y="773" width="0.0198%" height="15" fill="rgb(209,110,37)" fg:x="2890" fg:w="5"/><text x="11.6847%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.4347%" y="757" width="0.0198%" height="15" fill="rgb(249,89,12)" fg:x="2890" fg:w="5"/><text x="11.6847%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.4545%" y="789" width="0.0119%" height="15" fill="rgb(226,27,33)" fg:x="2895" fg:w="3"/><text x="11.7045%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.4545%" y="773" width="0.0119%" height="15" fill="rgb(213,82,22)" fg:x="2895" fg:w="3"/><text x="11.7045%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.4545%" y="757" width="0.0119%" height="15" fill="rgb(248,140,0)" fg:x="2895" fg:w="3"/><text x="11.7045%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.4663%" y="725" width="0.0119%" height="15" fill="rgb(228,106,3)" fg:x="2898" fg:w="3"/><text x="11.7163%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="11.4663%" y="709" width="0.0119%" height="15" fill="rgb(209,23,37)" fg:x="2898" fg:w="3"/><text x="11.7163%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="11.4663%" y="693" width="0.0119%" height="15" fill="rgb(241,93,50)" fg:x="2898" fg:w="3"/><text x="11.7163%" y="703.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="11.4663%" y="677" width="0.0119%" height="15" fill="rgb(253,46,43)" fg:x="2898" fg:w="3"/><text x="11.7163%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="11.4663%" y="789" width="0.0198%" height="15" fill="rgb(226,206,43)" fg:x="2898" fg:w="5"/><text x="11.7163%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.4663%" y="773" width="0.0198%" height="15" fill="rgb(217,54,7)" fg:x="2898" fg:w="5"/><text x="11.7163%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.4663%" y="757" width="0.0198%" height="15" fill="rgb(223,5,52)" fg:x="2898" fg:w="5"/><text x="11.7163%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.4663%" y="741" width="0.0198%" height="15" fill="rgb(206,52,46)" fg:x="2898" fg:w="5"/><text x="11.7163%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.4861%" y="709" width="0.0119%" height="15" fill="rgb(253,136,11)" fg:x="2903" fg:w="3"/><text x="11.7361%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.4861%" y="693" width="0.0119%" height="15" fill="rgb(208,106,33)" fg:x="2903" fg:w="3"/><text x="11.7361%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.4861%" y="677" width="0.0119%" height="15" fill="rgb(206,54,4)" fg:x="2903" fg:w="3"/><text x="11.7361%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="11.4109%" y="901" width="0.0910%" height="15" fill="rgb(213,3,15)" fg:x="2884" fg:w="23"/><text x="11.6609%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="11.4109%" y="885" width="0.0910%" height="15" fill="rgb(252,211,39)" fg:x="2884" fg:w="23"/><text x="11.6609%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="11.4109%" y="869" width="0.0910%" height="15" fill="rgb(223,6,36)" fg:x="2884" fg:w="23"/><text x="11.6609%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="11.4545%" y="853" width="0.0475%" height="15" fill="rgb(252,169,45)" fg:x="2895" fg:w="12"/><text x="11.7045%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.4545%" y="837" width="0.0475%" height="15" fill="rgb(212,48,26)" fg:x="2895" fg:w="12"/><text x="11.7045%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.4545%" y="821" width="0.0475%" height="15" fill="rgb(251,102,48)" fg:x="2895" fg:w="12"/><text x="11.7045%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.4545%" y="805" width="0.0475%" height="15" fill="rgb(243,208,16)" fg:x="2895" fg:w="12"/><text x="11.7045%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="11.4861%" y="789" width="0.0158%" height="15" fill="rgb(219,96,24)" fg:x="2903" fg:w="4"/><text x="11.7361%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="11.4861%" y="773" width="0.0158%" height="15" fill="rgb(219,33,29)" fg:x="2903" fg:w="4"/><text x="11.7361%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.4861%" y="757" width="0.0158%" height="15" fill="rgb(223,176,5)" fg:x="2903" fg:w="4"/><text x="11.7361%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.4861%" y="741" width="0.0158%" height="15" fill="rgb(228,140,14)" fg:x="2903" fg:w="4"/><text x="11.7361%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.4861%" y="725" width="0.0158%" height="15" fill="rgb(217,179,31)" fg:x="2903" fg:w="4"/><text x="11.7361%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.5019%" y="789" width="0.0158%" height="15" fill="rgb(230,9,30)" fg:x="2907" fg:w="4"/><text x="11.7519%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.5019%" y="773" width="0.0158%" height="15" fill="rgb(230,136,20)" fg:x="2907" fg:w="4"/><text x="11.7519%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.5019%" y="757" width="0.0158%" height="15" fill="rgb(215,210,22)" fg:x="2907" fg:w="4"/><text x="11.7519%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.5019%" y="837" width="0.0317%" height="15" fill="rgb(218,43,5)" fg:x="2907" fg:w="8"/><text x="11.7519%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="11.5019%" y="821" width="0.0317%" height="15" fill="rgb(216,11,5)" fg:x="2907" fg:w="8"/><text x="11.7519%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="11.5019%" y="805" width="0.0317%" height="15" fill="rgb(209,82,29)" fg:x="2907" fg:w="8"/><text x="11.7519%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="11.5178%" y="789" width="0.0158%" height="15" fill="rgb(244,115,12)" fg:x="2911" fg:w="4"/><text x="11.7678%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.5178%" y="773" width="0.0158%" height="15" fill="rgb(222,82,18)" fg:x="2911" fg:w="4"/><text x="11.7678%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.5178%" y="757" width="0.0158%" height="15" fill="rgb(249,227,8)" fg:x="2911" fg:w="4"/><text x="11.7678%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.5178%" y="741" width="0.0158%" height="15" fill="rgb(253,141,45)" fg:x="2911" fg:w="4"/><text x="11.7678%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="11.5415%" y="773" width="0.0158%" height="15" fill="rgb(234,184,4)" fg:x="2917" fg:w="4"/><text x="11.7915%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.5415%" y="757" width="0.0158%" height="15" fill="rgb(218,194,23)" fg:x="2917" fg:w="4"/><text x="11.7915%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.5415%" y="741" width="0.0158%" height="15" fill="rgb(235,66,41)" fg:x="2917" fg:w="4"/><text x="11.7915%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.5415%" y="725" width="0.0158%" height="15" fill="rgb(245,217,1)" fg:x="2917" fg:w="4"/><text x="11.7915%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.5573%" y="693" width="0.0119%" height="15" fill="rgb(229,91,1)" fg:x="2921" fg:w="3"/><text x="11.8073%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.5573%" y="677" width="0.0119%" height="15" fill="rgb(207,101,30)" fg:x="2921" fg:w="3"/><text x="11.8073%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.5573%" y="661" width="0.0119%" height="15" fill="rgb(223,82,49)" fg:x="2921" fg:w="3"/><text x="11.8073%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="11.5336%" y="837" width="0.0514%" height="15" fill="rgb(218,167,17)" fg:x="2915" fg:w="13"/><text x="11.7836%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="11.5336%" y="821" width="0.0514%" height="15" fill="rgb(208,103,14)" fg:x="2915" fg:w="13"/><text x="11.7836%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="11.5336%" y="805" width="0.0514%" height="15" fill="rgb(238,20,8)" fg:x="2915" fg:w="13"/><text x="11.7836%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="11.5336%" y="789" width="0.0514%" height="15" fill="rgb(218,80,54)" fg:x="2915" fg:w="13"/><text x="11.7836%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.5573%" y="773" width="0.0277%" height="15" fill="rgb(240,144,17)" fg:x="2921" fg:w="7"/><text x="11.8073%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="11.5573%" y="757" width="0.0277%" height="15" fill="rgb(245,27,50)" fg:x="2921" fg:w="7"/><text x="11.8073%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.5573%" y="741" width="0.0277%" height="15" fill="rgb(251,51,7)" fg:x="2921" fg:w="7"/><text x="11.8073%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.5573%" y="725" width="0.0277%" height="15" fill="rgb(245,217,29)" fg:x="2921" fg:w="7"/><text x="11.8073%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.5573%" y="709" width="0.0277%" height="15" fill="rgb(221,176,29)" fg:x="2921" fg:w="7"/><text x="11.8073%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="11.5692%" y="693" width="0.0158%" height="15" fill="rgb(212,180,24)" fg:x="2924" fg:w="4"/><text x="11.8192%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="11.5692%" y="677" width="0.0158%" height="15" fill="rgb(254,24,2)" fg:x="2924" fg:w="4"/><text x="11.8192%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.5692%" y="661" width="0.0158%" height="15" fill="rgb(230,100,2)" fg:x="2924" fg:w="4"/><text x="11.8192%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.5692%" y="645" width="0.0158%" height="15" fill="rgb(219,142,25)" fg:x="2924" fg:w="4"/><text x="11.8192%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.5692%" y="629" width="0.0158%" height="15" fill="rgb(240,73,43)" fg:x="2924" fg:w="4"/><text x="11.8192%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.11%)</title><rect x="11.5019%" y="901" width="0.1108%" height="15" fill="rgb(214,114,15)" fg:x="2907" fg:w="28"/><text x="11.7519%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="11.5019%" y="885" width="0.1108%" height="15" fill="rgb(207,130,4)" fg:x="2907" fg:w="28"/><text x="11.7519%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="11.5019%" y="869" width="0.1108%" height="15" fill="rgb(221,25,40)" fg:x="2907" fg:w="28"/><text x="11.7519%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="11.5019%" y="853" width="0.1108%" height="15" fill="rgb(241,184,7)" fg:x="2907" fg:w="28"/><text x="11.7519%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.5850%" y="837" width="0.0277%" height="15" fill="rgb(235,159,4)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="11.5850%" y="821" width="0.0277%" height="15" fill="rgb(214,87,48)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.5850%" y="805" width="0.0277%" height="15" fill="rgb(246,198,24)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.5850%" y="789" width="0.0277%" height="15" fill="rgb(209,66,40)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.5850%" y="773" width="0.0277%" height="15" fill="rgb(233,147,39)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.5850%" y="757" width="0.0277%" height="15" fill="rgb(231,145,52)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.5850%" y="741" width="0.0277%" height="15" fill="rgb(206,20,26)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.5850%" y="725" width="0.0277%" height="15" fill="rgb(238,220,4)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.5850%" y="709" width="0.0277%" height="15" fill="rgb(252,195,42)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.5850%" y="693" width="0.0277%" height="15" fill="rgb(209,10,6)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.5850%" y="677" width="0.0277%" height="15" fill="rgb(229,3,52)" fg:x="2928" fg:w="7"/><text x="11.8350%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="11.5929%" y="661" width="0.0198%" height="15" fill="rgb(253,49,37)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.5929%" y="645" width="0.0198%" height="15" fill="rgb(240,103,49)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.5929%" y="629" width="0.0198%" height="15" fill="rgb(250,182,30)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.5929%" y="613" width="0.0198%" height="15" fill="rgb(248,8,30)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.5929%" y="597" width="0.0198%" height="15" fill="rgb(237,120,30)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="11.5929%" y="581" width="0.0198%" height="15" fill="rgb(221,146,34)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.5929%" y="565" width="0.0198%" height="15" fill="rgb(242,55,13)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.5929%" y="549" width="0.0198%" height="15" fill="rgb(242,112,31)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.5929%" y="533" width="0.0198%" height="15" fill="rgb(249,192,27)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.5929%" y="517" width="0.0198%" height="15" fill="rgb(208,204,44)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.5929%" y="501" width="0.0198%" height="15" fill="rgb(208,93,54)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.5929%" y="485" width="0.0198%" height="15" fill="rgb(242,1,31)" fg:x="2930" fg:w="5"/><text x="11.8429%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="11.6009%" y="469" width="0.0119%" height="15" fill="rgb(241,83,25)" fg:x="2932" fg:w="3"/><text x="11.8509%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="11.6009%" y="453" width="0.0119%" height="15" fill="rgb(205,169,50)" fg:x="2932" fg:w="3"/><text x="11.8509%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="11.6009%" y="437" width="0.0119%" height="15" fill="rgb(239,186,37)" fg:x="2932" fg:w="3"/><text x="11.8509%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="11.6009%" y="421" width="0.0119%" height="15" fill="rgb(205,221,10)" fg:x="2932" fg:w="3"/><text x="11.8509%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (53 samples, 0.21%)</title><rect x="11.4109%" y="965" width="0.2097%" height="15" fill="rgb(218,196,15)" fg:x="2884" fg:w="53"/><text x="11.6609%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.21%)</title><rect x="11.4109%" y="949" width="0.2097%" height="15" fill="rgb(218,196,35)" fg:x="2884" fg:w="53"/><text x="11.6609%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.21%)</title><rect x="11.4109%" y="933" width="0.2097%" height="15" fill="rgb(233,63,24)" fg:x="2884" fg:w="53"/><text x="11.6609%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (53 samples, 0.21%)</title><rect x="11.4109%" y="917" width="0.2097%" height="15" fill="rgb(225,8,4)" fg:x="2884" fg:w="53"/><text x="11.6609%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="11.6206%" y="885" width="0.0158%" height="15" fill="rgb(234,105,35)" fg:x="2937" fg:w="4"/><text x="11.8706%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="11.6206%" y="869" width="0.0158%" height="15" fill="rgb(236,21,32)" fg:x="2937" fg:w="4"/><text x="11.8706%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="11.6206%" y="853" width="0.0158%" height="15" fill="rgb(228,109,6)" fg:x="2937" fg:w="4"/><text x="11.8706%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (245 samples, 0.97%)</title><rect x="10.6987%" y="981" width="0.9694%" height="15" fill="rgb(229,215,31)" fg:x="2704" fg:w="245"/><text x="10.9487%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="11.6206%" y="965" width="0.0475%" height="15" fill="rgb(221,52,54)" fg:x="2937" fg:w="12"/><text x="11.8706%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="11.6206%" y="949" width="0.0475%" height="15" fill="rgb(252,129,43)" fg:x="2937" fg:w="12"/><text x="11.8706%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="11.6206%" y="933" width="0.0475%" height="15" fill="rgb(248,183,27)" fg:x="2937" fg:w="12"/><text x="11.8706%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="11.6206%" y="917" width="0.0475%" height="15" fill="rgb(250,0,22)" fg:x="2937" fg:w="12"/><text x="11.8706%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="11.6206%" y="901" width="0.0475%" height="15" fill="rgb(213,166,10)" fg:x="2937" fg:w="12"/><text x="11.8706%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="11.6365%" y="885" width="0.0317%" height="15" fill="rgb(207,163,36)" fg:x="2941" fg:w="8"/><text x="11.8865%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="11.6365%" y="869" width="0.0317%" height="15" fill="rgb(208,122,22)" fg:x="2941" fg:w="8"/><text x="11.8865%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="11.6365%" y="853" width="0.0317%" height="15" fill="rgb(207,104,49)" fg:x="2941" fg:w="8"/><text x="11.8865%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="11.6365%" y="837" width="0.0317%" height="15" fill="rgb(248,211,50)" fg:x="2941" fg:w="8"/><text x="11.8865%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="11.6365%" y="821" width="0.0317%" height="15" fill="rgb(217,13,45)" fg:x="2941" fg:w="8"/><text x="11.8865%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="11.6404%" y="805" width="0.0277%" height="15" fill="rgb(211,216,49)" fg:x="2942" fg:w="7"/><text x="11.8904%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="11.6404%" y="789" width="0.0277%" height="15" fill="rgb(221,58,53)" fg:x="2942" fg:w="7"/><text x="11.8904%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="11.6404%" y="773" width="0.0277%" height="15" fill="rgb(220,112,41)" fg:x="2942" fg:w="7"/><text x="11.8904%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="11.6404%" y="757" width="0.0277%" height="15" fill="rgb(236,38,28)" fg:x="2942" fg:w="7"/><text x="11.8904%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.6404%" y="741" width="0.0277%" height="15" fill="rgb(227,195,22)" fg:x="2942" fg:w="7"/><text x="11.8904%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="11.6444%" y="725" width="0.0237%" height="15" fill="rgb(214,55,33)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="11.6444%" y="709" width="0.0237%" height="15" fill="rgb(248,80,13)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.6444%" y="693" width="0.0237%" height="15" fill="rgb(238,52,6)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.6444%" y="677" width="0.0237%" height="15" fill="rgb(224,198,47)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.6444%" y="661" width="0.0237%" height="15" fill="rgb(233,171,20)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.6444%" y="645" width="0.0237%" height="15" fill="rgb(241,30,25)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.6444%" y="629" width="0.0237%" height="15" fill="rgb(207,171,38)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.6444%" y="613" width="0.0237%" height="15" fill="rgb(234,70,1)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.6444%" y="597" width="0.0237%" height="15" fill="rgb(232,178,18)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="11.6444%" y="581" width="0.0237%" height="15" fill="rgb(241,78,40)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="11.6444%" y="565" width="0.0237%" height="15" fill="rgb(222,35,25)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.6444%" y="549" width="0.0237%" height="15" fill="rgb(207,92,16)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.6444%" y="533" width="0.0237%" height="15" fill="rgb(216,59,51)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.6444%" y="517" width="0.0237%" height="15" fill="rgb(213,80,28)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.6444%" y="501" width="0.0237%" height="15" fill="rgb(220,93,7)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.6444%" y="485" width="0.0237%" height="15" fill="rgb(225,24,44)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="11.6444%" y="469" width="0.0237%" height="15" fill="rgb(243,74,40)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="11.6444%" y="453" width="0.0237%" height="15" fill="rgb(228,39,7)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="11.6444%" y="437" width="0.0237%" height="15" fill="rgb(227,79,8)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="11.6444%" y="421" width="0.0237%" height="15" fill="rgb(236,58,11)" fg:x="2943" fg:w="6"/><text x="11.8944%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.6483%" y="405" width="0.0198%" height="15" fill="rgb(249,63,35)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.6483%" y="389" width="0.0198%" height="15" fill="rgb(252,114,16)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="11.6483%" y="373" width="0.0198%" height="15" fill="rgb(254,151,24)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="11.6483%" y="357" width="0.0198%" height="15" fill="rgb(253,54,39)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="11.6483%" y="341" width="0.0198%" height="15" fill="rgb(243,25,45)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="11.6483%" y="325" width="0.0198%" height="15" fill="rgb(234,134,9)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="335.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="11.6483%" y="309" width="0.0198%" height="15" fill="rgb(227,166,31)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="319.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="11.6483%" y="293" width="0.0198%" height="15" fill="rgb(245,143,41)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="303.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="11.6483%" y="277" width="0.0198%" height="15" fill="rgb(238,181,32)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="287.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (5 samples, 0.02%)</title><rect x="11.6483%" y="261" width="0.0198%" height="15" fill="rgb(224,113,18)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="271.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (5 samples, 0.02%)</title><rect x="11.6483%" y="245" width="0.0198%" height="15" fill="rgb(240,229,28)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="255.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="11.6483%" y="229" width="0.0198%" height="15" fill="rgb(250,185,3)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="239.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="11.6483%" y="213" width="0.0198%" height="15" fill="rgb(212,59,25)" fg:x="2944" fg:w="5"/><text x="11.8983%" y="223.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="11.6681%" y="917" width="0.0356%" height="15" fill="rgb(221,87,20)" fg:x="2949" fg:w="9"/><text x="11.9181%" y="927.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="11.6681%" y="901" width="0.0356%" height="15" fill="rgb(213,74,28)" fg:x="2949" fg:w="9"/><text x="11.9181%" y="911.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="11.6879%" y="885" width="0.0158%" height="15" fill="rgb(224,132,34)" fg:x="2954" fg:w="4"/><text x="11.9379%" y="895.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="11.6681%" y="949" width="0.0396%" height="15" fill="rgb(222,101,24)" fg:x="2949" fg:w="10"/><text x="11.9181%" y="959.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (10 samples, 0.04%)</title><rect x="11.6681%" y="933" width="0.0396%" height="15" fill="rgb(254,142,4)" fg:x="2949" fg:w="10"/><text x="11.9181%" y="943.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (15 samples, 0.06%)</title><rect x="11.7077%" y="869" width="0.0593%" height="15" fill="rgb(230,229,49)" fg:x="2959" fg:w="15"/><text x="11.9577%" y="879.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="11.7156%" y="853" width="0.0514%" height="15" fill="rgb(238,70,47)" fg:x="2961" fg:w="13"/><text x="11.9656%" y="863.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="11.7393%" y="837" width="0.0277%" height="15" fill="rgb(231,160,17)" fg:x="2967" fg:w="7"/><text x="11.9893%" y="847.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (16 samples, 0.06%)</title><rect x="11.7077%" y="901" width="0.0633%" height="15" fill="rgb(218,68,53)" fg:x="2959" fg:w="16"/><text x="11.9577%" y="911.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (16 samples, 0.06%)</title><rect x="11.7077%" y="885" width="0.0633%" height="15" fill="rgb(236,111,10)" fg:x="2959" fg:w="16"/><text x="11.9577%" y="895.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="11.7829%" y="805" width="0.0119%" height="15" fill="rgb(224,34,41)" fg:x="2978" fg:w="3"/><text x="12.0329%" y="815.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (17 samples, 0.07%)</title><rect x="11.7710%" y="821" width="0.0673%" height="15" fill="rgb(241,118,19)" fg:x="2975" fg:w="17"/><text x="12.0210%" y="831.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.04%)</title><rect x="11.7947%" y="805" width="0.0435%" height="15" fill="rgb(238,129,25)" fg:x="2981" fg:w="11"/><text x="12.0447%" y="815.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="11.8026%" y="789" width="0.0356%" height="15" fill="rgb(238,22,31)" fg:x="2983" fg:w="9"/><text x="12.0526%" y="799.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="11.8264%" y="773" width="0.0119%" height="15" fill="rgb(222,174,48)" fg:x="2989" fg:w="3"/><text x="12.0764%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (20 samples, 0.08%)</title><rect x="11.7710%" y="853" width="0.0791%" height="15" fill="rgb(206,152,40)" fg:x="2975" fg:w="20"/><text x="12.0210%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (20 samples, 0.08%)</title><rect x="11.7710%" y="837" width="0.0791%" height="15" fill="rgb(218,99,54)" fg:x="2975" fg:w="20"/><text x="12.0210%" y="847.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.8383%" y="821" width="0.0119%" height="15" fill="rgb(220,174,26)" fg:x="2992" fg:w="3"/><text x="12.0883%" y="831.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (48 samples, 0.19%)</title><rect x="11.8501%" y="773" width="0.1899%" height="15" fill="rgb(245,116,9)" fg:x="2995" fg:w="48"/><text x="12.1001%" y="783.50"></text></g><g><title>rayon::slice::quicksort::recurse (46 samples, 0.18%)</title><rect x="11.8580%" y="757" width="0.1820%" height="15" fill="rgb(209,72,35)" fg:x="2997" fg:w="46"/><text x="12.1080%" y="767.50"></text></g><g><title>rayon::slice::quicksort::recurse (26 samples, 0.10%)</title><rect x="11.9372%" y="741" width="0.1029%" height="15" fill="rgb(226,126,21)" fg:x="3017" fg:w="26"/><text x="12.1872%" y="751.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.0282%" y="725" width="0.0119%" height="15" fill="rgb(227,192,1)" fg:x="3040" fg:w="3"/><text x="12.2782%" y="735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (52 samples, 0.21%)</title><rect x="11.8501%" y="805" width="0.2057%" height="15" fill="rgb(237,180,29)" fg:x="2995" fg:w="52"/><text x="12.1001%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (52 samples, 0.21%)</title><rect x="11.8501%" y="789" width="0.2057%" height="15" fill="rgb(230,197,35)" fg:x="2995" fg:w="52"/><text x="12.1001%" y="799.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="12.0400%" y="773" width="0.0158%" height="15" fill="rgb(246,193,31)" fg:x="3043" fg:w="4"/><text x="12.2900%" y="783.50"></text></g><g><title>[libc.so.6] (4 samples, 0.02%)</title><rect x="12.0717%" y="709" width="0.0158%" height="15" fill="rgb(241,36,4)" fg:x="3051" fg:w="4"/><text x="12.3217%" y="719.50"></text></g><g><title>cfree (3 samples, 0.01%)</title><rect x="12.0915%" y="709" width="0.0119%" height="15" fill="rgb(241,130,17)" fg:x="3056" fg:w="3"/><text x="12.3415%" y="719.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (207 samples, 0.82%)</title><rect x="12.0559%" y="725" width="0.8190%" height="15" fill="rgb(206,137,32)" fg:x="3047" fg:w="207"/><text x="12.3059%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (193 samples, 0.76%)</title><rect x="12.1113%" y="709" width="0.7636%" height="15" fill="rgb(237,228,51)" fg:x="3061" fg:w="193"/><text x="12.3613%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (105 samples, 0.42%)</title><rect x="12.4594%" y="693" width="0.4154%" height="15" fill="rgb(243,6,42)" fg:x="3149" fg:w="105"/><text x="12.7094%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (21 samples, 0.08%)</title><rect x="12.7918%" y="677" width="0.0831%" height="15" fill="rgb(251,74,28)" fg:x="3233" fg:w="21"/><text x="13.0418%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (239 samples, 0.95%)</title><rect x="12.0559%" y="773" width="0.9456%" height="15" fill="rgb(218,20,49)" fg:x="3047" fg:w="239"/><text x="12.3059%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (239 samples, 0.95%)</title><rect x="12.0559%" y="757" width="0.9456%" height="15" fill="rgb(238,28,14)" fg:x="3047" fg:w="239"/><text x="12.3059%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (239 samples, 0.95%)</title><rect x="12.0559%" y="741" width="0.9456%" height="15" fill="rgb(229,40,46)" fg:x="3047" fg:w="239"/><text x="12.3059%" y="751.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (32 samples, 0.13%)</title><rect x="12.8749%" y="725" width="0.1266%" height="15" fill="rgb(244,195,20)" fg:x="3254" fg:w="32"/><text x="13.1249%" y="735.50"></text></g><g><title>oorandom::Rand64::rand_range (25 samples, 0.10%)</title><rect x="12.9026%" y="709" width="0.0989%" height="15" fill="rgb(253,56,35)" fg:x="3261" fg:w="25"/><text x="13.1526%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (293 samples, 1.16%)</title><rect x="11.8501%" y="821" width="1.1593%" height="15" fill="rgb(210,149,44)" fg:x="2995" fg:w="293"/><text x="12.1001%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (241 samples, 0.95%)</title><rect x="12.0559%" y="805" width="0.9535%" height="15" fill="rgb(240,135,12)" fg:x="3047" fg:w="241"/><text x="12.3059%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (241 samples, 0.95%)</title><rect x="12.0559%" y="789" width="0.9535%" height="15" fill="rgb(251,24,50)" fg:x="3047" fg:w="241"/><text x="12.3059%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.0094%" y="677" width="0.0198%" height="15" fill="rgb(243,200,47)" fg:x="3288" fg:w="5"/><text x="13.2594%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.0094%" y="661" width="0.0198%" height="15" fill="rgb(224,166,26)" fg:x="3288" fg:w="5"/><text x="13.2594%" y="671.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.0094%" y="645" width="0.0198%" height="15" fill="rgb(233,0,47)" fg:x="3288" fg:w="5"/><text x="13.2594%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="13.0134%" y="629" width="0.0158%" height="15" fill="rgb(253,80,5)" fg:x="3289" fg:w="4"/><text x="13.2634%" y="639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.0292%" y="629" width="0.0158%" height="15" fill="rgb(214,133,25)" fg:x="3293" fg:w="4"/><text x="13.2792%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="13.0292%" y="613" width="0.0158%" height="15" fill="rgb(209,27,14)" fg:x="3293" fg:w="4"/><text x="13.2792%" y="623.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (14 samples, 0.06%)</title><rect x="13.0490%" y="549" width="0.0554%" height="15" fill="rgb(219,102,51)" fg:x="3298" fg:w="14"/><text x="13.2990%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="13.0529%" y="533" width="0.0514%" height="15" fill="rgb(237,18,16)" fg:x="3299" fg:w="13"/><text x="13.3029%" y="543.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="13.0727%" y="517" width="0.0317%" height="15" fill="rgb(241,85,17)" fg:x="3304" fg:w="8"/><text x="13.3227%" y="527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (18 samples, 0.07%)</title><rect x="13.0450%" y="581" width="0.0712%" height="15" fill="rgb(236,90,42)" fg:x="3297" fg:w="18"/><text x="13.2950%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (18 samples, 0.07%)</title><rect x="13.0450%" y="565" width="0.0712%" height="15" fill="rgb(249,57,21)" fg:x="3297" fg:w="18"/><text x="13.2950%" y="575.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="13.1044%" y="549" width="0.0119%" height="15" fill="rgb(243,12,36)" fg:x="3312" fg:w="3"/><text x="13.3544%" y="559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="13.1162%" y="501" width="0.0317%" height="15" fill="rgb(253,128,47)" fg:x="3315" fg:w="8"/><text x="13.3662%" y="511.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="13.1162%" y="485" width="0.0317%" height="15" fill="rgb(207,33,20)" fg:x="3315" fg:w="8"/><text x="13.3662%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (349 samples, 1.38%)</title><rect x="11.7710%" y="869" width="1.3809%" height="15" fill="rgb(233,215,35)" fg:x="2975" fg:w="349"/><text x="12.0210%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (329 samples, 1.30%)</title><rect x="11.8501%" y="853" width="1.3017%" height="15" fill="rgb(249,188,52)" fg:x="2995" fg:w="329"/><text x="12.1001%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (329 samples, 1.30%)</title><rect x="11.8501%" y="837" width="1.3017%" height="15" fill="rgb(225,12,32)" fg:x="2995" fg:w="329"/><text x="12.1001%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36 samples, 0.14%)</title><rect x="13.0094%" y="821" width="0.1424%" height="15" fill="rgb(247,98,14)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (36 samples, 0.14%)</title><rect x="13.0094%" y="805" width="0.1424%" height="15" fill="rgb(247,219,48)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="13.0094%" y="789" width="0.1424%" height="15" fill="rgb(253,60,48)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.14%)</title><rect x="13.0094%" y="773" width="0.1424%" height="15" fill="rgb(245,15,52)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (36 samples, 0.14%)</title><rect x="13.0094%" y="757" width="0.1424%" height="15" fill="rgb(220,133,28)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="13.0094%" y="741" width="0.1424%" height="15" fill="rgb(217,180,4)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.14%)</title><rect x="13.0094%" y="725" width="0.1424%" height="15" fill="rgb(251,24,1)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (36 samples, 0.14%)</title><rect x="13.0094%" y="709" width="0.1424%" height="15" fill="rgb(212,185,49)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="13.0094%" y="693" width="0.1424%" height="15" fill="rgb(215,175,22)" fg:x="3288" fg:w="36"/><text x="13.2594%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="13.0292%" y="677" width="0.1227%" height="15" fill="rgb(250,205,14)" fg:x="3293" fg:w="31"/><text x="13.2792%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (31 samples, 0.12%)</title><rect x="13.0292%" y="661" width="0.1227%" height="15" fill="rgb(225,211,22)" fg:x="3293" fg:w="31"/><text x="13.2792%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="13.0292%" y="645" width="0.1227%" height="15" fill="rgb(251,179,42)" fg:x="3293" fg:w="31"/><text x="13.2792%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="13.0450%" y="629" width="0.1068%" height="15" fill="rgb(208,216,51)" fg:x="3297" fg:w="27"/><text x="13.2950%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (27 samples, 0.11%)</title><rect x="13.0450%" y="613" width="0.1068%" height="15" fill="rgb(235,36,11)" fg:x="3297" fg:w="27"/><text x="13.2950%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="13.0450%" y="597" width="0.1068%" height="15" fill="rgb(213,189,28)" fg:x="3297" fg:w="27"/><text x="13.2950%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="13.1162%" y="581" width="0.0356%" height="15" fill="rgb(227,203,42)" fg:x="3315" fg:w="9"/><text x="13.3662%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="13.1162%" y="565" width="0.0356%" height="15" fill="rgb(244,72,36)" fg:x="3315" fg:w="9"/><text x="13.3662%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.1162%" y="549" width="0.0356%" height="15" fill="rgb(213,53,17)" fg:x="3315" fg:w="9"/><text x="13.3662%" y="559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.1162%" y="533" width="0.0356%" height="15" fill="rgb(207,167,3)" fg:x="3315" fg:w="9"/><text x="13.3662%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="13.1162%" y="517" width="0.0356%" height="15" fill="rgb(216,98,30)" fg:x="3315" fg:w="9"/><text x="13.3662%" y="527.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.1558%" y="645" width="0.0198%" height="15" fill="rgb(236,123,15)" fg:x="3325" fg:w="5"/><text x="13.4058%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.1558%" y="629" width="0.0198%" height="15" fill="rgb(248,81,50)" fg:x="3325" fg:w="5"/><text x="13.4058%" y="639.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="13.1519%" y="677" width="0.0277%" height="15" fill="rgb(214,120,4)" fg:x="3324" fg:w="7"/><text x="13.4019%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="13.1519%" y="661" width="0.0277%" height="15" fill="rgb(208,179,34)" fg:x="3324" fg:w="7"/><text x="13.4019%" y="671.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (19 samples, 0.08%)</title><rect x="13.1796%" y="597" width="0.0752%" height="15" fill="rgb(227,140,7)" fg:x="3331" fg:w="19"/><text x="13.4296%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (18 samples, 0.07%)</title><rect x="13.1835%" y="581" width="0.0712%" height="15" fill="rgb(214,22,6)" fg:x="3332" fg:w="18"/><text x="13.4335%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="13.2270%" y="565" width="0.0277%" height="15" fill="rgb(207,137,27)" fg:x="3343" fg:w="7"/><text x="13.4770%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (24 samples, 0.09%)</title><rect x="13.1796%" y="629" width="0.0950%" height="15" fill="rgb(210,8,46)" fg:x="3331" fg:w="24"/><text x="13.4296%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (24 samples, 0.09%)</title><rect x="13.1796%" y="613" width="0.0950%" height="15" fill="rgb(240,16,54)" fg:x="3331" fg:w="24"/><text x="13.4296%" y="623.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="13.2547%" y="597" width="0.0198%" height="15" fill="rgb(211,209,29)" fg:x="3350" fg:w="5"/><text x="13.5047%" y="607.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="13.2587%" y="581" width="0.0158%" height="15" fill="rgb(226,228,24)" fg:x="3351" fg:w="4"/><text x="13.5087%" y="591.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (10 samples, 0.04%)</title><rect x="13.2745%" y="549" width="0.0396%" height="15" fill="rgb(222,84,9)" fg:x="3355" fg:w="10"/><text x="13.5245%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="13.2745%" y="533" width="0.0396%" height="15" fill="rgb(234,203,30)" fg:x="3355" fg:w="10"/><text x="13.5245%" y="543.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="13.2903%" y="517" width="0.0237%" height="15" fill="rgb(238,109,14)" fg:x="3359" fg:w="6"/><text x="13.5403%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.3022%" y="501" width="0.0119%" height="15" fill="rgb(233,206,34)" fg:x="3362" fg:w="3"/><text x="13.5522%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.17%)</title><rect x="13.1519%" y="693" width="0.1701%" height="15" fill="rgb(220,167,47)" fg:x="3324" fg:w="43"/><text x="13.4019%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.14%)</title><rect x="13.1796%" y="677" width="0.1424%" height="15" fill="rgb(238,105,10)" fg:x="3331" fg:w="36"/><text x="13.4296%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (36 samples, 0.14%)</title><rect x="13.1796%" y="661" width="0.1424%" height="15" fill="rgb(213,227,17)" fg:x="3331" fg:w="36"/><text x="13.4296%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="13.1796%" y="645" width="0.1424%" height="15" fill="rgb(217,132,38)" fg:x="3331" fg:w="36"/><text x="13.4296%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="13.2745%" y="629" width="0.0475%" height="15" fill="rgb(242,146,4)" fg:x="3355" fg:w="12"/><text x="13.5245%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (12 samples, 0.05%)</title><rect x="13.2745%" y="613" width="0.0475%" height="15" fill="rgb(212,61,9)" fg:x="3355" fg:w="12"/><text x="13.5245%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="13.2745%" y="597" width="0.0475%" height="15" fill="rgb(247,126,22)" fg:x="3355" fg:w="12"/><text x="13.5245%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="13.2745%" y="581" width="0.0475%" height="15" fill="rgb(220,196,2)" fg:x="3355" fg:w="12"/><text x="13.5245%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (12 samples, 0.05%)</title><rect x="13.2745%" y="565" width="0.0475%" height="15" fill="rgb(208,46,4)" fg:x="3355" fg:w="12"/><text x="13.5245%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="13.1519%" y="741" width="0.1820%" height="15" fill="rgb(252,104,46)" fg:x="3324" fg:w="46"/><text x="13.4019%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="13.1519%" y="725" width="0.1820%" height="15" fill="rgb(237,152,48)" fg:x="3324" fg:w="46"/><text x="13.4019%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (46 samples, 0.18%)</title><rect x="13.1519%" y="709" width="0.1820%" height="15" fill="rgb(221,59,37)" fg:x="3324" fg:w="46"/><text x="13.4019%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="13.3220%" y="693" width="0.0119%" height="15" fill="rgb(209,202,51)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="13.3220%" y="677" width="0.0119%" height="15" fill="rgb(228,81,30)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="13.3220%" y="661" width="0.0119%" height="15" fill="rgb(227,42,39)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="13.3220%" y="645" width="0.0119%" height="15" fill="rgb(221,26,2)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="13.3220%" y="629" width="0.0119%" height="15" fill="rgb(254,61,31)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="639.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="13.3220%" y="613" width="0.0119%" height="15" fill="rgb(222,173,38)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.3220%" y="597" width="0.0119%" height="15" fill="rgb(218,50,12)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.3220%" y="581" width="0.0119%" height="15" fill="rgb(223,88,40)" fg:x="3367" fg:w="3"/><text x="13.5720%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.3339%" y="693" width="0.0158%" height="15" fill="rgb(237,54,19)" fg:x="3370" fg:w="4"/><text x="13.5839%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="13.3339%" y="677" width="0.0158%" height="15" fill="rgb(251,129,25)" fg:x="3370" fg:w="4"/><text x="13.5839%" y="687.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="13.3339%" y="661" width="0.0158%" height="15" fill="rgb(238,97,19)" fg:x="3370" fg:w="4"/><text x="13.5839%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.3378%" y="645" width="0.0119%" height="15" fill="rgb(240,169,18)" fg:x="3371" fg:w="3"/><text x="13.5878%" y="655.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="13.3497%" y="613" width="0.0317%" height="15" fill="rgb(230,187,49)" fg:x="3374" fg:w="8"/><text x="13.5997%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="13.3497%" y="597" width="0.0317%" height="15" fill="rgb(209,44,26)" fg:x="3374" fg:w="8"/><text x="13.5997%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.3616%" y="581" width="0.0198%" height="15" fill="rgb(244,0,6)" fg:x="3377" fg:w="5"/><text x="13.6116%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.3497%" y="645" width="0.0356%" height="15" fill="rgb(248,18,21)" fg:x="3374" fg:w="9"/><text x="13.5997%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="13.3497%" y="629" width="0.0356%" height="15" fill="rgb(245,180,19)" fg:x="3374" fg:w="9"/><text x="13.5997%" y="639.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="13.3853%" y="565" width="0.0277%" height="15" fill="rgb(252,118,36)" fg:x="3383" fg:w="7"/><text x="13.6353%" y="575.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="13.3853%" y="549" width="0.0277%" height="15" fill="rgb(210,224,19)" fg:x="3383" fg:w="7"/><text x="13.6353%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="13.3853%" y="613" width="0.0396%" height="15" fill="rgb(218,30,24)" fg:x="3383" fg:w="10"/><text x="13.6353%" y="623.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="13.3853%" y="597" width="0.0396%" height="15" fill="rgb(219,75,50)" fg:x="3383" fg:w="10"/><text x="13.6353%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (10 samples, 0.04%)</title><rect x="13.3853%" y="581" width="0.0396%" height="15" fill="rgb(234,72,50)" fg:x="3383" fg:w="10"/><text x="13.6353%" y="591.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="13.4130%" y="565" width="0.0119%" height="15" fill="rgb(219,100,48)" fg:x="3390" fg:w="3"/><text x="13.6630%" y="575.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="13.4249%" y="437" width="0.0158%" height="15" fill="rgb(253,5,41)" fg:x="3393" fg:w="4"/><text x="13.6749%" y="447.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="13.4249%" y="421" width="0.0158%" height="15" fill="rgb(247,181,11)" fg:x="3393" fg:w="4"/><text x="13.6749%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.4249%" y="533" width="0.0198%" height="15" fill="rgb(222,223,25)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.4249%" y="517" width="0.0198%" height="15" fill="rgb(214,198,28)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (5 samples, 0.02%)</title><rect x="13.4249%" y="501" width="0.0198%" height="15" fill="rgb(230,46,43)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.4249%" y="485" width="0.0198%" height="15" fill="rgb(233,65,53)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.4249%" y="469" width="0.0198%" height="15" fill="rgb(221,121,27)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="479.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.4249%" y="453" width="0.0198%" height="15" fill="rgb(247,70,47)" fg:x="3393" fg:w="5"/><text x="13.6749%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="13.3497%" y="661" width="0.1029%" height="15" fill="rgb(228,85,35)" fg:x="3374" fg:w="26"/><text x="13.5997%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="13.3853%" y="645" width="0.0673%" height="15" fill="rgb(209,50,18)" fg:x="3383" fg:w="17"/><text x="13.6353%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (17 samples, 0.07%)</title><rect x="13.3853%" y="629" width="0.0673%" height="15" fill="rgb(250,19,35)" fg:x="3383" fg:w="17"/><text x="13.6353%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="13.4249%" y="613" width="0.0277%" height="15" fill="rgb(253,107,29)" fg:x="3393" fg:w="7"/><text x="13.6749%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="13.4249%" y="597" width="0.0277%" height="15" fill="rgb(252,179,29)" fg:x="3393" fg:w="7"/><text x="13.6749%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="13.4249%" y="581" width="0.0277%" height="15" fill="rgb(238,194,6)" fg:x="3393" fg:w="7"/><text x="13.6749%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="13.4249%" y="565" width="0.0277%" height="15" fill="rgb(238,164,29)" fg:x="3393" fg:w="7"/><text x="13.6749%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (7 samples, 0.03%)</title><rect x="13.4249%" y="549" width="0.0277%" height="15" fill="rgb(224,25,9)" fg:x="3393" fg:w="7"/><text x="13.6749%" y="559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="13.4526%" y="533" width="0.0119%" height="15" fill="rgb(244,153,23)" fg:x="3400" fg:w="3"/><text x="13.7026%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35 samples, 0.14%)</title><rect x="13.3339%" y="725" width="0.1385%" height="15" fill="rgb(212,203,14)" fg:x="3370" fg:w="35"/><text x="13.5839%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.14%)</title><rect x="13.3339%" y="709" width="0.1385%" height="15" fill="rgb(220,164,20)" fg:x="3370" fg:w="35"/><text x="13.5839%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="13.3497%" y="693" width="0.1227%" height="15" fill="rgb(222,203,48)" fg:x="3374" fg:w="31"/><text x="13.5997%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (31 samples, 0.12%)</title><rect x="13.3497%" y="677" width="0.1227%" height="15" fill="rgb(215,159,22)" fg:x="3374" fg:w="31"/><text x="13.5997%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="13.4526%" y="661" width="0.0198%" height="15" fill="rgb(216,183,47)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="13.4526%" y="645" width="0.0198%" height="15" fill="rgb(229,195,25)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.4526%" y="629" width="0.0198%" height="15" fill="rgb(224,132,51)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.4526%" y="613" width="0.0198%" height="15" fill="rgb(240,63,7)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (5 samples, 0.02%)</title><rect x="13.4526%" y="597" width="0.0198%" height="15" fill="rgb(249,182,41)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.4526%" y="581" width="0.0198%" height="15" fill="rgb(243,47,26)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.4526%" y="565" width="0.0198%" height="15" fill="rgb(233,48,2)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.4526%" y="549" width="0.0198%" height="15" fill="rgb(244,165,34)" fg:x="3400" fg:w="5"/><text x="13.7026%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (447 samples, 1.77%)</title><rect x="11.7077%" y="917" width="1.7686%" height="15" fill="rgb(207,89,7)" fg:x="2959" fg:w="447"/><text x="11.9577%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (431 samples, 1.71%)</title><rect x="11.7710%" y="901" width="1.7053%" height="15" fill="rgb(244,117,36)" fg:x="2975" fg:w="431"/><text x="12.0210%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (431 samples, 1.71%)</title><rect x="11.7710%" y="885" width="1.7053%" height="15" fill="rgb(226,144,34)" fg:x="2975" fg:w="431"/><text x="12.0210%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (82 samples, 0.32%)</title><rect x="13.1519%" y="869" width="0.3244%" height="15" fill="rgb(213,23,19)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="879.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (82 samples, 0.32%)</title><rect x="13.1519%" y="853" width="0.3244%" height="15" fill="rgb(217,75,12)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.32%)</title><rect x="13.1519%" y="837" width="0.3244%" height="15" fill="rgb(224,159,17)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (82 samples, 0.32%)</title><rect x="13.1519%" y="821" width="0.3244%" height="15" fill="rgb(217,118,1)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (82 samples, 0.32%)</title><rect x="13.1519%" y="805" width="0.3244%" height="15" fill="rgb(232,180,48)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.32%)</title><rect x="13.1519%" y="789" width="0.3244%" height="15" fill="rgb(230,27,33)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (82 samples, 0.32%)</title><rect x="13.1519%" y="773" width="0.3244%" height="15" fill="rgb(205,31,21)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (82 samples, 0.32%)</title><rect x="13.1519%" y="757" width="0.3244%" height="15" fill="rgb(253,59,4)" fg:x="3324" fg:w="82"/><text x="13.4019%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (36 samples, 0.14%)</title><rect x="13.3339%" y="741" width="0.1424%" height="15" fill="rgb(224,201,9)" fg:x="3370" fg:w="36"/><text x="13.5839%" y="751.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.4763%" y="869" width="0.0198%" height="15" fill="rgb(229,206,30)" fg:x="3406" fg:w="5"/><text x="13.7263%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.4763%" y="853" width="0.0198%" height="15" fill="rgb(212,67,47)" fg:x="3406" fg:w="5"/><text x="13.7263%" y="863.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.4763%" y="837" width="0.0198%" height="15" fill="rgb(211,96,50)" fg:x="3406" fg:w="5"/><text x="13.7263%" y="847.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.4763%" y="821" width="0.0198%" height="15" fill="rgb(252,114,18)" fg:x="3406" fg:w="5"/><text x="13.7263%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.5000%" y="821" width="0.0356%" height="15" fill="rgb(223,58,37)" fg:x="3412" fg:w="9"/><text x="13.7500%" y="831.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="13.5000%" y="805" width="0.0356%" height="15" fill="rgb(237,70,4)" fg:x="3412" fg:w="9"/><text x="13.7500%" y="815.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="13.5000%" y="789" width="0.0356%" height="15" fill="rgb(244,85,46)" fg:x="3412" fg:w="9"/><text x="13.7500%" y="799.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="13.5040%" y="773" width="0.0317%" height="15" fill="rgb(223,39,52)" fg:x="3413" fg:w="8"/><text x="13.7540%" y="783.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.5159%" y="757" width="0.0198%" height="15" fill="rgb(218,200,14)" fg:x="3416" fg:w="5"/><text x="13.7659%" y="767.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.5238%" y="741" width="0.0119%" height="15" fill="rgb(208,171,16)" fg:x="3418" fg:w="3"/><text x="13.7738%" y="751.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.02%)</title><rect x="13.5356%" y="741" width="0.0237%" height="15" fill="rgb(234,200,18)" fg:x="3421" fg:w="6"/><text x="13.7856%" y="751.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="13.5356%" y="725" width="0.0237%" height="15" fill="rgb(228,45,11)" fg:x="3421" fg:w="6"/><text x="13.7856%" y="735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="13.5356%" y="773" width="0.0277%" height="15" fill="rgb(237,182,11)" fg:x="3421" fg:w="7"/><text x="13.7856%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="13.5356%" y="757" width="0.0277%" height="15" fill="rgb(241,175,49)" fg:x="3421" fg:w="7"/><text x="13.7856%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.5633%" y="725" width="0.0158%" height="15" fill="rgb(247,38,35)" fg:x="3428" fg:w="4"/><text x="13.8133%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="13.5633%" y="709" width="0.0158%" height="15" fill="rgb(228,39,49)" fg:x="3428" fg:w="4"/><text x="13.8133%" y="719.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="13.5633%" y="693" width="0.0158%" height="15" fill="rgb(226,101,26)" fg:x="3428" fg:w="4"/><text x="13.8133%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.5673%" y="677" width="0.0119%" height="15" fill="rgb(206,141,19)" fg:x="3429" fg:w="3"/><text x="13.8173%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.5673%" y="661" width="0.0119%" height="15" fill="rgb(211,200,13)" fg:x="3429" fg:w="3"/><text x="13.8173%" y="671.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (12 samples, 0.05%)</title><rect x="13.5792%" y="645" width="0.0475%" height="15" fill="rgb(241,121,6)" fg:x="3432" fg:w="12"/><text x="13.8292%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.05%)</title><rect x="13.5792%" y="629" width="0.0475%" height="15" fill="rgb(234,221,29)" fg:x="3432" fg:w="12"/><text x="13.8292%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="13.5950%" y="613" width="0.0317%" height="15" fill="rgb(229,136,5)" fg:x="3436" fg:w="8"/><text x="13.8450%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.6148%" y="597" width="0.0119%" height="15" fill="rgb(238,36,11)" fg:x="3441" fg:w="3"/><text x="13.8648%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (13 samples, 0.05%)</title><rect x="13.5792%" y="677" width="0.0514%" height="15" fill="rgb(251,55,41)" fg:x="3432" fg:w="13"/><text x="13.8292%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (13 samples, 0.05%)</title><rect x="13.5792%" y="661" width="0.0514%" height="15" fill="rgb(242,34,40)" fg:x="3432" fg:w="13"/><text x="13.8292%" y="671.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="13.6306%" y="597" width="0.0317%" height="15" fill="rgb(215,42,17)" fg:x="3445" fg:w="8"/><text x="13.8806%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="13.6385%" y="581" width="0.0237%" height="15" fill="rgb(207,44,46)" fg:x="3447" fg:w="6"/><text x="13.8885%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.6504%" y="565" width="0.0119%" height="15" fill="rgb(211,206,28)" fg:x="3450" fg:w="3"/><text x="13.9004%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="13.5633%" y="741" width="0.1029%" height="15" fill="rgb(237,167,16)" fg:x="3428" fg:w="26"/><text x="13.8133%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="13.5792%" y="725" width="0.0870%" height="15" fill="rgb(233,66,6)" fg:x="3432" fg:w="22"/><text x="13.8292%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (22 samples, 0.09%)</title><rect x="13.5792%" y="709" width="0.0870%" height="15" fill="rgb(246,123,29)" fg:x="3432" fg:w="22"/><text x="13.8292%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="13.5792%" y="693" width="0.0870%" height="15" fill="rgb(209,62,40)" fg:x="3432" fg:w="22"/><text x="13.8292%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="13.6306%" y="677" width="0.0356%" height="15" fill="rgb(218,4,25)" fg:x="3445" fg:w="9"/><text x="13.8806%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="13.6306%" y="661" width="0.0356%" height="15" fill="rgb(253,91,49)" fg:x="3445" fg:w="9"/><text x="13.8806%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.6306%" y="645" width="0.0356%" height="15" fill="rgb(228,155,29)" fg:x="3445" fg:w="9"/><text x="13.8806%" y="655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.6306%" y="629" width="0.0356%" height="15" fill="rgb(243,57,37)" fg:x="3445" fg:w="9"/><text x="13.8806%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="13.6306%" y="613" width="0.0356%" height="15" fill="rgb(244,167,17)" fg:x="3445" fg:w="9"/><text x="13.8806%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.6662%" y="661" width="0.0198%" height="15" fill="rgb(207,181,38)" fg:x="3454" fg:w="5"/><text x="13.9162%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.6662%" y="645" width="0.0198%" height="15" fill="rgb(211,8,23)" fg:x="3454" fg:w="5"/><text x="13.9162%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.6662%" y="629" width="0.0198%" height="15" fill="rgb(235,11,44)" fg:x="3454" fg:w="5"/><text x="13.9162%" y="639.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.6662%" y="613" width="0.0198%" height="15" fill="rgb(248,18,52)" fg:x="3454" fg:w="5"/><text x="13.9162%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.6662%" y="597" width="0.0198%" height="15" fill="rgb(208,4,7)" fg:x="3454" fg:w="5"/><text x="13.9162%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.6741%" y="581" width="0.0119%" height="15" fill="rgb(240,17,39)" fg:x="3456" fg:w="3"/><text x="13.9241%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.16%)</title><rect x="13.5356%" y="789" width="0.1583%" height="15" fill="rgb(207,170,3)" fg:x="3421" fg:w="40"/><text x="13.7856%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="13.5633%" y="773" width="0.1306%" height="15" fill="rgb(236,100,52)" fg:x="3428" fg:w="33"/><text x="13.8133%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (33 samples, 0.13%)</title><rect x="13.5633%" y="757" width="0.1306%" height="15" fill="rgb(246,78,51)" fg:x="3428" fg:w="33"/><text x="13.8133%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="13.6662%" y="741" width="0.0277%" height="15" fill="rgb(211,17,15)" fg:x="3454" fg:w="7"/><text x="13.9162%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="13.6662%" y="725" width="0.0277%" height="15" fill="rgb(209,59,46)" fg:x="3454" fg:w="7"/><text x="13.9162%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="13.6662%" y="709" width="0.0277%" height="15" fill="rgb(210,92,25)" fg:x="3454" fg:w="7"/><text x="13.9162%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="13.6662%" y="693" width="0.0277%" height="15" fill="rgb(238,174,52)" fg:x="3454" fg:w="7"/><text x="13.9162%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (7 samples, 0.03%)</title><rect x="13.6662%" y="677" width="0.0277%" height="15" fill="rgb(230,73,7)" fg:x="3454" fg:w="7"/><text x="13.9162%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="13.4961%" y="837" width="0.2176%" height="15" fill="rgb(243,124,40)" fg:x="3411" fg:w="55"/><text x="13.7461%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.18%)</title><rect x="13.5356%" y="821" width="0.1780%" height="15" fill="rgb(244,170,11)" fg:x="3421" fg:w="45"/><text x="13.7856%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (45 samples, 0.18%)</title><rect x="13.5356%" y="805" width="0.1780%" height="15" fill="rgb(207,114,54)" fg:x="3421" fg:w="45"/><text x="13.7856%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="13.6939%" y="789" width="0.0198%" height="15" fill="rgb(205,42,20)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="799.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="13.6939%" y="773" width="0.0198%" height="15" fill="rgb(230,30,28)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="783.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="13.6939%" y="757" width="0.0198%" height="15" fill="rgb(205,73,54)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="767.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="13.6939%" y="741" width="0.0198%" height="15" fill="rgb(254,227,23)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="751.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="13.6939%" y="725" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="735.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="13.6939%" y="709" width="0.0198%" height="15" fill="rgb(222,225,37)" fg:x="3461" fg:w="5"/><text x="13.9439%" y="719.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="13.7137%" y="661" width="0.0119%" height="15" fill="rgb(221,14,54)" fg:x="3466" fg:w="3"/><text x="13.9637%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.7137%" y="645" width="0.0119%" height="15" fill="rgb(254,102,2)" fg:x="3466" fg:w="3"/><text x="13.9637%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.7137%" y="757" width="0.0198%" height="15" fill="rgb(232,104,17)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="13.7137%" y="741" width="0.0198%" height="15" fill="rgb(250,220,14)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (5 samples, 0.02%)</title><rect x="13.7137%" y="725" width="0.0198%" height="15" fill="rgb(241,158,9)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="13.7137%" y="709" width="0.0198%" height="15" fill="rgb(246,9,43)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="13.7137%" y="693" width="0.0198%" height="15" fill="rgb(206,73,33)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="13.7137%" y="677" width="0.0198%" height="15" fill="rgb(222,79,8)" fg:x="3466" fg:w="5"/><text x="13.9637%" y="687.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="13.7335%" y="533" width="0.0119%" height="15" fill="rgb(234,8,54)" fg:x="3471" fg:w="3"/><text x="13.9835%" y="543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.7335%" y="517" width="0.0119%" height="15" fill="rgb(209,134,38)" fg:x="3471" fg:w="3"/><text x="13.9835%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="13.7335%" y="501" width="0.0119%" height="15" fill="rgb(230,127,29)" fg:x="3471" fg:w="3"/><text x="13.9835%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.7335%" y="629" width="0.0158%" height="15" fill="rgb(242,44,41)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="13.7335%" y="613" width="0.0158%" height="15" fill="rgb(222,56,43)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="13.7335%" y="597" width="0.0158%" height="15" fill="rgb(238,39,47)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="13.7335%" y="581" width="0.0158%" height="15" fill="rgb(226,79,43)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.7335%" y="565" width="0.0158%" height="15" fill="rgb(242,105,53)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="13.7335%" y="549" width="0.0158%" height="15" fill="rgb(251,132,46)" fg:x="3471" fg:w="4"/><text x="13.9835%" y="559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.7493%" y="453" width="0.0198%" height="15" fill="rgb(231,77,14)" fg:x="3475" fg:w="5"/><text x="13.9993%" y="463.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="13.7533%" y="437" width="0.0158%" height="15" fill="rgb(240,135,9)" fg:x="3476" fg:w="4"/><text x="14.0033%" y="447.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="13.7493%" y="485" width="0.0277%" height="15" fill="rgb(248,109,14)" fg:x="3475" fg:w="7"/><text x="13.9993%" y="495.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="13.7493%" y="469" width="0.0277%" height="15" fill="rgb(227,146,52)" fg:x="3475" fg:w="7"/><text x="13.9993%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (535 samples, 2.12%)</title><rect x="11.6681%" y="965" width="2.1168%" height="15" fill="rgb(232,54,3)" fg:x="2949" fg:w="535"/><text x="11.9181%" y="975.50">r..</text></g><g><title>rayon_core::registry::in_worker (525 samples, 2.08%)</title><rect x="11.7077%" y="949" width="2.0772%" height="15" fill="rgb(229,201,43)" fg:x="2959" fg:w="525"/><text x="11.9577%" y="959.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (525 samples, 2.08%)</title><rect x="11.7077%" y="933" width="2.0772%" height="15" fill="rgb(252,161,33)" fg:x="2959" fg:w="525"/><text x="11.9577%" y="943.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (78 samples, 0.31%)</title><rect x="13.4763%" y="917" width="0.3086%" height="15" fill="rgb(226,146,40)" fg:x="3406" fg:w="78"/><text x="13.7263%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (78 samples, 0.31%)</title><rect x="13.4763%" y="901" width="0.3086%" height="15" fill="rgb(219,47,25)" fg:x="3406" fg:w="78"/><text x="13.7263%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (78 samples, 0.31%)</title><rect x="13.4763%" y="885" width="0.3086%" height="15" fill="rgb(250,135,13)" fg:x="3406" fg:w="78"/><text x="13.7263%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (73 samples, 0.29%)</title><rect x="13.4961%" y="869" width="0.2888%" height="15" fill="rgb(219,229,18)" fg:x="3411" fg:w="73"/><text x="13.7461%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (73 samples, 0.29%)</title><rect x="13.4961%" y="853" width="0.2888%" height="15" fill="rgb(217,152,27)" fg:x="3411" fg:w="73"/><text x="13.7461%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.07%)</title><rect x="13.7137%" y="837" width="0.0712%" height="15" fill="rgb(225,71,47)" fg:x="3466" fg:w="18"/><text x="13.9637%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.07%)</title><rect x="13.7137%" y="821" width="0.0712%" height="15" fill="rgb(220,139,14)" fg:x="3466" fg:w="18"/><text x="13.9637%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="13.7137%" y="805" width="0.0712%" height="15" fill="rgb(247,54,32)" fg:x="3466" fg:w="18"/><text x="13.9637%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="13.7137%" y="789" width="0.0712%" height="15" fill="rgb(252,131,39)" fg:x="3466" fg:w="18"/><text x="13.9637%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (18 samples, 0.07%)</title><rect x="13.7137%" y="773" width="0.0712%" height="15" fill="rgb(210,108,39)" fg:x="3466" fg:w="18"/><text x="13.9637%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="13.7335%" y="757" width="0.0514%" height="15" fill="rgb(205,23,29)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="13.7335%" y="741" width="0.0514%" height="15" fill="rgb(246,139,46)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="13.7335%" y="725" width="0.0514%" height="15" fill="rgb(250,81,26)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="13.7335%" y="709" width="0.0514%" height="15" fill="rgb(214,104,7)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (13 samples, 0.05%)</title><rect x="13.7335%" y="693" width="0.0514%" height="15" fill="rgb(233,189,8)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="13.7335%" y="677" width="0.0514%" height="15" fill="rgb(228,141,17)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="13.7335%" y="661" width="0.0514%" height="15" fill="rgb(247,157,1)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (13 samples, 0.05%)</title><rect x="13.7335%" y="645" width="0.0514%" height="15" fill="rgb(249,225,5)" fg:x="3471" fg:w="13"/><text x="13.9835%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="13.7493%" y="629" width="0.0356%" height="15" fill="rgb(242,55,13)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="13.7493%" y="613" width="0.0356%" height="15" fill="rgb(230,49,50)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.7493%" y="597" width="0.0356%" height="15" fill="rgb(241,111,38)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="13.7493%" y="581" width="0.0356%" height="15" fill="rgb(252,155,4)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="13.7493%" y="565" width="0.0356%" height="15" fill="rgb(212,69,32)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.7493%" y="549" width="0.0356%" height="15" fill="rgb(243,107,47)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="13.7493%" y="533" width="0.0356%" height="15" fill="rgb(247,130,12)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="13.7493%" y="517" width="0.0356%" height="15" fill="rgb(233,74,16)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.7493%" y="501" width="0.0356%" height="15" fill="rgb(208,58,18)" fg:x="3475" fg:w="9"/><text x="13.9993%" y="511.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="13.7849%" y="837" width="0.0198%" height="15" fill="rgb(242,225,1)" fg:x="3484" fg:w="5"/><text x="14.0349%" y="847.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="13.7889%" y="821" width="0.0158%" height="15" fill="rgb(249,39,40)" fg:x="3485" fg:w="4"/><text x="14.0389%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.02%)</title><rect x="13.7849%" y="869" width="0.0237%" height="15" fill="rgb(207,72,44)" fg:x="3484" fg:w="6"/><text x="14.0349%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.02%)</title><rect x="13.7849%" y="853" width="0.0237%" height="15" fill="rgb(215,193,12)" fg:x="3484" fg:w="6"/><text x="14.0349%" y="863.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (18 samples, 0.07%)</title><rect x="13.8087%" y="789" width="0.0712%" height="15" fill="rgb(248,41,39)" fg:x="3490" fg:w="18"/><text x="14.0587%" y="799.50"></text></g><g><title>rayon::slice::quicksort::recurse (16 samples, 0.06%)</title><rect x="13.8166%" y="773" width="0.0633%" height="15" fill="rgb(253,85,4)" fg:x="3492" fg:w="16"/><text x="14.0666%" y="783.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="13.8403%" y="757" width="0.0396%" height="15" fill="rgb(243,70,31)" fg:x="3498" fg:w="10"/><text x="14.0903%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (19 samples, 0.08%)</title><rect x="13.8087%" y="821" width="0.0752%" height="15" fill="rgb(253,195,26)" fg:x="3490" fg:w="19"/><text x="14.0587%" y="831.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (19 samples, 0.08%)</title><rect x="13.8087%" y="805" width="0.0752%" height="15" fill="rgb(243,42,11)" fg:x="3490" fg:w="19"/><text x="14.0587%" y="815.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (11 samples, 0.04%)</title><rect x="13.8838%" y="741" width="0.0435%" height="15" fill="rgb(239,66,17)" fg:x="3509" fg:w="11"/><text x="14.1338%" y="751.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.04%)</title><rect x="13.8838%" y="725" width="0.0435%" height="15" fill="rgb(217,132,21)" fg:x="3509" fg:w="11"/><text x="14.1338%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="13.8997%" y="709" width="0.0277%" height="15" fill="rgb(252,202,21)" fg:x="3513" fg:w="7"/><text x="14.1497%" y="719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (15 samples, 0.06%)</title><rect x="13.8838%" y="773" width="0.0593%" height="15" fill="rgb(233,98,36)" fg:x="3509" fg:w="15"/><text x="14.1338%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (15 samples, 0.06%)</title><rect x="13.8838%" y="757" width="0.0593%" height="15" fill="rgb(216,153,54)" fg:x="3509" fg:w="15"/><text x="14.1338%" y="767.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="13.9274%" y="741" width="0.0158%" height="15" fill="rgb(250,99,7)" fg:x="3520" fg:w="4"/><text x="14.1774%" y="751.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="13.9432%" y="693" width="0.0277%" height="15" fill="rgb(207,56,50)" fg:x="3524" fg:w="7"/><text x="14.1932%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="13.9432%" y="677" width="0.0277%" height="15" fill="rgb(244,61,34)" fg:x="3524" fg:w="7"/><text x="14.1932%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="13.9511%" y="661" width="0.0198%" height="15" fill="rgb(241,50,38)" fg:x="3526" fg:w="5"/><text x="14.2011%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.17%)</title><rect x="13.8087%" y="837" width="0.1701%" height="15" fill="rgb(212,166,30)" fg:x="3490" fg:w="43"/><text x="14.0587%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="13.8838%" y="821" width="0.0950%" height="15" fill="rgb(249,127,32)" fg:x="3509" fg:w="24"/><text x="14.1338%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (24 samples, 0.09%)</title><rect x="13.8838%" y="805" width="0.0950%" height="15" fill="rgb(209,103,0)" fg:x="3509" fg:w="24"/><text x="14.1338%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="13.8838%" y="789" width="0.0950%" height="15" fill="rgb(238,209,51)" fg:x="3509" fg:w="24"/><text x="14.1338%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="13.9432%" y="773" width="0.0356%" height="15" fill="rgb(237,56,23)" fg:x="3524" fg:w="9"/><text x="14.1932%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="13.9432%" y="757" width="0.0356%" height="15" fill="rgb(215,153,46)" fg:x="3524" fg:w="9"/><text x="14.1932%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="13.9432%" y="741" width="0.0356%" height="15" fill="rgb(224,49,31)" fg:x="3524" fg:w="9"/><text x="14.1932%" y="751.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="13.9432%" y="725" width="0.0356%" height="15" fill="rgb(250,18,42)" fg:x="3524" fg:w="9"/><text x="14.1932%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="13.9432%" y="709" width="0.0356%" height="15" fill="rgb(215,176,39)" fg:x="3524" fg:w="9"/><text x="14.1932%" y="719.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="13.9788%" y="661" width="0.0119%" height="15" fill="rgb(223,77,29)" fg:x="3533" fg:w="3"/><text x="14.2288%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="13.9788%" y="693" width="0.0158%" height="15" fill="rgb(234,94,52)" fg:x="3533" fg:w="4"/><text x="14.2288%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="13.9788%" y="677" width="0.0158%" height="15" fill="rgb(220,154,50)" fg:x="3533" fg:w="4"/><text x="14.2288%" y="687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="13.9946%" y="597" width="0.0277%" height="15" fill="rgb(212,11,10)" fg:x="3537" fg:w="7"/><text x="14.2446%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="13.9946%" y="581" width="0.0277%" height="15" fill="rgb(205,166,19)" fg:x="3537" fg:w="7"/><text x="14.2446%" y="591.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="13.9946%" y="565" width="0.0277%" height="15" fill="rgb(244,198,16)" fg:x="3537" fg:w="7"/><text x="14.2446%" y="575.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="14.0025%" y="549" width="0.0198%" height="15" fill="rgb(219,69,12)" fg:x="3539" fg:w="5"/><text x="14.2525%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="14.0065%" y="533" width="0.0158%" height="15" fill="rgb(245,30,7)" fg:x="3540" fg:w="4"/><text x="14.2565%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="13.9788%" y="709" width="0.0593%" height="15" fill="rgb(218,221,48)" fg:x="3533" fg:w="15"/><text x="14.2288%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="13.9946%" y="693" width="0.0435%" height="15" fill="rgb(216,66,15)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (11 samples, 0.04%)</title><rect x="13.9946%" y="677" width="0.0435%" height="15" fill="rgb(226,122,50)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="13.9946%" y="661" width="0.0435%" height="15" fill="rgb(239,156,16)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="13.9946%" y="645" width="0.0435%" height="15" fill="rgb(224,27,38)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (11 samples, 0.04%)</title><rect x="13.9946%" y="629" width="0.0435%" height="15" fill="rgb(224,39,27)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="13.9946%" y="613" width="0.0435%" height="15" fill="rgb(215,92,29)" fg:x="3537" fg:w="11"/><text x="14.2446%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.0223%" y="597" width="0.0158%" height="15" fill="rgb(207,159,16)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="14.0223%" y="581" width="0.0158%" height="15" fill="rgb(238,163,47)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="14.0223%" y="565" width="0.0158%" height="15" fill="rgb(219,91,49)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="14.0223%" y="549" width="0.0158%" height="15" fill="rgb(227,167,31)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="559.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="14.0223%" y="533" width="0.0158%" height="15" fill="rgb(234,80,54)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="543.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="14.0223%" y="517" width="0.0158%" height="15" fill="rgb(212,114,2)" fg:x="3544" fg:w="4"/><text x="14.2723%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="14.0263%" y="501" width="0.0119%" height="15" fill="rgb(234,50,24)" fg:x="3545" fg:w="3"/><text x="14.2763%" y="511.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="14.0381%" y="661" width="0.0119%" height="15" fill="rgb(221,68,8)" fg:x="3548" fg:w="3"/><text x="14.2881%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="14.0381%" y="645" width="0.0119%" height="15" fill="rgb(254,180,31)" fg:x="3548" fg:w="3"/><text x="14.2881%" y="655.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="14.0381%" y="629" width="0.0119%" height="15" fill="rgb(247,130,50)" fg:x="3548" fg:w="3"/><text x="14.2881%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="13.9788%" y="757" width="0.0870%" height="15" fill="rgb(211,109,4)" fg:x="3533" fg:w="22"/><text x="14.2288%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="13.9788%" y="741" width="0.0870%" height="15" fill="rgb(238,50,21)" fg:x="3533" fg:w="22"/><text x="14.2288%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (22 samples, 0.09%)</title><rect x="13.9788%" y="725" width="0.0870%" height="15" fill="rgb(225,57,45)" fg:x="3533" fg:w="22"/><text x="14.2288%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="14.0381%" y="709" width="0.0277%" height="15" fill="rgb(209,196,50)" fg:x="3548" fg:w="7"/><text x="14.2881%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="14.0381%" y="693" width="0.0277%" height="15" fill="rgb(242,140,13)" fg:x="3548" fg:w="7"/><text x="14.2881%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="14.0381%" y="677" width="0.0277%" height="15" fill="rgb(217,111,7)" fg:x="3548" fg:w="7"/><text x="14.2881%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="14.0500%" y="661" width="0.0158%" height="15" fill="rgb(253,193,51)" fg:x="3551" fg:w="4"/><text x="14.3000%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="14.0500%" y="645" width="0.0158%" height="15" fill="rgb(252,70,29)" fg:x="3551" fg:w="4"/><text x="14.3000%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (76 samples, 0.30%)</title><rect x="13.7849%" y="949" width="0.3007%" height="15" fill="rgb(232,127,12)" fg:x="3484" fg:w="76"/><text x="14.0349%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (76 samples, 0.30%)</title><rect x="13.7849%" y="933" width="0.3007%" height="15" fill="rgb(211,180,21)" fg:x="3484" fg:w="76"/><text x="14.0349%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (76 samples, 0.30%)</title><rect x="13.7849%" y="917" width="0.3007%" height="15" fill="rgb(229,72,13)" fg:x="3484" fg:w="76"/><text x="14.0349%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (76 samples, 0.30%)</title><rect x="13.7849%" y="901" width="0.3007%" height="15" fill="rgb(240,211,49)" fg:x="3484" fg:w="76"/><text x="14.0349%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (76 samples, 0.30%)</title><rect x="13.7849%" y="885" width="0.3007%" height="15" fill="rgb(219,149,40)" fg:x="3484" fg:w="76"/><text x="14.0349%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (70 samples, 0.28%)</title><rect x="13.8087%" y="869" width="0.2770%" height="15" fill="rgb(210,127,46)" fg:x="3490" fg:w="70"/><text x="14.0587%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (70 samples, 0.28%)</title><rect x="13.8087%" y="853" width="0.2770%" height="15" fill="rgb(220,106,7)" fg:x="3490" fg:w="70"/><text x="14.0587%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (27 samples, 0.11%)</title><rect x="13.9788%" y="837" width="0.1068%" height="15" fill="rgb(249,31,22)" fg:x="3533" fg:w="27"/><text x="14.2288%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (27 samples, 0.11%)</title><rect x="13.9788%" y="821" width="0.1068%" height="15" fill="rgb(253,1,49)" fg:x="3533" fg:w="27"/><text x="14.2288%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="13.9788%" y="805" width="0.1068%" height="15" fill="rgb(227,144,33)" fg:x="3533" fg:w="27"/><text x="14.2288%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="13.9788%" y="789" width="0.1068%" height="15" fill="rgb(249,163,44)" fg:x="3533" fg:w="27"/><text x="14.2288%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (27 samples, 0.11%)</title><rect x="13.9788%" y="773" width="0.1068%" height="15" fill="rgb(234,15,39)" fg:x="3533" fg:w="27"/><text x="14.2288%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="14.0658%" y="757" width="0.0198%" height="15" fill="rgb(207,66,16)" fg:x="3555" fg:w="5"/><text x="14.3158%" y="767.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="14.0658%" y="741" width="0.0198%" height="15" fill="rgb(233,112,24)" fg:x="3555" fg:w="5"/><text x="14.3158%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="14.0658%" y="725" width="0.0198%" height="15" fill="rgb(230,90,22)" fg:x="3555" fg:w="5"/><text x="14.3158%" y="735.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="14.0658%" y="709" width="0.0198%" height="15" fill="rgb(229,61,13)" fg:x="3555" fg:w="5"/><text x="14.3158%" y="719.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="14.0698%" y="693" width="0.0158%" height="15" fill="rgb(225,57,24)" fg:x="3556" fg:w="4"/><text x="14.3198%" y="703.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="14.0698%" y="677" width="0.0158%" height="15" fill="rgb(208,169,48)" fg:x="3556" fg:w="4"/><text x="14.3198%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (612 samples, 2.42%)</title><rect x="11.6681%" y="981" width="2.4215%" height="15" fill="rgb(244,218,51)" fg:x="2949" fg:w="612"/><text x="11.9181%" y="991.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (77 samples, 0.30%)</title><rect x="13.7849%" y="965" width="0.3047%" height="15" fill="rgb(214,148,10)" fg:x="3484" fg:w="77"/><text x="14.0349%" y="975.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (41 samples, 0.16%)</title><rect x="14.0975%" y="725" width="0.1622%" height="15" fill="rgb(225,174,27)" fg:x="3563" fg:w="41"/><text x="14.3475%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (39 samples, 0.15%)</title><rect x="14.1054%" y="709" width="0.1543%" height="15" fill="rgb(230,96,26)" fg:x="3565" fg:w="39"/><text x="14.3554%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (21 samples, 0.08%)</title><rect x="14.1766%" y="693" width="0.0831%" height="15" fill="rgb(232,10,30)" fg:x="3583" fg:w="21"/><text x="14.4266%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="14.2478%" y="677" width="0.0119%" height="15" fill="rgb(222,8,50)" fg:x="3601" fg:w="3"/><text x="14.4978%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.20%)</title><rect x="14.0975%" y="773" width="0.1978%" height="15" fill="rgb(213,81,27)" fg:x="3563" fg:w="50"/><text x="14.3475%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (50 samples, 0.20%)</title><rect x="14.0975%" y="757" width="0.1978%" height="15" fill="rgb(245,50,10)" fg:x="3563" fg:w="50"/><text x="14.3475%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (50 samples, 0.20%)</title><rect x="14.0975%" y="741" width="0.1978%" height="15" fill="rgb(216,100,18)" fg:x="3563" fg:w="50"/><text x="14.3475%" y="751.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (9 samples, 0.04%)</title><rect x="14.2597%" y="725" width="0.0356%" height="15" fill="rgb(236,147,54)" fg:x="3604" fg:w="9"/><text x="14.5097%" y="735.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="14.2795%" y="709" width="0.0158%" height="15" fill="rgb(205,143,26)" fg:x="3609" fg:w="4"/><text x="14.5295%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (39 samples, 0.15%)</title><rect x="14.2953%" y="709" width="0.1543%" height="15" fill="rgb(236,26,9)" fg:x="3613" fg:w="39"/><text x="14.5453%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (38 samples, 0.15%)</title><rect x="14.2993%" y="693" width="0.1504%" height="15" fill="rgb(221,165,53)" fg:x="3614" fg:w="38"/><text x="14.5493%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.06%)</title><rect x="14.3903%" y="677" width="0.0593%" height="15" fill="rgb(214,110,17)" fg:x="3637" fg:w="15"/><text x="14.6403%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.38%)</title><rect x="14.0975%" y="821" width="0.3798%" height="15" fill="rgb(237,197,12)" fg:x="3563" fg:w="96"/><text x="14.3475%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (96 samples, 0.38%)</title><rect x="14.0975%" y="805" width="0.3798%" height="15" fill="rgb(205,84,17)" fg:x="3563" fg:w="96"/><text x="14.3475%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (96 samples, 0.38%)</title><rect x="14.0975%" y="789" width="0.3798%" height="15" fill="rgb(237,18,45)" fg:x="3563" fg:w="96"/><text x="14.3475%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (46 samples, 0.18%)</title><rect x="14.2953%" y="773" width="0.1820%" height="15" fill="rgb(221,87,14)" fg:x="3613" fg:w="46"/><text x="14.5453%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="14.2953%" y="757" width="0.1820%" height="15" fill="rgb(238,186,15)" fg:x="3613" fg:w="46"/><text x="14.5453%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (46 samples, 0.18%)</title><rect x="14.2953%" y="741" width="0.1820%" height="15" fill="rgb(208,115,11)" fg:x="3613" fg:w="46"/><text x="14.5453%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (46 samples, 0.18%)</title><rect x="14.2953%" y="725" width="0.1820%" height="15" fill="rgb(254,175,0)" fg:x="3613" fg:w="46"/><text x="14.5453%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (7 samples, 0.03%)</title><rect x="14.4496%" y="709" width="0.0277%" height="15" fill="rgb(227,24,42)" fg:x="3652" fg:w="7"/><text x="14.6996%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (43 samples, 0.17%)</title><rect x="14.4773%" y="709" width="0.1701%" height="15" fill="rgb(223,211,37)" fg:x="3659" fg:w="43"/><text x="14.7273%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (39 samples, 0.15%)</title><rect x="14.4932%" y="693" width="0.1543%" height="15" fill="rgb(235,49,27)" fg:x="3663" fg:w="39"/><text x="14.7432%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (24 samples, 0.09%)</title><rect x="14.5525%" y="677" width="0.0950%" height="15" fill="rgb(254,97,51)" fg:x="3678" fg:w="24"/><text x="14.8025%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="14.6198%" y="661" width="0.0277%" height="15" fill="rgb(249,51,40)" fg:x="3695" fg:w="7"/><text x="14.8698%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.18%)</title><rect x="14.4773%" y="757" width="0.1780%" height="15" fill="rgb(210,128,45)" fg:x="3659" fg:w="45"/><text x="14.7273%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (45 samples, 0.18%)</title><rect x="14.4773%" y="741" width="0.1780%" height="15" fill="rgb(224,137,50)" fg:x="3659" fg:w="45"/><text x="14.7273%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (45 samples, 0.18%)</title><rect x="14.4773%" y="725" width="0.1780%" height="15" fill="rgb(242,15,9)" fg:x="3659" fg:w="45"/><text x="14.7273%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (41 samples, 0.16%)</title><rect x="14.6593%" y="693" width="0.1622%" height="15" fill="rgb(233,187,41)" fg:x="3705" fg:w="41"/><text x="14.9093%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (33 samples, 0.13%)</title><rect x="14.6910%" y="677" width="0.1306%" height="15" fill="rgb(227,2,29)" fg:x="3713" fg:w="33"/><text x="14.9410%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (23 samples, 0.09%)</title><rect x="14.7306%" y="661" width="0.0910%" height="15" fill="rgb(222,70,3)" fg:x="3723" fg:w="23"/><text x="14.9806%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="14.8018%" y="645" width="0.0198%" height="15" fill="rgb(213,11,42)" fg:x="3741" fg:w="5"/><text x="15.0518%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (190 samples, 0.75%)</title><rect x="14.0935%" y="869" width="0.7518%" height="15" fill="rgb(225,150,9)" fg:x="3562" fg:w="190"/><text x="14.3435%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (189 samples, 0.75%)</title><rect x="14.0975%" y="853" width="0.7478%" height="15" fill="rgb(230,162,45)" fg:x="3563" fg:w="189"/><text x="14.3475%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (189 samples, 0.75%)</title><rect x="14.0975%" y="837" width="0.7478%" height="15" fill="rgb(222,14,52)" fg:x="3563" fg:w="189"/><text x="14.3475%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (93 samples, 0.37%)</title><rect x="14.4773%" y="821" width="0.3680%" height="15" fill="rgb(254,198,14)" fg:x="3659" fg:w="93"/><text x="14.7273%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (93 samples, 0.37%)</title><rect x="14.4773%" y="805" width="0.3680%" height="15" fill="rgb(220,217,30)" fg:x="3659" fg:w="93"/><text x="14.7273%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (93 samples, 0.37%)</title><rect x="14.4773%" y="789" width="0.3680%" height="15" fill="rgb(215,146,41)" fg:x="3659" fg:w="93"/><text x="14.7273%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (93 samples, 0.37%)</title><rect x="14.4773%" y="773" width="0.3680%" height="15" fill="rgb(217,27,36)" fg:x="3659" fg:w="93"/><text x="14.7273%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (48 samples, 0.19%)</title><rect x="14.6554%" y="757" width="0.1899%" height="15" fill="rgb(219,218,39)" fg:x="3704" fg:w="48"/><text x="14.9054%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.19%)</title><rect x="14.6554%" y="741" width="0.1899%" height="15" fill="rgb(219,4,42)" fg:x="3704" fg:w="48"/><text x="14.9054%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (48 samples, 0.19%)</title><rect x="14.6554%" y="725" width="0.1899%" height="15" fill="rgb(249,119,36)" fg:x="3704" fg:w="48"/><text x="14.9054%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (48 samples, 0.19%)</title><rect x="14.6554%" y="709" width="0.1899%" height="15" fill="rgb(209,23,33)" fg:x="3704" fg:w="48"/><text x="14.9054%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (6 samples, 0.02%)</title><rect x="14.8216%" y="693" width="0.0237%" height="15" fill="rgb(211,10,0)" fg:x="3746" fg:w="6"/><text x="15.0716%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="14.8295%" y="677" width="0.0158%" height="15" fill="rgb(208,99,37)" fg:x="3748" fg:w="4"/><text x="15.0795%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (34 samples, 0.13%)</title><rect x="14.8453%" y="709" width="0.1345%" height="15" fill="rgb(213,132,31)" fg:x="3752" fg:w="34"/><text x="15.0953%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (31 samples, 0.12%)</title><rect x="14.8572%" y="693" width="0.1227%" height="15" fill="rgb(243,129,40)" fg:x="3755" fg:w="31"/><text x="15.1072%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.06%)</title><rect x="14.9205%" y="677" width="0.0593%" height="15" fill="rgb(210,66,33)" fg:x="3771" fg:w="15"/><text x="15.1705%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="14.9680%" y="661" width="0.0119%" height="15" fill="rgb(209,189,4)" fg:x="3783" fg:w="3"/><text x="15.2180%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.16%)</title><rect x="14.8453%" y="757" width="0.1622%" height="15" fill="rgb(214,107,37)" fg:x="3752" fg:w="41"/><text x="15.0953%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (41 samples, 0.16%)</title><rect x="14.8453%" y="741" width="0.1622%" height="15" fill="rgb(245,88,54)" fg:x="3752" fg:w="41"/><text x="15.0953%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (41 samples, 0.16%)</title><rect x="14.8453%" y="725" width="0.1622%" height="15" fill="rgb(205,146,20)" fg:x="3752" fg:w="41"/><text x="15.0953%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (7 samples, 0.03%)</title><rect x="14.9798%" y="709" width="0.0277%" height="15" fill="rgb(220,161,25)" fg:x="3786" fg:w="7"/><text x="15.2298%" y="719.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="14.9956%" y="693" width="0.0119%" height="15" fill="rgb(215,152,15)" fg:x="3790" fg:w="3"/><text x="15.2456%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (40 samples, 0.16%)</title><rect x="15.0075%" y="693" width="0.1583%" height="15" fill="rgb(233,192,44)" fg:x="3793" fg:w="40"/><text x="15.2575%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (37 samples, 0.15%)</title><rect x="15.0194%" y="677" width="0.1464%" height="15" fill="rgb(240,170,46)" fg:x="3796" fg:w="37"/><text x="15.2694%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (24 samples, 0.09%)</title><rect x="15.0708%" y="661" width="0.0950%" height="15" fill="rgb(207,104,33)" fg:x="3809" fg:w="24"/><text x="15.3208%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.04%)</title><rect x="15.1262%" y="645" width="0.0396%" height="15" fill="rgb(219,21,39)" fg:x="3823" fg:w="10"/><text x="15.3762%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (86 samples, 0.34%)</title><rect x="14.8453%" y="805" width="0.3403%" height="15" fill="rgb(214,133,29)" fg:x="3752" fg:w="86"/><text x="15.0953%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (86 samples, 0.34%)</title><rect x="14.8453%" y="789" width="0.3403%" height="15" fill="rgb(226,93,6)" fg:x="3752" fg:w="86"/><text x="15.0953%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (86 samples, 0.34%)</title><rect x="14.8453%" y="773" width="0.3403%" height="15" fill="rgb(252,222,34)" fg:x="3752" fg:w="86"/><text x="15.0953%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (45 samples, 0.18%)</title><rect x="15.0075%" y="757" width="0.1780%" height="15" fill="rgb(252,92,48)" fg:x="3793" fg:w="45"/><text x="15.2575%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.18%)</title><rect x="15.0075%" y="741" width="0.1780%" height="15" fill="rgb(245,223,24)" fg:x="3793" fg:w="45"/><text x="15.2575%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (45 samples, 0.18%)</title><rect x="15.0075%" y="725" width="0.1780%" height="15" fill="rgb(205,176,3)" fg:x="3793" fg:w="45"/><text x="15.2575%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (45 samples, 0.18%)</title><rect x="15.0075%" y="709" width="0.1780%" height="15" fill="rgb(235,151,15)" fg:x="3793" fg:w="45"/><text x="15.2575%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="15.1658%" y="693" width="0.0198%" height="15" fill="rgb(237,209,11)" fg:x="3833" fg:w="5"/><text x="15.4158%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (5 samples, 0.02%)</title><rect x="15.1658%" y="677" width="0.0198%" height="15" fill="rgb(243,227,24)" fg:x="3833" fg:w="5"/><text x="15.4158%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="15.1856%" y="693" width="0.1227%" height="15" fill="rgb(239,193,16)" fg:x="3838" fg:w="31"/><text x="15.4356%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (28 samples, 0.11%)</title><rect x="15.1974%" y="677" width="0.1108%" height="15" fill="rgb(231,27,9)" fg:x="3841" fg:w="28"/><text x="15.4474%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.06%)</title><rect x="15.2489%" y="661" width="0.0593%" height="15" fill="rgb(219,169,10)" fg:x="3854" fg:w="15"/><text x="15.4989%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="15.2924%" y="645" width="0.0158%" height="15" fill="rgb(244,229,43)" fg:x="3865" fg:w="4"/><text x="15.5424%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="15.1856%" y="741" width="0.1306%" height="15" fill="rgb(254,38,20)" fg:x="3838" fg:w="33"/><text x="15.4356%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (33 samples, 0.13%)</title><rect x="15.1856%" y="725" width="0.1306%" height="15" fill="rgb(250,47,30)" fg:x="3838" fg:w="33"/><text x="15.4356%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (33 samples, 0.13%)</title><rect x="15.1856%" y="709" width="0.1306%" height="15" fill="rgb(224,124,36)" fg:x="3838" fg:w="33"/><text x="15.4356%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="15.3161%" y="677" width="0.0791%" height="15" fill="rgb(246,68,51)" fg:x="3871" fg:w="20"/><text x="15.5661%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (17 samples, 0.07%)</title><rect x="15.3280%" y="661" width="0.0673%" height="15" fill="rgb(253,43,49)" fg:x="3874" fg:w="17"/><text x="15.5780%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.05%)</title><rect x="15.3478%" y="645" width="0.0475%" height="15" fill="rgb(219,54,36)" fg:x="3879" fg:w="12"/><text x="15.5978%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="15.3794%" y="629" width="0.0158%" height="15" fill="rgb(227,133,34)" fg:x="3887" fg:w="4"/><text x="15.6294%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (336 samples, 1.33%)</title><rect x="14.0935%" y="917" width="1.3294%" height="15" fill="rgb(247,227,15)" fg:x="3562" fg:w="336"/><text x="14.3435%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (336 samples, 1.33%)</title><rect x="14.0935%" y="901" width="1.3294%" height="15" fill="rgb(229,96,14)" fg:x="3562" fg:w="336"/><text x="14.3435%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (336 samples, 1.33%)</title><rect x="14.0935%" y="885" width="1.3294%" height="15" fill="rgb(220,79,17)" fg:x="3562" fg:w="336"/><text x="14.3435%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (146 samples, 0.58%)</title><rect x="14.8453%" y="869" width="0.5777%" height="15" fill="rgb(205,131,53)" fg:x="3752" fg:w="146"/><text x="15.0953%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (146 samples, 0.58%)</title><rect x="14.8453%" y="853" width="0.5777%" height="15" fill="rgb(209,50,29)" fg:x="3752" fg:w="146"/><text x="15.0953%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (146 samples, 0.58%)</title><rect x="14.8453%" y="837" width="0.5777%" height="15" fill="rgb(245,86,46)" fg:x="3752" fg:w="146"/><text x="15.0953%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (146 samples, 0.58%)</title><rect x="14.8453%" y="821" width="0.5777%" height="15" fill="rgb(235,66,46)" fg:x="3752" fg:w="146"/><text x="15.0953%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (60 samples, 0.24%)</title><rect x="15.1856%" y="805" width="0.2374%" height="15" fill="rgb(232,148,31)" fg:x="3838" fg:w="60"/><text x="15.4356%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.24%)</title><rect x="15.1856%" y="789" width="0.2374%" height="15" fill="rgb(217,149,8)" fg:x="3838" fg:w="60"/><text x="15.4356%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.24%)</title><rect x="15.1856%" y="773" width="0.2374%" height="15" fill="rgb(209,183,11)" fg:x="3838" fg:w="60"/><text x="15.4356%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (60 samples, 0.24%)</title><rect x="15.1856%" y="757" width="0.2374%" height="15" fill="rgb(208,55,20)" fg:x="3838" fg:w="60"/><text x="15.4356%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="15.3161%" y="741" width="0.1068%" height="15" fill="rgb(218,39,14)" fg:x="3871" fg:w="27"/><text x="15.5661%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="15.3161%" y="725" width="0.1068%" height="15" fill="rgb(216,169,33)" fg:x="3871" fg:w="27"/><text x="15.5661%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (27 samples, 0.11%)</title><rect x="15.3161%" y="709" width="0.1068%" height="15" fill="rgb(233,80,24)" fg:x="3871" fg:w="27"/><text x="15.5661%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (27 samples, 0.11%)</title><rect x="15.3161%" y="693" width="0.1068%" height="15" fill="rgb(213,179,31)" fg:x="3871" fg:w="27"/><text x="15.5661%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (7 samples, 0.03%)</title><rect x="15.3953%" y="677" width="0.0277%" height="15" fill="rgb(209,19,5)" fg:x="3891" fg:w="7"/><text x="15.6453%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="15.4230%" y="757" width="0.0950%" height="15" fill="rgb(219,18,35)" fg:x="3898" fg:w="24"/><text x="15.6730%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (24 samples, 0.09%)</title><rect x="15.4230%" y="741" width="0.0950%" height="15" fill="rgb(209,169,16)" fg:x="3898" fg:w="24"/><text x="15.6730%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (24 samples, 0.09%)</title><rect x="15.4230%" y="725" width="0.0950%" height="15" fill="rgb(245,90,51)" fg:x="3898" fg:w="24"/><text x="15.6730%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="15.4230%" y="709" width="0.0950%" height="15" fill="rgb(220,99,45)" fg:x="3898" fg:w="24"/><text x="15.6730%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (22 samples, 0.09%)</title><rect x="15.4309%" y="693" width="0.0870%" height="15" fill="rgb(249,89,25)" fg:x="3900" fg:w="22"/><text x="15.6809%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.06%)</title><rect x="15.4586%" y="677" width="0.0593%" height="15" fill="rgb(239,193,0)" fg:x="3907" fg:w="15"/><text x="15.7086%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="15.5179%" y="693" width="0.0910%" height="15" fill="rgb(231,126,1)" fg:x="3922" fg:w="23"/><text x="15.7679%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (20 samples, 0.08%)</title><rect x="15.5298%" y="677" width="0.0791%" height="15" fill="rgb(243,166,3)" fg:x="3925" fg:w="20"/><text x="15.7798%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.05%)</title><rect x="15.5614%" y="661" width="0.0475%" height="15" fill="rgb(223,22,34)" fg:x="3933" fg:w="12"/><text x="15.8114%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 0.20%)</title><rect x="15.4230%" y="805" width="0.2018%" height="15" fill="rgb(251,52,51)" fg:x="3898" fg:w="51"/><text x="15.6730%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.20%)</title><rect x="15.4230%" y="789" width="0.2018%" height="15" fill="rgb(221,165,28)" fg:x="3898" fg:w="51"/><text x="15.6730%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (51 samples, 0.20%)</title><rect x="15.4230%" y="773" width="0.2018%" height="15" fill="rgb(218,121,47)" fg:x="3898" fg:w="51"/><text x="15.6730%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="15.5179%" y="757" width="0.1068%" height="15" fill="rgb(209,120,9)" fg:x="3922" fg:w="27"/><text x="15.7679%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="15.5179%" y="741" width="0.1068%" height="15" fill="rgb(236,68,12)" fg:x="3922" fg:w="27"/><text x="15.7679%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (27 samples, 0.11%)</title><rect x="15.5179%" y="725" width="0.1068%" height="15" fill="rgb(225,194,26)" fg:x="3922" fg:w="27"/><text x="15.7679%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (27 samples, 0.11%)</title><rect x="15.5179%" y="709" width="0.1068%" height="15" fill="rgb(231,84,39)" fg:x="3922" fg:w="27"/><text x="15.7679%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="15.6089%" y="693" width="0.0158%" height="15" fill="rgb(210,11,45)" fg:x="3945" fg:w="4"/><text x="15.8589%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="15.6089%" y="677" width="0.0158%" height="15" fill="rgb(224,54,52)" fg:x="3945" fg:w="4"/><text x="15.8589%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="15.6287%" y="693" width="0.0554%" height="15" fill="rgb(238,102,14)" fg:x="3950" fg:w="14"/><text x="15.8787%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="15.6327%" y="677" width="0.0514%" height="15" fill="rgb(243,160,52)" fg:x="3951" fg:w="13"/><text x="15.8827%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="15.6485%" y="661" width="0.0356%" height="15" fill="rgb(216,114,19)" fg:x="3955" fg:w="9"/><text x="15.8985%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="15.6248%" y="741" width="0.0633%" height="15" fill="rgb(244,166,37)" fg:x="3949" fg:w="16"/><text x="15.8748%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (16 samples, 0.06%)</title><rect x="15.6248%" y="725" width="0.0633%" height="15" fill="rgb(246,29,44)" fg:x="3949" fg:w="16"/><text x="15.8748%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (16 samples, 0.06%)</title><rect x="15.6248%" y="709" width="0.0633%" height="15" fill="rgb(215,56,53)" fg:x="3949" fg:w="16"/><text x="15.8748%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="15.6881%" y="677" width="0.0831%" height="15" fill="rgb(217,60,2)" fg:x="3965" fg:w="21"/><text x="15.9381%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (19 samples, 0.08%)</title><rect x="15.6960%" y="661" width="0.0752%" height="15" fill="rgb(207,26,24)" fg:x="3967" fg:w="19"/><text x="15.9460%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="15.7197%" y="645" width="0.0514%" height="15" fill="rgb(252,210,15)" fg:x="3973" fg:w="13"/><text x="15.9697%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (90 samples, 0.36%)</title><rect x="15.4230%" y="853" width="0.3561%" height="15" fill="rgb(253,209,26)" fg:x="3898" fg:w="90"/><text x="15.6730%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (90 samples, 0.36%)</title><rect x="15.4230%" y="837" width="0.3561%" height="15" fill="rgb(238,170,14)" fg:x="3898" fg:w="90"/><text x="15.6730%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (90 samples, 0.36%)</title><rect x="15.4230%" y="821" width="0.3561%" height="15" fill="rgb(216,178,15)" fg:x="3898" fg:w="90"/><text x="15.6730%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (39 samples, 0.15%)</title><rect x="15.6248%" y="805" width="0.1543%" height="15" fill="rgb(250,197,2)" fg:x="3949" fg:w="39"/><text x="15.8748%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.15%)</title><rect x="15.6248%" y="789" width="0.1543%" height="15" fill="rgb(212,70,42)" fg:x="3949" fg:w="39"/><text x="15.8748%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.15%)</title><rect x="15.6248%" y="773" width="0.1543%" height="15" fill="rgb(227,213,9)" fg:x="3949" fg:w="39"/><text x="15.8748%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (39 samples, 0.15%)</title><rect x="15.6248%" y="757" width="0.1543%" height="15" fill="rgb(245,99,25)" fg:x="3949" fg:w="39"/><text x="15.8748%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.09%)</title><rect x="15.6881%" y="741" width="0.0910%" height="15" fill="rgb(250,82,29)" fg:x="3965" fg:w="23"/><text x="15.9381%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="15.6881%" y="725" width="0.0910%" height="15" fill="rgb(241,226,54)" fg:x="3965" fg:w="23"/><text x="15.9381%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (23 samples, 0.09%)</title><rect x="15.6881%" y="709" width="0.0910%" height="15" fill="rgb(221,99,41)" fg:x="3965" fg:w="23"/><text x="15.9381%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (23 samples, 0.09%)</title><rect x="15.6881%" y="693" width="0.0910%" height="15" fill="rgb(213,90,21)" fg:x="3965" fg:w="23"/><text x="15.9381%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="15.7791%" y="693" width="0.0593%" height="15" fill="rgb(205,208,24)" fg:x="3988" fg:w="15"/><text x="16.0291%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="15.7870%" y="677" width="0.0514%" height="15" fill="rgb(246,31,12)" fg:x="3990" fg:w="13"/><text x="16.0370%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="15.8107%" y="661" width="0.0277%" height="15" fill="rgb(213,154,6)" fg:x="3996" fg:w="7"/><text x="16.0607%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="15.7791%" y="741" width="0.0673%" height="15" fill="rgb(222,163,29)" fg:x="3988" fg:w="17"/><text x="16.0291%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (17 samples, 0.07%)</title><rect x="15.7791%" y="725" width="0.0673%" height="15" fill="rgb(227,201,8)" fg:x="3988" fg:w="17"/><text x="16.0291%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (17 samples, 0.07%)</title><rect x="15.7791%" y="709" width="0.0673%" height="15" fill="rgb(233,9,32)" fg:x="3988" fg:w="17"/><text x="16.0291%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="15.8463%" y="677" width="0.0435%" height="15" fill="rgb(217,54,24)" fg:x="4005" fg:w="11"/><text x="16.0963%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.04%)</title><rect x="15.8463%" y="661" width="0.0435%" height="15" fill="rgb(235,192,0)" fg:x="4005" fg:w="11"/><text x="16.0963%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="15.8582%" y="645" width="0.0317%" height="15" fill="rgb(235,45,9)" fg:x="4008" fg:w="8"/><text x="16.1082%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.13%)</title><rect x="15.7791%" y="789" width="0.1266%" height="15" fill="rgb(246,42,40)" fg:x="3988" fg:w="32"/><text x="16.0291%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.13%)</title><rect x="15.7791%" y="773" width="0.1266%" height="15" fill="rgb(248,111,24)" fg:x="3988" fg:w="32"/><text x="16.0291%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (32 samples, 0.13%)</title><rect x="15.7791%" y="757" width="0.1266%" height="15" fill="rgb(249,65,22)" fg:x="3988" fg:w="32"/><text x="16.0291%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="15.8463%" y="741" width="0.0593%" height="15" fill="rgb(238,111,51)" fg:x="4005" fg:w="15"/><text x="16.0963%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="15.8463%" y="725" width="0.0593%" height="15" fill="rgb(250,118,22)" fg:x="4005" fg:w="15"/><text x="16.0963%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (15 samples, 0.06%)</title><rect x="15.8463%" y="709" width="0.0593%" height="15" fill="rgb(234,84,26)" fg:x="4005" fg:w="15"/><text x="16.0963%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (15 samples, 0.06%)</title><rect x="15.8463%" y="693" width="0.0593%" height="15" fill="rgb(243,172,12)" fg:x="4005" fg:w="15"/><text x="16.0963%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="15.8898%" y="677" width="0.0158%" height="15" fill="rgb(236,150,49)" fg:x="4016" fg:w="4"/><text x="16.1398%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="15.9057%" y="677" width="0.0475%" height="15" fill="rgb(225,197,26)" fg:x="4020" fg:w="12"/><text x="16.1557%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.05%)</title><rect x="15.9057%" y="661" width="0.0475%" height="15" fill="rgb(214,17,42)" fg:x="4020" fg:w="12"/><text x="16.1557%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="15.9255%" y="645" width="0.0277%" height="15" fill="rgb(224,165,40)" fg:x="4025" fg:w="7"/><text x="16.1755%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="15.9057%" y="725" width="0.0673%" height="15" fill="rgb(246,100,4)" fg:x="4020" fg:w="17"/><text x="16.1557%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (17 samples, 0.07%)</title><rect x="15.9057%" y="709" width="0.0673%" height="15" fill="rgb(222,103,0)" fg:x="4020" fg:w="17"/><text x="16.1557%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (17 samples, 0.07%)</title><rect x="15.9057%" y="693" width="0.0673%" height="15" fill="rgb(227,189,26)" fg:x="4020" fg:w="17"/><text x="16.1557%" y="703.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="15.9532%" y="677" width="0.0198%" height="15" fill="rgb(214,202,17)" fg:x="4032" fg:w="5"/><text x="16.2032%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="15.9729%" y="661" width="0.0554%" height="15" fill="rgb(229,111,3)" fg:x="4037" fg:w="14"/><text x="16.2229%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.05%)</title><rect x="15.9769%" y="645" width="0.0514%" height="15" fill="rgb(229,172,15)" fg:x="4038" fg:w="13"/><text x="16.2269%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="16.0006%" y="629" width="0.0277%" height="15" fill="rgb(230,224,35)" fg:x="4044" fg:w="7"/><text x="16.2506%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (157 samples, 0.62%)</title><rect x="15.4230%" y="917" width="0.6212%" height="15" fill="rgb(251,141,6)" fg:x="3898" fg:w="157"/><text x="15.6730%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (157 samples, 0.62%)</title><rect x="15.4230%" y="901" width="0.6212%" height="15" fill="rgb(225,208,6)" fg:x="3898" fg:w="157"/><text x="15.6730%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (157 samples, 0.62%)</title><rect x="15.4230%" y="885" width="0.6212%" height="15" fill="rgb(246,181,16)" fg:x="3898" fg:w="157"/><text x="15.6730%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (157 samples, 0.62%)</title><rect x="15.4230%" y="869" width="0.6212%" height="15" fill="rgb(227,129,36)" fg:x="3898" fg:w="157"/><text x="15.6730%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (67 samples, 0.27%)</title><rect x="15.7791%" y="853" width="0.2651%" height="15" fill="rgb(248,117,24)" fg:x="3988" fg:w="67"/><text x="16.0291%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67 samples, 0.27%)</title><rect x="15.7791%" y="837" width="0.2651%" height="15" fill="rgb(214,185,35)" fg:x="3988" fg:w="67"/><text x="16.0291%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (67 samples, 0.27%)</title><rect x="15.7791%" y="821" width="0.2651%" height="15" fill="rgb(236,150,34)" fg:x="3988" fg:w="67"/><text x="16.0291%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (67 samples, 0.27%)</title><rect x="15.7791%" y="805" width="0.2651%" height="15" fill="rgb(243,228,27)" fg:x="3988" fg:w="67"/><text x="16.0291%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.14%)</title><rect x="15.9057%" y="789" width="0.1385%" height="15" fill="rgb(245,77,44)" fg:x="4020" fg:w="35"/><text x="16.1557%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.14%)</title><rect x="15.9057%" y="773" width="0.1385%" height="15" fill="rgb(235,214,42)" fg:x="4020" fg:w="35"/><text x="16.1557%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.14%)</title><rect x="15.9057%" y="757" width="0.1385%" height="15" fill="rgb(221,74,3)" fg:x="4020" fg:w="35"/><text x="16.1557%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (35 samples, 0.14%)</title><rect x="15.9057%" y="741" width="0.1385%" height="15" fill="rgb(206,121,29)" fg:x="4020" fg:w="35"/><text x="16.1557%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="15.9729%" y="725" width="0.0712%" height="15" fill="rgb(249,131,53)" fg:x="4037" fg:w="18"/><text x="16.2229%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="15.9729%" y="709" width="0.0712%" height="15" fill="rgb(236,170,29)" fg:x="4037" fg:w="18"/><text x="16.2229%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (18 samples, 0.07%)</title><rect x="15.9729%" y="693" width="0.0712%" height="15" fill="rgb(247,96,15)" fg:x="4037" fg:w="18"/><text x="16.2229%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (18 samples, 0.07%)</title><rect x="15.9729%" y="677" width="0.0712%" height="15" fill="rgb(211,210,7)" fg:x="4037" fg:w="18"/><text x="16.2229%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="16.0283%" y="661" width="0.0158%" height="15" fill="rgb(240,88,50)" fg:x="4051" fg:w="4"/><text x="16.2783%" y="671.50"></text></g><g><title>oorandom::Rand64::rand_range (4 samples, 0.02%)</title><rect x="16.0283%" y="645" width="0.0158%" height="15" fill="rgb(209,229,26)" fg:x="4051" fg:w="4"/><text x="16.2783%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.0442%" y="645" width="0.0158%" height="15" fill="rgb(210,68,23)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="655.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="16.0442%" y="629" width="0.0158%" height="15" fill="rgb(229,180,13)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="16.0442%" y="613" width="0.0158%" height="15" fill="rgb(236,53,44)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="623.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.0442%" y="597" width="0.0158%" height="15" fill="rgb(244,214,29)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.0442%" y="581" width="0.0158%" height="15" fill="rgb(220,75,29)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.0442%" y="565" width="0.0158%" height="15" fill="rgb(214,183,37)" fg:x="4055" fg:w="4"/><text x="16.2942%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.0442%" y="693" width="0.0277%" height="15" fill="rgb(239,117,29)" fg:x="4055" fg:w="7"/><text x="16.2942%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="16.0442%" y="677" width="0.0277%" height="15" fill="rgb(237,171,35)" fg:x="4055" fg:w="7"/><text x="16.2942%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="16.0442%" y="661" width="0.0277%" height="15" fill="rgb(229,178,53)" fg:x="4055" fg:w="7"/><text x="16.2942%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.0600%" y="645" width="0.0119%" height="15" fill="rgb(210,102,19)" fg:x="4059" fg:w="3"/><text x="16.3100%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.0600%" y="629" width="0.0119%" height="15" fill="rgb(235,127,22)" fg:x="4059" fg:w="3"/><text x="16.3100%" y="639.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.0600%" y="613" width="0.0119%" height="15" fill="rgb(244,31,31)" fg:x="4059" fg:w="3"/><text x="16.3100%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.0600%" y="597" width="0.0119%" height="15" fill="rgb(231,43,21)" fg:x="4059" fg:w="3"/><text x="16.3100%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.0442%" y="741" width="0.0356%" height="15" fill="rgb(217,131,35)" fg:x="4055" fg:w="9"/><text x="16.2942%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="16.0442%" y="725" width="0.0356%" height="15" fill="rgb(221,149,4)" fg:x="4055" fg:w="9"/><text x="16.2942%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.0442%" y="709" width="0.0356%" height="15" fill="rgb(232,170,28)" fg:x="4055" fg:w="9"/><text x="16.2942%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="16.0442%" y="789" width="0.0554%" height="15" fill="rgb(238,56,10)" fg:x="4055" fg:w="14"/><text x="16.2942%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="16.0442%" y="773" width="0.0554%" height="15" fill="rgb(235,196,14)" fg:x="4055" fg:w="14"/><text x="16.2942%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="16.0442%" y="757" width="0.0554%" height="15" fill="rgb(216,45,48)" fg:x="4055" fg:w="14"/><text x="16.2942%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="16.0798%" y="741" width="0.0198%" height="15" fill="rgb(238,213,17)" fg:x="4064" fg:w="5"/><text x="16.3298%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="16.0798%" y="725" width="0.0198%" height="15" fill="rgb(212,13,2)" fg:x="4064" fg:w="5"/><text x="16.3298%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="16.0798%" y="709" width="0.0198%" height="15" fill="rgb(240,114,20)" fg:x="4064" fg:w="5"/><text x="16.3298%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="16.0798%" y="693" width="0.0198%" height="15" fill="rgb(228,41,40)" fg:x="4064" fg:w="5"/><text x="16.3298%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.0877%" y="677" width="0.0119%" height="15" fill="rgb(244,132,35)" fg:x="4066" fg:w="3"/><text x="16.3377%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.0877%" y="661" width="0.0119%" height="15" fill="rgb(253,189,4)" fg:x="4066" fg:w="3"/><text x="16.3377%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.0877%" y="645" width="0.0119%" height="15" fill="rgb(224,37,19)" fg:x="4066" fg:w="3"/><text x="16.3377%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.0877%" y="629" width="0.0119%" height="15" fill="rgb(235,223,18)" fg:x="4066" fg:w="3"/><text x="16.3377%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.0995%" y="677" width="0.0158%" height="15" fill="rgb(235,163,25)" fg:x="4069" fg:w="4"/><text x="16.3495%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.0995%" y="661" width="0.0158%" height="15" fill="rgb(217,145,28)" fg:x="4069" fg:w="4"/><text x="16.3495%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.0995%" y="645" width="0.0158%" height="15" fill="rgb(223,223,32)" fg:x="4069" fg:w="4"/><text x="16.3495%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.0995%" y="725" width="0.0317%" height="15" fill="rgb(227,189,39)" fg:x="4069" fg:w="8"/><text x="16.3495%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="16.0995%" y="709" width="0.0317%" height="15" fill="rgb(248,10,22)" fg:x="4069" fg:w="8"/><text x="16.3495%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.0995%" y="693" width="0.0317%" height="15" fill="rgb(248,46,39)" fg:x="4069" fg:w="8"/><text x="16.3495%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.1154%" y="677" width="0.0158%" height="15" fill="rgb(248,113,48)" fg:x="4073" fg:w="4"/><text x="16.3654%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.1154%" y="661" width="0.0158%" height="15" fill="rgb(245,16,25)" fg:x="4073" fg:w="4"/><text x="16.3654%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.1154%" y="645" width="0.0158%" height="15" fill="rgb(249,152,16)" fg:x="4073" fg:w="4"/><text x="16.3654%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.1154%" y="629" width="0.0158%" height="15" fill="rgb(250,16,1)" fg:x="4073" fg:w="4"/><text x="16.3654%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.1193%" y="613" width="0.0119%" height="15" fill="rgb(249,138,3)" fg:x="4074" fg:w="3"/><text x="16.3693%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.1193%" y="597" width="0.0119%" height="15" fill="rgb(227,71,41)" fg:x="4074" fg:w="3"/><text x="16.3693%" y="607.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.1193%" y="581" width="0.0119%" height="15" fill="rgb(209,184,23)" fg:x="4074" fg:w="3"/><text x="16.3693%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.1193%" y="565" width="0.0119%" height="15" fill="rgb(223,215,31)" fg:x="4074" fg:w="3"/><text x="16.3693%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="16.1312%" y="725" width="0.0237%" height="15" fill="rgb(210,146,28)" fg:x="4077" fg:w="6"/><text x="16.3812%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.1312%" y="709" width="0.0237%" height="15" fill="rgb(209,183,41)" fg:x="4077" fg:w="6"/><text x="16.3812%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.1312%" y="693" width="0.0237%" height="15" fill="rgb(209,224,45)" fg:x="4077" fg:w="6"/><text x="16.3812%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.1312%" y="677" width="0.0237%" height="15" fill="rgb(224,209,51)" fg:x="4077" fg:w="6"/><text x="16.3812%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.1391%" y="661" width="0.0158%" height="15" fill="rgb(223,17,39)" fg:x="4079" fg:w="4"/><text x="16.3891%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.1391%" y="645" width="0.0158%" height="15" fill="rgb(234,204,37)" fg:x="4079" fg:w="4"/><text x="16.3891%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.1391%" y="629" width="0.0158%" height="15" fill="rgb(236,120,5)" fg:x="4079" fg:w="4"/><text x="16.3891%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.1391%" y="613" width="0.0158%" height="15" fill="rgb(248,97,27)" fg:x="4079" fg:w="4"/><text x="16.3891%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="16.0442%" y="837" width="0.1147%" height="15" fill="rgb(240,66,17)" fg:x="4055" fg:w="29"/><text x="16.2942%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="16.0442%" y="821" width="0.1147%" height="15" fill="rgb(210,79,3)" fg:x="4055" fg:w="29"/><text x="16.2942%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="16.0442%" y="805" width="0.1147%" height="15" fill="rgb(214,176,27)" fg:x="4055" fg:w="29"/><text x="16.2942%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="16.0995%" y="789" width="0.0593%" height="15" fill="rgb(235,185,3)" fg:x="4069" fg:w="15"/><text x="16.3495%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="16.0995%" y="773" width="0.0593%" height="15" fill="rgb(227,24,12)" fg:x="4069" fg:w="15"/><text x="16.3495%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="16.0995%" y="757" width="0.0593%" height="15" fill="rgb(252,169,48)" fg:x="4069" fg:w="15"/><text x="16.3495%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="16.0995%" y="741" width="0.0593%" height="15" fill="rgb(212,65,1)" fg:x="4069" fg:w="15"/><text x="16.3495%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.1589%" y="677" width="0.0119%" height="15" fill="rgb(242,39,24)" fg:x="4084" fg:w="3"/><text x="16.4089%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="16.1589%" y="661" width="0.0119%" height="15" fill="rgb(249,32,23)" fg:x="4084" fg:w="3"/><text x="16.4089%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.1589%" y="645" width="0.0119%" height="15" fill="rgb(251,195,23)" fg:x="4084" fg:w="3"/><text x="16.4089%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="16.1589%" y="725" width="0.0198%" height="15" fill="rgb(236,174,8)" fg:x="4084" fg:w="5"/><text x="16.4089%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="16.1589%" y="709" width="0.0198%" height="15" fill="rgb(220,197,8)" fg:x="4084" fg:w="5"/><text x="16.4089%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="16.1589%" y="693" width="0.0198%" height="15" fill="rgb(240,108,37)" fg:x="4084" fg:w="5"/><text x="16.4089%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (532 samples, 2.10%)</title><rect x="14.0896%" y="965" width="2.1049%" height="15" fill="rgb(232,176,24)" fg:x="3561" fg:w="532"/><text x="14.3396%" y="975.50">r..</text></g><g><title>rayon_core::registry::in_worker (531 samples, 2.10%)</title><rect x="14.0935%" y="949" width="2.1010%" height="15" fill="rgb(243,35,29)" fg:x="3562" fg:w="531"/><text x="14.3435%" y="959.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (531 samples, 2.10%)</title><rect x="14.0935%" y="933" width="2.1010%" height="15" fill="rgb(210,37,18)" fg:x="3562" fg:w="531"/><text x="14.3435%" y="943.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38 samples, 0.15%)</title><rect x="16.0442%" y="917" width="0.1504%" height="15" fill="rgb(224,184,40)" fg:x="4055" fg:w="38"/><text x="16.2942%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38 samples, 0.15%)</title><rect x="16.0442%" y="901" width="0.1504%" height="15" fill="rgb(236,39,29)" fg:x="4055" fg:w="38"/><text x="16.2942%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="16.0442%" y="885" width="0.1504%" height="15" fill="rgb(232,48,39)" fg:x="4055" fg:w="38"/><text x="16.2942%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.15%)</title><rect x="16.0442%" y="869" width="0.1504%" height="15" fill="rgb(236,34,42)" fg:x="4055" fg:w="38"/><text x="16.2942%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (38 samples, 0.15%)</title><rect x="16.0442%" y="853" width="0.1504%" height="15" fill="rgb(243,106,37)" fg:x="4055" fg:w="38"/><text x="16.2942%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="16.1589%" y="837" width="0.0356%" height="15" fill="rgb(218,96,6)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.1589%" y="821" width="0.0356%" height="15" fill="rgb(235,130,12)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="16.1589%" y="805" width="0.0356%" height="15" fill="rgb(231,95,0)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.1589%" y="789" width="0.0356%" height="15" fill="rgb(228,12,23)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.1589%" y="773" width="0.0356%" height="15" fill="rgb(216,12,1)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="16.1589%" y="757" width="0.0356%" height="15" fill="rgb(219,59,3)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.1589%" y="741" width="0.0356%" height="15" fill="rgb(215,208,46)" fg:x="4084" fg:w="9"/><text x="16.4089%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.1787%" y="725" width="0.0158%" height="15" fill="rgb(254,224,29)" fg:x="4089" fg:w="4"/><text x="16.4287%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.1787%" y="709" width="0.0158%" height="15" fill="rgb(232,14,29)" fg:x="4089" fg:w="4"/><text x="16.4287%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.1787%" y="693" width="0.0158%" height="15" fill="rgb(208,45,52)" fg:x="4089" fg:w="4"/><text x="16.4287%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.1787%" y="677" width="0.0158%" height="15" fill="rgb(234,191,28)" fg:x="4089" fg:w="4"/><text x="16.4287%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.1945%" y="709" width="0.0317%" height="15" fill="rgb(244,67,43)" fg:x="4093" fg:w="8"/><text x="16.4445%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.2024%" y="693" width="0.0237%" height="15" fill="rgb(236,189,24)" fg:x="4095" fg:w="6"/><text x="16.4524%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.2143%" y="677" width="0.0119%" height="15" fill="rgb(239,214,33)" fg:x="4098" fg:w="3"/><text x="16.4643%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.1945%" y="757" width="0.0356%" height="15" fill="rgb(226,176,41)" fg:x="4093" fg:w="9"/><text x="16.4445%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (9 samples, 0.04%)</title><rect x="16.1945%" y="741" width="0.0356%" height="15" fill="rgb(248,47,8)" fg:x="4093" fg:w="9"/><text x="16.4445%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (9 samples, 0.04%)</title><rect x="16.1945%" y="725" width="0.0356%" height="15" fill="rgb(218,81,44)" fg:x="4093" fg:w="9"/><text x="16.4445%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.2301%" y="693" width="0.0356%" height="15" fill="rgb(213,98,6)" fg:x="4102" fg:w="9"/><text x="16.4801%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.2420%" y="677" width="0.0237%" height="15" fill="rgb(222,85,22)" fg:x="4105" fg:w="6"/><text x="16.4920%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.2539%" y="661" width="0.0119%" height="15" fill="rgb(239,46,39)" fg:x="4108" fg:w="3"/><text x="16.5039%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10 samples, 0.04%)</title><rect x="16.2301%" y="725" width="0.0396%" height="15" fill="rgb(237,12,29)" fg:x="4102" fg:w="10"/><text x="16.4801%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (10 samples, 0.04%)</title><rect x="16.2301%" y="709" width="0.0396%" height="15" fill="rgb(214,77,8)" fg:x="4102" fg:w="10"/><text x="16.4801%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.08%)</title><rect x="16.1945%" y="805" width="0.0791%" height="15" fill="rgb(217,168,37)" fg:x="4093" fg:w="20"/><text x="16.4445%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="16.1945%" y="789" width="0.0791%" height="15" fill="rgb(221,217,23)" fg:x="4093" fg:w="20"/><text x="16.4445%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="16.1945%" y="773" width="0.0791%" height="15" fill="rgb(243,229,36)" fg:x="4093" fg:w="20"/><text x="16.4445%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="16.2301%" y="757" width="0.0435%" height="15" fill="rgb(251,163,40)" fg:x="4102" fg:w="11"/><text x="16.4801%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="16.2301%" y="741" width="0.0435%" height="15" fill="rgb(237,222,12)" fg:x="4102" fg:w="11"/><text x="16.4801%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.2736%" y="741" width="0.0317%" height="15" fill="rgb(248,132,6)" fg:x="4113" fg:w="8"/><text x="16.5236%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.03%)</title><rect x="16.2736%" y="725" width="0.0317%" height="15" fill="rgb(227,167,50)" fg:x="4113" fg:w="8"/><text x="16.5236%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (8 samples, 0.03%)</title><rect x="16.2736%" y="709" width="0.0317%" height="15" fill="rgb(242,84,37)" fg:x="4113" fg:w="8"/><text x="16.5236%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="16.2776%" y="693" width="0.0277%" height="15" fill="rgb(212,4,50)" fg:x="4114" fg:w="7"/><text x="16.5276%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="16.2776%" y="677" width="0.0277%" height="15" fill="rgb(230,228,32)" fg:x="4114" fg:w="7"/><text x="16.5276%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.2934%" y="661" width="0.0119%" height="15" fill="rgb(248,217,23)" fg:x="4118" fg:w="3"/><text x="16.5434%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.3053%" y="677" width="0.0317%" height="15" fill="rgb(238,197,32)" fg:x="4121" fg:w="8"/><text x="16.5553%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="16.3093%" y="661" width="0.0277%" height="15" fill="rgb(236,106,1)" fg:x="4122" fg:w="7"/><text x="16.5593%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="16.1945%" y="853" width="0.1504%" height="15" fill="rgb(219,228,13)" fg:x="4093" fg:w="38"/><text x="16.4445%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.15%)</title><rect x="16.1945%" y="837" width="0.1504%" height="15" fill="rgb(238,30,35)" fg:x="4093" fg:w="38"/><text x="16.4445%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (38 samples, 0.15%)</title><rect x="16.1945%" y="821" width="0.1504%" height="15" fill="rgb(236,70,23)" fg:x="4093" fg:w="38"/><text x="16.4445%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="16.2736%" y="805" width="0.0712%" height="15" fill="rgb(249,104,48)" fg:x="4113" fg:w="18"/><text x="16.5236%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="16.2736%" y="789" width="0.0712%" height="15" fill="rgb(254,117,50)" fg:x="4113" fg:w="18"/><text x="16.5236%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="16.2736%" y="773" width="0.0712%" height="15" fill="rgb(223,152,4)" fg:x="4113" fg:w="18"/><text x="16.5236%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="16.2736%" y="757" width="0.0712%" height="15" fill="rgb(245,6,2)" fg:x="4113" fg:w="18"/><text x="16.5236%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="16.3053%" y="741" width="0.0396%" height="15" fill="rgb(249,150,24)" fg:x="4121" fg:w="10"/><text x="16.5553%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="16.3053%" y="725" width="0.0396%" height="15" fill="rgb(228,185,42)" fg:x="4121" fg:w="10"/><text x="16.5553%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10 samples, 0.04%)</title><rect x="16.3053%" y="709" width="0.0396%" height="15" fill="rgb(226,39,33)" fg:x="4121" fg:w="10"/><text x="16.5553%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (10 samples, 0.04%)</title><rect x="16.3053%" y="693" width="0.0396%" height="15" fill="rgb(221,166,19)" fg:x="4121" fg:w="10"/><text x="16.5553%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.3449%" y="693" width="0.0356%" height="15" fill="rgb(209,109,2)" fg:x="4131" fg:w="9"/><text x="16.5949%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="16.3449%" y="677" width="0.0356%" height="15" fill="rgb(252,216,26)" fg:x="4131" fg:w="9"/><text x="16.5949%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.3686%" y="661" width="0.0119%" height="15" fill="rgb(227,173,36)" fg:x="4137" fg:w="3"/><text x="16.6186%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="16.3449%" y="741" width="0.0435%" height="15" fill="rgb(209,90,7)" fg:x="4131" fg:w="11"/><text x="16.5949%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.04%)</title><rect x="16.3449%" y="725" width="0.0435%" height="15" fill="rgb(250,194,11)" fg:x="4131" fg:w="11"/><text x="16.5949%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (11 samples, 0.04%)</title><rect x="16.3449%" y="709" width="0.0435%" height="15" fill="rgb(220,72,50)" fg:x="4131" fg:w="11"/><text x="16.5949%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.3884%" y="677" width="0.0317%" height="15" fill="rgb(222,106,48)" fg:x="4142" fg:w="8"/><text x="16.6384%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="16.3923%" y="661" width="0.0277%" height="15" fill="rgb(216,220,45)" fg:x="4143" fg:w="7"/><text x="16.6423%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.3963%" y="645" width="0.0237%" height="15" fill="rgb(234,112,18)" fg:x="4144" fg:w="6"/><text x="16.6463%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="16.3449%" y="789" width="0.0831%" height="15" fill="rgb(206,179,9)" fg:x="4131" fg:w="21"/><text x="16.5949%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="16.3449%" y="773" width="0.0831%" height="15" fill="rgb(215,115,40)" fg:x="4131" fg:w="21"/><text x="16.5949%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="16.3449%" y="757" width="0.0831%" height="15" fill="rgb(222,69,34)" fg:x="4131" fg:w="21"/><text x="16.5949%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="16.3884%" y="741" width="0.0396%" height="15" fill="rgb(209,161,10)" fg:x="4142" fg:w="10"/><text x="16.6384%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="16.3884%" y="725" width="0.0396%" height="15" fill="rgb(217,6,38)" fg:x="4142" fg:w="10"/><text x="16.6384%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10 samples, 0.04%)</title><rect x="16.3884%" y="709" width="0.0396%" height="15" fill="rgb(229,229,48)" fg:x="4142" fg:w="10"/><text x="16.6384%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (10 samples, 0.04%)</title><rect x="16.3884%" y="693" width="0.0396%" height="15" fill="rgb(225,21,28)" fg:x="4142" fg:w="10"/><text x="16.6384%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.4279%" y="725" width="0.0317%" height="15" fill="rgb(206,33,13)" fg:x="4152" fg:w="8"/><text x="16.6779%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.03%)</title><rect x="16.4279%" y="709" width="0.0317%" height="15" fill="rgb(242,178,17)" fg:x="4152" fg:w="8"/><text x="16.6779%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (8 samples, 0.03%)</title><rect x="16.4279%" y="693" width="0.0317%" height="15" fill="rgb(220,162,5)" fg:x="4152" fg:w="8"/><text x="16.6779%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.4279%" y="677" width="0.0317%" height="15" fill="rgb(210,33,43)" fg:x="4152" fg:w="8"/><text x="16.6779%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="16.4319%" y="661" width="0.0277%" height="15" fill="rgb(216,116,54)" fg:x="4153" fg:w="7"/><text x="16.6819%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.4398%" y="645" width="0.0198%" height="15" fill="rgb(249,92,24)" fg:x="4155" fg:w="5"/><text x="16.6898%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.4596%" y="661" width="0.0158%" height="15" fill="rgb(231,189,14)" fg:x="4160" fg:w="4"/><text x="16.7096%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.4596%" y="645" width="0.0158%" height="15" fill="rgb(230,8,41)" fg:x="4160" fg:w="4"/><text x="16.7096%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.4636%" y="629" width="0.0119%" height="15" fill="rgb(249,7,27)" fg:x="4161" fg:w="3"/><text x="16.7136%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.29%)</title><rect x="16.1945%" y="901" width="0.2928%" height="15" fill="rgb(232,86,5)" fg:x="4093" fg:w="74"/><text x="16.4445%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (74 samples, 0.29%)</title><rect x="16.1945%" y="885" width="0.2928%" height="15" fill="rgb(224,175,18)" fg:x="4093" fg:w="74"/><text x="16.4445%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (74 samples, 0.29%)</title><rect x="16.1945%" y="869" width="0.2928%" height="15" fill="rgb(220,129,12)" fg:x="4093" fg:w="74"/><text x="16.4445%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (36 samples, 0.14%)</title><rect x="16.3449%" y="853" width="0.1424%" height="15" fill="rgb(210,19,36)" fg:x="4131" fg:w="36"/><text x="16.5949%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="16.3449%" y="837" width="0.1424%" height="15" fill="rgb(219,96,14)" fg:x="4131" fg:w="36"/><text x="16.5949%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.14%)</title><rect x="16.3449%" y="821" width="0.1424%" height="15" fill="rgb(249,106,1)" fg:x="4131" fg:w="36"/><text x="16.5949%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (36 samples, 0.14%)</title><rect x="16.3449%" y="805" width="0.1424%" height="15" fill="rgb(249,155,20)" fg:x="4131" fg:w="36"/><text x="16.5949%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="16.4279%" y="789" width="0.0593%" height="15" fill="rgb(244,168,9)" fg:x="4152" fg:w="15"/><text x="16.6779%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="16.4279%" y="773" width="0.0593%" height="15" fill="rgb(216,23,50)" fg:x="4152" fg:w="15"/><text x="16.6779%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="16.4279%" y="757" width="0.0593%" height="15" fill="rgb(224,219,20)" fg:x="4152" fg:w="15"/><text x="16.6779%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="16.4279%" y="741" width="0.0593%" height="15" fill="rgb(222,156,15)" fg:x="4152" fg:w="15"/><text x="16.6779%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="16.4596%" y="725" width="0.0277%" height="15" fill="rgb(231,97,17)" fg:x="4160" fg:w="7"/><text x="16.7096%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.4596%" y="709" width="0.0277%" height="15" fill="rgb(218,70,48)" fg:x="4160" fg:w="7"/><text x="16.7096%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.4596%" y="693" width="0.0277%" height="15" fill="rgb(212,196,52)" fg:x="4160" fg:w="7"/><text x="16.7096%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.4596%" y="677" width="0.0277%" height="15" fill="rgb(243,203,18)" fg:x="4160" fg:w="7"/><text x="16.7096%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="16.4754%" y="661" width="0.0119%" height="15" fill="rgb(252,125,41)" fg:x="4164" fg:w="3"/><text x="16.7254%" y="671.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="16.4754%" y="645" width="0.0119%" height="15" fill="rgb(223,180,33)" fg:x="4164" fg:w="3"/><text x="16.7254%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="16.4873%" y="693" width="0.0198%" height="15" fill="rgb(254,159,46)" fg:x="4167" fg:w="5"/><text x="16.7373%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.4873%" y="677" width="0.0198%" height="15" fill="rgb(254,38,10)" fg:x="4167" fg:w="5"/><text x="16.7373%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.4913%" y="661" width="0.0158%" height="15" fill="rgb(208,217,32)" fg:x="4168" fg:w="4"/><text x="16.7413%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.4873%" y="741" width="0.0237%" height="15" fill="rgb(221,120,13)" fg:x="4167" fg:w="6"/><text x="16.7373%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="16.4873%" y="725" width="0.0237%" height="15" fill="rgb(246,54,52)" fg:x="4167" fg:w="6"/><text x="16.7373%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="16.4873%" y="709" width="0.0237%" height="15" fill="rgb(242,34,25)" fg:x="4167" fg:w="6"/><text x="16.7373%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="16.4873%" y="789" width="0.0435%" height="15" fill="rgb(247,209,9)" fg:x="4167" fg:w="11"/><text x="16.7373%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="16.4873%" y="773" width="0.0435%" height="15" fill="rgb(228,71,26)" fg:x="4167" fg:w="11"/><text x="16.7373%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="16.4873%" y="757" width="0.0435%" height="15" fill="rgb(222,145,49)" fg:x="4167" fg:w="11"/><text x="16.7373%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="16.5110%" y="741" width="0.0198%" height="15" fill="rgb(218,121,17)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="16.5110%" y="725" width="0.0198%" height="15" fill="rgb(244,50,7)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="16.5110%" y="709" width="0.0198%" height="15" fill="rgb(246,229,37)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="16.5110%" y="693" width="0.0198%" height="15" fill="rgb(225,18,5)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="16.5110%" y="677" width="0.0198%" height="15" fill="rgb(213,204,8)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.5110%" y="661" width="0.0198%" height="15" fill="rgb(238,103,6)" fg:x="4173" fg:w="5"/><text x="16.7610%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.5150%" y="645" width="0.0158%" height="15" fill="rgb(222,25,35)" fg:x="4174" fg:w="4"/><text x="16.7650%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.5308%" y="677" width="0.0237%" height="15" fill="rgb(213,203,35)" fg:x="4178" fg:w="6"/><text x="16.7808%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.5348%" y="661" width="0.0198%" height="15" fill="rgb(221,79,53)" fg:x="4179" fg:w="5"/><text x="16.7848%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.5348%" y="645" width="0.0198%" height="15" fill="rgb(243,200,35)" fg:x="4179" fg:w="5"/><text x="16.7848%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.5308%" y="725" width="0.0277%" height="15" fill="rgb(248,60,25)" fg:x="4178" fg:w="7"/><text x="16.7808%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.5308%" y="709" width="0.0277%" height="15" fill="rgb(227,53,46)" fg:x="4178" fg:w="7"/><text x="16.7808%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.5308%" y="693" width="0.0277%" height="15" fill="rgb(216,120,32)" fg:x="4178" fg:w="7"/><text x="16.7808%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.5585%" y="661" width="0.0158%" height="15" fill="rgb(220,134,1)" fg:x="4185" fg:w="4"/><text x="16.8085%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.5625%" y="645" width="0.0119%" height="15" fill="rgb(237,168,5)" fg:x="4186" fg:w="3"/><text x="16.8125%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="16.4873%" y="837" width="0.0989%" height="15" fill="rgb(231,100,33)" fg:x="4167" fg:w="25"/><text x="16.7373%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.10%)</title><rect x="16.4873%" y="821" width="0.0989%" height="15" fill="rgb(236,177,47)" fg:x="4167" fg:w="25"/><text x="16.7373%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (25 samples, 0.10%)</title><rect x="16.4873%" y="805" width="0.0989%" height="15" fill="rgb(235,7,49)" fg:x="4167" fg:w="25"/><text x="16.7373%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="16.5308%" y="789" width="0.0554%" height="15" fill="rgb(232,119,22)" fg:x="4178" fg:w="14"/><text x="16.7808%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="16.5308%" y="773" width="0.0554%" height="15" fill="rgb(254,73,53)" fg:x="4178" fg:w="14"/><text x="16.7808%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="16.5308%" y="757" width="0.0554%" height="15" fill="rgb(251,35,20)" fg:x="4178" fg:w="14"/><text x="16.7808%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="16.5308%" y="741" width="0.0554%" height="15" fill="rgb(241,119,20)" fg:x="4178" fg:w="14"/><text x="16.7808%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="16.5585%" y="725" width="0.0277%" height="15" fill="rgb(207,102,14)" fg:x="4185" fg:w="7"/><text x="16.8085%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.5585%" y="709" width="0.0277%" height="15" fill="rgb(248,201,50)" fg:x="4185" fg:w="7"/><text x="16.8085%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.5585%" y="693" width="0.0277%" height="15" fill="rgb(222,185,44)" fg:x="4185" fg:w="7"/><text x="16.8085%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.5585%" y="677" width="0.0277%" height="15" fill="rgb(218,107,18)" fg:x="4185" fg:w="7"/><text x="16.8085%" y="687.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="16.5743%" y="661" width="0.0119%" height="15" fill="rgb(237,177,39)" fg:x="4189" fg:w="3"/><text x="16.8243%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.5862%" y="677" width="0.0237%" height="15" fill="rgb(246,69,6)" fg:x="4192" fg:w="6"/><text x="16.8362%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.5862%" y="661" width="0.0237%" height="15" fill="rgb(234,208,37)" fg:x="4192" fg:w="6"/><text x="16.8362%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.5862%" y="725" width="0.0277%" height="15" fill="rgb(225,4,6)" fg:x="4192" fg:w="7"/><text x="16.8362%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.5862%" y="709" width="0.0277%" height="15" fill="rgb(233,45,0)" fg:x="4192" fg:w="7"/><text x="16.8362%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.5862%" y="693" width="0.0277%" height="15" fill="rgb(226,136,5)" fg:x="4192" fg:w="7"/><text x="16.8362%" y="703.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.6139%" y="661" width="0.0237%" height="15" fill="rgb(211,91,47)" fg:x="4199" fg:w="6"/><text x="16.8639%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.6139%" y="645" width="0.0237%" height="15" fill="rgb(242,88,51)" fg:x="4199" fg:w="6"/><text x="16.8639%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.6218%" y="629" width="0.0158%" height="15" fill="rgb(230,91,28)" fg:x="4201" fg:w="4"/><text x="16.8718%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="16.5862%" y="773" width="0.0554%" height="15" fill="rgb(254,186,29)" fg:x="4192" fg:w="14"/><text x="16.8362%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="16.5862%" y="757" width="0.0554%" height="15" fill="rgb(238,6,4)" fg:x="4192" fg:w="14"/><text x="16.8362%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="16.5862%" y="741" width="0.0554%" height="15" fill="rgb(221,151,16)" fg:x="4192" fg:w="14"/><text x="16.8362%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="16.6139%" y="725" width="0.0277%" height="15" fill="rgb(251,143,52)" fg:x="4199" fg:w="7"/><text x="16.8639%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.6139%" y="709" width="0.0277%" height="15" fill="rgb(206,90,15)" fg:x="4199" fg:w="7"/><text x="16.8639%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.6139%" y="693" width="0.0277%" height="15" fill="rgb(218,35,8)" fg:x="4199" fg:w="7"/><text x="16.8639%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.6139%" y="677" width="0.0277%" height="15" fill="rgb(239,215,6)" fg:x="4199" fg:w="7"/><text x="16.8639%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.6416%" y="661" width="0.0237%" height="15" fill="rgb(245,116,39)" fg:x="4206" fg:w="6"/><text x="16.8916%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.6416%" y="645" width="0.0237%" height="15" fill="rgb(242,65,28)" fg:x="4206" fg:w="6"/><text x="16.8916%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="16.6416%" y="629" width="0.0237%" height="15" fill="rgb(252,132,53)" fg:x="4206" fg:w="6"/><text x="16.8916%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="16.6416%" y="709" width="0.0277%" height="15" fill="rgb(224,159,50)" fg:x="4206" fg:w="7"/><text x="16.8916%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="16.6416%" y="693" width="0.0277%" height="15" fill="rgb(224,93,4)" fg:x="4206" fg:w="7"/><text x="16.8916%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="16.6416%" y="677" width="0.0277%" height="15" fill="rgb(208,81,34)" fg:x="4206" fg:w="7"/><text x="16.8916%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (126 samples, 0.50%)</title><rect x="16.1945%" y="965" width="0.4985%" height="15" fill="rgb(233,92,54)" fg:x="4093" fg:w="126"/><text x="16.4445%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.50%)</title><rect x="16.1945%" y="949" width="0.4985%" height="15" fill="rgb(237,21,14)" fg:x="4093" fg:w="126"/><text x="16.4445%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (126 samples, 0.50%)</title><rect x="16.1945%" y="933" width="0.4985%" height="15" fill="rgb(249,128,51)" fg:x="4093" fg:w="126"/><text x="16.4445%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (126 samples, 0.50%)</title><rect x="16.1945%" y="917" width="0.4985%" height="15" fill="rgb(223,129,24)" fg:x="4093" fg:w="126"/><text x="16.4445%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (52 samples, 0.21%)</title><rect x="16.4873%" y="901" width="0.2057%" height="15" fill="rgb(231,168,25)" fg:x="4167" fg:w="52"/><text x="16.7373%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.21%)</title><rect x="16.4873%" y="885" width="0.2057%" height="15" fill="rgb(224,39,20)" fg:x="4167" fg:w="52"/><text x="16.7373%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="16.4873%" y="869" width="0.2057%" height="15" fill="rgb(225,152,53)" fg:x="4167" fg:w="52"/><text x="16.7373%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="16.4873%" y="853" width="0.2057%" height="15" fill="rgb(252,17,24)" fg:x="4167" fg:w="52"/><text x="16.7373%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="16.5862%" y="837" width="0.1068%" height="15" fill="rgb(250,114,30)" fg:x="4192" fg:w="27"/><text x="16.8362%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="16.5862%" y="821" width="0.1068%" height="15" fill="rgb(229,5,4)" fg:x="4192" fg:w="27"/><text x="16.8362%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="16.5862%" y="805" width="0.1068%" height="15" fill="rgb(225,176,49)" fg:x="4192" fg:w="27"/><text x="16.8362%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="16.5862%" y="789" width="0.1068%" height="15" fill="rgb(224,221,49)" fg:x="4192" fg:w="27"/><text x="16.8362%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="16.6416%" y="773" width="0.0514%" height="15" fill="rgb(253,169,27)" fg:x="4206" fg:w="13"/><text x="16.8916%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="16.6416%" y="757" width="0.0514%" height="15" fill="rgb(211,206,16)" fg:x="4206" fg:w="13"/><text x="16.8916%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="16.6416%" y="741" width="0.0514%" height="15" fill="rgb(244,87,35)" fg:x="4206" fg:w="13"/><text x="16.8916%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="16.6416%" y="725" width="0.0514%" height="15" fill="rgb(246,28,10)" fg:x="4206" fg:w="13"/><text x="16.8916%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="16.6693%" y="709" width="0.0237%" height="15" fill="rgb(229,12,44)" fg:x="4213" fg:w="6"/><text x="16.9193%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.6693%" y="693" width="0.0237%" height="15" fill="rgb(210,145,37)" fg:x="4213" fg:w="6"/><text x="16.9193%" y="703.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.02%)</title><rect x="16.6693%" y="677" width="0.0237%" height="15" fill="rgb(227,112,52)" fg:x="4213" fg:w="6"/><text x="16.9193%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.02%)</title><rect x="16.6693%" y="661" width="0.0237%" height="15" fill="rgb(238,155,34)" fg:x="4213" fg:w="6"/><text x="16.9193%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.6693%" y="645" width="0.0237%" height="15" fill="rgb(239,226,36)" fg:x="4213" fg:w="6"/><text x="16.9193%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="16.6733%" y="629" width="0.0198%" height="15" fill="rgb(230,16,23)" fg:x="4214" fg:w="5"/><text x="16.9233%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.6930%" y="741" width="0.0237%" height="15" fill="rgb(236,171,36)" fg:x="4219" fg:w="6"/><text x="16.9430%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.6930%" y="725" width="0.0237%" height="15" fill="rgb(221,22,14)" fg:x="4219" fg:w="6"/><text x="16.9430%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.6930%" y="709" width="0.0237%" height="15" fill="rgb(242,43,11)" fg:x="4219" fg:w="6"/><text x="16.9430%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.7010%" y="693" width="0.0158%" height="15" fill="rgb(232,69,23)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.7010%" y="677" width="0.0158%" height="15" fill="rgb(216,180,54)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="687.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="16.7010%" y="661" width="0.0158%" height="15" fill="rgb(216,5,24)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="16.7010%" y="645" width="0.0158%" height="15" fill="rgb(225,89,9)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.7010%" y="629" width="0.0158%" height="15" fill="rgb(243,75,33)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.7010%" y="613" width="0.0158%" height="15" fill="rgb(247,141,45)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="16.7010%" y="597" width="0.0158%" height="15" fill="rgb(232,177,36)" fg:x="4221" fg:w="4"/><text x="16.9510%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="16.6930%" y="789" width="0.0396%" height="15" fill="rgb(219,125,36)" fg:x="4219" fg:w="10"/><text x="16.9430%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="16.6930%" y="773" width="0.0396%" height="15" fill="rgb(227,94,9)" fg:x="4219" fg:w="10"/><text x="16.9430%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="16.6930%" y="757" width="0.0396%" height="15" fill="rgb(240,34,52)" fg:x="4219" fg:w="10"/><text x="16.9430%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.7168%" y="741" width="0.0158%" height="15" fill="rgb(216,45,12)" fg:x="4225" fg:w="4"/><text x="16.9668%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.7168%" y="725" width="0.0158%" height="15" fill="rgb(246,21,19)" fg:x="4225" fg:w="4"/><text x="16.9668%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.7168%" y="709" width="0.0158%" height="15" fill="rgb(213,98,42)" fg:x="4225" fg:w="4"/><text x="16.9668%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.7168%" y="693" width="0.0158%" height="15" fill="rgb(250,136,47)" fg:x="4225" fg:w="4"/><text x="16.9668%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.7207%" y="677" width="0.0119%" height="15" fill="rgb(251,124,27)" fg:x="4226" fg:w="3"/><text x="16.9707%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7207%" y="661" width="0.0119%" height="15" fill="rgb(229,180,14)" fg:x="4226" fg:w="3"/><text x="16.9707%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7207%" y="645" width="0.0119%" height="15" fill="rgb(245,216,25)" fg:x="4226" fg:w="3"/><text x="16.9707%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7207%" y="629" width="0.0119%" height="15" fill="rgb(251,43,5)" fg:x="4226" fg:w="3"/><text x="16.9707%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7405%" y="661" width="0.0119%" height="15" fill="rgb(250,128,24)" fg:x="4231" fg:w="3"/><text x="16.9905%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7405%" y="645" width="0.0119%" height="15" fill="rgb(217,117,27)" fg:x="4231" fg:w="3"/><text x="16.9905%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7405%" y="629" width="0.0119%" height="15" fill="rgb(245,147,4)" fg:x="4231" fg:w="3"/><text x="16.9905%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="16.6930%" y="837" width="0.0712%" height="15" fill="rgb(242,201,35)" fg:x="4219" fg:w="18"/><text x="16.9430%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="16.6930%" y="821" width="0.0712%" height="15" fill="rgb(218,181,1)" fg:x="4219" fg:w="18"/><text x="16.9430%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="16.6930%" y="805" width="0.0712%" height="15" fill="rgb(222,6,29)" fg:x="4219" fg:w="18"/><text x="16.9430%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="16.7326%" y="789" width="0.0317%" height="15" fill="rgb(208,186,3)" fg:x="4229" fg:w="8"/><text x="16.9826%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="16.7326%" y="773" width="0.0317%" height="15" fill="rgb(216,36,26)" fg:x="4229" fg:w="8"/><text x="16.9826%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="16.7326%" y="757" width="0.0317%" height="15" fill="rgb(248,201,23)" fg:x="4229" fg:w="8"/><text x="16.9826%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="16.7326%" y="741" width="0.0317%" height="15" fill="rgb(251,170,31)" fg:x="4229" fg:w="8"/><text x="16.9826%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="16.7405%" y="725" width="0.0237%" height="15" fill="rgb(207,110,25)" fg:x="4231" fg:w="6"/><text x="16.9905%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.7405%" y="709" width="0.0237%" height="15" fill="rgb(250,54,15)" fg:x="4231" fg:w="6"/><text x="16.9905%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.7405%" y="693" width="0.0237%" height="15" fill="rgb(227,68,33)" fg:x="4231" fg:w="6"/><text x="16.9905%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.7405%" y="677" width="0.0237%" height="15" fill="rgb(238,34,41)" fg:x="4231" fg:w="6"/><text x="16.9905%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.7524%" y="661" width="0.0119%" height="15" fill="rgb(220,11,15)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7524%" y="645" width="0.0119%" height="15" fill="rgb(246,111,35)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="655.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7524%" y="629" width="0.0119%" height="15" fill="rgb(209,88,53)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7524%" y="613" width="0.0119%" height="15" fill="rgb(231,185,47)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="623.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.7524%" y="597" width="0.0119%" height="15" fill="rgb(233,154,1)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.7524%" y="581" width="0.0119%" height="15" fill="rgb(225,15,46)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.7524%" y="565" width="0.0119%" height="15" fill="rgb(211,135,41)" fg:x="4234" fg:w="3"/><text x="17.0024%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7643%" y="677" width="0.0119%" height="15" fill="rgb(208,54,0)" fg:x="4237" fg:w="3"/><text x="17.0143%" y="687.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7643%" y="661" width="0.0119%" height="15" fill="rgb(244,136,14)" fg:x="4237" fg:w="3"/><text x="17.0143%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7643%" y="645" width="0.0119%" height="15" fill="rgb(241,56,14)" fg:x="4237" fg:w="3"/><text x="17.0143%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.7643%" y="629" width="0.0119%" height="15" fill="rgb(205,80,24)" fg:x="4237" fg:w="3"/><text x="17.0143%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.7643%" y="613" width="0.0119%" height="15" fill="rgb(220,57,4)" fg:x="4237" fg:w="3"/><text x="17.0143%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.7643%" y="725" width="0.0237%" height="15" fill="rgb(226,193,50)" fg:x="4237" fg:w="6"/><text x="17.0143%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.7643%" y="709" width="0.0237%" height="15" fill="rgb(231,168,22)" fg:x="4237" fg:w="6"/><text x="17.0143%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.7643%" y="693" width="0.0237%" height="15" fill="rgb(254,215,14)" fg:x="4237" fg:w="6"/><text x="17.0143%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.7761%" y="677" width="0.0119%" height="15" fill="rgb(211,115,16)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7761%" y="661" width="0.0119%" height="15" fill="rgb(236,210,16)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7761%" y="645" width="0.0119%" height="15" fill="rgb(221,94,12)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7761%" y="629" width="0.0119%" height="15" fill="rgb(235,218,49)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="639.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.7761%" y="613" width="0.0119%" height="15" fill="rgb(217,114,14)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="16.7761%" y="597" width="0.0119%" height="15" fill="rgb(216,145,22)" fg:x="4240" fg:w="3"/><text x="17.0261%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7880%" y="661" width="0.0119%" height="15" fill="rgb(217,112,39)" fg:x="4243" fg:w="3"/><text x="17.0380%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7880%" y="645" width="0.0119%" height="15" fill="rgb(225,85,32)" fg:x="4243" fg:w="3"/><text x="17.0380%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7880%" y="629" width="0.0119%" height="15" fill="rgb(245,209,47)" fg:x="4243" fg:w="3"/><text x="17.0380%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="16.7643%" y="773" width="0.0475%" height="15" fill="rgb(218,220,15)" fg:x="4237" fg:w="12"/><text x="17.0143%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="16.7643%" y="757" width="0.0475%" height="15" fill="rgb(222,202,31)" fg:x="4237" fg:w="12"/><text x="17.0143%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="16.7643%" y="741" width="0.0475%" height="15" fill="rgb(243,203,4)" fg:x="4237" fg:w="12"/><text x="17.0143%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="16.7880%" y="725" width="0.0237%" height="15" fill="rgb(237,92,17)" fg:x="4243" fg:w="6"/><text x="17.0380%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.7880%" y="709" width="0.0237%" height="15" fill="rgb(231,119,7)" fg:x="4243" fg:w="6"/><text x="17.0380%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.7880%" y="693" width="0.0237%" height="15" fill="rgb(237,82,41)" fg:x="4243" fg:w="6"/><text x="17.0380%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.7880%" y="677" width="0.0237%" height="15" fill="rgb(226,81,48)" fg:x="4243" fg:w="6"/><text x="17.0380%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.7999%" y="661" width="0.0119%" height="15" fill="rgb(234,70,51)" fg:x="4246" fg:w="3"/><text x="17.0499%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.7999%" y="645" width="0.0119%" height="15" fill="rgb(251,86,4)" fg:x="4246" fg:w="3"/><text x="17.0499%" y="655.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.7999%" y="629" width="0.0119%" height="15" fill="rgb(244,144,28)" fg:x="4246" fg:w="3"/><text x="17.0499%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.7999%" y="613" width="0.0119%" height="15" fill="rgb(232,161,39)" fg:x="4246" fg:w="3"/><text x="17.0499%" y="623.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.7999%" y="597" width="0.0119%" height="15" fill="rgb(247,34,51)" fg:x="4246" fg:w="3"/><text x="17.0499%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="16.8117%" y="709" width="0.0198%" height="15" fill="rgb(225,132,2)" fg:x="4249" fg:w="5"/><text x="17.0617%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="16.8117%" y="693" width="0.0198%" height="15" fill="rgb(209,159,44)" fg:x="4249" fg:w="5"/><text x="17.0617%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="16.8117%" y="677" width="0.0198%" height="15" fill="rgb(251,214,1)" fg:x="4249" fg:w="5"/><text x="17.0617%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.8197%" y="661" width="0.0119%" height="15" fill="rgb(247,84,47)" fg:x="4251" fg:w="3"/><text x="17.0697%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.8197%" y="645" width="0.0119%" height="15" fill="rgb(240,111,43)" fg:x="4251" fg:w="3"/><text x="17.0697%" y="655.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.8197%" y="629" width="0.0119%" height="15" fill="rgb(215,214,35)" fg:x="4251" fg:w="3"/><text x="17.0697%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.8197%" y="613" width="0.0119%" height="15" fill="rgb(248,207,23)" fg:x="4251" fg:w="3"/><text x="17.0697%" y="623.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="16.8197%" y="597" width="0.0119%" height="15" fill="rgb(214,186,4)" fg:x="4251" fg:w="3"/><text x="17.0697%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (39 samples, 0.15%)</title><rect x="16.6930%" y="885" width="0.1543%" height="15" fill="rgb(220,133,22)" fg:x="4219" fg:w="39"/><text x="16.9430%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.15%)</title><rect x="16.6930%" y="869" width="0.1543%" height="15" fill="rgb(239,134,19)" fg:x="4219" fg:w="39"/><text x="16.9430%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (39 samples, 0.15%)</title><rect x="16.6930%" y="853" width="0.1543%" height="15" fill="rgb(250,140,9)" fg:x="4219" fg:w="39"/><text x="16.9430%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.08%)</title><rect x="16.7643%" y="837" width="0.0831%" height="15" fill="rgb(225,59,14)" fg:x="4237" fg:w="21"/><text x="17.0143%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="16.7643%" y="821" width="0.0831%" height="15" fill="rgb(214,152,51)" fg:x="4237" fg:w="21"/><text x="17.0143%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="16.7643%" y="805" width="0.0831%" height="15" fill="rgb(251,227,43)" fg:x="4237" fg:w="21"/><text x="17.0143%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="16.7643%" y="789" width="0.0831%" height="15" fill="rgb(241,96,17)" fg:x="4237" fg:w="21"/><text x="17.0143%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="16.8117%" y="773" width="0.0356%" height="15" fill="rgb(234,198,43)" fg:x="4249" fg:w="9"/><text x="17.0617%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="16.8117%" y="757" width="0.0356%" height="15" fill="rgb(220,108,29)" fg:x="4249" fg:w="9"/><text x="17.0617%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="16.8117%" y="741" width="0.0356%" height="15" fill="rgb(226,163,33)" fg:x="4249" fg:w="9"/><text x="17.0617%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="16.8117%" y="725" width="0.0356%" height="15" fill="rgb(205,194,45)" fg:x="4249" fg:w="9"/><text x="17.0617%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.8315%" y="709" width="0.0158%" height="15" fill="rgb(206,143,44)" fg:x="4254" fg:w="4"/><text x="17.0815%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.8315%" y="693" width="0.0158%" height="15" fill="rgb(236,136,36)" fg:x="4254" fg:w="4"/><text x="17.0815%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.8315%" y="677" width="0.0158%" height="15" fill="rgb(249,172,42)" fg:x="4254" fg:w="4"/><text x="17.0815%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.8315%" y="661" width="0.0158%" height="15" fill="rgb(216,139,23)" fg:x="4254" fg:w="4"/><text x="17.0815%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="16.8355%" y="645" width="0.0119%" height="15" fill="rgb(207,166,20)" fg:x="4255" fg:w="3"/><text x="17.0855%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="16.8355%" y="629" width="0.0119%" height="15" fill="rgb(210,209,22)" fg:x="4255" fg:w="3"/><text x="17.0855%" y="639.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="16.8355%" y="613" width="0.0119%" height="15" fill="rgb(232,118,20)" fg:x="4255" fg:w="3"/><text x="17.0855%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="16.8355%" y="597" width="0.0119%" height="15" fill="rgb(238,113,42)" fg:x="4255" fg:w="3"/><text x="17.0855%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.8474%" y="725" width="0.0158%" height="15" fill="rgb(231,42,5)" fg:x="4258" fg:w="4"/><text x="17.0974%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.8474%" y="709" width="0.0158%" height="15" fill="rgb(243,166,24)" fg:x="4258" fg:w="4"/><text x="17.0974%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.8474%" y="693" width="0.0158%" height="15" fill="rgb(237,226,12)" fg:x="4258" fg:w="4"/><text x="17.0974%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="16.8474%" y="773" width="0.0237%" height="15" fill="rgb(229,133,24)" fg:x="4258" fg:w="6"/><text x="17.0974%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="16.8474%" y="757" width="0.0237%" height="15" fill="rgb(238,33,43)" fg:x="4258" fg:w="6"/><text x="17.0974%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="16.8474%" y="741" width="0.0237%" height="15" fill="rgb(227,59,38)" fg:x="4258" fg:w="6"/><text x="17.0974%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="16.8474%" y="821" width="0.0396%" height="15" fill="rgb(230,97,0)" fg:x="4258" fg:w="10"/><text x="17.0974%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="16.8474%" y="805" width="0.0396%" height="15" fill="rgb(250,173,50)" fg:x="4258" fg:w="10"/><text x="17.0974%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="16.8474%" y="789" width="0.0396%" height="15" fill="rgb(240,15,50)" fg:x="4258" fg:w="10"/><text x="17.0974%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="16.8711%" y="773" width="0.0158%" height="15" fill="rgb(221,93,22)" fg:x="4264" fg:w="4"/><text x="17.1211%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="16.8711%" y="757" width="0.0158%" height="15" fill="rgb(245,180,53)" fg:x="4264" fg:w="4"/><text x="17.1211%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="16.8711%" y="741" width="0.0158%" height="15" fill="rgb(231,88,51)" fg:x="4264" fg:w="4"/><text x="17.1211%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="16.8711%" y="725" width="0.0158%" height="15" fill="rgb(240,58,21)" fg:x="4264" fg:w="4"/><text x="17.1211%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="16.8474%" y="885" width="0.0475%" height="15" fill="rgb(237,21,10)" fg:x="4258" fg:w="12"/><text x="17.0974%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="16.8474%" y="869" width="0.0475%" height="15" fill="rgb(218,43,11)" fg:x="4258" fg:w="12"/><text x="17.0974%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="16.8474%" y="853" width="0.0475%" height="15" fill="rgb(218,221,29)" fg:x="4258" fg:w="12"/><text x="17.0974%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="16.8474%" y="837" width="0.0475%" height="15" fill="rgb(214,118,42)" fg:x="4258" fg:w="12"/><text x="17.0974%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (710 samples, 2.81%)</title><rect x="14.0896%" y="981" width="2.8092%" height="15" fill="rgb(251,200,26)" fg:x="3561" fg:w="710"/><text x="14.3396%" y="991.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.21%)</title><rect x="16.6930%" y="965" width="0.2057%" height="15" fill="rgb(237,101,39)" fg:x="4219" fg:w="52"/><text x="16.9430%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (52 samples, 0.21%)</title><rect x="16.6930%" y="949" width="0.2057%" height="15" fill="rgb(251,117,11)" fg:x="4219" fg:w="52"/><text x="16.9430%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.21%)</title><rect x="16.6930%" y="933" width="0.2057%" height="15" fill="rgb(216,223,23)" fg:x="4219" fg:w="52"/><text x="16.9430%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="16.6930%" y="917" width="0.2057%" height="15" fill="rgb(251,54,12)" fg:x="4219" fg:w="52"/><text x="16.9430%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="16.6930%" y="901" width="0.2057%" height="15" fill="rgb(254,176,54)" fg:x="4219" fg:w="52"/><text x="16.9430%" y="911.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="16.9463%" y="949" width="0.0237%" height="15" fill="rgb(210,32,8)" fg:x="4283" fg:w="6"/><text x="17.1963%" y="959.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="16.9542%" y="933" width="0.0158%" height="15" fill="rgb(235,52,38)" fg:x="4285" fg:w="4"/><text x="17.2042%" y="943.50"></text></g><g><title>exp (25 samples, 0.10%)</title><rect x="17.0294%" y="901" width="0.0989%" height="15" fill="rgb(231,4,44)" fg:x="4304" fg:w="25"/><text x="17.2794%" y="911.50"></text></g><g><title>[libm.so.6] (22 samples, 0.09%)</title><rect x="17.0412%" y="885" width="0.0870%" height="15" fill="rgb(249,2,32)" fg:x="4307" fg:w="22"/><text x="17.2912%" y="895.50"></text></g><g><title>exp (36 samples, 0.14%)</title><rect x="17.3024%" y="853" width="0.1424%" height="15" fill="rgb(224,65,26)" fg:x="4373" fg:w="36"/><text x="17.5524%" y="863.50"></text></g><g><title>[libm.so.6] (33 samples, 0.13%)</title><rect x="17.3142%" y="837" width="0.1306%" height="15" fill="rgb(250,73,40)" fg:x="4376" fg:w="33"/><text x="17.5642%" y="847.50"></text></g><g><title>exp (46 samples, 0.18%)</title><rect x="17.6901%" y="805" width="0.1820%" height="15" fill="rgb(253,177,16)" fg:x="4471" fg:w="46"/><text x="17.9401%" y="815.50"></text></g><g><title>[libm.so.6] (40 samples, 0.16%)</title><rect x="17.7139%" y="789" width="0.1583%" height="15" fill="rgb(217,32,34)" fg:x="4477" fg:w="40"/><text x="17.9639%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (339 samples, 1.34%)</title><rect x="17.8721%" y="773" width="1.3413%" height="15" fill="rgb(212,7,10)" fg:x="4517" fg:w="339"/><text x="18.1221%" y="783.50"></text></g><g><title>exp (130 samples, 0.51%)</title><rect x="18.6991%" y="757" width="0.5144%" height="15" fill="rgb(245,89,8)" fg:x="4726" fg:w="130"/><text x="18.9491%" y="767.50"></text></g><g><title>[libm.so.6] (108 samples, 0.43%)</title><rect x="18.7861%" y="741" width="0.4273%" height="15" fill="rgb(237,16,53)" fg:x="4748" fg:w="108"/><text x="19.0361%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (880 samples, 3.48%)</title><rect x="17.4448%" y="821" width="3.4818%" height="15" fill="rgb(250,204,30)" fg:x="4409" fg:w="880"/><text x="17.6948%" y="831.50">ray..</text></g><g><title>rayon_core::registry::in_worker (772 samples, 3.05%)</title><rect x="17.8721%" y="805" width="3.0545%" height="15" fill="rgb(208,77,27)" fg:x="4517" fg:w="772"/><text x="18.1221%" y="815.50">ray..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (772 samples, 3.05%)</title><rect x="17.8721%" y="789" width="3.0545%" height="15" fill="rgb(250,204,28)" fg:x="4517" fg:w="772"/><text x="18.1221%" y="799.50">_ZN..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (433 samples, 1.71%)</title><rect x="19.2134%" y="773" width="1.7132%" height="15" fill="rgb(244,63,21)" fg:x="4856" fg:w="433"/><text x="19.4634%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (433 samples, 1.71%)</title><rect x="19.2134%" y="757" width="1.7132%" height="15" fill="rgb(236,85,44)" fg:x="4856" fg:w="433"/><text x="19.4634%" y="767.50"></text></g><g><title>exp (206 samples, 0.82%)</title><rect x="20.1116%" y="741" width="0.8151%" height="15" fill="rgb(215,98,4)" fg:x="5083" fg:w="206"/><text x="20.3616%" y="751.50"></text></g><g><title>[libm.so.6] (168 samples, 0.66%)</title><rect x="20.2619%" y="725" width="0.6647%" height="15" fill="rgb(235,38,11)" fg:x="5121" fg:w="168"/><text x="20.5119%" y="735.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="21.0414%" y="789" width="0.0673%" height="15" fill="rgb(254,186,25)" fg:x="5318" fg:w="17"/><text x="21.2914%" y="799.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="21.0572%" y="773" width="0.0514%" height="15" fill="rgb(225,55,31)" fg:x="5322" fg:w="13"/><text x="21.3072%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (482 samples, 1.91%)</title><rect x="21.1086%" y="757" width="1.9071%" height="15" fill="rgb(211,15,21)" fg:x="5335" fg:w="482"/><text x="21.3586%" y="767.50">r..</text></g><g><title>exp (206 samples, 0.82%)</title><rect x="22.2007%" y="741" width="0.8151%" height="15" fill="rgb(215,187,41)" fg:x="5611" fg:w="206"/><text x="22.4507%" y="751.50"></text></g><g><title>[libm.so.6] (175 samples, 0.69%)</title><rect x="22.3233%" y="725" width="0.6924%" height="15" fill="rgb(248,69,32)" fg:x="5642" fg:w="175"/><text x="22.5733%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (416 samples, 1.65%)</title><rect x="23.0157%" y="757" width="1.6460%" height="15" fill="rgb(252,102,52)" fg:x="5817" fg:w="416"/><text x="23.2657%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (416 samples, 1.65%)</title><rect x="23.0157%" y="741" width="1.6460%" height="15" fill="rgb(253,140,32)" fg:x="5817" fg:w="416"/><text x="23.2657%" y="751.50"></text></g><g><title>exp (189 samples, 0.75%)</title><rect x="23.9139%" y="725" width="0.7478%" height="15" fill="rgb(216,56,42)" fg:x="6044" fg:w="189"/><text x="24.1639%" y="735.50"></text></g><g><title>[libm.so.6] (150 samples, 0.59%)</title><rect x="24.0682%" y="709" width="0.5935%" height="15" fill="rgb(216,184,14)" fg:x="6083" fg:w="150"/><text x="24.3182%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="24.6617%" y="581" width="0.0237%" height="15" fill="rgb(237,187,27)" fg:x="6233" fg:w="6"/><text x="24.9117%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.6696%" y="565" width="0.0158%" height="15" fill="rgb(219,65,3)" fg:x="6235" fg:w="4"/><text x="24.9196%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.6696%" y="549" width="0.0158%" height="15" fill="rgb(245,83,25)" fg:x="6235" fg:w="4"/><text x="24.9196%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="24.6617%" y="629" width="0.0435%" height="15" fill="rgb(214,205,45)" fg:x="6233" fg:w="11"/><text x="24.9117%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="24.6617%" y="613" width="0.0435%" height="15" fill="rgb(241,20,18)" fg:x="6233" fg:w="11"/><text x="24.9117%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="24.6617%" y="597" width="0.0435%" height="15" fill="rgb(232,163,23)" fg:x="6233" fg:w="11"/><text x="24.9117%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="24.6854%" y="581" width="0.0198%" height="15" fill="rgb(214,5,46)" fg:x="6239" fg:w="5"/><text x="24.9354%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.6854%" y="565" width="0.0198%" height="15" fill="rgb(229,78,17)" fg:x="6239" fg:w="5"/><text x="24.9354%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.6934%" y="549" width="0.0119%" height="15" fill="rgb(248,89,10)" fg:x="6241" fg:w="3"/><text x="24.9434%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.6934%" y="533" width="0.0119%" height="15" fill="rgb(248,54,15)" fg:x="6241" fg:w="3"/><text x="24.9434%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="24.7052%" y="565" width="0.0237%" height="15" fill="rgb(223,116,6)" fg:x="6244" fg:w="6"/><text x="24.9552%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.7131%" y="549" width="0.0158%" height="15" fill="rgb(205,125,38)" fg:x="6246" fg:w="4"/><text x="24.9631%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.7131%" y="533" width="0.0158%" height="15" fill="rgb(251,78,38)" fg:x="6246" fg:w="4"/><text x="24.9631%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="24.6617%" y="677" width="0.0910%" height="15" fill="rgb(253,78,28)" fg:x="6233" fg:w="23"/><text x="24.9117%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="24.6617%" y="661" width="0.0910%" height="15" fill="rgb(209,120,3)" fg:x="6233" fg:w="23"/><text x="24.9117%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="24.6617%" y="645" width="0.0910%" height="15" fill="rgb(238,229,9)" fg:x="6233" fg:w="23"/><text x="24.9117%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="24.7052%" y="629" width="0.0475%" height="15" fill="rgb(253,159,18)" fg:x="6244" fg:w="12"/><text x="24.9552%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="24.7052%" y="613" width="0.0475%" height="15" fill="rgb(244,42,34)" fg:x="6244" fg:w="12"/><text x="24.9552%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="24.7052%" y="597" width="0.0475%" height="15" fill="rgb(224,8,7)" fg:x="6244" fg:w="12"/><text x="24.9552%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="24.7052%" y="581" width="0.0475%" height="15" fill="rgb(210,201,45)" fg:x="6244" fg:w="12"/><text x="24.9552%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="24.7290%" y="565" width="0.0237%" height="15" fill="rgb(252,185,21)" fg:x="6250" fg:w="6"/><text x="24.9790%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="24.7290%" y="549" width="0.0237%" height="15" fill="rgb(223,131,1)" fg:x="6250" fg:w="6"/><text x="24.9790%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.7369%" y="533" width="0.0158%" height="15" fill="rgb(245,141,16)" fg:x="6252" fg:w="4"/><text x="24.9869%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.7369%" y="517" width="0.0158%" height="15" fill="rgb(229,55,45)" fg:x="6252" fg:w="4"/><text x="24.9869%" y="527.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.7527%" y="581" width="0.0119%" height="15" fill="rgb(208,92,15)" fg:x="6256" fg:w="3"/><text x="25.0027%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="24.7527%" y="565" width="0.0119%" height="15" fill="rgb(234,185,47)" fg:x="6256" fg:w="3"/><text x="25.0027%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.7725%" y="405" width="0.0119%" height="15" fill="rgb(253,104,50)" fg:x="6261" fg:w="3"/><text x="25.0225%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.7725%" y="453" width="0.0198%" height="15" fill="rgb(205,70,7)" fg:x="6261" fg:w="5"/><text x="25.0225%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.7725%" y="437" width="0.0198%" height="15" fill="rgb(240,178,43)" fg:x="6261" fg:w="5"/><text x="25.0225%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.7725%" y="421" width="0.0198%" height="15" fill="rgb(214,112,2)" fg:x="6261" fg:w="5"/><text x="25.0225%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="24.7725%" y="501" width="0.0356%" height="15" fill="rgb(206,46,17)" fg:x="6261" fg:w="9"/><text x="25.0225%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="24.7725%" y="485" width="0.0356%" height="15" fill="rgb(225,220,16)" fg:x="6261" fg:w="9"/><text x="25.0225%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="24.7725%" y="469" width="0.0356%" height="15" fill="rgb(238,65,40)" fg:x="6261" fg:w="9"/><text x="25.0225%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="24.7923%" y="453" width="0.0158%" height="15" fill="rgb(230,151,21)" fg:x="6266" fg:w="4"/><text x="25.0423%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.7923%" y="437" width="0.0158%" height="15" fill="rgb(218,58,49)" fg:x="6266" fg:w="4"/><text x="25.0423%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.7923%" y="421" width="0.0158%" height="15" fill="rgb(219,179,14)" fg:x="6266" fg:w="4"/><text x="25.0423%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.7923%" y="405" width="0.0158%" height="15" fill="rgb(223,72,1)" fg:x="6266" fg:w="4"/><text x="25.0423%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.8081%" y="389" width="0.0119%" height="15" fill="rgb(238,126,10)" fg:x="6270" fg:w="3"/><text x="25.0581%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.8081%" y="437" width="0.0198%" height="15" fill="rgb(224,206,38)" fg:x="6270" fg:w="5"/><text x="25.0581%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.8081%" y="421" width="0.0198%" height="15" fill="rgb(212,201,54)" fg:x="6270" fg:w="5"/><text x="25.0581%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.8081%" y="405" width="0.0198%" height="15" fill="rgb(218,154,48)" fg:x="6270" fg:w="5"/><text x="25.0581%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.8279%" y="373" width="0.0119%" height="15" fill="rgb(232,93,24)" fg:x="6275" fg:w="3"/><text x="25.0779%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="24.7646%" y="549" width="0.0831%" height="15" fill="rgb(245,30,21)" fg:x="6259" fg:w="21"/><text x="25.0146%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="24.7725%" y="533" width="0.0752%" height="15" fill="rgb(242,148,29)" fg:x="6261" fg:w="19"/><text x="25.0225%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="24.7725%" y="517" width="0.0752%" height="15" fill="rgb(244,153,54)" fg:x="6261" fg:w="19"/><text x="25.0225%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="24.8081%" y="501" width="0.0396%" height="15" fill="rgb(252,87,22)" fg:x="6270" fg:w="10"/><text x="25.0581%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="24.8081%" y="485" width="0.0396%" height="15" fill="rgb(210,51,29)" fg:x="6270" fg:w="10"/><text x="25.0581%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="24.8081%" y="469" width="0.0396%" height="15" fill="rgb(242,136,47)" fg:x="6270" fg:w="10"/><text x="25.0581%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="24.8081%" y="453" width="0.0396%" height="15" fill="rgb(238,68,4)" fg:x="6270" fg:w="10"/><text x="25.0581%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="24.8279%" y="437" width="0.0198%" height="15" fill="rgb(242,161,30)" fg:x="6275" fg:w="5"/><text x="25.0779%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.8279%" y="421" width="0.0198%" height="15" fill="rgb(218,58,44)" fg:x="6275" fg:w="5"/><text x="25.0779%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.8279%" y="405" width="0.0198%" height="15" fill="rgb(252,125,32)" fg:x="6275" fg:w="5"/><text x="25.0779%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.8279%" y="389" width="0.0198%" height="15" fill="rgb(219,178,0)" fg:x="6275" fg:w="5"/><text x="25.0779%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.8556%" y="389" width="0.0119%" height="15" fill="rgb(213,152,7)" fg:x="6282" fg:w="3"/><text x="25.1056%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.8556%" y="437" width="0.0198%" height="15" fill="rgb(249,109,34)" fg:x="6282" fg:w="5"/><text x="25.1056%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.8556%" y="421" width="0.0198%" height="15" fill="rgb(232,96,21)" fg:x="6282" fg:w="5"/><text x="25.1056%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.8556%" y="405" width="0.0198%" height="15" fill="rgb(228,27,39)" fg:x="6282" fg:w="5"/><text x="25.1056%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="24.8556%" y="485" width="0.0396%" height="15" fill="rgb(211,182,52)" fg:x="6282" fg:w="10"/><text x="25.1056%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="24.8556%" y="469" width="0.0396%" height="15" fill="rgb(234,178,38)" fg:x="6282" fg:w="10"/><text x="25.1056%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="24.8556%" y="453" width="0.0396%" height="15" fill="rgb(221,111,3)" fg:x="6282" fg:w="10"/><text x="25.1056%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="24.8754%" y="437" width="0.0198%" height="15" fill="rgb(228,175,21)" fg:x="6287" fg:w="5"/><text x="25.1254%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.8754%" y="421" width="0.0198%" height="15" fill="rgb(228,174,43)" fg:x="6287" fg:w="5"/><text x="25.1254%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.8754%" y="405" width="0.0198%" height="15" fill="rgb(211,191,0)" fg:x="6287" fg:w="5"/><text x="25.1254%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.8754%" y="389" width="0.0198%" height="15" fill="rgb(253,117,3)" fg:x="6287" fg:w="5"/><text x="25.1254%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="24.8833%" y="373" width="0.0119%" height="15" fill="rgb(241,127,19)" fg:x="6289" fg:w="3"/><text x="25.1333%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.8833%" y="357" width="0.0119%" height="15" fill="rgb(218,103,12)" fg:x="6289" fg:w="3"/><text x="25.1333%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.8951%" y="373" width="0.0119%" height="15" fill="rgb(236,214,43)" fg:x="6292" fg:w="3"/><text x="25.1451%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.8951%" y="421" width="0.0198%" height="15" fill="rgb(244,144,19)" fg:x="6292" fg:w="5"/><text x="25.1451%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.8951%" y="405" width="0.0198%" height="15" fill="rgb(246,188,10)" fg:x="6292" fg:w="5"/><text x="25.1451%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.8951%" y="389" width="0.0198%" height="15" fill="rgb(212,193,33)" fg:x="6292" fg:w="5"/><text x="25.1451%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.9149%" y="357" width="0.0119%" height="15" fill="rgb(241,51,29)" fg:x="6297" fg:w="3"/><text x="25.1649%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="24.7527%" y="597" width="0.1820%" height="15" fill="rgb(211,58,19)" fg:x="6256" fg:w="46"/><text x="25.0027%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.17%)</title><rect x="24.7646%" y="581" width="0.1701%" height="15" fill="rgb(229,111,26)" fg:x="6259" fg:w="43"/><text x="25.0146%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (43 samples, 0.17%)</title><rect x="24.7646%" y="565" width="0.1701%" height="15" fill="rgb(213,115,40)" fg:x="6259" fg:w="43"/><text x="25.0146%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.09%)</title><rect x="24.8477%" y="549" width="0.0870%" height="15" fill="rgb(209,56,44)" fg:x="6280" fg:w="22"/><text x="25.0977%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="24.8477%" y="533" width="0.0870%" height="15" fill="rgb(230,108,32)" fg:x="6280" fg:w="22"/><text x="25.0977%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="24.8556%" y="517" width="0.0791%" height="15" fill="rgb(216,165,31)" fg:x="6282" fg:w="20"/><text x="25.1056%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="24.8556%" y="501" width="0.0791%" height="15" fill="rgb(218,122,21)" fg:x="6282" fg:w="20"/><text x="25.1056%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="24.8951%" y="485" width="0.0396%" height="15" fill="rgb(223,224,47)" fg:x="6292" fg:w="10"/><text x="25.1451%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="24.8951%" y="469" width="0.0396%" height="15" fill="rgb(238,102,44)" fg:x="6292" fg:w="10"/><text x="25.1451%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="24.8951%" y="453" width="0.0396%" height="15" fill="rgb(236,46,40)" fg:x="6292" fg:w="10"/><text x="25.1451%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="24.8951%" y="437" width="0.0396%" height="15" fill="rgb(247,202,50)" fg:x="6292" fg:w="10"/><text x="25.1451%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="24.9149%" y="421" width="0.0198%" height="15" fill="rgb(209,99,20)" fg:x="6297" fg:w="5"/><text x="25.1649%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.9149%" y="405" width="0.0198%" height="15" fill="rgb(252,27,34)" fg:x="6297" fg:w="5"/><text x="25.1649%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.9149%" y="389" width="0.0198%" height="15" fill="rgb(215,206,23)" fg:x="6297" fg:w="5"/><text x="25.1649%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.9149%" y="373" width="0.0198%" height="15" fill="rgb(212,135,36)" fg:x="6297" fg:w="5"/><text x="25.1649%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="24.9347%" y="597" width="0.0237%" height="15" fill="rgb(240,189,1)" fg:x="6302" fg:w="6"/><text x="25.1847%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="24.9347%" y="581" width="0.0237%" height="15" fill="rgb(242,56,20)" fg:x="6302" fg:w="6"/><text x="25.1847%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.9466%" y="565" width="0.0119%" height="15" fill="rgb(247,132,33)" fg:x="6305" fg:w="3"/><text x="25.1966%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.9466%" y="549" width="0.0119%" height="15" fill="rgb(208,149,11)" fg:x="6305" fg:w="3"/><text x="25.1966%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (1,023 samples, 4.05%)</title><rect x="20.9266%" y="821" width="4.0476%" height="15" fill="rgb(211,33,11)" fg:x="5289" fg:w="1023"/><text x="21.1766%" y="831.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,023 samples, 4.05%)</title><rect x="20.9266%" y="805" width="4.0476%" height="15" fill="rgb(221,29,38)" fg:x="5289" fg:w="1023"/><text x="21.1766%" y="815.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (977 samples, 3.87%)</title><rect x="21.1086%" y="789" width="3.8656%" height="15" fill="rgb(206,182,49)" fg:x="5335" fg:w="977"/><text x="21.3586%" y="799.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (977 samples, 3.87%)</title><rect x="21.1086%" y="773" width="3.8656%" height="15" fill="rgb(216,140,1)" fg:x="5335" fg:w="977"/><text x="21.3586%" y="783.50">_ZN1..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (79 samples, 0.31%)</title><rect x="24.6617%" y="757" width="0.3126%" height="15" fill="rgb(232,57,40)" fg:x="6233" fg:w="79"/><text x="24.9117%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (79 samples, 0.31%)</title><rect x="24.6617%" y="741" width="0.3126%" height="15" fill="rgb(224,186,18)" fg:x="6233" fg:w="79"/><text x="24.9117%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (79 samples, 0.31%)</title><rect x="24.6617%" y="725" width="0.3126%" height="15" fill="rgb(215,121,11)" fg:x="6233" fg:w="79"/><text x="24.9117%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (79 samples, 0.31%)</title><rect x="24.6617%" y="709" width="0.3126%" height="15" fill="rgb(245,147,10)" fg:x="6233" fg:w="79"/><text x="24.9117%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (79 samples, 0.31%)</title><rect x="24.6617%" y="693" width="0.3126%" height="15" fill="rgb(238,153,13)" fg:x="6233" fg:w="79"/><text x="24.9117%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56 samples, 0.22%)</title><rect x="24.7527%" y="677" width="0.2216%" height="15" fill="rgb(233,108,0)" fg:x="6256" fg:w="56"/><text x="25.0027%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (56 samples, 0.22%)</title><rect x="24.7527%" y="661" width="0.2216%" height="15" fill="rgb(212,157,17)" fg:x="6256" fg:w="56"/><text x="25.0027%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.22%)</title><rect x="24.7527%" y="645" width="0.2216%" height="15" fill="rgb(225,213,38)" fg:x="6256" fg:w="56"/><text x="25.0027%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.22%)</title><rect x="24.7527%" y="629" width="0.2216%" height="15" fill="rgb(248,16,11)" fg:x="6256" fg:w="56"/><text x="25.0027%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (56 samples, 0.22%)</title><rect x="24.7527%" y="613" width="0.2216%" height="15" fill="rgb(241,33,4)" fg:x="6256" fg:w="56"/><text x="25.0027%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="24.9585%" y="597" width="0.0158%" height="15" fill="rgb(222,26,43)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="24.9585%" y="581" width="0.0158%" height="15" fill="rgb(243,29,36)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.9585%" y="565" width="0.0158%" height="15" fill="rgb(241,9,27)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.9585%" y="549" width="0.0158%" height="15" fill="rgb(205,117,26)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.9585%" y="533" width="0.0158%" height="15" fill="rgb(209,80,39)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.9585%" y="517" width="0.0158%" height="15" fill="rgb(239,155,6)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.9585%" y="501" width="0.0158%" height="15" fill="rgb(212,104,12)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.9585%" y="485" width="0.0158%" height="15" fill="rgb(234,204,3)" fg:x="6308" fg:w="4"/><text x="25.2085%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.9743%" y="645" width="0.0158%" height="15" fill="rgb(251,218,7)" fg:x="6312" fg:w="4"/><text x="25.2243%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.9743%" y="629" width="0.0158%" height="15" fill="rgb(221,81,32)" fg:x="6312" fg:w="4"/><text x="25.2243%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.9743%" y="613" width="0.0158%" height="15" fill="rgb(214,152,26)" fg:x="6312" fg:w="4"/><text x="25.2243%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="24.9743%" y="693" width="0.0317%" height="15" fill="rgb(223,22,3)" fg:x="6312" fg:w="8"/><text x="25.2243%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="24.9743%" y="677" width="0.0317%" height="15" fill="rgb(207,174,7)" fg:x="6312" fg:w="8"/><text x="25.2243%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="24.9743%" y="661" width="0.0317%" height="15" fill="rgb(224,19,52)" fg:x="6312" fg:w="8"/><text x="25.2243%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="24.9901%" y="645" width="0.0158%" height="15" fill="rgb(228,24,14)" fg:x="6316" fg:w="4"/><text x="25.2401%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.9901%" y="629" width="0.0158%" height="15" fill="rgb(230,153,43)" fg:x="6316" fg:w="4"/><text x="25.2401%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.9901%" y="613" width="0.0158%" height="15" fill="rgb(231,106,12)" fg:x="6316" fg:w="4"/><text x="25.2401%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.9901%" y="597" width="0.0158%" height="15" fill="rgb(215,92,2)" fg:x="6316" fg:w="4"/><text x="25.2401%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.0059%" y="629" width="0.0158%" height="15" fill="rgb(249,143,25)" fg:x="6320" fg:w="4"/><text x="25.2559%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.0059%" y="613" width="0.0158%" height="15" fill="rgb(252,7,35)" fg:x="6320" fg:w="4"/><text x="25.2559%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="25.0059%" y="597" width="0.0158%" height="15" fill="rgb(216,69,40)" fg:x="6320" fg:w="4"/><text x="25.2559%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="24.9743%" y="741" width="0.0593%" height="15" fill="rgb(240,36,33)" fg:x="6312" fg:w="15"/><text x="25.2243%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="24.9743%" y="725" width="0.0593%" height="15" fill="rgb(231,128,14)" fg:x="6312" fg:w="15"/><text x="25.2243%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="24.9743%" y="709" width="0.0593%" height="15" fill="rgb(245,143,14)" fg:x="6312" fg:w="15"/><text x="25.2243%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="25.0059%" y="693" width="0.0277%" height="15" fill="rgb(222,130,28)" fg:x="6320" fg:w="7"/><text x="25.2559%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="25.0059%" y="677" width="0.0277%" height="15" fill="rgb(212,10,48)" fg:x="6320" fg:w="7"/><text x="25.2559%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="25.0059%" y="661" width="0.0277%" height="15" fill="rgb(254,118,45)" fg:x="6320" fg:w="7"/><text x="25.2559%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="25.0059%" y="645" width="0.0277%" height="15" fill="rgb(228,6,45)" fg:x="6320" fg:w="7"/><text x="25.2559%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="25.0218%" y="629" width="0.0119%" height="15" fill="rgb(241,18,35)" fg:x="6324" fg:w="3"/><text x="25.2718%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.0218%" y="613" width="0.0119%" height="15" fill="rgb(227,214,53)" fg:x="6324" fg:w="3"/><text x="25.2718%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="25.0218%" y="597" width="0.0119%" height="15" fill="rgb(224,107,51)" fg:x="6324" fg:w="3"/><text x="25.2718%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="25.0218%" y="581" width="0.0119%" height="15" fill="rgb(248,60,28)" fg:x="6324" fg:w="3"/><text x="25.2718%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.0336%" y="629" width="0.0158%" height="15" fill="rgb(249,101,23)" fg:x="6327" fg:w="4"/><text x="25.2836%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.0336%" y="613" width="0.0158%" height="15" fill="rgb(228,51,19)" fg:x="6327" fg:w="4"/><text x="25.2836%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="25.0336%" y="597" width="0.0158%" height="15" fill="rgb(213,20,6)" fg:x="6327" fg:w="4"/><text x="25.2836%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="25.0336%" y="677" width="0.0317%" height="15" fill="rgb(212,124,10)" fg:x="6327" fg:w="8"/><text x="25.2836%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="25.0336%" y="661" width="0.0317%" height="15" fill="rgb(248,3,40)" fg:x="6327" fg:w="8"/><text x="25.2836%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="25.0336%" y="645" width="0.0317%" height="15" fill="rgb(223,178,23)" fg:x="6327" fg:w="8"/><text x="25.2836%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="25.0495%" y="629" width="0.0158%" height="15" fill="rgb(240,132,45)" fg:x="6331" fg:w="4"/><text x="25.2995%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.0495%" y="613" width="0.0158%" height="15" fill="rgb(245,164,36)" fg:x="6331" fg:w="4"/><text x="25.2995%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.0495%" y="597" width="0.0158%" height="15" fill="rgb(231,188,53)" fg:x="6331" fg:w="4"/><text x="25.2995%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="25.0495%" y="581" width="0.0158%" height="15" fill="rgb(237,198,39)" fg:x="6331" fg:w="4"/><text x="25.2995%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="25.0653%" y="613" width="0.0119%" height="15" fill="rgb(223,120,35)" fg:x="6335" fg:w="3"/><text x="25.3153%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="25.0653%" y="597" width="0.0119%" height="15" fill="rgb(253,107,49)" fg:x="6335" fg:w="3"/><text x="25.3153%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="25.0653%" y="581" width="0.0119%" height="15" fill="rgb(216,44,31)" fg:x="6335" fg:w="3"/><text x="25.3153%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (2,013 samples, 7.96%)</title><rect x="17.1283%" y="869" width="7.9647%" height="15" fill="rgb(253,87,21)" fg:x="4329" fg:w="2013"/><text x="17.3783%" y="879.50">rayon::iter..</text></g><g><title>rayon_core::registry::in_worker (1,933 samples, 7.65%)</title><rect x="17.4448%" y="853" width="7.6482%" height="15" fill="rgb(226,18,2)" fg:x="4409" fg:w="1933"/><text x="17.6948%" y="863.50">rayon_core..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (1,933 samples, 7.65%)</title><rect x="17.4448%" y="837" width="7.6482%" height="15" fill="rgb(216,8,46)" fg:x="4409" fg:w="1933"/><text x="17.6948%" y="847.50">_ZN10rayon..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (30 samples, 0.12%)</title><rect x="24.9743%" y="821" width="0.1187%" height="15" fill="rgb(226,140,39)" fg:x="6312" fg:w="30"/><text x="25.2243%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30 samples, 0.12%)</title><rect x="24.9743%" y="805" width="0.1187%" height="15" fill="rgb(221,194,54)" fg:x="6312" fg:w="30"/><text x="25.2243%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="24.9743%" y="789" width="0.1187%" height="15" fill="rgb(213,92,11)" fg:x="6312" fg:w="30"/><text x="25.2243%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="24.9743%" y="773" width="0.1187%" height="15" fill="rgb(229,162,46)" fg:x="6312" fg:w="30"/><text x="25.2243%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="24.9743%" y="757" width="0.1187%" height="15" fill="rgb(214,111,36)" fg:x="6312" fg:w="30"/><text x="25.2243%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="25.0336%" y="741" width="0.0593%" height="15" fill="rgb(207,6,21)" fg:x="6327" fg:w="15"/><text x="25.2836%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="25.0336%" y="725" width="0.0593%" height="15" fill="rgb(213,127,38)" fg:x="6327" fg:w="15"/><text x="25.2836%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="25.0336%" y="709" width="0.0593%" height="15" fill="rgb(238,118,32)" fg:x="6327" fg:w="15"/><text x="25.2836%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="25.0336%" y="693" width="0.0593%" height="15" fill="rgb(240,139,39)" fg:x="6327" fg:w="15"/><text x="25.2836%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="25.0653%" y="677" width="0.0277%" height="15" fill="rgb(235,10,37)" fg:x="6335" fg:w="7"/><text x="25.3153%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="25.0653%" y="661" width="0.0277%" height="15" fill="rgb(249,171,38)" fg:x="6335" fg:w="7"/><text x="25.3153%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="25.0653%" y="645" width="0.0277%" height="15" fill="rgb(242,144,32)" fg:x="6335" fg:w="7"/><text x="25.3153%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="25.0653%" y="629" width="0.0277%" height="15" fill="rgb(217,117,21)" fg:x="6335" fg:w="7"/><text x="25.3153%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="25.0772%" y="613" width="0.0158%" height="15" fill="rgb(249,87,1)" fg:x="6338" fg:w="4"/><text x="25.3272%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="25.0772%" y="597" width="0.0158%" height="15" fill="rgb(248,196,48)" fg:x="6338" fg:w="4"/><text x="25.3272%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="25.0772%" y="581" width="0.0158%" height="15" fill="rgb(251,206,33)" fg:x="6338" fg:w="4"/><text x="25.3272%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="25.0772%" y="565" width="0.0158%" height="15" fill="rgb(232,141,28)" fg:x="6338" fg:w="4"/><text x="25.3272%" y="575.50"></text></g><g><title>exp (41 samples, 0.16%)</title><rect x="25.2156%" y="837" width="0.1622%" height="15" fill="rgb(209,167,14)" fg:x="6373" fg:w="41"/><text x="25.4656%" y="847.50"></text></g><g><title>[libm.so.6] (35 samples, 0.14%)</title><rect x="25.2394%" y="821" width="0.1385%" height="15" fill="rgb(225,11,50)" fg:x="6379" fg:w="35"/><text x="25.4894%" y="831.50"></text></g><g><title>exp (23 samples, 0.09%)</title><rect x="25.4728%" y="789" width="0.0910%" height="15" fill="rgb(209,50,20)" fg:x="6438" fg:w="23"/><text x="25.7228%" y="799.50"></text></g><g><title>[libm.so.6] (19 samples, 0.08%)</title><rect x="25.4886%" y="773" width="0.0752%" height="15" fill="rgb(212,17,46)" fg:x="6442" fg:w="19"/><text x="25.7386%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (343 samples, 1.36%)</title><rect x="25.5638%" y="757" width="1.3571%" height="15" fill="rgb(216,101,39)" fg:x="6461" fg:w="343"/><text x="25.8138%" y="767.50"></text></g><g><title>exp (153 samples, 0.61%)</title><rect x="26.3156%" y="741" width="0.6054%" height="15" fill="rgb(212,228,48)" fg:x="6651" fg:w="153"/><text x="26.5656%" y="751.50"></text></g><g><title>[libm.so.6] (120 samples, 0.47%)</title><rect x="26.4462%" y="725" width="0.4748%" height="15" fill="rgb(250,6,50)" fg:x="6684" fg:w="120"/><text x="26.6962%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (312 samples, 1.23%)</title><rect x="26.9209%" y="757" width="1.2345%" height="15" fill="rgb(250,160,48)" fg:x="6804" fg:w="312"/><text x="27.1709%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (312 samples, 1.23%)</title><rect x="26.9209%" y="741" width="1.2345%" height="15" fill="rgb(244,216,33)" fg:x="6804" fg:w="312"/><text x="27.1709%" y="751.50"></text></g><g><title>exp (150 samples, 0.59%)</title><rect x="27.5619%" y="725" width="0.5935%" height="15" fill="rgb(207,157,5)" fg:x="6966" fg:w="150"/><text x="27.8119%" y="735.50"></text></g><g><title>[libm.so.6] (121 samples, 0.48%)</title><rect x="27.6767%" y="709" width="0.4788%" height="15" fill="rgb(228,199,8)" fg:x="6995" fg:w="121"/><text x="27.9267%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.1712%" y="581" width="0.0119%" height="15" fill="rgb(227,80,20)" fg:x="7120" fg:w="3"/><text x="28.4212%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.1712%" y="629" width="0.0198%" height="15" fill="rgb(222,9,33)" fg:x="7120" fg:w="5"/><text x="28.4212%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.1712%" y="613" width="0.0198%" height="15" fill="rgb(239,44,28)" fg:x="7120" fg:w="5"/><text x="28.4212%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.1712%" y="597" width="0.0198%" height="15" fill="rgb(249,187,43)" fg:x="7120" fg:w="5"/><text x="28.4212%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="28.1554%" y="677" width="0.0514%" height="15" fill="rgb(216,141,28)" fg:x="7116" fg:w="13"/><text x="28.4054%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="28.1712%" y="661" width="0.0356%" height="15" fill="rgb(230,154,53)" fg:x="7120" fg:w="9"/><text x="28.4212%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="28.1712%" y="645" width="0.0356%" height="15" fill="rgb(227,82,4)" fg:x="7120" fg:w="9"/><text x="28.4212%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="28.1910%" y="629" width="0.0158%" height="15" fill="rgb(220,107,16)" fg:x="7125" fg:w="4"/><text x="28.4410%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.1910%" y="613" width="0.0158%" height="15" fill="rgb(207,187,2)" fg:x="7125" fg:w="4"/><text x="28.4410%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.1910%" y="597" width="0.0158%" height="15" fill="rgb(210,162,52)" fg:x="7125" fg:w="4"/><text x="28.4410%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.1910%" y="581" width="0.0158%" height="15" fill="rgb(217,216,49)" fg:x="7125" fg:w="4"/><text x="28.4410%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="28.1950%" y="565" width="0.0119%" height="15" fill="rgb(218,146,49)" fg:x="7126" fg:w="3"/><text x="28.4450%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="28.1950%" y="549" width="0.0119%" height="15" fill="rgb(216,55,40)" fg:x="7126" fg:w="3"/><text x="28.4450%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.1950%" y="533" width="0.0119%" height="15" fill="rgb(208,196,21)" fg:x="7126" fg:w="3"/><text x="28.4450%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (718 samples, 2.84%)</title><rect x="25.3779%" y="805" width="2.8409%" height="15" fill="rgb(242,117,42)" fg:x="6414" fg:w="718"/><text x="25.6279%" y="815.50">ra..</text></g><g><title>rayon_core::registry::in_worker (671 samples, 2.65%)</title><rect x="25.5638%" y="789" width="2.6549%" height="15" fill="rgb(210,11,23)" fg:x="6461" fg:w="671"/><text x="25.8138%" y="799.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (671 samples, 2.65%)</title><rect x="25.5638%" y="773" width="2.6549%" height="15" fill="rgb(217,110,2)" fg:x="6461" fg:w="671"/><text x="25.8138%" y="783.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="28.1554%" y="757" width="0.0633%" height="15" fill="rgb(229,77,54)" fg:x="7116" fg:w="16"/><text x="28.4054%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="28.1554%" y="741" width="0.0633%" height="15" fill="rgb(218,53,16)" fg:x="7116" fg:w="16"/><text x="28.4054%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="28.1554%" y="725" width="0.0633%" height="15" fill="rgb(215,38,13)" fg:x="7116" fg:w="16"/><text x="28.4054%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="28.1554%" y="709" width="0.0633%" height="15" fill="rgb(235,42,18)" fg:x="7116" fg:w="16"/><text x="28.4054%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="28.1554%" y="693" width="0.0633%" height="15" fill="rgb(219,66,54)" fg:x="7116" fg:w="16"/><text x="28.4054%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.2069%" y="677" width="0.0119%" height="15" fill="rgb(222,205,4)" fg:x="7129" fg:w="3"/><text x="28.4569%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2069%" y="661" width="0.0119%" height="15" fill="rgb(227,213,46)" fg:x="7129" fg:w="3"/><text x="28.4569%" y="671.50"></text></g><g><title>exp (24 samples, 0.09%)</title><rect x="28.3097%" y="773" width="0.0950%" height="15" fill="rgb(250,145,42)" fg:x="7155" fg:w="24"/><text x="28.5597%" y="783.50"></text></g><g><title>[libm.so.6] (23 samples, 0.09%)</title><rect x="28.3137%" y="757" width="0.0910%" height="15" fill="rgb(219,15,2)" fg:x="7156" fg:w="23"/><text x="28.5637%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (251 samples, 0.99%)</title><rect x="28.4047%" y="741" width="0.9931%" height="15" fill="rgb(231,181,52)" fg:x="7179" fg:w="251"/><text x="28.6547%" y="751.50"></text></g><g><title>exp (109 samples, 0.43%)</title><rect x="28.9665%" y="725" width="0.4313%" height="15" fill="rgb(235,1,42)" fg:x="7321" fg:w="109"/><text x="29.2165%" y="735.50"></text></g><g><title>[libm.so.6] (98 samples, 0.39%)</title><rect x="29.0100%" y="709" width="0.3878%" height="15" fill="rgb(249,88,27)" fg:x="7332" fg:w="98"/><text x="29.2600%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (252 samples, 1.00%)</title><rect x="29.3978%" y="741" width="0.9971%" height="15" fill="rgb(235,145,16)" fg:x="7430" fg:w="252"/><text x="29.6478%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (252 samples, 1.00%)</title><rect x="29.3978%" y="725" width="0.9971%" height="15" fill="rgb(237,114,19)" fg:x="7430" fg:w="252"/><text x="29.6478%" y="735.50"></text></g><g><title>exp (123 samples, 0.49%)</title><rect x="29.9082%" y="709" width="0.4867%" height="15" fill="rgb(238,51,50)" fg:x="7559" fg:w="123"/><text x="30.1582%" y="719.50"></text></g><g><title>[libm.so.6] (99 samples, 0.39%)</title><rect x="30.0032%" y="693" width="0.3917%" height="15" fill="rgb(205,194,25)" fg:x="7583" fg:w="99"/><text x="30.2532%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.3949%" y="613" width="0.0198%" height="15" fill="rgb(215,203,17)" fg:x="7682" fg:w="5"/><text x="30.6449%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.3949%" y="597" width="0.0198%" height="15" fill="rgb(233,112,49)" fg:x="7682" fg:w="5"/><text x="30.6449%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.3949%" y="581" width="0.0198%" height="15" fill="rgb(241,130,26)" fg:x="7682" fg:w="5"/><text x="30.6449%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.4028%" y="565" width="0.0119%" height="15" fill="rgb(252,223,19)" fg:x="7684" fg:w="3"/><text x="30.6528%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.4028%" y="549" width="0.0119%" height="15" fill="rgb(211,95,25)" fg:x="7684" fg:w="3"/><text x="30.6528%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.4147%" y="549" width="0.0119%" height="15" fill="rgb(251,182,27)" fg:x="7687" fg:w="3"/><text x="30.6647%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="30.3949%" y="661" width="0.0396%" height="15" fill="rgb(238,24,4)" fg:x="7682" fg:w="10"/><text x="30.6449%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="30.3949%" y="645" width="0.0396%" height="15" fill="rgb(224,220,25)" fg:x="7682" fg:w="10"/><text x="30.6449%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="30.3949%" y="629" width="0.0396%" height="15" fill="rgb(239,133,26)" fg:x="7682" fg:w="10"/><text x="30.6449%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.4147%" y="613" width="0.0198%" height="15" fill="rgb(211,94,48)" fg:x="7687" fg:w="5"/><text x="30.6647%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.4147%" y="597" width="0.0198%" height="15" fill="rgb(239,87,6)" fg:x="7687" fg:w="5"/><text x="30.6647%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.4147%" y="581" width="0.0198%" height="15" fill="rgb(227,62,0)" fg:x="7687" fg:w="5"/><text x="30.6647%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.4147%" y="565" width="0.0198%" height="15" fill="rgb(211,226,4)" fg:x="7687" fg:w="5"/><text x="30.6647%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.4344%" y="597" width="0.0158%" height="15" fill="rgb(253,38,52)" fg:x="7692" fg:w="4"/><text x="30.6844%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.4344%" y="581" width="0.0158%" height="15" fill="rgb(229,126,40)" fg:x="7692" fg:w="4"/><text x="30.6844%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.4344%" y="565" width="0.0158%" height="15" fill="rgb(229,165,44)" fg:x="7692" fg:w="4"/><text x="30.6844%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (566 samples, 2.24%)</title><rect x="28.2187%" y="805" width="2.2395%" height="15" fill="rgb(247,95,47)" fg:x="7132" fg:w="566"/><text x="28.4687%" y="815.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (566 samples, 2.24%)</title><rect x="28.2187%" y="789" width="2.2395%" height="15" fill="rgb(216,140,30)" fg:x="7132" fg:w="566"/><text x="28.4687%" y="799.50">r..</text></g><g><title>rayon_core::registry::in_worker (519 samples, 2.05%)</title><rect x="28.4047%" y="773" width="2.0535%" height="15" fill="rgb(246,214,8)" fg:x="7179" fg:w="519"/><text x="28.6547%" y="783.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (519 samples, 2.05%)</title><rect x="28.4047%" y="757" width="2.0535%" height="15" fill="rgb(227,224,15)" fg:x="7179" fg:w="519"/><text x="28.6547%" y="767.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="30.3949%" y="741" width="0.0633%" height="15" fill="rgb(233,175,4)" fg:x="7682" fg:w="16"/><text x="30.6449%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="30.3949%" y="725" width="0.0633%" height="15" fill="rgb(221,66,45)" fg:x="7682" fg:w="16"/><text x="30.6449%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="30.3949%" y="709" width="0.0633%" height="15" fill="rgb(221,178,18)" fg:x="7682" fg:w="16"/><text x="30.6449%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="30.3949%" y="693" width="0.0633%" height="15" fill="rgb(213,81,29)" fg:x="7682" fg:w="16"/><text x="30.6449%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="30.3949%" y="677" width="0.0633%" height="15" fill="rgb(220,89,49)" fg:x="7682" fg:w="16"/><text x="30.6449%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="30.4344%" y="661" width="0.0237%" height="15" fill="rgb(227,60,33)" fg:x="7692" fg:w="6"/><text x="30.6844%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="30.4344%" y="645" width="0.0237%" height="15" fill="rgb(205,113,12)" fg:x="7692" fg:w="6"/><text x="30.6844%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="30.4344%" y="629" width="0.0237%" height="15" fill="rgb(211,32,1)" fg:x="7692" fg:w="6"/><text x="30.6844%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="30.4344%" y="613" width="0.0237%" height="15" fill="rgb(246,2,12)" fg:x="7692" fg:w="6"/><text x="30.6844%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.4938%" y="581" width="0.0119%" height="15" fill="rgb(243,37,27)" fg:x="7707" fg:w="3"/><text x="30.7438%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="30.4938%" y="629" width="0.0237%" height="15" fill="rgb(248,211,31)" fg:x="7707" fg:w="6"/><text x="30.7438%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="30.4938%" y="613" width="0.0237%" height="15" fill="rgb(242,146,47)" fg:x="7707" fg:w="6"/><text x="30.7438%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="30.4938%" y="597" width="0.0237%" height="15" fill="rgb(206,70,20)" fg:x="7707" fg:w="6"/><text x="30.7438%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5057%" y="581" width="0.0119%" height="15" fill="rgb(215,10,51)" fg:x="7710" fg:w="3"/><text x="30.7557%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5057%" y="565" width="0.0119%" height="15" fill="rgb(243,178,53)" fg:x="7710" fg:w="3"/><text x="30.7557%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.5175%" y="565" width="0.0158%" height="15" fill="rgb(233,221,20)" fg:x="7713" fg:w="4"/><text x="30.7675%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="30.4780%" y="677" width="0.0673%" height="15" fill="rgb(218,95,35)" fg:x="7703" fg:w="17"/><text x="30.7280%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="30.4938%" y="661" width="0.0514%" height="15" fill="rgb(229,13,5)" fg:x="7707" fg:w="13"/><text x="30.7438%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="30.4938%" y="645" width="0.0514%" height="15" fill="rgb(252,164,30)" fg:x="7707" fg:w="13"/><text x="30.7438%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="30.5175%" y="629" width="0.0277%" height="15" fill="rgb(232,68,36)" fg:x="7713" fg:w="7"/><text x="30.7675%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.5175%" y="613" width="0.0277%" height="15" fill="rgb(219,59,54)" fg:x="7713" fg:w="7"/><text x="30.7675%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="30.5175%" y="597" width="0.0277%" height="15" fill="rgb(250,92,33)" fg:x="7713" fg:w="7"/><text x="30.7675%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="30.5175%" y="581" width="0.0277%" height="15" fill="rgb(229,162,54)" fg:x="7713" fg:w="7"/><text x="30.7675%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5334%" y="565" width="0.0119%" height="15" fill="rgb(244,114,52)" fg:x="7717" fg:w="3"/><text x="30.7834%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5334%" y="549" width="0.0119%" height="15" fill="rgb(212,211,43)" fg:x="7717" fg:w="3"/><text x="30.7834%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5452%" y="677" width="0.0119%" height="15" fill="rgb(226,147,8)" fg:x="7720" fg:w="3"/><text x="30.7952%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5452%" y="661" width="0.0119%" height="15" fill="rgb(226,23,13)" fg:x="7720" fg:w="3"/><text x="30.7952%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="30.5571%" y="597" width="0.0237%" height="15" fill="rgb(240,63,4)" fg:x="7723" fg:w="6"/><text x="30.8071%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.13%)</title><rect x="30.4661%" y="725" width="0.1266%" height="15" fill="rgb(221,1,32)" fg:x="7700" fg:w="32"/><text x="30.7161%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="30.4780%" y="709" width="0.1147%" height="15" fill="rgb(242,117,10)" fg:x="7703" fg:w="29"/><text x="30.7280%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="30.4780%" y="693" width="0.1147%" height="15" fill="rgb(249,172,44)" fg:x="7703" fg:w="29"/><text x="30.7280%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="30.5571%" y="677" width="0.0356%" height="15" fill="rgb(244,46,45)" fg:x="7723" fg:w="9"/><text x="30.8071%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="30.5571%" y="661" width="0.0356%" height="15" fill="rgb(206,43,17)" fg:x="7723" fg:w="9"/><text x="30.8071%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="30.5571%" y="645" width="0.0356%" height="15" fill="rgb(239,218,39)" fg:x="7723" fg:w="9"/><text x="30.8071%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.5571%" y="629" width="0.0356%" height="15" fill="rgb(208,169,54)" fg:x="7723" fg:w="9"/><text x="30.8071%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="30.5571%" y="613" width="0.0356%" height="15" fill="rgb(247,25,42)" fg:x="7723" fg:w="9"/><text x="30.8071%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5808%" y="597" width="0.0119%" height="15" fill="rgb(226,23,31)" fg:x="7729" fg:w="3"/><text x="30.8308%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5808%" y="581" width="0.0119%" height="15" fill="rgb(247,16,28)" fg:x="7729" fg:w="3"/><text x="30.8308%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.5927%" y="661" width="0.0158%" height="15" fill="rgb(231,147,38)" fg:x="7732" fg:w="4"/><text x="30.8427%" y="671.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="30.5927%" y="645" width="0.0158%" height="15" fill="rgb(253,81,48)" fg:x="7732" fg:w="4"/><text x="30.8427%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="30.5967%" y="629" width="0.0119%" height="15" fill="rgb(249,222,43)" fg:x="7733" fg:w="3"/><text x="30.8467%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (1,398 samples, 5.53%)</title><rect x="25.0930%" y="869" width="5.5314%" height="15" fill="rgb(221,3,27)" fg:x="6342" fg:w="1398"/><text x="25.3430%" y="879.50">rayon_c..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,398 samples, 5.53%)</title><rect x="25.0930%" y="853" width="5.5314%" height="15" fill="rgb(228,180,5)" fg:x="6342" fg:w="1398"/><text x="25.3430%" y="863.50">rayon::..</text></g><g><title>rayon_core::registry::in_worker (1,326 samples, 5.25%)</title><rect x="25.3779%" y="837" width="5.2465%" height="15" fill="rgb(227,131,42)" fg:x="6414" fg:w="1326"/><text x="25.6279%" y="847.50">rayon_..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (1,326 samples, 5.25%)</title><rect x="25.3779%" y="821" width="5.2465%" height="15" fill="rgb(212,3,39)" fg:x="6414" fg:w="1326"/><text x="25.6279%" y="831.50">_ZN10r..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (42 samples, 0.17%)</title><rect x="30.4582%" y="805" width="0.1662%" height="15" fill="rgb(226,45,5)" fg:x="7698" fg:w="42"/><text x="30.7082%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (42 samples, 0.17%)</title><rect x="30.4582%" y="789" width="0.1662%" height="15" fill="rgb(215,167,45)" fg:x="7698" fg:w="42"/><text x="30.7082%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.17%)</title><rect x="30.4582%" y="773" width="0.1662%" height="15" fill="rgb(250,218,53)" fg:x="7698" fg:w="42"/><text x="30.7082%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.16%)</title><rect x="30.4661%" y="757" width="0.1583%" height="15" fill="rgb(207,140,0)" fg:x="7700" fg:w="40"/><text x="30.7161%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.16%)</title><rect x="30.4661%" y="741" width="0.1583%" height="15" fill="rgb(238,133,51)" fg:x="7700" fg:w="40"/><text x="30.7161%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="30.5927%" y="725" width="0.0317%" height="15" fill="rgb(218,203,53)" fg:x="7732" fg:w="8"/><text x="30.8427%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="30.5927%" y="709" width="0.0317%" height="15" fill="rgb(226,184,25)" fg:x="7732" fg:w="8"/><text x="30.8427%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="30.5927%" y="693" width="0.0317%" height="15" fill="rgb(231,121,21)" fg:x="7732" fg:w="8"/><text x="30.8427%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="30.5927%" y="677" width="0.0317%" height="15" fill="rgb(251,14,34)" fg:x="7732" fg:w="8"/><text x="30.8427%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="30.6085%" y="661" width="0.0158%" height="15" fill="rgb(249,193,11)" fg:x="7736" fg:w="4"/><text x="30.8585%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="30.6085%" y="645" width="0.0158%" height="15" fill="rgb(220,172,37)" fg:x="7736" fg:w="4"/><text x="30.8585%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.6085%" y="629" width="0.0158%" height="15" fill="rgb(231,229,43)" fg:x="7736" fg:w="4"/><text x="30.8585%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.6125%" y="613" width="0.0119%" height="15" fill="rgb(250,161,5)" fg:x="7737" fg:w="3"/><text x="30.8625%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="30.6125%" y="597" width="0.0119%" height="15" fill="rgb(218,225,18)" fg:x="7737" fg:w="3"/><text x="30.8625%" y="607.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="30.6402%" y="821" width="0.0356%" height="15" fill="rgb(245,45,42)" fg:x="7744" fg:w="9"/><text x="30.8902%" y="831.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="30.6481%" y="805" width="0.0277%" height="15" fill="rgb(211,115,1)" fg:x="7746" fg:w="7"/><text x="30.8981%" y="815.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="30.7035%" y="773" width="0.0237%" height="15" fill="rgb(248,133,52)" fg:x="7760" fg:w="6"/><text x="30.9535%" y="783.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="30.7035%" y="757" width="0.0237%" height="15" fill="rgb(238,100,21)" fg:x="7760" fg:w="6"/><text x="30.9535%" y="767.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="30.7431%" y="725" width="0.0237%" height="15" fill="rgb(247,144,11)" fg:x="7770" fg:w="6"/><text x="30.9931%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="30.7470%" y="709" width="0.0198%" height="15" fill="rgb(206,164,16)" fg:x="7771" fg:w="5"/><text x="30.9970%" y="719.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.7747%" y="677" width="0.0119%" height="15" fill="rgb(222,34,3)" fg:x="7778" fg:w="3"/><text x="31.0247%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="30.7866%" y="645" width="0.0475%" height="15" fill="rgb(248,82,4)" fg:x="7781" fg:w="12"/><text x="31.0366%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.8182%" y="629" width="0.0158%" height="15" fill="rgb(228,81,46)" fg:x="7789" fg:w="4"/><text x="31.0682%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.8182%" y="613" width="0.0158%" height="15" fill="rgb(227,67,47)" fg:x="7789" fg:w="4"/><text x="31.0682%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="30.8459%" y="581" width="0.0237%" height="15" fill="rgb(215,93,53)" fg:x="7796" fg:w="6"/><text x="31.0959%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="30.7668%" y="693" width="0.1306%" height="15" fill="rgb(248,194,39)" fg:x="7776" fg:w="33"/><text x="31.0168%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="30.7866%" y="677" width="0.1108%" height="15" fill="rgb(215,5,19)" fg:x="7781" fg:w="28"/><text x="31.0366%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="30.7866%" y="661" width="0.1108%" height="15" fill="rgb(226,215,51)" fg:x="7781" fg:w="28"/><text x="31.0366%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.06%)</title><rect x="30.8341%" y="645" width="0.0633%" height="15" fill="rgb(225,56,26)" fg:x="7793" fg:w="16"/><text x="31.0841%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="30.8341%" y="629" width="0.0633%" height="15" fill="rgb(222,75,29)" fg:x="7793" fg:w="16"/><text x="31.0841%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="30.8459%" y="613" width="0.0514%" height="15" fill="rgb(236,139,6)" fg:x="7796" fg:w="13"/><text x="31.0959%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="30.8459%" y="597" width="0.0514%" height="15" fill="rgb(223,137,36)" fg:x="7796" fg:w="13"/><text x="31.0959%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="30.8697%" y="581" width="0.0277%" height="15" fill="rgb(226,99,2)" fg:x="7802" fg:w="7"/><text x="31.1197%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.8697%" y="565" width="0.0277%" height="15" fill="rgb(206,133,23)" fg:x="7802" fg:w="7"/><text x="31.1197%" y="575.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="30.8776%" y="549" width="0.0198%" height="15" fill="rgb(243,173,15)" fg:x="7804" fg:w="5"/><text x="31.1276%" y="559.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="30.8855%" y="533" width="0.0119%" height="15" fill="rgb(228,69,28)" fg:x="7806" fg:w="3"/><text x="31.1355%" y="543.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="30.9013%" y="661" width="0.0158%" height="15" fill="rgb(212,51,22)" fg:x="7810" fg:w="4"/><text x="31.1513%" y="671.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="30.9013%" y="645" width="0.0158%" height="15" fill="rgb(227,113,0)" fg:x="7810" fg:w="4"/><text x="31.1513%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.9330%" y="581" width="0.0277%" height="15" fill="rgb(252,84,27)" fg:x="7818" fg:w="7"/><text x="31.1830%" y="591.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="30.9448%" y="565" width="0.0158%" height="15" fill="rgb(223,145,39)" fg:x="7821" fg:w="4"/><text x="31.1948%" y="575.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="30.9448%" y="549" width="0.0158%" height="15" fill="rgb(239,219,30)" fg:x="7821" fg:w="4"/><text x="31.1948%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="30.9171%" y="629" width="0.0633%" height="15" fill="rgb(224,196,39)" fg:x="7814" fg:w="16"/><text x="31.1671%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="30.9330%" y="613" width="0.0475%" height="15" fill="rgb(205,35,43)" fg:x="7818" fg:w="12"/><text x="31.1830%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="30.9330%" y="597" width="0.0475%" height="15" fill="rgb(228,201,21)" fg:x="7818" fg:w="12"/><text x="31.1830%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.9607%" y="581" width="0.0198%" height="15" fill="rgb(237,118,16)" fg:x="7825" fg:w="5"/><text x="31.2107%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.9607%" y="565" width="0.0198%" height="15" fill="rgb(241,17,19)" fg:x="7825" fg:w="5"/><text x="31.2107%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.9963%" y="565" width="0.0277%" height="15" fill="rgb(214,10,25)" fg:x="7834" fg:w="7"/><text x="31.2463%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (81 samples, 0.32%)</title><rect x="30.7272%" y="741" width="0.3205%" height="15" fill="rgb(238,37,29)" fg:x="7766" fg:w="81"/><text x="30.9772%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (71 samples, 0.28%)</title><rect x="30.7668%" y="725" width="0.2809%" height="15" fill="rgb(253,83,25)" fg:x="7776" fg:w="71"/><text x="31.0168%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (71 samples, 0.28%)</title><rect x="30.7668%" y="709" width="0.2809%" height="15" fill="rgb(234,192,12)" fg:x="7776" fg:w="71"/><text x="31.0168%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.15%)</title><rect x="30.8974%" y="693" width="0.1504%" height="15" fill="rgb(241,216,45)" fg:x="7809" fg:w="38"/><text x="31.1474%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="30.8974%" y="677" width="0.1504%" height="15" fill="rgb(242,22,33)" fg:x="7809" fg:w="38"/><text x="31.1474%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="30.9171%" y="661" width="0.1306%" height="15" fill="rgb(231,105,49)" fg:x="7814" fg:w="33"/><text x="31.1671%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.13%)</title><rect x="30.9171%" y="645" width="0.1306%" height="15" fill="rgb(218,204,15)" fg:x="7814" fg:w="33"/><text x="31.1671%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.07%)</title><rect x="30.9805%" y="629" width="0.0673%" height="15" fill="rgb(235,138,41)" fg:x="7830" fg:w="17"/><text x="31.2305%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="30.9805%" y="613" width="0.0673%" height="15" fill="rgb(246,0,9)" fg:x="7830" fg:w="17"/><text x="31.2305%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="30.9963%" y="597" width="0.0514%" height="15" fill="rgb(210,74,4)" fg:x="7834" fg:w="13"/><text x="31.2463%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="30.9963%" y="581" width="0.0514%" height="15" fill="rgb(250,60,41)" fg:x="7834" fg:w="13"/><text x="31.2463%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="31.0240%" y="565" width="0.0237%" height="15" fill="rgb(220,115,12)" fg:x="7841" fg:w="6"/><text x="31.2740%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.0240%" y="549" width="0.0237%" height="15" fill="rgb(237,100,13)" fg:x="7841" fg:w="6"/><text x="31.2740%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.0358%" y="533" width="0.0119%" height="15" fill="rgb(213,55,26)" fg:x="7844" fg:w="3"/><text x="31.2858%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.0715%" y="709" width="0.0119%" height="15" fill="rgb(216,17,4)" fg:x="7853" fg:w="3"/><text x="31.3215%" y="719.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.1071%" y="613" width="0.0119%" height="15" fill="rgb(220,153,47)" fg:x="7862" fg:w="3"/><text x="31.3571%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.1189%" y="581" width="0.0119%" height="15" fill="rgb(215,131,9)" fg:x="7865" fg:w="3"/><text x="31.3689%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="31.1031%" y="629" width="0.0435%" height="15" fill="rgb(233,46,42)" fg:x="7861" fg:w="11"/><text x="31.3531%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.1189%" y="613" width="0.0277%" height="15" fill="rgb(226,86,7)" fg:x="7865" fg:w="7"/><text x="31.3689%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.1189%" y="597" width="0.0277%" height="15" fill="rgb(239,226,21)" fg:x="7865" fg:w="7"/><text x="31.3689%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.1308%" y="581" width="0.0158%" height="15" fill="rgb(244,137,22)" fg:x="7868" fg:w="4"/><text x="31.3808%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.1308%" y="565" width="0.0158%" height="15" fill="rgb(211,139,35)" fg:x="7868" fg:w="4"/><text x="31.3808%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.1625%" y="565" width="0.0119%" height="15" fill="rgb(214,62,50)" fg:x="7876" fg:w="3"/><text x="31.4125%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="31.0833%" y="677" width="0.1029%" height="15" fill="rgb(212,113,44)" fg:x="7856" fg:w="26"/><text x="31.3333%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="31.1031%" y="661" width="0.0831%" height="15" fill="rgb(226,150,43)" fg:x="7861" fg:w="21"/><text x="31.3531%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="31.1031%" y="645" width="0.0831%" height="15" fill="rgb(250,71,37)" fg:x="7861" fg:w="21"/><text x="31.3531%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="31.1466%" y="629" width="0.0396%" height="15" fill="rgb(219,76,19)" fg:x="7872" fg:w="10"/><text x="31.3966%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.1466%" y="613" width="0.0396%" height="15" fill="rgb(250,39,11)" fg:x="7872" fg:w="10"/><text x="31.3966%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="31.1625%" y="597" width="0.0237%" height="15" fill="rgb(230,64,31)" fg:x="7876" fg:w="6"/><text x="31.4125%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="31.1625%" y="581" width="0.0237%" height="15" fill="rgb(208,222,23)" fg:x="7876" fg:w="6"/><text x="31.4125%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.1743%" y="565" width="0.0119%" height="15" fill="rgb(227,125,18)" fg:x="7879" fg:w="3"/><text x="31.4243%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.1743%" y="549" width="0.0119%" height="15" fill="rgb(234,210,9)" fg:x="7879" fg:w="3"/><text x="31.4243%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.2179%" y="565" width="0.0158%" height="15" fill="rgb(217,127,24)" fg:x="7890" fg:w="4"/><text x="31.4679%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="31.2020%" y="613" width="0.0435%" height="15" fill="rgb(239,141,48)" fg:x="7886" fg:w="11"/><text x="31.4520%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.2179%" y="597" width="0.0277%" height="15" fill="rgb(227,109,8)" fg:x="7890" fg:w="7"/><text x="31.4679%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.2179%" y="581" width="0.0277%" height="15" fill="rgb(235,184,23)" fg:x="7890" fg:w="7"/><text x="31.4679%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.2337%" y="565" width="0.0119%" height="15" fill="rgb(227,226,48)" fg:x="7894" fg:w="3"/><text x="31.4837%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.2337%" y="549" width="0.0119%" height="15" fill="rgb(206,150,11)" fg:x="7894" fg:w="3"/><text x="31.4837%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.2535%" y="549" width="0.0158%" height="15" fill="rgb(254,2,33)" fg:x="7899" fg:w="4"/><text x="31.5035%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="31.2455%" y="613" width="0.0396%" height="15" fill="rgb(243,160,20)" fg:x="7897" fg:w="10"/><text x="31.4955%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.2455%" y="597" width="0.0396%" height="15" fill="rgb(218,208,30)" fg:x="7897" fg:w="10"/><text x="31.4955%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.2535%" y="581" width="0.0317%" height="15" fill="rgb(224,120,49)" fg:x="7899" fg:w="8"/><text x="31.5035%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="31.2535%" y="565" width="0.0317%" height="15" fill="rgb(246,12,2)" fg:x="7899" fg:w="8"/><text x="31.5035%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.2693%" y="549" width="0.0158%" height="15" fill="rgb(236,117,3)" fg:x="7903" fg:w="4"/><text x="31.5193%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.2693%" y="533" width="0.0158%" height="15" fill="rgb(216,128,52)" fg:x="7903" fg:w="4"/><text x="31.5193%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (156 samples, 0.62%)</title><rect x="30.6758%" y="789" width="0.6172%" height="15" fill="rgb(246,145,19)" fg:x="7753" fg:w="156"/><text x="30.9258%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (143 samples, 0.57%)</title><rect x="30.7272%" y="773" width="0.5658%" height="15" fill="rgb(222,11,46)" fg:x="7766" fg:w="143"/><text x="30.9772%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (143 samples, 0.57%)</title><rect x="30.7272%" y="757" width="0.5658%" height="15" fill="rgb(245,82,36)" fg:x="7766" fg:w="143"/><text x="30.9772%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (62 samples, 0.25%)</title><rect x="31.0477%" y="741" width="0.2453%" height="15" fill="rgb(250,73,51)" fg:x="7847" fg:w="62"/><text x="31.2977%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.25%)</title><rect x="31.0477%" y="725" width="0.2453%" height="15" fill="rgb(221,189,23)" fg:x="7847" fg:w="62"/><text x="31.2977%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.21%)</title><rect x="31.0833%" y="709" width="0.2097%" height="15" fill="rgb(210,33,7)" fg:x="7856" fg:w="53"/><text x="31.3333%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (53 samples, 0.21%)</title><rect x="31.0833%" y="693" width="0.2097%" height="15" fill="rgb(210,107,22)" fg:x="7856" fg:w="53"/><text x="31.3333%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="31.1862%" y="677" width="0.1068%" height="15" fill="rgb(222,116,37)" fg:x="7882" fg:w="27"/><text x="31.4362%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="31.1862%" y="661" width="0.1068%" height="15" fill="rgb(254,17,48)" fg:x="7882" fg:w="27"/><text x="31.4362%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="31.2020%" y="645" width="0.0910%" height="15" fill="rgb(224,36,32)" fg:x="7886" fg:w="23"/><text x="31.4520%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="31.2020%" y="629" width="0.0910%" height="15" fill="rgb(232,90,46)" fg:x="7886" fg:w="23"/><text x="31.4520%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.3286%" y="709" width="0.0119%" height="15" fill="rgb(241,66,40)" fg:x="7918" fg:w="3"/><text x="31.5786%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.3405%" y="677" width="0.0237%" height="15" fill="rgb(249,184,29)" fg:x="7921" fg:w="6"/><text x="31.5905%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.3484%" y="661" width="0.0158%" height="15" fill="rgb(231,181,1)" fg:x="7923" fg:w="4"/><text x="31.5984%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.3484%" y="645" width="0.0158%" height="15" fill="rgb(224,94,2)" fg:x="7923" fg:w="4"/><text x="31.5984%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.3761%" y="613" width="0.0158%" height="15" fill="rgb(229,170,15)" fg:x="7930" fg:w="4"/><text x="31.6261%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="31.3761%" y="597" width="0.0158%" height="15" fill="rgb(240,127,35)" fg:x="7930" fg:w="4"/><text x="31.6261%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.3801%" y="581" width="0.0119%" height="15" fill="rgb(248,196,34)" fg:x="7931" fg:w="3"/><text x="31.6301%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="31.3049%" y="725" width="0.0950%" height="15" fill="rgb(236,137,7)" fg:x="7912" fg:w="24"/><text x="31.5549%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="31.3405%" y="709" width="0.0593%" height="15" fill="rgb(235,127,16)" fg:x="7921" fg:w="15"/><text x="31.5905%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="31.3405%" y="693" width="0.0593%" height="15" fill="rgb(250,192,54)" fg:x="7921" fg:w="15"/><text x="31.5905%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="31.3642%" y="677" width="0.0356%" height="15" fill="rgb(218,98,20)" fg:x="7927" fg:w="9"/><text x="31.6142%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="31.3642%" y="661" width="0.0356%" height="15" fill="rgb(230,176,47)" fg:x="7927" fg:w="9"/><text x="31.6142%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="31.3761%" y="645" width="0.0237%" height="15" fill="rgb(244,2,33)" fg:x="7930" fg:w="6"/><text x="31.6261%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="31.3761%" y="629" width="0.0237%" height="15" fill="rgb(231,100,17)" fg:x="7930" fg:w="6"/><text x="31.6261%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.4355%" y="661" width="0.0237%" height="15" fill="rgb(245,23,12)" fg:x="7945" fg:w="6"/><text x="31.6855%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.4394%" y="645" width="0.0198%" height="15" fill="rgb(249,55,22)" fg:x="7946" fg:w="5"/><text x="31.6894%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.4394%" y="629" width="0.0198%" height="15" fill="rgb(207,134,9)" fg:x="7946" fg:w="5"/><text x="31.6894%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.4473%" y="613" width="0.0119%" height="15" fill="rgb(218,134,0)" fg:x="7948" fg:w="3"/><text x="31.6973%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.4473%" y="597" width="0.0119%" height="15" fill="rgb(213,212,33)" fg:x="7948" fg:w="3"/><text x="31.6973%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (45 samples, 0.18%)</title><rect x="31.2930%" y="789" width="0.1780%" height="15" fill="rgb(252,106,18)" fg:x="7909" fg:w="45"/><text x="31.5430%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.18%)</title><rect x="31.2930%" y="773" width="0.1780%" height="15" fill="rgb(208,126,42)" fg:x="7909" fg:w="45"/><text x="31.5430%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.17%)</title><rect x="31.3049%" y="757" width="0.1662%" height="15" fill="rgb(246,175,29)" fg:x="7912" fg:w="42"/><text x="31.5549%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (42 samples, 0.17%)</title><rect x="31.3049%" y="741" width="0.1662%" height="15" fill="rgb(215,13,50)" fg:x="7912" fg:w="42"/><text x="31.5549%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="31.3999%" y="725" width="0.0712%" height="15" fill="rgb(216,172,15)" fg:x="7936" fg:w="18"/><text x="31.6499%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="31.3999%" y="709" width="0.0712%" height="15" fill="rgb(212,103,13)" fg:x="7936" fg:w="18"/><text x="31.6499%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="31.4355%" y="693" width="0.0356%" height="15" fill="rgb(231,171,36)" fg:x="7945" fg:w="9"/><text x="31.6855%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="31.4355%" y="677" width="0.0356%" height="15" fill="rgb(250,123,20)" fg:x="7945" fg:w="9"/><text x="31.6855%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.4592%" y="661" width="0.0119%" height="15" fill="rgb(212,53,50)" fg:x="7951" fg:w="3"/><text x="31.7092%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.4592%" y="645" width="0.0119%" height="15" fill="rgb(243,54,12)" fg:x="7951" fg:w="3"/><text x="31.7092%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.4988%" y="565" width="0.0158%" height="15" fill="rgb(234,101,34)" fg:x="7961" fg:w="4"/><text x="31.7488%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.4988%" y="549" width="0.0158%" height="15" fill="rgb(254,67,22)" fg:x="7961" fg:w="4"/><text x="31.7488%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.4988%" y="533" width="0.0158%" height="15" fill="rgb(250,35,47)" fg:x="7961" fg:w="4"/><text x="31.7488%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="31.4790%" y="613" width="0.0475%" height="15" fill="rgb(226,126,38)" fg:x="7956" fg:w="12"/><text x="31.7290%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.4988%" y="597" width="0.0277%" height="15" fill="rgb(216,138,53)" fg:x="7961" fg:w="7"/><text x="31.7488%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.4988%" y="581" width="0.0277%" height="15" fill="rgb(246,199,43)" fg:x="7961" fg:w="7"/><text x="31.7488%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.5146%" y="565" width="0.0119%" height="15" fill="rgb(232,125,11)" fg:x="7965" fg:w="3"/><text x="31.7646%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.5146%" y="549" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="7965" fg:w="3"/><text x="31.7646%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.5146%" y="533" width="0.0119%" height="15" fill="rgb(216,102,54)" fg:x="7965" fg:w="3"/><text x="31.7646%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.5146%" y="517" width="0.0119%" height="15" fill="rgb(250,228,7)" fg:x="7965" fg:w="3"/><text x="31.7646%" y="527.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.5344%" y="581" width="0.0119%" height="15" fill="rgb(226,125,25)" fg:x="7970" fg:w="3"/><text x="31.7844%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.5344%" y="565" width="0.0119%" height="15" fill="rgb(224,165,27)" fg:x="7970" fg:w="3"/><text x="31.7844%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.5463%" y="549" width="0.0119%" height="15" fill="rgb(233,86,3)" fg:x="7973" fg:w="3"/><text x="31.7963%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.5463%" y="533" width="0.0119%" height="15" fill="rgb(228,116,20)" fg:x="7973" fg:w="3"/><text x="31.7963%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.5463%" y="517" width="0.0119%" height="15" fill="rgb(209,192,17)" fg:x="7973" fg:w="3"/><text x="31.7963%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="31.4711%" y="661" width="0.1029%" height="15" fill="rgb(224,88,34)" fg:x="7954" fg:w="26"/><text x="31.7211%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="31.4790%" y="645" width="0.0950%" height="15" fill="rgb(233,38,6)" fg:x="7956" fg:w="24"/><text x="31.7290%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="31.4790%" y="629" width="0.0950%" height="15" fill="rgb(212,59,30)" fg:x="7956" fg:w="24"/><text x="31.7290%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="31.5265%" y="613" width="0.0475%" height="15" fill="rgb(213,80,3)" fg:x="7968" fg:w="12"/><text x="31.7765%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="31.5265%" y="597" width="0.0475%" height="15" fill="rgb(251,178,7)" fg:x="7968" fg:w="12"/><text x="31.7765%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.5463%" y="581" width="0.0277%" height="15" fill="rgb(213,154,26)" fg:x="7973" fg:w="7"/><text x="31.7963%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.5463%" y="565" width="0.0277%" height="15" fill="rgb(238,165,49)" fg:x="7973" fg:w="7"/><text x="31.7963%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.5581%" y="549" width="0.0158%" height="15" fill="rgb(248,91,46)" fg:x="7976" fg:w="4"/><text x="31.8081%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.5581%" y="533" width="0.0158%" height="15" fill="rgb(244,21,52)" fg:x="7976" fg:w="4"/><text x="31.8081%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.5581%" y="517" width="0.0158%" height="15" fill="rgb(247,122,20)" fg:x="7976" fg:w="4"/><text x="31.8081%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.5581%" y="501" width="0.0158%" height="15" fill="rgb(218,27,9)" fg:x="7976" fg:w="4"/><text x="31.8081%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.5977%" y="549" width="0.0158%" height="15" fill="rgb(246,7,6)" fg:x="7986" fg:w="4"/><text x="31.8477%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.5977%" y="533" width="0.0158%" height="15" fill="rgb(227,135,54)" fg:x="7986" fg:w="4"/><text x="31.8477%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.5977%" y="517" width="0.0158%" height="15" fill="rgb(247,14,11)" fg:x="7986" fg:w="4"/><text x="31.8477%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="31.5819%" y="597" width="0.0475%" height="15" fill="rgb(206,149,34)" fg:x="7982" fg:w="12"/><text x="31.8319%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.5977%" y="581" width="0.0317%" height="15" fill="rgb(227,228,4)" fg:x="7986" fg:w="8"/><text x="31.8477%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="31.5977%" y="565" width="0.0317%" height="15" fill="rgb(238,218,28)" fg:x="7986" fg:w="8"/><text x="31.8477%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.6135%" y="549" width="0.0158%" height="15" fill="rgb(252,86,40)" fg:x="7990" fg:w="4"/><text x="31.8635%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.6135%" y="533" width="0.0158%" height="15" fill="rgb(251,225,11)" fg:x="7990" fg:w="4"/><text x="31.8635%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.6135%" y="517" width="0.0158%" height="15" fill="rgb(206,46,49)" fg:x="7990" fg:w="4"/><text x="31.8635%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.6135%" y="501" width="0.0158%" height="15" fill="rgb(245,128,24)" fg:x="7990" fg:w="4"/><text x="31.8635%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.6452%" y="533" width="0.0158%" height="15" fill="rgb(219,177,34)" fg:x="7998" fg:w="4"/><text x="31.8952%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.6452%" y="517" width="0.0158%" height="15" fill="rgb(218,60,48)" fg:x="7998" fg:w="4"/><text x="31.8952%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.6452%" y="501" width="0.0158%" height="15" fill="rgb(221,11,5)" fg:x="7998" fg:w="4"/><text x="31.8952%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.21%)</title><rect x="31.4711%" y="709" width="0.2057%" height="15" fill="rgb(220,148,13)" fg:x="7954" fg:w="52"/><text x="31.7211%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="31.4711%" y="693" width="0.2057%" height="15" fill="rgb(210,16,3)" fg:x="7954" fg:w="52"/><text x="31.7211%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="31.4711%" y="677" width="0.2057%" height="15" fill="rgb(236,80,2)" fg:x="7954" fg:w="52"/><text x="31.7211%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.10%)</title><rect x="31.5739%" y="661" width="0.1029%" height="15" fill="rgb(239,129,19)" fg:x="7980" fg:w="26"/><text x="31.8239%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="31.5739%" y="645" width="0.1029%" height="15" fill="rgb(220,106,35)" fg:x="7980" fg:w="26"/><text x="31.8239%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="31.5819%" y="629" width="0.0950%" height="15" fill="rgb(252,139,45)" fg:x="7982" fg:w="24"/><text x="31.8319%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="31.5819%" y="613" width="0.0950%" height="15" fill="rgb(229,8,36)" fg:x="7982" fg:w="24"/><text x="31.8319%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="31.6293%" y="597" width="0.0475%" height="15" fill="rgb(230,126,33)" fg:x="7994" fg:w="12"/><text x="31.8793%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="31.6293%" y="581" width="0.0475%" height="15" fill="rgb(239,140,21)" fg:x="7994" fg:w="12"/><text x="31.8793%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.6452%" y="565" width="0.0317%" height="15" fill="rgb(254,104,9)" fg:x="7998" fg:w="8"/><text x="31.8952%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="31.6452%" y="549" width="0.0317%" height="15" fill="rgb(239,52,14)" fg:x="7998" fg:w="8"/><text x="31.8952%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.6610%" y="533" width="0.0158%" height="15" fill="rgb(208,227,44)" fg:x="8002" fg:w="4"/><text x="31.9110%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.6610%" y="517" width="0.0158%" height="15" fill="rgb(246,18,19)" fg:x="8002" fg:w="4"/><text x="31.9110%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.6610%" y="501" width="0.0158%" height="15" fill="rgb(235,228,25)" fg:x="8002" fg:w="4"/><text x="31.9110%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.6610%" y="485" width="0.0158%" height="15" fill="rgb(240,156,20)" fg:x="8002" fg:w="4"/><text x="31.9110%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.6847%" y="597" width="0.0119%" height="15" fill="rgb(224,8,20)" fg:x="8008" fg:w="3"/><text x="31.9347%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.6847%" y="581" width="0.0119%" height="15" fill="rgb(214,12,52)" fg:x="8008" fg:w="3"/><text x="31.9347%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.6847%" y="565" width="0.0119%" height="15" fill="rgb(211,220,47)" fg:x="8008" fg:w="3"/><text x="31.9347%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.6768%" y="645" width="0.0396%" height="15" fill="rgb(250,173,5)" fg:x="8006" fg:w="10"/><text x="31.9268%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.6847%" y="629" width="0.0317%" height="15" fill="rgb(250,125,52)" fg:x="8008" fg:w="8"/><text x="31.9347%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="31.6847%" y="613" width="0.0317%" height="15" fill="rgb(209,133,18)" fg:x="8008" fg:w="8"/><text x="31.9347%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="31.6966%" y="597" width="0.0198%" height="15" fill="rgb(216,173,22)" fg:x="8011" fg:w="5"/><text x="31.9466%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.6966%" y="581" width="0.0198%" height="15" fill="rgb(205,3,22)" fg:x="8011" fg:w="5"/><text x="31.9466%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.7164%" y="581" width="0.0158%" height="15" fill="rgb(248,22,20)" fg:x="8016" fg:w="4"/><text x="31.9664%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.7322%" y="581" width="0.0119%" height="15" fill="rgb(233,6,29)" fg:x="8020" fg:w="3"/><text x="31.9822%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.7322%" y="565" width="0.0119%" height="15" fill="rgb(240,22,54)" fg:x="8020" fg:w="3"/><text x="31.9822%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.7441%" y="405" width="0.0158%" height="15" fill="rgb(231,133,32)" fg:x="8023" fg:w="4"/><text x="31.9941%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.7441%" y="389" width="0.0158%" height="15" fill="rgb(248,193,4)" fg:x="8023" fg:w="4"/><text x="31.9941%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.7441%" y="373" width="0.0158%" height="15" fill="rgb(211,178,46)" fg:x="8023" fg:w="4"/><text x="31.9941%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.7441%" y="453" width="0.0277%" height="15" fill="rgb(224,5,42)" fg:x="8023" fg:w="7"/><text x="31.9941%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.7441%" y="437" width="0.0277%" height="15" fill="rgb(239,176,25)" fg:x="8023" fg:w="7"/><text x="31.9941%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.7441%" y="421" width="0.0277%" height="15" fill="rgb(245,187,50)" fg:x="8023" fg:w="7"/><text x="31.9941%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.7599%" y="405" width="0.0119%" height="15" fill="rgb(248,24,15)" fg:x="8027" fg:w="3"/><text x="32.0099%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.7599%" y="389" width="0.0119%" height="15" fill="rgb(205,166,13)" fg:x="8027" fg:w="3"/><text x="32.0099%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.7599%" y="373" width="0.0119%" height="15" fill="rgb(208,114,23)" fg:x="8027" fg:w="3"/><text x="32.0099%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.7599%" y="357" width="0.0119%" height="15" fill="rgb(239,127,18)" fg:x="8027" fg:w="3"/><text x="32.0099%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.7718%" y="325" width="0.0158%" height="15" fill="rgb(219,154,28)" fg:x="8030" fg:w="4"/><text x="32.0218%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.7718%" y="309" width="0.0158%" height="15" fill="rgb(225,157,23)" fg:x="8030" fg:w="4"/><text x="32.0218%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.7718%" y="293" width="0.0158%" height="15" fill="rgb(219,8,6)" fg:x="8030" fg:w="4"/><text x="32.0218%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="31.7718%" y="373" width="0.0317%" height="15" fill="rgb(212,47,6)" fg:x="8030" fg:w="8"/><text x="32.0218%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="31.7718%" y="357" width="0.0317%" height="15" fill="rgb(224,190,4)" fg:x="8030" fg:w="8"/><text x="32.0218%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="31.7718%" y="341" width="0.0317%" height="15" fill="rgb(239,183,29)" fg:x="8030" fg:w="8"/><text x="32.0218%" y="351.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.7876%" y="325" width="0.0158%" height="15" fill="rgb(213,57,7)" fg:x="8034" fg:w="4"/><text x="32.0376%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.7876%" y="309" width="0.0158%" height="15" fill="rgb(216,148,1)" fg:x="8034" fg:w="4"/><text x="32.0376%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.7876%" y="293" width="0.0158%" height="15" fill="rgb(236,182,29)" fg:x="8034" fg:w="4"/><text x="32.0376%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.7876%" y="277" width="0.0158%" height="15" fill="rgb(244,120,48)" fg:x="8034" fg:w="4"/><text x="32.0376%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.8034%" y="293" width="0.0158%" height="15" fill="rgb(206,71,34)" fg:x="8038" fg:w="4"/><text x="32.0534%" y="303.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.8034%" y="277" width="0.0158%" height="15" fill="rgb(242,32,6)" fg:x="8038" fg:w="4"/><text x="32.0534%" y="287.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.8034%" y="261" width="0.0158%" height="15" fill="rgb(241,35,3)" fg:x="8038" fg:w="4"/><text x="32.0534%" y="271.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.11%)</title><rect x="31.7164%" y="645" width="0.1108%" height="15" fill="rgb(222,62,19)" fg:x="8016" fg:w="28"/><text x="31.9664%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="31.7164%" y="629" width="0.1108%" height="15" fill="rgb(223,110,41)" fg:x="8016" fg:w="28"/><text x="31.9664%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="31.7164%" y="613" width="0.1108%" height="15" fill="rgb(208,224,4)" fg:x="8016" fg:w="28"/><text x="31.9664%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="31.7164%" y="597" width="0.1108%" height="15" fill="rgb(241,137,19)" fg:x="8016" fg:w="28"/><text x="31.9664%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.08%)</title><rect x="31.7441%" y="581" width="0.0831%" height="15" fill="rgb(244,24,17)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.08%)</title><rect x="31.7441%" y="565" width="0.0831%" height="15" fill="rgb(245,178,49)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="31.7441%" y="549" width="0.0831%" height="15" fill="rgb(219,160,38)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="31.7441%" y="533" width="0.0831%" height="15" fill="rgb(228,137,14)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="31.7441%" y="517" width="0.0831%" height="15" fill="rgb(237,134,11)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="31.7441%" y="501" width="0.0831%" height="15" fill="rgb(211,126,44)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="31.7441%" y="485" width="0.0831%" height="15" fill="rgb(226,171,33)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="31.7441%" y="469" width="0.0831%" height="15" fill="rgb(253,99,13)" fg:x="8023" fg:w="21"/><text x="31.9941%" y="479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="31.7718%" y="453" width="0.0554%" height="15" fill="rgb(244,48,7)" fg:x="8030" fg:w="14"/><text x="32.0218%" y="463.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.06%)</title><rect x="31.7718%" y="437" width="0.0554%" height="15" fill="rgb(244,217,54)" fg:x="8030" fg:w="14"/><text x="32.0218%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="31.7718%" y="421" width="0.0554%" height="15" fill="rgb(224,15,18)" fg:x="8030" fg:w="14"/><text x="32.0218%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="31.7718%" y="405" width="0.0554%" height="15" fill="rgb(244,99,12)" fg:x="8030" fg:w="14"/><text x="32.0218%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="31.7718%" y="389" width="0.0554%" height="15" fill="rgb(233,226,8)" fg:x="8030" fg:w="14"/><text x="32.0218%" y="399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="31.8034%" y="373" width="0.0237%" height="15" fill="rgb(229,211,3)" fg:x="8038" fg:w="6"/><text x="32.0534%" y="383.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="31.8034%" y="357" width="0.0237%" height="15" fill="rgb(216,140,21)" fg:x="8038" fg:w="6"/><text x="32.0534%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.8034%" y="341" width="0.0237%" height="15" fill="rgb(234,122,30)" fg:x="8038" fg:w="6"/><text x="32.0534%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="31.8034%" y="325" width="0.0237%" height="15" fill="rgb(236,25,46)" fg:x="8038" fg:w="6"/><text x="32.0534%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="31.8034%" y="309" width="0.0237%" height="15" fill="rgb(217,52,54)" fg:x="8038" fg:w="6"/><text x="32.0534%" y="319.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (40 samples, 0.16%)</title><rect x="31.6768%" y="709" width="0.1583%" height="15" fill="rgb(222,29,26)" fg:x="8006" fg:w="40"/><text x="31.9268%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.16%)</title><rect x="31.6768%" y="693" width="0.1583%" height="15" fill="rgb(216,177,29)" fg:x="8006" fg:w="40"/><text x="31.9268%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.16%)</title><rect x="31.6768%" y="677" width="0.1583%" height="15" fill="rgb(247,136,51)" fg:x="8006" fg:w="40"/><text x="31.9268%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.16%)</title><rect x="31.6768%" y="661" width="0.1583%" height="15" fill="rgb(231,47,47)" fg:x="8006" fg:w="40"/><text x="31.9268%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.8430%" y="437" width="0.0119%" height="15" fill="rgb(211,192,36)" fg:x="8048" fg:w="3"/><text x="32.0930%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.8430%" y="485" width="0.0237%" height="15" fill="rgb(229,156,32)" fg:x="8048" fg:w="6"/><text x="32.0930%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="31.8430%" y="469" width="0.0237%" height="15" fill="rgb(248,213,20)" fg:x="8048" fg:w="6"/><text x="32.0930%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="31.8430%" y="453" width="0.0237%" height="15" fill="rgb(217,64,7)" fg:x="8048" fg:w="6"/><text x="32.0930%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.8549%" y="437" width="0.0119%" height="15" fill="rgb(232,142,8)" fg:x="8051" fg:w="3"/><text x="32.1049%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.8549%" y="421" width="0.0119%" height="15" fill="rgb(224,92,44)" fg:x="8051" fg:w="3"/><text x="32.1049%" y="431.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="31.8549%" y="405" width="0.0119%" height="15" fill="rgb(214,169,17)" fg:x="8051" fg:w="3"/><text x="32.1049%" y="415.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.8549%" y="389" width="0.0119%" height="15" fill="rgb(210,59,37)" fg:x="8051" fg:w="3"/><text x="32.1049%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="31.8430%" y="533" width="0.0396%" height="15" fill="rgb(214,116,48)" fg:x="8048" fg:w="10"/><text x="32.0930%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="31.8430%" y="517" width="0.0396%" height="15" fill="rgb(244,191,6)" fg:x="8048" fg:w="10"/><text x="32.0930%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="31.8430%" y="501" width="0.0396%" height="15" fill="rgb(241,50,52)" fg:x="8048" fg:w="10"/><text x="32.0930%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.8667%" y="485" width="0.0158%" height="15" fill="rgb(236,75,39)" fg:x="8054" fg:w="4"/><text x="32.1167%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.8667%" y="469" width="0.0158%" height="15" fill="rgb(236,99,0)" fg:x="8054" fg:w="4"/><text x="32.1167%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.8667%" y="453" width="0.0158%" height="15" fill="rgb(207,202,15)" fg:x="8054" fg:w="4"/><text x="32.1167%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.8667%" y="437" width="0.0158%" height="15" fill="rgb(233,207,14)" fg:x="8054" fg:w="4"/><text x="32.1167%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="31.8351%" y="581" width="0.0712%" height="15" fill="rgb(226,27,51)" fg:x="8046" fg:w="18"/><text x="32.0851%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="31.8430%" y="565" width="0.0633%" height="15" fill="rgb(206,104,42)" fg:x="8048" fg:w="16"/><text x="32.0930%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="31.8430%" y="549" width="0.0633%" height="15" fill="rgb(212,225,4)" fg:x="8048" fg:w="16"/><text x="32.0930%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="31.8826%" y="533" width="0.0237%" height="15" fill="rgb(233,96,42)" fg:x="8058" fg:w="6"/><text x="32.1326%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="31.8826%" y="517" width="0.0237%" height="15" fill="rgb(229,21,32)" fg:x="8058" fg:w="6"/><text x="32.1326%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="31.8826%" y="501" width="0.0237%" height="15" fill="rgb(226,216,24)" fg:x="8058" fg:w="6"/><text x="32.1326%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.8944%" y="485" width="0.0119%" height="15" fill="rgb(221,163,17)" fg:x="8061" fg:w="3"/><text x="32.1444%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.8944%" y="469" width="0.0119%" height="15" fill="rgb(216,216,42)" fg:x="8061" fg:w="3"/><text x="32.1444%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.8944%" y="453" width="0.0119%" height="15" fill="rgb(240,118,7)" fg:x="8061" fg:w="3"/><text x="32.1444%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.08%)</title><rect x="31.8351%" y="629" width="0.0791%" height="15" fill="rgb(221,67,37)" fg:x="8046" fg:w="20"/><text x="32.0851%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="31.8351%" y="613" width="0.0791%" height="15" fill="rgb(241,32,44)" fg:x="8046" fg:w="20"/><text x="32.0851%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="31.8351%" y="597" width="0.0791%" height="15" fill="rgb(235,204,43)" fg:x="8046" fg:w="20"/><text x="32.0851%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (330 samples, 1.31%)</title><rect x="30.6244%" y="853" width="1.3057%" height="15" fill="rgb(213,116,10)" fg:x="7740" fg:w="330"/><text x="30.8744%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (330 samples, 1.31%)</title><rect x="30.6244%" y="837" width="1.3057%" height="15" fill="rgb(239,15,48)" fg:x="7740" fg:w="330"/><text x="30.8744%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (317 samples, 1.25%)</title><rect x="30.6758%" y="821" width="1.2543%" height="15" fill="rgb(207,123,36)" fg:x="7753" fg:w="317"/><text x="30.9258%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (317 samples, 1.25%)</title><rect x="30.6758%" y="805" width="1.2543%" height="15" fill="rgb(209,103,30)" fg:x="7753" fg:w="317"/><text x="30.9258%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (116 samples, 0.46%)</title><rect x="31.4711%" y="789" width="0.4590%" height="15" fill="rgb(238,100,19)" fg:x="7954" fg:w="116"/><text x="31.7211%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (116 samples, 0.46%)</title><rect x="31.4711%" y="773" width="0.4590%" height="15" fill="rgb(244,30,14)" fg:x="7954" fg:w="116"/><text x="31.7211%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (116 samples, 0.46%)</title><rect x="31.4711%" y="757" width="0.4590%" height="15" fill="rgb(249,174,6)" fg:x="7954" fg:w="116"/><text x="31.7211%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (116 samples, 0.46%)</title><rect x="31.4711%" y="741" width="0.4590%" height="15" fill="rgb(235,213,41)" fg:x="7954" fg:w="116"/><text x="31.7211%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (116 samples, 0.46%)</title><rect x="31.4711%" y="725" width="0.4590%" height="15" fill="rgb(213,118,6)" fg:x="7954" fg:w="116"/><text x="31.7211%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.09%)</title><rect x="31.8351%" y="709" width="0.0950%" height="15" fill="rgb(235,44,51)" fg:x="8046" fg:w="24"/><text x="32.0851%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (24 samples, 0.09%)</title><rect x="31.8351%" y="693" width="0.0950%" height="15" fill="rgb(217,9,53)" fg:x="8046" fg:w="24"/><text x="32.0851%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="31.8351%" y="677" width="0.0950%" height="15" fill="rgb(237,172,34)" fg:x="8046" fg:w="24"/><text x="32.0851%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="31.8351%" y="661" width="0.0950%" height="15" fill="rgb(206,206,11)" fg:x="8046" fg:w="24"/><text x="32.0851%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="31.8351%" y="645" width="0.0950%" height="15" fill="rgb(214,149,29)" fg:x="8046" fg:w="24"/><text x="32.0851%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.9142%" y="629" width="0.0158%" height="15" fill="rgb(208,123,3)" fg:x="8066" fg:w="4"/><text x="32.1642%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.9142%" y="613" width="0.0158%" height="15" fill="rgb(229,126,4)" fg:x="8066" fg:w="4"/><text x="32.1642%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.9142%" y="597" width="0.0158%" height="15" fill="rgb(222,92,36)" fg:x="8066" fg:w="4"/><text x="32.1642%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.9142%" y="581" width="0.0158%" height="15" fill="rgb(216,39,41)" fg:x="8066" fg:w="4"/><text x="32.1642%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3,786 samples, 14.98%)</title><rect x="16.9700%" y="917" width="14.9798%" height="15" fill="rgb(253,127,28)" fg:x="4289" fg:w="3786"/><text x="17.2200%" y="927.50">rayon::iter::plumbing::..</text></g><g><title>rayon_core::registry::in_worker (3,746 samples, 14.82%)</title><rect x="17.1283%" y="901" width="14.8216%" height="15" fill="rgb(249,152,51)" fg:x="4329" fg:w="3746"/><text x="17.3783%" y="911.50">rayon_core::registry::i..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3,746 samples, 14.82%)</title><rect x="17.1283%" y="885" width="14.8216%" height="15" fill="rgb(209,123,42)" fg:x="4329" fg:w="3746"/><text x="17.3783%" y="895.50">_ZN10rayon_core4join12j..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (335 samples, 1.33%)</title><rect x="30.6244%" y="869" width="1.3255%" height="15" fill="rgb(241,118,22)" fg:x="7740" fg:w="335"/><text x="30.8744%" y="879.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="31.9300%" y="853" width="0.0198%" height="15" fill="rgb(208,25,7)" fg:x="8070" fg:w="5"/><text x="32.1800%" y="863.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="31.9300%" y="837" width="0.0198%" height="15" fill="rgb(243,144,39)" fg:x="8070" fg:w="5"/><text x="32.1800%" y="847.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="31.9300%" y="821" width="0.0198%" height="15" fill="rgb(250,50,5)" fg:x="8070" fg:w="5"/><text x="32.1800%" y="831.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="31.9300%" y="805" width="0.0198%" height="15" fill="rgb(207,67,11)" fg:x="8070" fg:w="5"/><text x="32.1800%" y="815.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="31.9300%" y="789" width="0.0198%" height="15" fill="rgb(245,204,40)" fg:x="8070" fg:w="5"/><text x="32.1800%" y="799.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="32.0092%" y="885" width="0.0673%" height="15" fill="rgb(238,228,24)" fg:x="8090" fg:w="17"/><text x="32.2592%" y="895.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="32.0210%" y="869" width="0.0554%" height="15" fill="rgb(217,116,22)" fg:x="8093" fg:w="14"/><text x="32.2710%" y="879.50"></text></g><g><title>exp (35 samples, 0.14%)</title><rect x="32.1991%" y="837" width="0.1385%" height="15" fill="rgb(234,98,12)" fg:x="8138" fg:w="35"/><text x="32.4491%" y="847.50"></text></g><g><title>[libm.so.6] (31 samples, 0.12%)</title><rect x="32.2149%" y="821" width="0.1227%" height="15" fill="rgb(242,170,50)" fg:x="8142" fg:w="31"/><text x="32.4649%" y="831.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="32.4563%" y="789" width="0.0673%" height="15" fill="rgb(235,7,5)" fg:x="8203" fg:w="17"/><text x="32.7063%" y="799.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="32.4642%" y="773" width="0.0593%" height="15" fill="rgb(241,114,28)" fg:x="8205" fg:w="15"/><text x="32.7142%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (166 samples, 0.66%)</title><rect x="32.5235%" y="757" width="0.6568%" height="15" fill="rgb(246,112,42)" fg:x="8220" fg:w="166"/><text x="32.7735%" y="767.50"></text></g><g><title>exp (80 samples, 0.32%)</title><rect x="32.8638%" y="741" width="0.3165%" height="15" fill="rgb(248,228,14)" fg:x="8306" fg:w="80"/><text x="33.1138%" y="751.50"></text></g><g><title>[libm.so.6] (64 samples, 0.25%)</title><rect x="32.9271%" y="725" width="0.2532%" height="15" fill="rgb(208,133,18)" fg:x="8322" fg:w="64"/><text x="33.1771%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (370 samples, 1.46%)</title><rect x="32.3376%" y="805" width="1.4640%" height="15" fill="rgb(207,35,49)" fg:x="8173" fg:w="370"/><text x="32.5876%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (323 samples, 1.28%)</title><rect x="32.5235%" y="789" width="1.2780%" height="15" fill="rgb(205,68,36)" fg:x="8220" fg:w="323"/><text x="32.7735%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (323 samples, 1.28%)</title><rect x="32.5235%" y="773" width="1.2780%" height="15" fill="rgb(245,62,40)" fg:x="8220" fg:w="323"/><text x="32.7735%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (157 samples, 0.62%)</title><rect x="33.1803%" y="757" width="0.6212%" height="15" fill="rgb(228,27,24)" fg:x="8386" fg:w="157"/><text x="33.4303%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (157 samples, 0.62%)</title><rect x="33.1803%" y="741" width="0.6212%" height="15" fill="rgb(253,19,12)" fg:x="8386" fg:w="157"/><text x="33.4303%" y="751.50"></text></g><g><title>exp (67 samples, 0.27%)</title><rect x="33.5364%" y="725" width="0.2651%" height="15" fill="rgb(232,28,20)" fg:x="8476" fg:w="67"/><text x="33.7864%" y="735.50"></text></g><g><title>[libm.so.6] (51 samples, 0.20%)</title><rect x="33.5997%" y="709" width="0.2018%" height="15" fill="rgb(218,35,51)" fg:x="8492" fg:w="51"/><text x="33.8497%" y="719.50"></text></g><g><title>exp (25 samples, 0.10%)</title><rect x="33.9044%" y="773" width="0.0989%" height="15" fill="rgb(212,90,40)" fg:x="8569" fg:w="25"/><text x="34.1544%" y="783.50"></text></g><g><title>[libm.so.6] (23 samples, 0.09%)</title><rect x="33.9123%" y="757" width="0.0910%" height="15" fill="rgb(220,172,12)" fg:x="8571" fg:w="23"/><text x="34.1623%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (177 samples, 0.70%)</title><rect x="34.0033%" y="741" width="0.7003%" height="15" fill="rgb(226,159,20)" fg:x="8594" fg:w="177"/><text x="34.2533%" y="751.50"></text></g><g><title>exp (75 samples, 0.30%)</title><rect x="34.4069%" y="725" width="0.2967%" height="15" fill="rgb(234,205,16)" fg:x="8696" fg:w="75"/><text x="34.6569%" y="735.50"></text></g><g><title>[libm.so.6] (59 samples, 0.23%)</title><rect x="34.4702%" y="709" width="0.2334%" height="15" fill="rgb(207,9,39)" fg:x="8712" fg:w="59"/><text x="34.7202%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (157 samples, 0.62%)</title><rect x="34.7036%" y="741" width="0.6212%" height="15" fill="rgb(249,143,15)" fg:x="8771" fg:w="157"/><text x="34.9536%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (157 samples, 0.62%)</title><rect x="34.7036%" y="725" width="0.6212%" height="15" fill="rgb(253,133,29)" fg:x="8771" fg:w="157"/><text x="34.9536%" y="735.50"></text></g><g><title>exp (78 samples, 0.31%)</title><rect x="35.0162%" y="709" width="0.3086%" height="15" fill="rgb(221,187,0)" fg:x="8850" fg:w="78"/><text x="35.2662%" y="719.50"></text></g><g><title>[libm.so.6] (62 samples, 0.25%)</title><rect x="35.0795%" y="693" width="0.2453%" height="15" fill="rgb(205,204,26)" fg:x="8866" fg:w="62"/><text x="35.3295%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.3328%" y="469" width="0.0119%" height="15" fill="rgb(224,68,54)" fg:x="8930" fg:w="3"/><text x="35.5828%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.3328%" y="517" width="0.0277%" height="15" fill="rgb(209,67,4)" fg:x="8930" fg:w="7"/><text x="35.5828%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="35.3328%" y="501" width="0.0277%" height="15" fill="rgb(228,229,18)" fg:x="8930" fg:w="7"/><text x="35.5828%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="35.3328%" y="485" width="0.0277%" height="15" fill="rgb(231,89,13)" fg:x="8930" fg:w="7"/><text x="35.5828%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="35.3446%" y="469" width="0.0158%" height="15" fill="rgb(210,182,18)" fg:x="8933" fg:w="4"/><text x="35.5946%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.3446%" y="453" width="0.0158%" height="15" fill="rgb(240,105,2)" fg:x="8933" fg:w="4"/><text x="35.5946%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.3604%" y="453" width="0.0198%" height="15" fill="rgb(207,170,50)" fg:x="8937" fg:w="5"/><text x="35.6104%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="35.3328%" y="565" width="0.0633%" height="15" fill="rgb(232,133,24)" fg:x="8930" fg:w="16"/><text x="35.5828%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="35.3328%" y="549" width="0.0633%" height="15" fill="rgb(235,166,27)" fg:x="8930" fg:w="16"/><text x="35.5828%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="35.3328%" y="533" width="0.0633%" height="15" fill="rgb(209,19,13)" fg:x="8930" fg:w="16"/><text x="35.5828%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="35.3604%" y="517" width="0.0356%" height="15" fill="rgb(226,79,39)" fg:x="8937" fg:w="9"/><text x="35.6104%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.3604%" y="501" width="0.0356%" height="15" fill="rgb(222,163,10)" fg:x="8937" fg:w="9"/><text x="35.6104%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="35.3604%" y="485" width="0.0356%" height="15" fill="rgb(214,44,19)" fg:x="8937" fg:w="9"/><text x="35.6104%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="35.3604%" y="469" width="0.0356%" height="15" fill="rgb(210,217,13)" fg:x="8937" fg:w="9"/><text x="35.6104%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="35.3802%" y="453" width="0.0158%" height="15" fill="rgb(237,61,54)" fg:x="8942" fg:w="4"/><text x="35.6302%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.3802%" y="437" width="0.0158%" height="15" fill="rgb(226,184,24)" fg:x="8942" fg:w="4"/><text x="35.6302%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.3961%" y="453" width="0.0198%" height="15" fill="rgb(223,226,4)" fg:x="8946" fg:w="5"/><text x="35.6461%" y="463.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="35.3961%" y="437" width="0.0198%" height="15" fill="rgb(210,26,41)" fg:x="8946" fg:w="5"/><text x="35.6461%" y="447.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.4040%" y="421" width="0.0119%" height="15" fill="rgb(220,221,6)" fg:x="8948" fg:w="3"/><text x="35.6540%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="35.3961%" y="501" width="0.0396%" height="15" fill="rgb(225,89,49)" fg:x="8946" fg:w="10"/><text x="35.6461%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="35.3961%" y="485" width="0.0396%" height="15" fill="rgb(218,70,45)" fg:x="8946" fg:w="10"/><text x="35.6461%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="35.3961%" y="469" width="0.0396%" height="15" fill="rgb(238,166,21)" fg:x="8946" fg:w="10"/><text x="35.6461%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="35.4158%" y="453" width="0.0198%" height="15" fill="rgb(224,141,44)" fg:x="8951" fg:w="5"/><text x="35.6658%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.4158%" y="437" width="0.0198%" height="15" fill="rgb(230,12,49)" fg:x="8951" fg:w="5"/><text x="35.6658%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.4356%" y="437" width="0.0158%" height="15" fill="rgb(212,174,12)" fg:x="8956" fg:w="4"/><text x="35.6856%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.15%)</title><rect x="35.3248%" y="613" width="0.1464%" height="15" fill="rgb(246,67,9)" fg:x="8928" fg:w="37"/><text x="35.5748%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.14%)</title><rect x="35.3328%" y="597" width="0.1385%" height="15" fill="rgb(239,35,23)" fg:x="8930" fg:w="35"/><text x="35.5828%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (35 samples, 0.14%)</title><rect x="35.3328%" y="581" width="0.1385%" height="15" fill="rgb(211,167,0)" fg:x="8930" fg:w="35"/><text x="35.5828%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.08%)</title><rect x="35.3961%" y="565" width="0.0752%" height="15" fill="rgb(225,119,45)" fg:x="8946" fg:w="19"/><text x="35.6461%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="35.3961%" y="549" width="0.0752%" height="15" fill="rgb(210,162,6)" fg:x="8946" fg:w="19"/><text x="35.6461%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="35.3961%" y="533" width="0.0752%" height="15" fill="rgb(208,118,35)" fg:x="8946" fg:w="19"/><text x="35.6461%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="35.3961%" y="517" width="0.0752%" height="15" fill="rgb(239,4,53)" fg:x="8946" fg:w="19"/><text x="35.6461%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="35.4356%" y="501" width="0.0356%" height="15" fill="rgb(213,130,21)" fg:x="8956" fg:w="9"/><text x="35.6856%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.4356%" y="485" width="0.0356%" height="15" fill="rgb(235,148,0)" fg:x="8956" fg:w="9"/><text x="35.6856%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="35.4356%" y="469" width="0.0356%" height="15" fill="rgb(244,224,18)" fg:x="8956" fg:w="9"/><text x="35.6856%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="35.4356%" y="453" width="0.0356%" height="15" fill="rgb(211,214,4)" fg:x="8956" fg:w="9"/><text x="35.6856%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="35.4515%" y="437" width="0.0198%" height="15" fill="rgb(206,119,25)" fg:x="8960" fg:w="5"/><text x="35.7015%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.4515%" y="421" width="0.0198%" height="15" fill="rgb(243,93,47)" fg:x="8960" fg:w="5"/><text x="35.7015%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.4712%" y="613" width="0.0119%" height="15" fill="rgb(224,194,6)" fg:x="8965" fg:w="3"/><text x="35.7212%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.4712%" y="597" width="0.0119%" height="15" fill="rgb(243,229,6)" fg:x="8965" fg:w="3"/><text x="35.7212%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.4831%" y="437" width="0.0198%" height="15" fill="rgb(207,23,50)" fg:x="8968" fg:w="5"/><text x="35.7331%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.4831%" y="421" width="0.0198%" height="15" fill="rgb(253,192,32)" fg:x="8968" fg:w="5"/><text x="35.7331%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.4831%" y="405" width="0.0198%" height="15" fill="rgb(213,21,6)" fg:x="8968" fg:w="5"/><text x="35.7331%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.4910%" y="389" width="0.0119%" height="15" fill="rgb(243,151,13)" fg:x="8970" fg:w="3"/><text x="35.7410%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.4910%" y="373" width="0.0119%" height="15" fill="rgb(233,165,41)" fg:x="8970" fg:w="3"/><text x="35.7410%" y="383.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.4910%" y="357" width="0.0119%" height="15" fill="rgb(246,176,45)" fg:x="8970" fg:w="3"/><text x="35.7410%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.4831%" y="485" width="0.0356%" height="15" fill="rgb(217,170,52)" fg:x="8968" fg:w="9"/><text x="35.7331%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="35.4831%" y="469" width="0.0356%" height="15" fill="rgb(214,203,54)" fg:x="8968" fg:w="9"/><text x="35.7331%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="35.4831%" y="453" width="0.0356%" height="15" fill="rgb(248,215,49)" fg:x="8968" fg:w="9"/><text x="35.7331%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="35.5029%" y="437" width="0.0158%" height="15" fill="rgb(208,46,10)" fg:x="8973" fg:w="4"/><text x="35.7529%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.5029%" y="421" width="0.0158%" height="15" fill="rgb(254,5,31)" fg:x="8973" fg:w="4"/><text x="35.7529%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.5029%" y="405" width="0.0158%" height="15" fill="rgb(222,104,33)" fg:x="8973" fg:w="4"/><text x="35.7529%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="35.5029%" y="389" width="0.0158%" height="15" fill="rgb(248,49,16)" fg:x="8973" fg:w="4"/><text x="35.7529%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5187%" y="357" width="0.0119%" height="15" fill="rgb(232,198,41)" fg:x="8977" fg:w="3"/><text x="35.7687%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.5187%" y="405" width="0.0198%" height="15" fill="rgb(214,125,3)" fg:x="8977" fg:w="5"/><text x="35.7687%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5187%" y="389" width="0.0198%" height="15" fill="rgb(229,220,28)" fg:x="8977" fg:w="5"/><text x="35.7687%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.5187%" y="373" width="0.0198%" height="15" fill="rgb(222,64,37)" fg:x="8977" fg:w="5"/><text x="35.7687%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5385%" y="325" width="0.0119%" height="15" fill="rgb(249,184,13)" fg:x="8982" fg:w="3"/><text x="35.7885%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="35.4831%" y="533" width="0.0752%" height="15" fill="rgb(252,176,6)" fg:x="8968" fg:w="19"/><text x="35.7331%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="35.4831%" y="517" width="0.0752%" height="15" fill="rgb(228,153,7)" fg:x="8968" fg:w="19"/><text x="35.7331%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="35.4831%" y="501" width="0.0752%" height="15" fill="rgb(242,193,5)" fg:x="8968" fg:w="19"/><text x="35.7331%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="35.5187%" y="485" width="0.0396%" height="15" fill="rgb(232,140,9)" fg:x="8977" fg:w="10"/><text x="35.7687%" y="495.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="35.5187%" y="469" width="0.0396%" height="15" fill="rgb(213,222,16)" fg:x="8977" fg:w="10"/><text x="35.7687%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="35.5187%" y="453" width="0.0396%" height="15" fill="rgb(222,75,50)" fg:x="8977" fg:w="10"/><text x="35.7687%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="35.5187%" y="437" width="0.0396%" height="15" fill="rgb(205,180,2)" fg:x="8977" fg:w="10"/><text x="35.7687%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="35.5187%" y="421" width="0.0396%" height="15" fill="rgb(216,34,7)" fg:x="8977" fg:w="10"/><text x="35.7687%" y="431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="35.5385%" y="405" width="0.0198%" height="15" fill="rgb(253,16,32)" fg:x="8982" fg:w="5"/><text x="35.7885%" y="415.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="35.5385%" y="389" width="0.0198%" height="15" fill="rgb(208,97,28)" fg:x="8982" fg:w="5"/><text x="35.7885%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.5385%" y="373" width="0.0198%" height="15" fill="rgb(225,92,11)" fg:x="8982" fg:w="5"/><text x="35.7885%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5385%" y="357" width="0.0198%" height="15" fill="rgb(243,38,12)" fg:x="8982" fg:w="5"/><text x="35.7885%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.5385%" y="341" width="0.0198%" height="15" fill="rgb(208,139,16)" fg:x="8982" fg:w="5"/><text x="35.7885%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5583%" y="357" width="0.0119%" height="15" fill="rgb(227,24,9)" fg:x="8987" fg:w="3"/><text x="35.8083%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="35.5583%" y="405" width="0.0237%" height="15" fill="rgb(206,62,11)" fg:x="8987" fg:w="6"/><text x="35.8083%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="35.5583%" y="389" width="0.0237%" height="15" fill="rgb(228,134,27)" fg:x="8987" fg:w="6"/><text x="35.8083%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="35.5583%" y="373" width="0.0237%" height="15" fill="rgb(205,55,33)" fg:x="8987" fg:w="6"/><text x="35.8083%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.5702%" y="357" width="0.0119%" height="15" fill="rgb(243,75,43)" fg:x="8990" fg:w="3"/><text x="35.8202%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5702%" y="341" width="0.0119%" height="15" fill="rgb(223,27,42)" fg:x="8990" fg:w="3"/><text x="35.8202%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5820%" y="325" width="0.0119%" height="15" fill="rgb(232,189,33)" fg:x="8993" fg:w="3"/><text x="35.8320%" y="335.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.5820%" y="309" width="0.0119%" height="15" fill="rgb(210,9,39)" fg:x="8993" fg:w="3"/><text x="35.8320%" y="319.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.5820%" y="293" width="0.0119%" height="15" fill="rgb(242,85,26)" fg:x="8993" fg:w="3"/><text x="35.8320%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (71 samples, 0.28%)</title><rect x="35.3248%" y="661" width="0.2809%" height="15" fill="rgb(248,44,4)" fg:x="8928" fg:w="71"/><text x="35.5748%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (71 samples, 0.28%)</title><rect x="35.3248%" y="645" width="0.2809%" height="15" fill="rgb(250,96,46)" fg:x="8928" fg:w="71"/><text x="35.5748%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (71 samples, 0.28%)</title><rect x="35.3248%" y="629" width="0.2809%" height="15" fill="rgb(229,116,26)" fg:x="8928" fg:w="71"/><text x="35.5748%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.12%)</title><rect x="35.4831%" y="613" width="0.1227%" height="15" fill="rgb(246,94,34)" fg:x="8968" fg:w="31"/><text x="35.7331%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.12%)</title><rect x="35.4831%" y="597" width="0.1227%" height="15" fill="rgb(251,73,21)" fg:x="8968" fg:w="31"/><text x="35.7331%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="35.4831%" y="581" width="0.1227%" height="15" fill="rgb(254,121,25)" fg:x="8968" fg:w="31"/><text x="35.7331%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="35.4831%" y="565" width="0.1227%" height="15" fill="rgb(215,161,49)" fg:x="8968" fg:w="31"/><text x="35.7331%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="35.4831%" y="549" width="0.1227%" height="15" fill="rgb(221,43,13)" fg:x="8968" fg:w="31"/><text x="35.7331%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="35.5583%" y="533" width="0.0475%" height="15" fill="rgb(249,5,37)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="35.5583%" y="517" width="0.0475%" height="15" fill="rgb(226,25,44)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="35.5583%" y="501" width="0.0475%" height="15" fill="rgb(238,189,16)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="35.5583%" y="485" width="0.0475%" height="15" fill="rgb(251,186,8)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="35.5583%" y="469" width="0.0475%" height="15" fill="rgb(254,34,31)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="35.5583%" y="453" width="0.0475%" height="15" fill="rgb(225,215,27)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="35.5583%" y="437" width="0.0475%" height="15" fill="rgb(221,192,48)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="35.5583%" y="421" width="0.0475%" height="15" fill="rgb(219,137,20)" fg:x="8987" fg:w="12"/><text x="35.8083%" y="431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="35.5820%" y="405" width="0.0237%" height="15" fill="rgb(219,84,11)" fg:x="8993" fg:w="6"/><text x="35.8320%" y="415.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="35.5820%" y="389" width="0.0237%" height="15" fill="rgb(224,10,23)" fg:x="8993" fg:w="6"/><text x="35.8320%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="35.5820%" y="373" width="0.0237%" height="15" fill="rgb(248,22,39)" fg:x="8993" fg:w="6"/><text x="35.8320%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="35.5820%" y="357" width="0.0237%" height="15" fill="rgb(212,154,20)" fg:x="8993" fg:w="6"/><text x="35.8320%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="35.5820%" y="341" width="0.0237%" height="15" fill="rgb(236,199,50)" fg:x="8993" fg:w="6"/><text x="35.8320%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="35.5939%" y="325" width="0.0119%" height="15" fill="rgb(211,9,17)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="335.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="35.5939%" y="309" width="0.0119%" height="15" fill="rgb(243,216,36)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5939%" y="293" width="0.0119%" height="15" fill="rgb(250,2,10)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.5939%" y="277" width="0.0119%" height="15" fill="rgb(226,50,48)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="287.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.5939%" y="261" width="0.0119%" height="15" fill="rgb(243,81,16)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5939%" y="245" width="0.0119%" height="15" fill="rgb(250,14,2)" fg:x="8996" fg:w="3"/><text x="35.8439%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6058%" y="581" width="0.0119%" height="15" fill="rgb(233,135,29)" fg:x="8999" fg:w="3"/><text x="35.8558%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6295%" y="325" width="0.0119%" height="15" fill="rgb(224,64,43)" fg:x="9005" fg:w="3"/><text x="35.8795%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="35.6295%" y="373" width="0.0237%" height="15" fill="rgb(238,84,13)" fg:x="9005" fg:w="6"/><text x="35.8795%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="35.6295%" y="357" width="0.0237%" height="15" fill="rgb(253,48,26)" fg:x="9005" fg:w="6"/><text x="35.8795%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="35.6295%" y="341" width="0.0237%" height="15" fill="rgb(205,223,31)" fg:x="9005" fg:w="6"/><text x="35.8795%" y="351.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.6414%" y="325" width="0.0119%" height="15" fill="rgb(221,41,32)" fg:x="9008" fg:w="3"/><text x="35.8914%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6414%" y="309" width="0.0119%" height="15" fill="rgb(213,158,31)" fg:x="9008" fg:w="3"/><text x="35.8914%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (909 samples, 3.60%)</title><rect x="32.0764%" y="853" width="3.5966%" height="15" fill="rgb(245,126,43)" fg:x="8107" fg:w="909"/><text x="32.3264%" y="863.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (843 samples, 3.34%)</title><rect x="32.3376%" y="837" width="3.3354%" height="15" fill="rgb(227,7,22)" fg:x="8173" fg:w="843"/><text x="32.5876%" y="847.50">ray..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (843 samples, 3.34%)</title><rect x="32.3376%" y="821" width="3.3354%" height="15" fill="rgb(252,90,44)" fg:x="8173" fg:w="843"/><text x="32.5876%" y="831.50">_ZN..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (473 samples, 1.87%)</title><rect x="33.8015%" y="805" width="1.8715%" height="15" fill="rgb(253,91,0)" fg:x="8543" fg:w="473"/><text x="34.0515%" y="815.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (473 samples, 1.87%)</title><rect x="33.8015%" y="789" width="1.8715%" height="15" fill="rgb(252,175,49)" fg:x="8543" fg:w="473"/><text x="34.0515%" y="799.50">r..</text></g><g><title>rayon_core::registry::in_worker (422 samples, 1.67%)</title><rect x="34.0033%" y="773" width="1.6697%" height="15" fill="rgb(246,150,1)" fg:x="8594" fg:w="422"/><text x="34.2533%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (422 samples, 1.67%)</title><rect x="34.0033%" y="757" width="1.6697%" height="15" fill="rgb(241,192,25)" fg:x="8594" fg:w="422"/><text x="34.2533%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (88 samples, 0.35%)</title><rect x="35.3248%" y="741" width="0.3482%" height="15" fill="rgb(239,187,11)" fg:x="8928" fg:w="88"/><text x="35.5748%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (88 samples, 0.35%)</title><rect x="35.3248%" y="725" width="0.3482%" height="15" fill="rgb(218,202,51)" fg:x="8928" fg:w="88"/><text x="35.5748%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (88 samples, 0.35%)</title><rect x="35.3248%" y="709" width="0.3482%" height="15" fill="rgb(225,176,8)" fg:x="8928" fg:w="88"/><text x="35.5748%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (88 samples, 0.35%)</title><rect x="35.3248%" y="693" width="0.3482%" height="15" fill="rgb(219,122,41)" fg:x="8928" fg:w="88"/><text x="35.5748%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (88 samples, 0.35%)</title><rect x="35.3248%" y="677" width="0.3482%" height="15" fill="rgb(248,140,20)" fg:x="8928" fg:w="88"/><text x="35.5748%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="35.6058%" y="661" width="0.0673%" height="15" fill="rgb(245,41,37)" fg:x="8999" fg:w="17"/><text x="35.8558%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.07%)</title><rect x="35.6058%" y="645" width="0.0673%" height="15" fill="rgb(235,82,39)" fg:x="8999" fg:w="17"/><text x="35.8558%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="35.6058%" y="629" width="0.0673%" height="15" fill="rgb(230,108,42)" fg:x="8999" fg:w="17"/><text x="35.8558%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="35.6058%" y="613" width="0.0673%" height="15" fill="rgb(215,150,50)" fg:x="8999" fg:w="17"/><text x="35.8558%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="35.6058%" y="597" width="0.0673%" height="15" fill="rgb(233,212,5)" fg:x="8999" fg:w="17"/><text x="35.8558%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="35.6255%" y="581" width="0.0475%" height="15" fill="rgb(245,80,22)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="35.6255%" y="565" width="0.0475%" height="15" fill="rgb(238,129,16)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="35.6255%" y="549" width="0.0475%" height="15" fill="rgb(240,19,0)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="35.6255%" y="533" width="0.0475%" height="15" fill="rgb(232,42,35)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="35.6255%" y="517" width="0.0475%" height="15" fill="rgb(223,130,24)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="35.6255%" y="501" width="0.0475%" height="15" fill="rgb(237,16,22)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="35.6255%" y="485" width="0.0475%" height="15" fill="rgb(248,192,20)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="35.6255%" y="469" width="0.0475%" height="15" fill="rgb(233,167,2)" fg:x="9004" fg:w="12"/><text x="35.8755%" y="479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.04%)</title><rect x="35.6295%" y="453" width="0.0435%" height="15" fill="rgb(252,71,44)" fg:x="9005" fg:w="11"/><text x="35.8795%" y="463.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="35.6295%" y="437" width="0.0435%" height="15" fill="rgb(238,37,47)" fg:x="9005" fg:w="11"/><text x="35.8795%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="35.6295%" y="421" width="0.0435%" height="15" fill="rgb(214,202,54)" fg:x="9005" fg:w="11"/><text x="35.8795%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="35.6295%" y="405" width="0.0435%" height="15" fill="rgb(254,165,40)" fg:x="9005" fg:w="11"/><text x="35.8795%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="35.6295%" y="389" width="0.0435%" height="15" fill="rgb(246,173,38)" fg:x="9005" fg:w="11"/><text x="35.8795%" y="399.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="35.6532%" y="373" width="0.0198%" height="15" fill="rgb(215,3,27)" fg:x="9011" fg:w="5"/><text x="35.9032%" y="383.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="35.6532%" y="357" width="0.0198%" height="15" fill="rgb(239,169,51)" fg:x="9011" fg:w="5"/><text x="35.9032%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.6532%" y="341" width="0.0198%" height="15" fill="rgb(212,5,25)" fg:x="9011" fg:w="5"/><text x="35.9032%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.6532%" y="325" width="0.0198%" height="15" fill="rgb(243,45,17)" fg:x="9011" fg:w="5"/><text x="35.9032%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.6532%" y="309" width="0.0198%" height="15" fill="rgb(242,97,9)" fg:x="9011" fg:w="5"/><text x="35.9032%" y="319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="35.6612%" y="293" width="0.0119%" height="15" fill="rgb(228,71,31)" fg:x="9013" fg:w="3"/><text x="35.9112%" y="303.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="35.6612%" y="277" width="0.0119%" height="15" fill="rgb(252,184,16)" fg:x="9013" fg:w="3"/><text x="35.9112%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6612%" y="261" width="0.0119%" height="15" fill="rgb(236,169,46)" fg:x="9013" fg:w="3"/><text x="35.9112%" y="271.50"></text></g><g><title>exp (33 samples, 0.13%)</title><rect x="35.8036%" y="821" width="0.1306%" height="15" fill="rgb(207,17,47)" fg:x="9049" fg:w="33"/><text x="36.0536%" y="831.50"></text></g><g><title>[libm.so.6] (27 samples, 0.11%)</title><rect x="35.8273%" y="805" width="0.1068%" height="15" fill="rgb(206,201,28)" fg:x="9055" fg:w="27"/><text x="36.0773%" y="815.50"></text></g><g><title>exp (18 samples, 0.07%)</title><rect x="36.0212%" y="773" width="0.0712%" height="15" fill="rgb(224,184,23)" fg:x="9104" fg:w="18"/><text x="36.2712%" y="783.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="36.0370%" y="757" width="0.0554%" height="15" fill="rgb(208,139,48)" fg:x="9108" fg:w="14"/><text x="36.2870%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (127 samples, 0.50%)</title><rect x="36.0924%" y="741" width="0.5025%" height="15" fill="rgb(208,130,10)" fg:x="9122" fg:w="127"/><text x="36.3424%" y="751.50"></text></g><g><title>exp (55 samples, 0.22%)</title><rect x="36.3773%" y="725" width="0.2176%" height="15" fill="rgb(211,213,45)" fg:x="9194" fg:w="55"/><text x="36.6273%" y="735.50"></text></g><g><title>[libm.so.6] (50 samples, 0.20%)</title><rect x="36.3971%" y="709" width="0.1978%" height="15" fill="rgb(235,100,30)" fg:x="9199" fg:w="50"/><text x="36.6471%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (289 samples, 1.14%)</title><rect x="35.9342%" y="789" width="1.1435%" height="15" fill="rgb(206,144,31)" fg:x="9082" fg:w="289"/><text x="36.1842%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (249 samples, 0.99%)</title><rect x="36.0924%" y="773" width="0.9852%" height="15" fill="rgb(224,200,26)" fg:x="9122" fg:w="249"/><text x="36.3424%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (249 samples, 0.99%)</title><rect x="36.0924%" y="757" width="0.9852%" height="15" fill="rgb(247,104,53)" fg:x="9122" fg:w="249"/><text x="36.3424%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (122 samples, 0.48%)</title><rect x="36.5949%" y="741" width="0.4827%" height="15" fill="rgb(220,14,17)" fg:x="9249" fg:w="122"/><text x="36.8449%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (122 samples, 0.48%)</title><rect x="36.5949%" y="725" width="0.4827%" height="15" fill="rgb(230,140,40)" fg:x="9249" fg:w="122"/><text x="36.8449%" y="735.50"></text></g><g><title>exp (54 samples, 0.21%)</title><rect x="36.8640%" y="709" width="0.2137%" height="15" fill="rgb(229,2,41)" fg:x="9317" fg:w="54"/><text x="37.1140%" y="719.50"></text></g><g><title>[libm.so.6] (43 samples, 0.17%)</title><rect x="36.9075%" y="693" width="0.1701%" height="15" fill="rgb(232,89,16)" fg:x="9328" fg:w="43"/><text x="37.1575%" y="703.50"></text></g><g><title>exp (27 samples, 0.11%)</title><rect x="37.1370%" y="757" width="0.1068%" height="15" fill="rgb(247,59,52)" fg:x="9386" fg:w="27"/><text x="37.3870%" y="767.50"></text></g><g><title>[libm.so.6] (25 samples, 0.10%)</title><rect x="37.1449%" y="741" width="0.0989%" height="15" fill="rgb(226,110,21)" fg:x="9388" fg:w="25"/><text x="37.3949%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (88 samples, 0.35%)</title><rect x="37.2438%" y="725" width="0.3482%" height="15" fill="rgb(224,176,43)" fg:x="9413" fg:w="88"/><text x="37.4938%" y="735.50"></text></g><g><title>exp (40 samples, 0.16%)</title><rect x="37.4337%" y="709" width="0.1583%" height="15" fill="rgb(221,73,6)" fg:x="9461" fg:w="40"/><text x="37.6837%" y="719.50"></text></g><g><title>[libm.so.6] (35 samples, 0.14%)</title><rect x="37.4535%" y="693" width="0.1385%" height="15" fill="rgb(232,78,19)" fg:x="9466" fg:w="35"/><text x="37.7035%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (85 samples, 0.34%)</title><rect x="37.5920%" y="725" width="0.3363%" height="15" fill="rgb(233,112,48)" fg:x="9501" fg:w="85"/><text x="37.8420%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (85 samples, 0.34%)</title><rect x="37.5920%" y="709" width="0.3363%" height="15" fill="rgb(243,131,47)" fg:x="9501" fg:w="85"/><text x="37.8420%" y="719.50"></text></g><g><title>exp (42 samples, 0.17%)</title><rect x="37.7621%" y="693" width="0.1662%" height="15" fill="rgb(226,51,1)" fg:x="9544" fg:w="42"/><text x="38.0121%" y="703.50"></text></g><g><title>[libm.so.6] (37 samples, 0.15%)</title><rect x="37.7819%" y="677" width="0.1464%" height="15" fill="rgb(247,58,7)" fg:x="9549" fg:w="37"/><text x="38.0319%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.9283%" y="501" width="0.0198%" height="15" fill="rgb(209,7,32)" fg:x="9586" fg:w="5"/><text x="38.1783%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.9283%" y="485" width="0.0198%" height="15" fill="rgb(209,39,41)" fg:x="9586" fg:w="5"/><text x="38.1783%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.9283%" y="469" width="0.0198%" height="15" fill="rgb(226,182,46)" fg:x="9586" fg:w="5"/><text x="38.1783%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="37.9323%" y="453" width="0.0158%" height="15" fill="rgb(230,219,10)" fg:x="9587" fg:w="4"/><text x="38.1823%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="37.9323%" y="437" width="0.0158%" height="15" fill="rgb(227,175,30)" fg:x="9587" fg:w="4"/><text x="38.1823%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.9481%" y="437" width="0.0119%" height="15" fill="rgb(217,2,50)" fg:x="9591" fg:w="3"/><text x="38.1981%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="37.9283%" y="549" width="0.0435%" height="15" fill="rgb(229,160,0)" fg:x="9586" fg:w="11"/><text x="38.1783%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="37.9283%" y="533" width="0.0435%" height="15" fill="rgb(207,78,37)" fg:x="9586" fg:w="11"/><text x="38.1783%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="37.9283%" y="517" width="0.0435%" height="15" fill="rgb(225,57,0)" fg:x="9586" fg:w="11"/><text x="38.1783%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="37.9481%" y="501" width="0.0237%" height="15" fill="rgb(232,154,2)" fg:x="9591" fg:w="6"/><text x="38.1981%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="37.9481%" y="485" width="0.0237%" height="15" fill="rgb(241,212,25)" fg:x="9591" fg:w="6"/><text x="38.1981%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="37.9481%" y="469" width="0.0237%" height="15" fill="rgb(226,69,20)" fg:x="9591" fg:w="6"/><text x="38.1981%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="37.9481%" y="453" width="0.0237%" height="15" fill="rgb(247,184,54)" fg:x="9591" fg:w="6"/><text x="38.1981%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="37.9600%" y="437" width="0.0119%" height="15" fill="rgb(210,145,0)" fg:x="9594" fg:w="3"/><text x="38.2100%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.9600%" y="421" width="0.0119%" height="15" fill="rgb(253,82,12)" fg:x="9594" fg:w="3"/><text x="38.2100%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="37.9718%" y="437" width="0.0158%" height="15" fill="rgb(245,42,11)" fg:x="9597" fg:w="4"/><text x="38.2218%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="37.9718%" y="485" width="0.0317%" height="15" fill="rgb(219,147,32)" fg:x="9597" fg:w="8"/><text x="38.2218%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="37.9718%" y="469" width="0.0317%" height="15" fill="rgb(246,12,7)" fg:x="9597" fg:w="8"/><text x="38.2218%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="37.9718%" y="453" width="0.0317%" height="15" fill="rgb(243,50,9)" fg:x="9597" fg:w="8"/><text x="38.2218%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="37.9877%" y="437" width="0.0158%" height="15" fill="rgb(219,149,6)" fg:x="9601" fg:w="4"/><text x="38.2377%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="37.9877%" y="421" width="0.0158%" height="15" fill="rgb(241,51,42)" fg:x="9601" fg:w="4"/><text x="38.2377%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.0035%" y="421" width="0.0158%" height="15" fill="rgb(226,128,27)" fg:x="9605" fg:w="4"/><text x="38.2535%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.0193%" y="245" width="0.0158%" height="15" fill="rgb(244,144,4)" fg:x="9609" fg:w="4"/><text x="38.2693%" y="255.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.0193%" y="229" width="0.0158%" height="15" fill="rgb(221,4,13)" fg:x="9609" fg:w="4"/><text x="38.2693%" y="239.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.0193%" y="213" width="0.0158%" height="15" fill="rgb(208,170,28)" fg:x="9609" fg:w="4"/><text x="38.2693%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="38.0193%" y="293" width="0.0277%" height="15" fill="rgb(226,131,13)" fg:x="9609" fg:w="7"/><text x="38.2693%" y="303.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="38.0193%" y="277" width="0.0277%" height="15" fill="rgb(215,72,41)" fg:x="9609" fg:w="7"/><text x="38.2693%" y="287.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="38.0193%" y="261" width="0.0277%" height="15" fill="rgb(243,108,20)" fg:x="9609" fg:w="7"/><text x="38.2693%" y="271.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.0351%" y="245" width="0.0119%" height="15" fill="rgb(230,189,17)" fg:x="9613" fg:w="3"/><text x="38.2851%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.0351%" y="229" width="0.0119%" height="15" fill="rgb(220,50,17)" fg:x="9613" fg:w="3"/><text x="38.2851%" y="239.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.0351%" y="213" width="0.0119%" height="15" fill="rgb(248,152,48)" fg:x="9613" fg:w="3"/><text x="38.2851%" y="223.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.0351%" y="197" width="0.0119%" height="15" fill="rgb(244,91,11)" fg:x="9613" fg:w="3"/><text x="38.2851%" y="207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.0470%" y="181" width="0.0119%" height="15" fill="rgb(220,157,5)" fg:x="9616" fg:w="3"/><text x="38.2970%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.0470%" y="229" width="0.0198%" height="15" fill="rgb(253,137,8)" fg:x="9616" fg:w="5"/><text x="38.2970%" y="239.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.0470%" y="213" width="0.0198%" height="15" fill="rgb(217,137,51)" fg:x="9616" fg:w="5"/><text x="38.2970%" y="223.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.0470%" y="197" width="0.0198%" height="15" fill="rgb(218,209,53)" fg:x="9616" fg:w="5"/><text x="38.2970%" y="207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="38.0193%" y="341" width="0.0593%" height="15" fill="rgb(249,137,25)" fg:x="9609" fg:w="15"/><text x="38.2693%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="38.0193%" y="325" width="0.0593%" height="15" fill="rgb(239,155,26)" fg:x="9609" fg:w="15"/><text x="38.2693%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="38.0193%" y="309" width="0.0593%" height="15" fill="rgb(227,85,46)" fg:x="9609" fg:w="15"/><text x="38.2693%" y="319.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="38.0470%" y="293" width="0.0317%" height="15" fill="rgb(251,107,43)" fg:x="9616" fg:w="8"/><text x="38.2970%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="38.0470%" y="277" width="0.0317%" height="15" fill="rgb(234,170,33)" fg:x="9616" fg:w="8"/><text x="38.2970%" y="287.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="38.0470%" y="261" width="0.0317%" height="15" fill="rgb(206,29,35)" fg:x="9616" fg:w="8"/><text x="38.2970%" y="271.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="38.0470%" y="245" width="0.0317%" height="15" fill="rgb(227,138,25)" fg:x="9616" fg:w="8"/><text x="38.2970%" y="255.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.0668%" y="229" width="0.0119%" height="15" fill="rgb(249,131,35)" fg:x="9621" fg:w="3"/><text x="38.3168%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.0668%" y="213" width="0.0119%" height="15" fill="rgb(239,6,40)" fg:x="9621" fg:w="3"/><text x="38.3168%" y="223.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.0668%" y="197" width="0.0119%" height="15" fill="rgb(246,136,47)" fg:x="9621" fg:w="3"/><text x="38.3168%" y="207.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.0668%" y="181" width="0.0119%" height="15" fill="rgb(253,58,26)" fg:x="9621" fg:w="3"/><text x="38.3168%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.0866%" y="213" width="0.0119%" height="15" fill="rgb(237,141,10)" fg:x="9626" fg:w="3"/><text x="38.3366%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="38.0787%" y="261" width="0.0356%" height="15" fill="rgb(234,156,12)" fg:x="9624" fg:w="9"/><text x="38.3287%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="38.0866%" y="245" width="0.0277%" height="15" fill="rgb(243,224,36)" fg:x="9626" fg:w="7"/><text x="38.3366%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="38.0866%" y="229" width="0.0277%" height="15" fill="rgb(205,229,51)" fg:x="9626" fg:w="7"/><text x="38.3366%" y="239.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.0984%" y="213" width="0.0158%" height="15" fill="rgb(223,189,4)" fg:x="9629" fg:w="4"/><text x="38.3484%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.0984%" y="197" width="0.0158%" height="15" fill="rgb(249,167,54)" fg:x="9629" fg:w="4"/><text x="38.3484%" y="207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.19%)</title><rect x="37.9283%" y="645" width="0.1939%" height="15" fill="rgb(218,34,28)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="37.9283%" y="629" width="0.1939%" height="15" fill="rgb(232,109,42)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="37.9283%" y="613" width="0.1939%" height="15" fill="rgb(248,214,46)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.19%)</title><rect x="37.9283%" y="597" width="0.1939%" height="15" fill="rgb(244,216,40)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="37.9283%" y="581" width="0.1939%" height="15" fill="rgb(231,226,31)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="37.9283%" y="565" width="0.1939%" height="15" fill="rgb(238,38,43)" fg:x="9586" fg:w="49"/><text x="38.1783%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.15%)</title><rect x="37.9718%" y="549" width="0.1504%" height="15" fill="rgb(208,88,43)" fg:x="9597" fg:w="38"/><text x="38.2218%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="37.9718%" y="533" width="0.1504%" height="15" fill="rgb(205,136,37)" fg:x="9597" fg:w="38"/><text x="38.2218%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.15%)</title><rect x="37.9718%" y="517" width="0.1504%" height="15" fill="rgb(237,34,14)" fg:x="9597" fg:w="38"/><text x="38.2218%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.15%)</title><rect x="37.9718%" y="501" width="0.1504%" height="15" fill="rgb(236,193,44)" fg:x="9597" fg:w="38"/><text x="38.2218%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.12%)</title><rect x="38.0035%" y="485" width="0.1187%" height="15" fill="rgb(231,48,10)" fg:x="9605" fg:w="30"/><text x="38.2535%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="38.0035%" y="469" width="0.1187%" height="15" fill="rgb(213,141,34)" fg:x="9605" fg:w="30"/><text x="38.2535%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="38.0035%" y="453" width="0.1187%" height="15" fill="rgb(249,130,34)" fg:x="9605" fg:w="30"/><text x="38.2535%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="38.0035%" y="437" width="0.1187%" height="15" fill="rgb(219,42,41)" fg:x="9605" fg:w="30"/><text x="38.2535%" y="447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.10%)</title><rect x="38.0193%" y="421" width="0.1029%" height="15" fill="rgb(224,100,54)" fg:x="9609" fg:w="26"/><text x="38.2693%" y="431.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.10%)</title><rect x="38.0193%" y="405" width="0.1029%" height="15" fill="rgb(229,200,27)" fg:x="9609" fg:w="26"/><text x="38.2693%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="38.0193%" y="389" width="0.1029%" height="15" fill="rgb(217,118,10)" fg:x="9609" fg:w="26"/><text x="38.2693%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="38.0193%" y="373" width="0.1029%" height="15" fill="rgb(206,22,3)" fg:x="9609" fg:w="26"/><text x="38.2693%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="38.0193%" y="357" width="0.1029%" height="15" fill="rgb(232,163,46)" fg:x="9609" fg:w="26"/><text x="38.2693%" y="367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.04%)</title><rect x="38.0787%" y="341" width="0.0435%" height="15" fill="rgb(206,95,13)" fg:x="9624" fg:w="11"/><text x="38.3287%" y="351.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="38.0787%" y="325" width="0.0435%" height="15" fill="rgb(253,154,18)" fg:x="9624" fg:w="11"/><text x="38.3287%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="38.0787%" y="309" width="0.0435%" height="15" fill="rgb(219,32,23)" fg:x="9624" fg:w="11"/><text x="38.3287%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="38.0787%" y="293" width="0.0435%" height="15" fill="rgb(230,191,45)" fg:x="9624" fg:w="11"/><text x="38.3287%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="38.0787%" y="277" width="0.0435%" height="15" fill="rgb(229,64,36)" fg:x="9624" fg:w="11"/><text x="38.3287%" y="287.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (267 samples, 1.06%)</title><rect x="37.0776%" y="789" width="1.0564%" height="15" fill="rgb(205,129,25)" fg:x="9371" fg:w="267"/><text x="37.3276%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (267 samples, 1.06%)</title><rect x="37.0776%" y="773" width="1.0564%" height="15" fill="rgb(254,112,7)" fg:x="9371" fg:w="267"/><text x="37.3276%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (225 samples, 0.89%)</title><rect x="37.2438%" y="757" width="0.8902%" height="15" fill="rgb(226,53,48)" fg:x="9413" fg:w="225"/><text x="37.4938%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (225 samples, 0.89%)</title><rect x="37.2438%" y="741" width="0.8902%" height="15" fill="rgb(214,153,38)" fg:x="9413" fg:w="225"/><text x="37.4938%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.21%)</title><rect x="37.9283%" y="725" width="0.2057%" height="15" fill="rgb(243,101,7)" fg:x="9586" fg:w="52"/><text x="38.1783%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (52 samples, 0.21%)</title><rect x="37.9283%" y="709" width="0.2057%" height="15" fill="rgb(240,140,22)" fg:x="9586" fg:w="52"/><text x="38.1783%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.21%)</title><rect x="37.9283%" y="693" width="0.2057%" height="15" fill="rgb(235,114,2)" fg:x="9586" fg:w="52"/><text x="38.1783%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="37.9283%" y="677" width="0.2057%" height="15" fill="rgb(242,59,12)" fg:x="9586" fg:w="52"/><text x="38.1783%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="37.9283%" y="661" width="0.2057%" height="15" fill="rgb(252,134,9)" fg:x="9586" fg:w="52"/><text x="38.1783%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="38.1222%" y="645" width="0.0119%" height="15" fill="rgb(236,4,44)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="38.1222%" y="629" width="0.0119%" height="15" fill="rgb(254,172,41)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.1222%" y="613" width="0.0119%" height="15" fill="rgb(244,63,20)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.1222%" y="597" width="0.0119%" height="15" fill="rgb(250,73,31)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.1222%" y="581" width="0.0119%" height="15" fill="rgb(241,38,36)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.1222%" y="565" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="9635" fg:w="3"/><text x="38.3722%" y="575.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.1617%" y="693" width="0.0158%" height="15" fill="rgb(206,120,28)" fg:x="9645" fg:w="4"/><text x="38.4117%" y="703.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="38.1617%" y="677" width="0.0158%" height="15" fill="rgb(211,59,34)" fg:x="9645" fg:w="4"/><text x="38.4117%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.1894%" y="565" width="0.0158%" height="15" fill="rgb(233,168,5)" fg:x="9652" fg:w="4"/><text x="38.4394%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="38.1855%" y="613" width="0.0475%" height="15" fill="rgb(234,33,13)" fg:x="9651" fg:w="12"/><text x="38.4355%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="38.1894%" y="597" width="0.0435%" height="15" fill="rgb(231,150,26)" fg:x="9652" fg:w="11"/><text x="38.4394%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="38.1894%" y="581" width="0.0435%" height="15" fill="rgb(217,191,4)" fg:x="9652" fg:w="11"/><text x="38.4394%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="38.2053%" y="565" width="0.0277%" height="15" fill="rgb(246,198,38)" fg:x="9656" fg:w="7"/><text x="38.4553%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="38.2053%" y="549" width="0.0277%" height="15" fill="rgb(245,64,37)" fg:x="9656" fg:w="7"/><text x="38.4553%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="38.2409%" y="549" width="0.0237%" height="15" fill="rgb(250,30,36)" fg:x="9665" fg:w="6"/><text x="38.4909%" y="559.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="38.2409%" y="533" width="0.0237%" height="15" fill="rgb(217,86,53)" fg:x="9665" fg:w="6"/><text x="38.4909%" y="543.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="38.2448%" y="517" width="0.0198%" height="15" fill="rgb(228,157,16)" fg:x="9666" fg:w="5"/><text x="38.4948%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="38.1776%" y="661" width="0.1108%" height="15" fill="rgb(217,59,31)" fg:x="9649" fg:w="28"/><text x="38.4276%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="38.1855%" y="645" width="0.1029%" height="15" fill="rgb(237,138,41)" fg:x="9651" fg:w="26"/><text x="38.4355%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="38.1855%" y="629" width="0.1029%" height="15" fill="rgb(227,91,49)" fg:x="9651" fg:w="26"/><text x="38.4355%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="38.2330%" y="613" width="0.0554%" height="15" fill="rgb(247,21,44)" fg:x="9663" fg:w="14"/><text x="38.4830%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="38.2330%" y="597" width="0.0554%" height="15" fill="rgb(219,210,51)" fg:x="9663" fg:w="14"/><text x="38.4830%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="38.2409%" y="581" width="0.0475%" height="15" fill="rgb(209,140,6)" fg:x="9665" fg:w="12"/><text x="38.4909%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="38.2409%" y="565" width="0.0475%" height="15" fill="rgb(221,188,24)" fg:x="9665" fg:w="12"/><text x="38.4909%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="38.2646%" y="549" width="0.0237%" height="15" fill="rgb(232,154,20)" fg:x="9671" fg:w="6"/><text x="38.5146%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="38.2646%" y="533" width="0.0237%" height="15" fill="rgb(244,137,50)" fg:x="9671" fg:w="6"/><text x="38.5146%" y="543.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.2725%" y="517" width="0.0158%" height="15" fill="rgb(225,185,43)" fg:x="9673" fg:w="4"/><text x="38.5225%" y="527.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="38.2725%" y="501" width="0.0158%" height="15" fill="rgb(213,205,38)" fg:x="9673" fg:w="4"/><text x="38.5225%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.3081%" y="549" width="0.0198%" height="15" fill="rgb(236,73,12)" fg:x="9682" fg:w="5"/><text x="38.5581%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.3279%" y="549" width="0.0119%" height="15" fill="rgb(235,219,13)" fg:x="9687" fg:w="3"/><text x="38.5779%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.3279%" y="533" width="0.0119%" height="15" fill="rgb(218,59,36)" fg:x="9687" fg:w="3"/><text x="38.5779%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="38.2963%" y="597" width="0.0554%" height="15" fill="rgb(205,110,39)" fg:x="9679" fg:w="14"/><text x="38.5463%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="38.3081%" y="581" width="0.0435%" height="15" fill="rgb(218,206,42)" fg:x="9682" fg:w="11"/><text x="38.5581%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="38.3081%" y="565" width="0.0435%" height="15" fill="rgb(248,125,24)" fg:x="9682" fg:w="11"/><text x="38.5581%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="38.3398%" y="549" width="0.0119%" height="15" fill="rgb(242,28,27)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="38.3398%" y="533" width="0.0119%" height="15" fill="rgb(216,228,15)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.3398%" y="517" width="0.0119%" height="15" fill="rgb(235,116,46)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.3398%" y="501" width="0.0119%" height="15" fill="rgb(224,18,32)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.3398%" y="485" width="0.0119%" height="15" fill="rgb(252,5,12)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.3398%" y="469" width="0.0119%" height="15" fill="rgb(251,36,5)" fg:x="9690" fg:w="3"/><text x="38.5898%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.26%)</title><rect x="38.1341%" y="709" width="0.2572%" height="15" fill="rgb(217,53,14)" fg:x="9638" fg:w="65"/><text x="38.3841%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (54 samples, 0.21%)</title><rect x="38.1776%" y="693" width="0.2137%" height="15" fill="rgb(215,86,45)" fg:x="9649" fg:w="54"/><text x="38.4276%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (54 samples, 0.21%)</title><rect x="38.1776%" y="677" width="0.2137%" height="15" fill="rgb(242,169,11)" fg:x="9649" fg:w="54"/><text x="38.4276%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.10%)</title><rect x="38.2884%" y="661" width="0.1029%" height="15" fill="rgb(211,213,45)" fg:x="9677" fg:w="26"/><text x="38.5384%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="38.2884%" y="645" width="0.1029%" height="15" fill="rgb(205,88,11)" fg:x="9677" fg:w="26"/><text x="38.5384%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="38.2963%" y="629" width="0.0950%" height="15" fill="rgb(252,69,26)" fg:x="9679" fg:w="24"/><text x="38.5463%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="38.2963%" y="613" width="0.0950%" height="15" fill="rgb(246,123,37)" fg:x="9679" fg:w="24"/><text x="38.5463%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="38.3596%" y="597" width="0.0317%" height="15" fill="rgb(212,205,5)" fg:x="9695" fg:w="8"/><text x="38.6096%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="38.3596%" y="581" width="0.0317%" height="15" fill="rgb(253,148,0)" fg:x="9695" fg:w="8"/><text x="38.6096%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="38.3596%" y="565" width="0.0317%" height="15" fill="rgb(239,22,4)" fg:x="9695" fg:w="8"/><text x="38.6096%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.3754%" y="549" width="0.0158%" height="15" fill="rgb(226,26,53)" fg:x="9699" fg:w="4"/><text x="38.6254%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.3754%" y="533" width="0.0158%" height="15" fill="rgb(225,229,45)" fg:x="9699" fg:w="4"/><text x="38.6254%" y="543.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.4031%" y="677" width="0.0158%" height="15" fill="rgb(220,60,37)" fg:x="9706" fg:w="4"/><text x="38.6531%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="38.4071%" y="661" width="0.0119%" height="15" fill="rgb(217,180,35)" fg:x="9707" fg:w="3"/><text x="38.6571%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="38.3912%" y="709" width="0.0435%" height="15" fill="rgb(229,7,53)" fg:x="9703" fg:w="11"/><text x="38.6412%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="38.3912%" y="693" width="0.0435%" height="15" fill="rgb(254,137,3)" fg:x="9703" fg:w="11"/><text x="38.6412%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4189%" y="677" width="0.0158%" height="15" fill="rgb(215,140,41)" fg:x="9710" fg:w="4"/><text x="38.6689%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4189%" y="661" width="0.0158%" height="15" fill="rgb(250,80,15)" fg:x="9710" fg:w="4"/><text x="38.6689%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.4348%" y="533" width="0.0158%" height="15" fill="rgb(252,191,6)" fg:x="9714" fg:w="4"/><text x="38.6848%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4348%" y="517" width="0.0158%" height="15" fill="rgb(246,217,18)" fg:x="9714" fg:w="4"/><text x="38.6848%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4348%" y="501" width="0.0158%" height="15" fill="rgb(223,93,7)" fg:x="9714" fg:w="4"/><text x="38.6848%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="38.4348%" y="581" width="0.0317%" height="15" fill="rgb(225,55,52)" fg:x="9714" fg:w="8"/><text x="38.6848%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="38.4348%" y="565" width="0.0317%" height="15" fill="rgb(240,31,24)" fg:x="9714" fg:w="8"/><text x="38.6848%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="38.4348%" y="549" width="0.0317%" height="15" fill="rgb(205,56,52)" fg:x="9714" fg:w="8"/><text x="38.6848%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.4506%" y="533" width="0.0158%" height="15" fill="rgb(246,146,12)" fg:x="9718" fg:w="4"/><text x="38.7006%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.4506%" y="517" width="0.0158%" height="15" fill="rgb(239,84,36)" fg:x="9718" fg:w="4"/><text x="38.7006%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4506%" y="501" width="0.0158%" height="15" fill="rgb(207,41,40)" fg:x="9718" fg:w="4"/><text x="38.7006%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4506%" y="485" width="0.0158%" height="15" fill="rgb(241,179,25)" fg:x="9718" fg:w="4"/><text x="38.7006%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.4743%" y="453" width="0.0158%" height="15" fill="rgb(210,0,34)" fg:x="9724" fg:w="4"/><text x="38.7243%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4743%" y="437" width="0.0158%" height="15" fill="rgb(225,217,29)" fg:x="9724" fg:w="4"/><text x="38.7243%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4743%" y="421" width="0.0158%" height="15" fill="rgb(216,191,38)" fg:x="9724" fg:w="4"/><text x="38.7243%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="38.4743%" y="501" width="0.0317%" height="15" fill="rgb(232,140,52)" fg:x="9724" fg:w="8"/><text x="38.7243%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="38.4743%" y="485" width="0.0317%" height="15" fill="rgb(223,158,51)" fg:x="9724" fg:w="8"/><text x="38.7243%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="38.4743%" y="469" width="0.0317%" height="15" fill="rgb(235,29,51)" fg:x="9724" fg:w="8"/><text x="38.7243%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.4901%" y="453" width="0.0158%" height="15" fill="rgb(215,181,18)" fg:x="9728" fg:w="4"/><text x="38.7401%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.4901%" y="437" width="0.0158%" height="15" fill="rgb(227,125,34)" fg:x="9728" fg:w="4"/><text x="38.7401%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4901%" y="421" width="0.0158%" height="15" fill="rgb(230,197,49)" fg:x="9728" fg:w="4"/><text x="38.7401%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4901%" y="405" width="0.0158%" height="15" fill="rgb(239,141,16)" fg:x="9728" fg:w="4"/><text x="38.7401%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.5060%" y="437" width="0.0158%" height="15" fill="rgb(225,105,43)" fg:x="9732" fg:w="4"/><text x="38.7560%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.5060%" y="421" width="0.0158%" height="15" fill="rgb(214,131,14)" fg:x="9732" fg:w="4"/><text x="38.7560%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.5060%" y="405" width="0.0158%" height="15" fill="rgb(229,177,11)" fg:x="9732" fg:w="4"/><text x="38.7560%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="38.4348%" y="629" width="0.0950%" height="15" fill="rgb(231,180,14)" fg:x="9714" fg:w="24"/><text x="38.6848%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="38.4348%" y="613" width="0.0950%" height="15" fill="rgb(232,88,2)" fg:x="9714" fg:w="24"/><text x="38.6848%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="38.4348%" y="597" width="0.0950%" height="15" fill="rgb(205,220,8)" fg:x="9714" fg:w="24"/><text x="38.6848%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="38.4664%" y="581" width="0.0633%" height="15" fill="rgb(225,23,53)" fg:x="9722" fg:w="16"/><text x="38.7164%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="38.4664%" y="565" width="0.0633%" height="15" fill="rgb(213,62,29)" fg:x="9722" fg:w="16"/><text x="38.7164%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="38.4664%" y="549" width="0.0633%" height="15" fill="rgb(227,75,7)" fg:x="9722" fg:w="16"/><text x="38.7164%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="38.4743%" y="533" width="0.0554%" height="15" fill="rgb(207,105,14)" fg:x="9724" fg:w="14"/><text x="38.7243%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="38.4743%" y="517" width="0.0554%" height="15" fill="rgb(245,62,29)" fg:x="9724" fg:w="14"/><text x="38.7243%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="38.5060%" y="501" width="0.0237%" height="15" fill="rgb(236,202,4)" fg:x="9732" fg:w="6"/><text x="38.7560%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="38.5060%" y="485" width="0.0237%" height="15" fill="rgb(250,67,1)" fg:x="9732" fg:w="6"/><text x="38.7560%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="38.5060%" y="469" width="0.0237%" height="15" fill="rgb(253,115,44)" fg:x="9732" fg:w="6"/><text x="38.7560%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="38.5060%" y="453" width="0.0237%" height="15" fill="rgb(251,139,18)" fg:x="9732" fg:w="6"/><text x="38.7560%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (724 samples, 2.86%)</title><rect x="35.6730%" y="853" width="2.8646%" height="15" fill="rgb(218,22,32)" fg:x="9016" fg:w="724"/><text x="35.9230%" y="863.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (724 samples, 2.86%)</title><rect x="35.6730%" y="837" width="2.8646%" height="15" fill="rgb(243,53,5)" fg:x="9016" fg:w="724"/><text x="35.9230%" y="847.50">ra..</text></g><g><title>rayon_core::registry::in_worker (658 samples, 2.60%)</title><rect x="35.9342%" y="821" width="2.6035%" height="15" fill="rgb(227,56,16)" fg:x="9082" fg:w="658"/><text x="36.1842%" y="831.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (658 samples, 2.60%)</title><rect x="35.9342%" y="805" width="2.6035%" height="15" fill="rgb(245,53,0)" fg:x="9082" fg:w="658"/><text x="36.1842%" y="815.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (102 samples, 0.40%)</title><rect x="38.1341%" y="789" width="0.4036%" height="15" fill="rgb(216,170,35)" fg:x="9638" fg:w="102"/><text x="38.3841%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (102 samples, 0.40%)</title><rect x="38.1341%" y="773" width="0.4036%" height="15" fill="rgb(211,200,8)" fg:x="9638" fg:w="102"/><text x="38.3841%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102 samples, 0.40%)</title><rect x="38.1341%" y="757" width="0.4036%" height="15" fill="rgb(228,204,44)" fg:x="9638" fg:w="102"/><text x="38.3841%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (102 samples, 0.40%)</title><rect x="38.1341%" y="741" width="0.4036%" height="15" fill="rgb(214,121,17)" fg:x="9638" fg:w="102"/><text x="38.3841%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (102 samples, 0.40%)</title><rect x="38.1341%" y="725" width="0.4036%" height="15" fill="rgb(233,64,38)" fg:x="9638" fg:w="102"/><text x="38.3841%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.10%)</title><rect x="38.4348%" y="709" width="0.1029%" height="15" fill="rgb(253,54,19)" fg:x="9714" fg:w="26"/><text x="38.6848%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.10%)</title><rect x="38.4348%" y="693" width="0.1029%" height="15" fill="rgb(253,94,18)" fg:x="9714" fg:w="26"/><text x="38.6848%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="38.4348%" y="677" width="0.1029%" height="15" fill="rgb(227,57,52)" fg:x="9714" fg:w="26"/><text x="38.6848%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="38.4348%" y="661" width="0.1029%" height="15" fill="rgb(230,228,50)" fg:x="9714" fg:w="26"/><text x="38.6848%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="38.4348%" y="645" width="0.1029%" height="15" fill="rgb(217,205,27)" fg:x="9714" fg:w="26"/><text x="38.6848%" y="655.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="38.5535%" y="805" width="0.0237%" height="15" fill="rgb(252,71,50)" fg:x="9744" fg:w="6"/><text x="38.8035%" y="815.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="38.5574%" y="789" width="0.0198%" height="15" fill="rgb(209,86,4)" fg:x="9745" fg:w="5"/><text x="38.8074%" y="799.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="38.5970%" y="757" width="0.0277%" height="15" fill="rgb(229,94,0)" fg:x="9755" fg:w="7"/><text x="38.8470%" y="767.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="38.5970%" y="741" width="0.0277%" height="15" fill="rgb(252,223,21)" fg:x="9755" fg:w="7"/><text x="38.8470%" y="751.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.6524%" y="613" width="0.0158%" height="15" fill="rgb(230,210,4)" fg:x="9769" fg:w="4"/><text x="38.9024%" y="623.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="38.6524%" y="597" width="0.0158%" height="15" fill="rgb(240,149,38)" fg:x="9769" fg:w="4"/><text x="38.9024%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="38.6682%" y="581" width="0.0356%" height="15" fill="rgb(254,105,20)" fg:x="9773" fg:w="9"/><text x="38.9182%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="38.6405%" y="629" width="0.1029%" height="15" fill="rgb(253,87,46)" fg:x="9766" fg:w="26"/><text x="38.8905%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="38.6682%" y="613" width="0.0752%" height="15" fill="rgb(253,116,33)" fg:x="9773" fg:w="19"/><text x="38.9182%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="38.6682%" y="597" width="0.0752%" height="15" fill="rgb(229,198,5)" fg:x="9773" fg:w="19"/><text x="38.9182%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="38.7038%" y="581" width="0.0396%" height="15" fill="rgb(242,38,37)" fg:x="9782" fg:w="10"/><text x="38.9538%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="38.7038%" y="565" width="0.0396%" height="15" fill="rgb(242,69,53)" fg:x="9782" fg:w="10"/><text x="38.9538%" y="575.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="38.7157%" y="549" width="0.0277%" height="15" fill="rgb(249,80,16)" fg:x="9785" fg:w="7"/><text x="38.9657%" y="559.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="38.7196%" y="533" width="0.0237%" height="15" fill="rgb(206,128,11)" fg:x="9786" fg:w="6"/><text x="38.9696%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="38.7790%" y="565" width="0.0396%" height="15" fill="rgb(212,35,20)" fg:x="9801" fg:w="10"/><text x="39.0290%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.24%)</title><rect x="38.6247%" y="677" width="0.2374%" height="15" fill="rgb(236,79,13)" fg:x="9762" fg:w="60"/><text x="38.8747%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.22%)</title><rect x="38.6405%" y="661" width="0.2216%" height="15" fill="rgb(233,123,3)" fg:x="9766" fg:w="56"/><text x="38.8905%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (56 samples, 0.22%)</title><rect x="38.6405%" y="645" width="0.2216%" height="15" fill="rgb(214,93,52)" fg:x="9766" fg:w="56"/><text x="38.8905%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.12%)</title><rect x="38.7434%" y="629" width="0.1187%" height="15" fill="rgb(251,37,40)" fg:x="9792" fg:w="30"/><text x="38.9934%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="38.7434%" y="613" width="0.1187%" height="15" fill="rgb(227,80,54)" fg:x="9792" fg:w="30"/><text x="38.9934%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="38.7790%" y="597" width="0.0831%" height="15" fill="rgb(254,48,11)" fg:x="9801" fg:w="21"/><text x="39.0290%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="38.7790%" y="581" width="0.0831%" height="15" fill="rgb(235,193,26)" fg:x="9801" fg:w="21"/><text x="39.0290%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="38.8185%" y="565" width="0.0435%" height="15" fill="rgb(229,99,21)" fg:x="9811" fg:w="11"/><text x="39.0685%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="38.8185%" y="549" width="0.0435%" height="15" fill="rgb(211,140,41)" fg:x="9811" fg:w="11"/><text x="39.0685%" y="559.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="38.8423%" y="533" width="0.0198%" height="15" fill="rgb(240,227,30)" fg:x="9817" fg:w="5"/><text x="39.0923%" y="543.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="38.8423%" y="517" width="0.0198%" height="15" fill="rgb(215,224,45)" fg:x="9817" fg:w="5"/><text x="39.0923%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="38.9135%" y="565" width="0.0396%" height="15" fill="rgb(206,123,31)" fg:x="9835" fg:w="10"/><text x="39.1635%" y="575.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.9372%" y="549" width="0.0158%" height="15" fill="rgb(210,138,16)" fg:x="9841" fg:w="4"/><text x="39.1872%" y="559.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="38.9412%" y="533" width="0.0119%" height="15" fill="rgb(228,57,28)" fg:x="9842" fg:w="3"/><text x="39.1912%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="38.8779%" y="613" width="0.1187%" height="15" fill="rgb(242,170,10)" fg:x="9826" fg:w="30"/><text x="39.1279%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="38.9135%" y="597" width="0.0831%" height="15" fill="rgb(228,214,39)" fg:x="9835" fg:w="21"/><text x="39.1635%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="38.9135%" y="581" width="0.0831%" height="15" fill="rgb(218,179,33)" fg:x="9835" fg:w="21"/><text x="39.1635%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="38.9531%" y="565" width="0.0435%" height="15" fill="rgb(235,193,39)" fg:x="9845" fg:w="11"/><text x="39.2031%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="38.9531%" y="549" width="0.0435%" height="15" fill="rgb(219,221,36)" fg:x="9845" fg:w="11"/><text x="39.2031%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="38.9847%" y="533" width="0.0119%" height="15" fill="rgb(248,218,19)" fg:x="9853" fg:w="3"/><text x="39.2347%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.0322%" y="549" width="0.0514%" height="15" fill="rgb(205,50,9)" fg:x="9865" fg:w="13"/><text x="39.2822%" y="559.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="39.0559%" y="533" width="0.0277%" height="15" fill="rgb(238,81,28)" fg:x="9871" fg:w="7"/><text x="39.3059%" y="543.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="39.0599%" y="517" width="0.0237%" height="15" fill="rgb(235,110,19)" fg:x="9872" fg:w="6"/><text x="39.3099%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (129 samples, 0.51%)</title><rect x="38.6247%" y="725" width="0.5104%" height="15" fill="rgb(214,7,14)" fg:x="9762" fg:w="129"/><text x="38.8747%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (129 samples, 0.51%)</title><rect x="38.6247%" y="709" width="0.5104%" height="15" fill="rgb(211,77,3)" fg:x="9762" fg:w="129"/><text x="38.8747%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (129 samples, 0.51%)</title><rect x="38.6247%" y="693" width="0.5104%" height="15" fill="rgb(229,5,9)" fg:x="9762" fg:w="129"/><text x="38.8747%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (69 samples, 0.27%)</title><rect x="38.8621%" y="677" width="0.2730%" height="15" fill="rgb(225,90,11)" fg:x="9822" fg:w="69"/><text x="39.1121%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.27%)</title><rect x="38.8621%" y="661" width="0.2730%" height="15" fill="rgb(242,56,8)" fg:x="9822" fg:w="69"/><text x="39.1121%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (65 samples, 0.26%)</title><rect x="38.8779%" y="645" width="0.2572%" height="15" fill="rgb(249,212,39)" fg:x="9826" fg:w="65"/><text x="39.1279%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (65 samples, 0.26%)</title><rect x="38.8779%" y="629" width="0.2572%" height="15" fill="rgb(236,90,9)" fg:x="9826" fg:w="65"/><text x="39.1279%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.14%)</title><rect x="38.9966%" y="613" width="0.1385%" height="15" fill="rgb(206,88,35)" fg:x="9856" fg:w="35"/><text x="39.2466%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.14%)</title><rect x="38.9966%" y="597" width="0.1385%" height="15" fill="rgb(205,126,30)" fg:x="9856" fg:w="35"/><text x="39.2466%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="39.0322%" y="581" width="0.1029%" height="15" fill="rgb(230,176,12)" fg:x="9865" fg:w="26"/><text x="39.2822%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="39.0322%" y="565" width="0.1029%" height="15" fill="rgb(243,19,9)" fg:x="9865" fg:w="26"/><text x="39.2822%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="39.0836%" y="549" width="0.0514%" height="15" fill="rgb(245,171,17)" fg:x="9878" fg:w="13"/><text x="39.3336%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.0836%" y="533" width="0.0514%" height="15" fill="rgb(227,52,21)" fg:x="9878" fg:w="13"/><text x="39.3336%" y="543.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.1193%" y="517" width="0.0158%" height="15" fill="rgb(238,69,14)" fg:x="9887" fg:w="4"/><text x="39.3693%" y="527.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.1232%" y="501" width="0.0119%" height="15" fill="rgb(241,156,39)" fg:x="9888" fg:w="3"/><text x="39.3732%" y="511.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.1351%" y="645" width="0.0158%" height="15" fill="rgb(212,227,28)" fg:x="9891" fg:w="4"/><text x="39.3851%" y="655.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="39.1351%" y="629" width="0.0158%" height="15" fill="rgb(209,118,27)" fg:x="9891" fg:w="4"/><text x="39.3851%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.1588%" y="597" width="0.0119%" height="15" fill="rgb(226,102,5)" fg:x="9897" fg:w="3"/><text x="39.4088%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.1707%" y="565" width="0.0158%" height="15" fill="rgb(223,34,3)" fg:x="9900" fg:w="4"/><text x="39.4207%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.1509%" y="613" width="0.0514%" height="15" fill="rgb(221,81,38)" fg:x="9895" fg:w="13"/><text x="39.4009%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="39.1707%" y="597" width="0.0317%" height="15" fill="rgb(236,219,28)" fg:x="9900" fg:w="8"/><text x="39.4207%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="39.1707%" y="581" width="0.0317%" height="15" fill="rgb(213,200,14)" fg:x="9900" fg:w="8"/><text x="39.4207%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.1865%" y="565" width="0.0158%" height="15" fill="rgb(240,33,19)" fg:x="9904" fg:w="4"/><text x="39.4365%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.1865%" y="549" width="0.0158%" height="15" fill="rgb(233,113,27)" fg:x="9904" fg:w="4"/><text x="39.4365%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.1905%" y="533" width="0.0119%" height="15" fill="rgb(220,221,18)" fg:x="9905" fg:w="3"/><text x="39.4405%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.2103%" y="581" width="0.0119%" height="15" fill="rgb(238,92,8)" fg:x="9910" fg:w="3"/><text x="39.4603%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.2103%" y="565" width="0.0119%" height="15" fill="rgb(222,164,16)" fg:x="9910" fg:w="3"/><text x="39.4603%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.2221%" y="549" width="0.0158%" height="15" fill="rgb(241,119,3)" fg:x="9913" fg:w="4"/><text x="39.4721%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="39.1351%" y="661" width="0.1187%" height="15" fill="rgb(241,44,8)" fg:x="9891" fg:w="30"/><text x="39.3851%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="39.1509%" y="645" width="0.1029%" height="15" fill="rgb(230,36,40)" fg:x="9895" fg:w="26"/><text x="39.4009%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="39.1509%" y="629" width="0.1029%" height="15" fill="rgb(243,16,36)" fg:x="9895" fg:w="26"/><text x="39.4009%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="39.2023%" y="613" width="0.0514%" height="15" fill="rgb(231,4,26)" fg:x="9908" fg:w="13"/><text x="39.4523%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.2023%" y="597" width="0.0514%" height="15" fill="rgb(240,9,31)" fg:x="9908" fg:w="13"/><text x="39.4523%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="39.2221%" y="581" width="0.0317%" height="15" fill="rgb(207,173,15)" fg:x="9913" fg:w="8"/><text x="39.4721%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="39.2221%" y="565" width="0.0317%" height="15" fill="rgb(224,192,53)" fg:x="9913" fg:w="8"/><text x="39.4721%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.2380%" y="549" width="0.0158%" height="15" fill="rgb(223,67,28)" fg:x="9917" fg:w="4"/><text x="39.4880%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.2380%" y="533" width="0.0158%" height="15" fill="rgb(211,20,47)" fg:x="9917" fg:w="4"/><text x="39.4880%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.2775%" y="581" width="0.0119%" height="15" fill="rgb(240,228,2)" fg:x="9927" fg:w="3"/><text x="39.5275%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.2775%" y="565" width="0.0119%" height="15" fill="rgb(248,151,12)" fg:x="9927" fg:w="3"/><text x="39.5275%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.2894%" y="549" width="0.0119%" height="15" fill="rgb(244,8,39)" fg:x="9930" fg:w="3"/><text x="39.5394%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="39.2736%" y="597" width="0.0356%" height="15" fill="rgb(222,26,8)" fg:x="9926" fg:w="9"/><text x="39.5236%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.2894%" y="581" width="0.0198%" height="15" fill="rgb(213,106,44)" fg:x="9930" fg:w="5"/><text x="39.5394%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.2894%" y="565" width="0.0198%" height="15" fill="rgb(214,129,20)" fg:x="9930" fg:w="5"/><text x="39.5394%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.3092%" y="597" width="0.0158%" height="15" fill="rgb(212,32,13)" fg:x="9935" fg:w="4"/><text x="39.5592%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.3092%" y="581" width="0.0158%" height="15" fill="rgb(208,168,33)" fg:x="9935" fg:w="4"/><text x="39.5592%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (24 samples, 0.09%)</title><rect x="39.2538%" y="661" width="0.0950%" height="15" fill="rgb(231,207,8)" fg:x="9921" fg:w="24"/><text x="39.5038%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="39.2538%" y="645" width="0.0950%" height="15" fill="rgb(235,219,23)" fg:x="9921" fg:w="24"/><text x="39.5038%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="39.2736%" y="629" width="0.0752%" height="15" fill="rgb(226,216,26)" fg:x="9926" fg:w="19"/><text x="39.5236%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="39.2736%" y="613" width="0.0752%" height="15" fill="rgb(239,137,16)" fg:x="9926" fg:w="19"/><text x="39.5236%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="39.3250%" y="597" width="0.0237%" height="15" fill="rgb(207,12,36)" fg:x="9939" fg:w="6"/><text x="39.5750%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="39.3250%" y="581" width="0.0237%" height="15" fill="rgb(210,214,24)" fg:x="9939" fg:w="6"/><text x="39.5750%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="39.3250%" y="565" width="0.0237%" height="15" fill="rgb(206,56,30)" fg:x="9939" fg:w="6"/><text x="39.5750%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.3606%" y="437" width="0.0158%" height="15" fill="rgb(228,143,26)" fg:x="9948" fg:w="4"/><text x="39.6106%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.3606%" y="421" width="0.0158%" height="15" fill="rgb(216,218,46)" fg:x="9948" fg:w="4"/><text x="39.6106%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.3606%" y="405" width="0.0158%" height="15" fill="rgb(206,6,19)" fg:x="9948" fg:w="4"/><text x="39.6106%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="39.3606%" y="485" width="0.0317%" height="15" fill="rgb(239,177,51)" fg:x="9948" fg:w="8"/><text x="39.6106%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="39.3606%" y="469" width="0.0317%" height="15" fill="rgb(216,55,25)" fg:x="9948" fg:w="8"/><text x="39.6106%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="39.3606%" y="453" width="0.0317%" height="15" fill="rgb(231,163,29)" fg:x="9948" fg:w="8"/><text x="39.6106%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.3764%" y="437" width="0.0158%" height="15" fill="rgb(232,149,50)" fg:x="9952" fg:w="4"/><text x="39.6264%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.3764%" y="421" width="0.0158%" height="15" fill="rgb(223,142,48)" fg:x="9952" fg:w="4"/><text x="39.6264%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.3764%" y="405" width="0.0158%" height="15" fill="rgb(245,83,23)" fg:x="9952" fg:w="4"/><text x="39.6264%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.3764%" y="389" width="0.0158%" height="15" fill="rgb(224,63,2)" fg:x="9952" fg:w="4"/><text x="39.6264%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.3923%" y="421" width="0.0119%" height="15" fill="rgb(218,65,53)" fg:x="9956" fg:w="3"/><text x="39.6423%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.3923%" y="405" width="0.0119%" height="15" fill="rgb(221,84,29)" fg:x="9956" fg:w="3"/><text x="39.6423%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.3923%" y="389" width="0.0119%" height="15" fill="rgb(234,0,32)" fg:x="9956" fg:w="3"/><text x="39.6423%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="39.3606%" y="533" width="0.0593%" height="15" fill="rgb(206,20,16)" fg:x="9948" fg:w="15"/><text x="39.6106%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="39.3606%" y="517" width="0.0593%" height="15" fill="rgb(244,172,18)" fg:x="9948" fg:w="15"/><text x="39.6106%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="39.3606%" y="501" width="0.0593%" height="15" fill="rgb(254,133,1)" fg:x="9948" fg:w="15"/><text x="39.6106%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="39.3923%" y="485" width="0.0277%" height="15" fill="rgb(222,206,41)" fg:x="9956" fg:w="7"/><text x="39.6423%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.3923%" y="469" width="0.0277%" height="15" fill="rgb(212,3,42)" fg:x="9956" fg:w="7"/><text x="39.6423%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.3923%" y="453" width="0.0277%" height="15" fill="rgb(241,11,4)" fg:x="9956" fg:w="7"/><text x="39.6423%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.3923%" y="437" width="0.0277%" height="15" fill="rgb(205,19,26)" fg:x="9956" fg:w="7"/><text x="39.6423%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.4041%" y="421" width="0.0158%" height="15" fill="rgb(210,179,32)" fg:x="9959" fg:w="4"/><text x="39.6541%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.4041%" y="405" width="0.0158%" height="15" fill="rgb(227,116,49)" fg:x="9959" fg:w="4"/><text x="39.6541%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.4041%" y="389" width="0.0158%" height="15" fill="rgb(211,146,6)" fg:x="9959" fg:w="4"/><text x="39.6541%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.4041%" y="373" width="0.0158%" height="15" fill="rgb(219,44,39)" fg:x="9959" fg:w="4"/><text x="39.6541%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.4200%" y="421" width="0.0158%" height="15" fill="rgb(234,128,11)" fg:x="9963" fg:w="4"/><text x="39.6700%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.4200%" y="405" width="0.0158%" height="15" fill="rgb(220,183,53)" fg:x="9963" fg:w="4"/><text x="39.6700%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.4200%" y="389" width="0.0158%" height="15" fill="rgb(213,219,32)" fg:x="9963" fg:w="4"/><text x="39.6700%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="39.3567%" y="581" width="0.0910%" height="15" fill="rgb(232,156,16)" fg:x="9947" fg:w="23"/><text x="39.6067%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="39.3606%" y="565" width="0.0870%" height="15" fill="rgb(246,135,34)" fg:x="9948" fg:w="22"/><text x="39.6106%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="39.3606%" y="549" width="0.0870%" height="15" fill="rgb(241,99,0)" fg:x="9948" fg:w="22"/><text x="39.6106%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="39.4200%" y="533" width="0.0277%" height="15" fill="rgb(222,103,45)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.4200%" y="517" width="0.0277%" height="15" fill="rgb(212,57,4)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.4200%" y="501" width="0.0277%" height="15" fill="rgb(215,68,47)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.4200%" y="485" width="0.0277%" height="15" fill="rgb(230,84,2)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.4200%" y="469" width="0.0277%" height="15" fill="rgb(220,102,14)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.4200%" y="453" width="0.0277%" height="15" fill="rgb(240,10,32)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.4200%" y="437" width="0.0277%" height="15" fill="rgb(215,47,27)" fg:x="9963" fg:w="7"/><text x="39.6700%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.4358%" y="421" width="0.0119%" height="15" fill="rgb(233,188,43)" fg:x="9967" fg:w="3"/><text x="39.6858%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.4358%" y="405" width="0.0119%" height="15" fill="rgb(253,190,1)" fg:x="9967" fg:w="3"/><text x="39.6858%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.4358%" y="389" width="0.0119%" height="15" fill="rgb(206,114,52)" fg:x="9967" fg:w="3"/><text x="39.6858%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.4358%" y="373" width="0.0119%" height="15" fill="rgb(233,120,37)" fg:x="9967" fg:w="3"/><text x="39.6858%" y="383.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (27 samples, 0.11%)</title><rect x="39.3487%" y="645" width="0.1068%" height="15" fill="rgb(214,52,39)" fg:x="9945" fg:w="27"/><text x="39.5987%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="39.3487%" y="629" width="0.1068%" height="15" fill="rgb(223,80,29)" fg:x="9945" fg:w="27"/><text x="39.5987%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.10%)</title><rect x="39.3567%" y="613" width="0.0989%" height="15" fill="rgb(230,101,40)" fg:x="9947" fg:w="25"/><text x="39.6067%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (25 samples, 0.10%)</title><rect x="39.3567%" y="597" width="0.0989%" height="15" fill="rgb(219,211,8)" fg:x="9947" fg:w="25"/><text x="39.6067%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (82 samples, 0.32%)</title><rect x="39.1351%" y="725" width="0.3244%" height="15" fill="rgb(252,126,28)" fg:x="9891" fg:w="82"/><text x="39.3851%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.32%)</title><rect x="39.1351%" y="709" width="0.3244%" height="15" fill="rgb(215,56,38)" fg:x="9891" fg:w="82"/><text x="39.3851%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (82 samples, 0.32%)</title><rect x="39.1351%" y="693" width="0.3244%" height="15" fill="rgb(249,55,44)" fg:x="9891" fg:w="82"/><text x="39.3851%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (82 samples, 0.32%)</title><rect x="39.1351%" y="677" width="0.3244%" height="15" fill="rgb(220,221,32)" fg:x="9891" fg:w="82"/><text x="39.3851%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (28 samples, 0.11%)</title><rect x="39.3487%" y="661" width="0.1108%" height="15" fill="rgb(212,216,41)" fg:x="9945" fg:w="28"/><text x="39.5987%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.4754%" y="469" width="0.0119%" height="15" fill="rgb(228,213,43)" fg:x="9977" fg:w="3"/><text x="39.7254%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.4872%" y="341" width="0.0158%" height="15" fill="rgb(211,31,26)" fg:x="9980" fg:w="4"/><text x="39.7372%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.4872%" y="325" width="0.0158%" height="15" fill="rgb(229,202,19)" fg:x="9980" fg:w="4"/><text x="39.7372%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.4872%" y="309" width="0.0158%" height="15" fill="rgb(229,105,46)" fg:x="9980" fg:w="4"/><text x="39.7372%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (237 samples, 0.94%)</title><rect x="38.5772%" y="773" width="0.9377%" height="15" fill="rgb(235,108,1)" fg:x="9750" fg:w="237"/><text x="38.8272%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (225 samples, 0.89%)</title><rect x="38.6247%" y="757" width="0.8902%" height="15" fill="rgb(245,111,35)" fg:x="9762" fg:w="225"/><text x="38.8747%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (225 samples, 0.89%)</title><rect x="38.6247%" y="741" width="0.8902%" height="15" fill="rgb(219,185,31)" fg:x="9762" fg:w="225"/><text x="38.8747%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.06%)</title><rect x="39.4595%" y="725" width="0.0554%" height="15" fill="rgb(214,4,43)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.06%)</title><rect x="39.4595%" y="709" width="0.0554%" height="15" fill="rgb(235,227,40)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="39.4595%" y="693" width="0.0554%" height="15" fill="rgb(230,88,30)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="39.4595%" y="677" width="0.0554%" height="15" fill="rgb(216,217,1)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="39.4595%" y="661" width="0.0554%" height="15" fill="rgb(248,139,50)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="39.4595%" y="645" width="0.0554%" height="15" fill="rgb(233,1,21)" fg:x="9973" fg:w="14"/><text x="39.7095%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="39.4674%" y="629" width="0.0475%" height="15" fill="rgb(215,183,12)" fg:x="9975" fg:w="12"/><text x="39.7174%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="39.4674%" y="613" width="0.0475%" height="15" fill="rgb(229,104,42)" fg:x="9975" fg:w="12"/><text x="39.7174%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="39.4754%" y="597" width="0.0396%" height="15" fill="rgb(243,34,48)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="39.4754%" y="581" width="0.0396%" height="15" fill="rgb(239,11,44)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="39.4754%" y="565" width="0.0396%" height="15" fill="rgb(231,98,35)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="39.4754%" y="549" width="0.0396%" height="15" fill="rgb(233,28,25)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="39.4754%" y="533" width="0.0396%" height="15" fill="rgb(234,123,11)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="39.4754%" y="517" width="0.0396%" height="15" fill="rgb(220,69,3)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="39.4754%" y="501" width="0.0396%" height="15" fill="rgb(214,64,36)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="39.4754%" y="485" width="0.0396%" height="15" fill="rgb(211,138,32)" fg:x="9977" fg:w="10"/><text x="39.7254%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="39.4872%" y="469" width="0.0277%" height="15" fill="rgb(213,118,47)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="39.4872%" y="453" width="0.0277%" height="15" fill="rgb(243,124,49)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.4872%" y="437" width="0.0277%" height="15" fill="rgb(221,30,28)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.4872%" y="421" width="0.0277%" height="15" fill="rgb(246,37,13)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.4872%" y="405" width="0.0277%" height="15" fill="rgb(249,66,14)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.4872%" y="389" width="0.0277%" height="15" fill="rgb(213,166,5)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.4872%" y="373" width="0.0277%" height="15" fill="rgb(221,66,24)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.4872%" y="357" width="0.0277%" height="15" fill="rgb(210,132,17)" fg:x="9980" fg:w="7"/><text x="39.7372%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.5030%" y="341" width="0.0119%" height="15" fill="rgb(243,202,5)" fg:x="9984" fg:w="3"/><text x="39.7530%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.5030%" y="325" width="0.0119%" height="15" fill="rgb(233,70,48)" fg:x="9984" fg:w="3"/><text x="39.7530%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.5030%" y="309" width="0.0119%" height="15" fill="rgb(238,41,26)" fg:x="9984" fg:w="3"/><text x="39.7530%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.5030%" y="293" width="0.0119%" height="15" fill="rgb(241,19,31)" fg:x="9984" fg:w="3"/><text x="39.7530%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.5030%" y="277" width="0.0119%" height="15" fill="rgb(214,76,10)" fg:x="9984" fg:w="3"/><text x="39.7530%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.5426%" y="661" width="0.0158%" height="15" fill="rgb(254,202,22)" fg:x="9994" fg:w="4"/><text x="39.7926%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="39.5426%" y="709" width="0.0317%" height="15" fill="rgb(214,72,24)" fg:x="9994" fg:w="8"/><text x="39.7926%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="39.5426%" y="693" width="0.0317%" height="15" fill="rgb(221,92,46)" fg:x="9994" fg:w="8"/><text x="39.7926%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="39.5426%" y="677" width="0.0317%" height="15" fill="rgb(246,13,50)" fg:x="9994" fg:w="8"/><text x="39.7926%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.5584%" y="661" width="0.0158%" height="15" fill="rgb(240,165,38)" fg:x="9998" fg:w="4"/><text x="39.8084%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.5584%" y="645" width="0.0158%" height="15" fill="rgb(241,24,51)" fg:x="9998" fg:w="4"/><text x="39.8084%" y="655.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.5584%" y="629" width="0.0158%" height="15" fill="rgb(227,51,44)" fg:x="9998" fg:w="4"/><text x="39.8084%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="39.5743%" y="629" width="0.0237%" height="15" fill="rgb(231,121,3)" fg:x="10002" fg:w="6"/><text x="39.8243%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.5822%" y="613" width="0.0158%" height="15" fill="rgb(245,3,41)" fg:x="10004" fg:w="4"/><text x="39.8322%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.5822%" y="597" width="0.0158%" height="15" fill="rgb(214,13,26)" fg:x="10004" fg:w="4"/><text x="39.8322%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.5980%" y="629" width="0.0158%" height="15" fill="rgb(252,75,11)" fg:x="10008" fg:w="4"/><text x="39.8480%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.5980%" y="613" width="0.0158%" height="15" fill="rgb(218,226,17)" fg:x="10008" fg:w="4"/><text x="39.8480%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.5980%" y="597" width="0.0158%" height="15" fill="rgb(248,89,38)" fg:x="10008" fg:w="4"/><text x="39.8480%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.5980%" y="581" width="0.0158%" height="15" fill="rgb(237,73,46)" fg:x="10008" fg:w="4"/><text x="39.8480%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="39.6020%" y="565" width="0.0119%" height="15" fill="rgb(242,78,33)" fg:x="10009" fg:w="3"/><text x="39.8520%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="39.6020%" y="549" width="0.0119%" height="15" fill="rgb(235,60,3)" fg:x="10009" fg:w="3"/><text x="39.8520%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.6020%" y="533" width="0.0119%" height="15" fill="rgb(216,172,19)" fg:x="10009" fg:w="3"/><text x="39.8520%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.6020%" y="517" width="0.0119%" height="15" fill="rgb(227,6,42)" fg:x="10009" fg:w="3"/><text x="39.8520%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.6020%" y="501" width="0.0119%" height="15" fill="rgb(223,207,42)" fg:x="10009" fg:w="3"/><text x="39.8520%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="39.5149%" y="773" width="0.1068%" height="15" fill="rgb(246,138,30)" fg:x="9987" fg:w="27"/><text x="39.7649%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="39.5149%" y="757" width="0.1068%" height="15" fill="rgb(251,199,47)" fg:x="9987" fg:w="27"/><text x="39.7649%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="39.5426%" y="741" width="0.0791%" height="15" fill="rgb(228,218,44)" fg:x="9994" fg:w="20"/><text x="39.7926%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="39.5426%" y="725" width="0.0791%" height="15" fill="rgb(220,68,6)" fg:x="9994" fg:w="20"/><text x="39.7926%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="39.5743%" y="709" width="0.0475%" height="15" fill="rgb(240,60,26)" fg:x="10002" fg:w="12"/><text x="39.8243%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="39.5743%" y="693" width="0.0475%" height="15" fill="rgb(211,200,19)" fg:x="10002" fg:w="12"/><text x="39.8243%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="39.5743%" y="677" width="0.0475%" height="15" fill="rgb(242,145,30)" fg:x="10002" fg:w="12"/><text x="39.8243%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="39.5743%" y="661" width="0.0475%" height="15" fill="rgb(225,64,13)" fg:x="10002" fg:w="12"/><text x="39.8243%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="39.5743%" y="645" width="0.0475%" height="15" fill="rgb(218,103,35)" fg:x="10002" fg:w="12"/><text x="39.8243%" y="655.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.6257%" y="725" width="0.0158%" height="15" fill="rgb(216,93,46)" fg:x="10015" fg:w="4"/><text x="39.8757%" y="735.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.6297%" y="709" width="0.0119%" height="15" fill="rgb(225,159,27)" fg:x="10016" fg:w="3"/><text x="39.8797%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.6653%" y="549" width="0.0119%" height="15" fill="rgb(225,204,11)" fg:x="10025" fg:w="3"/><text x="39.9153%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.6653%" y="533" width="0.0119%" height="15" fill="rgb(205,56,4)" fg:x="10025" fg:w="3"/><text x="39.9153%" y="543.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.6653%" y="517" width="0.0119%" height="15" fill="rgb(206,6,35)" fg:x="10025" fg:w="3"/><text x="39.9153%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.6653%" y="597" width="0.0198%" height="15" fill="rgb(247,73,52)" fg:x="10025" fg:w="5"/><text x="39.9153%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.6653%" y="581" width="0.0198%" height="15" fill="rgb(246,97,4)" fg:x="10025" fg:w="5"/><text x="39.9153%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.6653%" y="565" width="0.0198%" height="15" fill="rgb(212,37,15)" fg:x="10025" fg:w="5"/><text x="39.9153%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.6851%" y="533" width="0.0119%" height="15" fill="rgb(208,130,40)" fg:x="10030" fg:w="3"/><text x="39.9351%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.6534%" y="645" width="0.0514%" height="15" fill="rgb(236,55,29)" fg:x="10022" fg:w="13"/><text x="39.9034%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="39.6653%" y="629" width="0.0396%" height="15" fill="rgb(209,156,45)" fg:x="10025" fg:w="10"/><text x="39.9153%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="39.6653%" y="613" width="0.0396%" height="15" fill="rgb(249,107,4)" fg:x="10025" fg:w="10"/><text x="39.9153%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="39.6851%" y="597" width="0.0198%" height="15" fill="rgb(227,7,13)" fg:x="10030" fg:w="5"/><text x="39.9351%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.6851%" y="581" width="0.0198%" height="15" fill="rgb(250,129,14)" fg:x="10030" fg:w="5"/><text x="39.9351%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.6851%" y="565" width="0.0198%" height="15" fill="rgb(229,92,13)" fg:x="10030" fg:w="5"/><text x="39.9351%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.6851%" y="549" width="0.0198%" height="15" fill="rgb(245,98,39)" fg:x="10030" fg:w="5"/><text x="39.9351%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.7167%" y="533" width="0.0119%" height="15" fill="rgb(234,135,48)" fg:x="10038" fg:w="3"/><text x="39.9667%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.7167%" y="581" width="0.0198%" height="15" fill="rgb(230,98,28)" fg:x="10038" fg:w="5"/><text x="39.9667%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.7167%" y="565" width="0.0198%" height="15" fill="rgb(223,121,0)" fg:x="10038" fg:w="5"/><text x="39.9667%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.7167%" y="549" width="0.0198%" height="15" fill="rgb(234,173,33)" fg:x="10038" fg:w="5"/><text x="39.9667%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="39.6415%" y="693" width="0.1147%" height="15" fill="rgb(245,47,8)" fg:x="10019" fg:w="29"/><text x="39.8915%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="39.6534%" y="677" width="0.1029%" height="15" fill="rgb(205,17,20)" fg:x="10022" fg:w="26"/><text x="39.9034%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.10%)</title><rect x="39.6534%" y="661" width="0.1029%" height="15" fill="rgb(232,151,16)" fg:x="10022" fg:w="26"/><text x="39.9034%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="39.7048%" y="645" width="0.0514%" height="15" fill="rgb(208,30,32)" fg:x="10035" fg:w="13"/><text x="39.9548%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="39.7048%" y="629" width="0.0514%" height="15" fill="rgb(254,26,3)" fg:x="10035" fg:w="13"/><text x="39.9548%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="39.7167%" y="613" width="0.0396%" height="15" fill="rgb(240,177,30)" fg:x="10038" fg:w="10"/><text x="39.9667%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="39.7167%" y="597" width="0.0396%" height="15" fill="rgb(248,76,44)" fg:x="10038" fg:w="10"/><text x="39.9667%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="39.7365%" y="581" width="0.0198%" height="15" fill="rgb(241,186,54)" fg:x="10043" fg:w="5"/><text x="39.9865%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.7365%" y="565" width="0.0198%" height="15" fill="rgb(249,171,29)" fg:x="10043" fg:w="5"/><text x="39.9865%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.7365%" y="549" width="0.0198%" height="15" fill="rgb(237,151,44)" fg:x="10043" fg:w="5"/><text x="39.9865%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.7365%" y="533" width="0.0198%" height="15" fill="rgb(228,174,30)" fg:x="10043" fg:w="5"/><text x="39.9865%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.7444%" y="517" width="0.0119%" height="15" fill="rgb(252,14,37)" fg:x="10045" fg:w="3"/><text x="39.9944%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.7444%" y="501" width="0.0119%" height="15" fill="rgb(207,111,40)" fg:x="10045" fg:w="3"/><text x="39.9944%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.7563%" y="581" width="0.0158%" height="15" fill="rgb(248,171,54)" fg:x="10048" fg:w="4"/><text x="40.0063%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.7563%" y="565" width="0.0158%" height="15" fill="rgb(211,127,2)" fg:x="10048" fg:w="4"/><text x="40.0063%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.7563%" y="549" width="0.0158%" height="15" fill="rgb(236,87,47)" fg:x="10048" fg:w="4"/><text x="40.0063%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.7840%" y="501" width="0.0198%" height="15" fill="rgb(223,190,45)" fg:x="10055" fg:w="5"/><text x="40.0340%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.7840%" y="485" width="0.0198%" height="15" fill="rgb(215,5,16)" fg:x="10055" fg:w="5"/><text x="40.0340%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.7840%" y="469" width="0.0198%" height="15" fill="rgb(252,82,33)" fg:x="10055" fg:w="5"/><text x="40.0340%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.7919%" y="453" width="0.0119%" height="15" fill="rgb(247,213,44)" fg:x="10057" fg:w="3"/><text x="40.0419%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.7919%" y="437" width="0.0119%" height="15" fill="rgb(205,196,44)" fg:x="10057" fg:w="3"/><text x="40.0419%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.06%)</title><rect x="39.7563%" y="693" width="0.0633%" height="15" fill="rgb(237,96,54)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="39.7563%" y="677" width="0.0633%" height="15" fill="rgb(230,113,34)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="39.7563%" y="661" width="0.0633%" height="15" fill="rgb(221,224,12)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="39.7563%" y="645" width="0.0633%" height="15" fill="rgb(219,112,44)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="39.7563%" y="629" width="0.0633%" height="15" fill="rgb(210,31,13)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="39.7563%" y="613" width="0.0633%" height="15" fill="rgb(230,25,16)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="39.7563%" y="597" width="0.0633%" height="15" fill="rgb(246,108,53)" fg:x="10048" fg:w="16"/><text x="40.0063%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="39.7721%" y="581" width="0.0475%" height="15" fill="rgb(241,172,50)" fg:x="10052" fg:w="12"/><text x="40.0221%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="39.7721%" y="565" width="0.0475%" height="15" fill="rgb(235,141,10)" fg:x="10052" fg:w="12"/><text x="40.0221%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="39.7721%" y="549" width="0.0475%" height="15" fill="rgb(220,174,43)" fg:x="10052" fg:w="12"/><text x="40.0221%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="39.7840%" y="533" width="0.0356%" height="15" fill="rgb(215,181,40)" fg:x="10055" fg:w="9"/><text x="40.0340%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="39.7840%" y="517" width="0.0356%" height="15" fill="rgb(230,97,2)" fg:x="10055" fg:w="9"/><text x="40.0340%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="39.8038%" y="501" width="0.0158%" height="15" fill="rgb(211,25,27)" fg:x="10060" fg:w="4"/><text x="40.0538%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="39.8038%" y="485" width="0.0158%" height="15" fill="rgb(230,87,26)" fg:x="10060" fg:w="4"/><text x="40.0538%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.8038%" y="469" width="0.0158%" height="15" fill="rgb(227,160,17)" fg:x="10060" fg:w="4"/><text x="40.0538%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (55 samples, 0.22%)</title><rect x="39.6217%" y="757" width="0.2176%" height="15" fill="rgb(244,85,34)" fg:x="10014" fg:w="55"/><text x="39.8717%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="39.6217%" y="741" width="0.2176%" height="15" fill="rgb(207,70,0)" fg:x="10014" fg:w="55"/><text x="39.8717%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.20%)</title><rect x="39.6415%" y="725" width="0.1978%" height="15" fill="rgb(223,129,7)" fg:x="10019" fg:w="50"/><text x="39.8915%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (50 samples, 0.20%)</title><rect x="39.6415%" y="709" width="0.1978%" height="15" fill="rgb(246,105,7)" fg:x="10019" fg:w="50"/><text x="39.8915%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="39.8196%" y="693" width="0.0198%" height="15" fill="rgb(215,154,42)" fg:x="10064" fg:w="5"/><text x="40.0696%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="39.8196%" y="677" width="0.0198%" height="15" fill="rgb(220,215,30)" fg:x="10064" fg:w="5"/><text x="40.0696%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.8196%" y="661" width="0.0198%" height="15" fill="rgb(228,81,51)" fg:x="10064" fg:w="5"/><text x="40.0696%" y="671.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.8275%" y="645" width="0.0119%" height="15" fill="rgb(247,71,54)" fg:x="10066" fg:w="3"/><text x="40.0775%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.8275%" y="629" width="0.0119%" height="15" fill="rgb(234,176,34)" fg:x="10066" fg:w="3"/><text x="40.0775%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (1,998 samples, 7.91%)</title><rect x="31.9498%" y="917" width="7.9054%" height="15" fill="rgb(241,103,54)" fg:x="8075" fg:w="1998"/><text x="32.1998%" y="927.50">rayon_core:..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,998 samples, 7.91%)</title><rect x="31.9498%" y="901" width="7.9054%" height="15" fill="rgb(228,22,34)" fg:x="8075" fg:w="1998"/><text x="32.1998%" y="911.50">rayon::iter..</text></g><g><title>rayon_core::registry::in_worker (1,966 samples, 7.78%)</title><rect x="32.0764%" y="885" width="7.7787%" height="15" fill="rgb(241,179,48)" fg:x="8107" fg:w="1966"/><text x="32.3264%" y="895.50">rayon_core:..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (1,966 samples, 7.78%)</title><rect x="32.0764%" y="869" width="7.7787%" height="15" fill="rgb(235,167,37)" fg:x="8107" fg:w="1966"/><text x="32.3264%" y="879.50">_ZN10rayon_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (333 samples, 1.32%)</title><rect x="38.5376%" y="853" width="1.3176%" height="15" fill="rgb(213,109,30)" fg:x="9740" fg:w="333"/><text x="38.7876%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (333 samples, 1.32%)</title><rect x="38.5376%" y="837" width="1.3176%" height="15" fill="rgb(222,172,16)" fg:x="9740" fg:w="333"/><text x="38.7876%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (333 samples, 1.32%)</title><rect x="38.5376%" y="821" width="1.3176%" height="15" fill="rgb(233,192,5)" fg:x="9740" fg:w="333"/><text x="38.7876%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (323 samples, 1.28%)</title><rect x="38.5772%" y="805" width="1.2780%" height="15" fill="rgb(247,189,41)" fg:x="9750" fg:w="323"/><text x="38.8272%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (323 samples, 1.28%)</title><rect x="38.5772%" y="789" width="1.2780%" height="15" fill="rgb(218,134,47)" fg:x="9750" fg:w="323"/><text x="38.8272%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (59 samples, 0.23%)</title><rect x="39.6217%" y="773" width="0.2334%" height="15" fill="rgb(216,29,3)" fg:x="10014" fg:w="59"/><text x="39.8717%" y="783.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="39.8394%" y="757" width="0.0158%" height="15" fill="rgb(246,140,12)" fg:x="10069" fg:w="4"/><text x="40.0894%" y="767.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="39.8394%" y="741" width="0.0158%" height="15" fill="rgb(230,136,11)" fg:x="10069" fg:w="4"/><text x="40.0894%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="39.8394%" y="725" width="0.0158%" height="15" fill="rgb(247,22,47)" fg:x="10069" fg:w="4"/><text x="40.0894%" y="735.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="39.8394%" y="709" width="0.0158%" height="15" fill="rgb(218,84,22)" fg:x="10069" fg:w="4"/><text x="40.0894%" y="719.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="39.8394%" y="693" width="0.0158%" height="15" fill="rgb(216,87,39)" fg:x="10069" fg:w="4"/><text x="40.0894%" y="703.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="39.8710%" y="869" width="0.0317%" height="15" fill="rgb(221,178,8)" fg:x="10077" fg:w="8"/><text x="40.1210%" y="879.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="39.8750%" y="853" width="0.0277%" height="15" fill="rgb(230,42,11)" fg:x="10078" fg:w="7"/><text x="40.1250%" y="863.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="39.9304%" y="821" width="0.0317%" height="15" fill="rgb(237,229,4)" fg:x="10092" fg:w="8"/><text x="40.1804%" y="831.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="39.9343%" y="805" width="0.0277%" height="15" fill="rgb(222,31,33)" fg:x="10093" fg:w="7"/><text x="40.1843%" y="815.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="39.9897%" y="773" width="0.0237%" height="15" fill="rgb(210,17,39)" fg:x="10107" fg:w="6"/><text x="40.2397%" y="783.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="39.9937%" y="757" width="0.0198%" height="15" fill="rgb(244,93,20)" fg:x="10108" fg:w="5"/><text x="40.2437%" y="767.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="40.0372%" y="725" width="0.0198%" height="15" fill="rgb(210,40,47)" fg:x="10119" fg:w="5"/><text x="40.2872%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="40.0372%" y="709" width="0.0198%" height="15" fill="rgb(239,211,47)" fg:x="10119" fg:w="5"/><text x="40.2872%" y="719.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="40.0965%" y="677" width="0.0158%" height="15" fill="rgb(251,223,49)" fg:x="10134" fg:w="4"/><text x="40.3465%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.1005%" y="661" width="0.0119%" height="15" fill="rgb(221,149,5)" fg:x="10135" fg:w="3"/><text x="40.3505%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="40.1124%" y="645" width="0.0277%" height="15" fill="rgb(219,224,51)" fg:x="10138" fg:w="7"/><text x="40.3624%" y="655.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.1282%" y="629" width="0.0119%" height="15" fill="rgb(223,7,8)" fg:x="10142" fg:w="3"/><text x="40.3782%" y="639.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.1282%" y="613" width="0.0119%" height="15" fill="rgb(241,217,22)" fg:x="10142" fg:w="3"/><text x="40.3782%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="40.0570%" y="693" width="0.1187%" height="15" fill="rgb(248,209,0)" fg:x="10124" fg:w="30"/><text x="40.3070%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="40.1124%" y="677" width="0.0633%" height="15" fill="rgb(217,205,4)" fg:x="10138" fg:w="16"/><text x="40.3624%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="40.1124%" y="661" width="0.0633%" height="15" fill="rgb(228,124,39)" fg:x="10138" fg:w="16"/><text x="40.3624%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="40.1401%" y="645" width="0.0356%" height="15" fill="rgb(250,116,42)" fg:x="10145" fg:w="9"/><text x="40.3901%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.1401%" y="629" width="0.0356%" height="15" fill="rgb(223,202,9)" fg:x="10145" fg:w="9"/><text x="40.3901%" y="639.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="40.1955%" y="661" width="0.0277%" height="15" fill="rgb(242,222,40)" fg:x="10159" fg:w="7"/><text x="40.4455%" y="671.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="40.1955%" y="645" width="0.0277%" height="15" fill="rgb(229,99,46)" fg:x="10159" fg:w="7"/><text x="40.4455%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="40.2232%" y="629" width="0.0317%" height="15" fill="rgb(225,56,46)" fg:x="10166" fg:w="8"/><text x="40.4732%" y="639.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="40.2390%" y="613" width="0.0158%" height="15" fill="rgb(227,94,5)" fg:x="10170" fg:w="4"/><text x="40.4890%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.2429%" y="597" width="0.0119%" height="15" fill="rgb(205,112,38)" fg:x="10171" fg:w="3"/><text x="40.4929%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (67 samples, 0.27%)</title><rect x="40.0135%" y="741" width="0.2651%" height="15" fill="rgb(231,133,46)" fg:x="10113" fg:w="67"/><text x="40.2635%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.22%)</title><rect x="40.0570%" y="725" width="0.2216%" height="15" fill="rgb(217,16,9)" fg:x="10124" fg:w="56"/><text x="40.3070%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (56 samples, 0.22%)</title><rect x="40.0570%" y="709" width="0.2216%" height="15" fill="rgb(249,173,9)" fg:x="10124" fg:w="56"/><text x="40.3070%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.10%)</title><rect x="40.1757%" y="693" width="0.1029%" height="15" fill="rgb(205,163,53)" fg:x="10154" fg:w="26"/><text x="40.4257%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="40.1757%" y="677" width="0.1029%" height="15" fill="rgb(217,54,41)" fg:x="10154" fg:w="26"/><text x="40.4257%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="40.2232%" y="661" width="0.0554%" height="15" fill="rgb(228,216,12)" fg:x="10166" fg:w="14"/><text x="40.4732%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="40.2232%" y="645" width="0.0554%" height="15" fill="rgb(244,228,15)" fg:x="10166" fg:w="14"/><text x="40.4732%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="40.2548%" y="629" width="0.0237%" height="15" fill="rgb(221,176,53)" fg:x="10174" fg:w="6"/><text x="40.5048%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="40.2548%" y="613" width="0.0237%" height="15" fill="rgb(205,94,34)" fg:x="10174" fg:w="6"/><text x="40.5048%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="40.3023%" y="709" width="0.0158%" height="15" fill="rgb(213,110,48)" fg:x="10186" fg:w="4"/><text x="40.5523%" y="719.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="40.3023%" y="693" width="0.0158%" height="15" fill="rgb(236,142,28)" fg:x="10186" fg:w="4"/><text x="40.5523%" y="703.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="40.3537%" y="661" width="0.0237%" height="15" fill="rgb(225,135,29)" fg:x="10199" fg:w="6"/><text x="40.6037%" y="671.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="40.3577%" y="645" width="0.0198%" height="15" fill="rgb(252,45,31)" fg:x="10200" fg:w="5"/><text x="40.6077%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.3775%" y="629" width="0.0356%" height="15" fill="rgb(211,187,50)" fg:x="10205" fg:w="9"/><text x="40.6275%" y="639.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="40.3933%" y="613" width="0.0198%" height="15" fill="rgb(229,109,7)" fg:x="10209" fg:w="5"/><text x="40.6433%" y="623.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="40.3933%" y="597" width="0.0198%" height="15" fill="rgb(251,131,51)" fg:x="10209" fg:w="5"/><text x="40.6433%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="40.3181%" y="677" width="0.1306%" height="15" fill="rgb(251,180,35)" fg:x="10190" fg:w="33"/><text x="40.5681%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="40.3775%" y="661" width="0.0712%" height="15" fill="rgb(211,46,32)" fg:x="10205" fg:w="18"/><text x="40.6275%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="40.3775%" y="645" width="0.0712%" height="15" fill="rgb(248,123,17)" fg:x="10205" fg:w="18"/><text x="40.6275%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="40.4131%" y="629" width="0.0356%" height="15" fill="rgb(227,141,18)" fg:x="10214" fg:w="9"/><text x="40.6631%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.4131%" y="613" width="0.0356%" height="15" fill="rgb(216,102,9)" fg:x="10214" fg:w="9"/><text x="40.6631%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="40.4803%" y="645" width="0.0158%" height="15" fill="rgb(253,47,13)" fg:x="10231" fg:w="4"/><text x="40.7303%" y="655.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="40.4803%" y="629" width="0.0158%" height="15" fill="rgb(226,93,23)" fg:x="10231" fg:w="4"/><text x="40.7303%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="40.4962%" y="613" width="0.0317%" height="15" fill="rgb(247,104,17)" fg:x="10235" fg:w="8"/><text x="40.7462%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153 samples, 0.61%)</title><rect x="39.9620%" y="789" width="0.6054%" height="15" fill="rgb(233,203,26)" fg:x="10100" fg:w="153"/><text x="40.2120%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (140 samples, 0.55%)</title><rect x="40.0135%" y="773" width="0.5539%" height="15" fill="rgb(244,98,49)" fg:x="10113" fg:w="140"/><text x="40.2635%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (140 samples, 0.55%)</title><rect x="40.0135%" y="757" width="0.5539%" height="15" fill="rgb(235,134,22)" fg:x="10113" fg:w="140"/><text x="40.2635%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (73 samples, 0.29%)</title><rect x="40.2785%" y="741" width="0.2888%" height="15" fill="rgb(221,70,32)" fg:x="10180" fg:w="73"/><text x="40.5285%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (73 samples, 0.29%)</title><rect x="40.2785%" y="725" width="0.2888%" height="15" fill="rgb(238,15,50)" fg:x="10180" fg:w="73"/><text x="40.5285%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.25%)</title><rect x="40.3181%" y="709" width="0.2493%" height="15" fill="rgb(215,221,48)" fg:x="10190" fg:w="63"/><text x="40.5681%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (63 samples, 0.25%)</title><rect x="40.3181%" y="693" width="0.2493%" height="15" fill="rgb(236,73,3)" fg:x="10190" fg:w="63"/><text x="40.5681%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.12%)</title><rect x="40.4487%" y="677" width="0.1187%" height="15" fill="rgb(250,107,11)" fg:x="10223" fg:w="30"/><text x="40.6987%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.12%)</title><rect x="40.4487%" y="661" width="0.1187%" height="15" fill="rgb(242,39,14)" fg:x="10223" fg:w="30"/><text x="40.6987%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="40.4962%" y="645" width="0.0712%" height="15" fill="rgb(248,164,37)" fg:x="10235" fg:w="18"/><text x="40.7462%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="40.4962%" y="629" width="0.0712%" height="15" fill="rgb(217,60,12)" fg:x="10235" fg:w="18"/><text x="40.7462%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="40.5278%" y="613" width="0.0396%" height="15" fill="rgb(240,125,29)" fg:x="10243" fg:w="10"/><text x="40.7778%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="40.5278%" y="597" width="0.0396%" height="15" fill="rgb(208,207,28)" fg:x="10243" fg:w="10"/><text x="40.7778%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.5555%" y="581" width="0.0119%" height="15" fill="rgb(209,159,27)" fg:x="10250" fg:w="3"/><text x="40.8055%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.5555%" y="565" width="0.0119%" height="15" fill="rgb(251,176,53)" fg:x="10250" fg:w="3"/><text x="40.8055%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.6069%" y="709" width="0.0119%" height="15" fill="rgb(211,85,7)" fg:x="10263" fg:w="3"/><text x="40.8569%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.6069%" y="693" width="0.0119%" height="15" fill="rgb(216,64,54)" fg:x="10263" fg:w="3"/><text x="40.8569%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.6544%" y="661" width="0.0119%" height="15" fill="rgb(217,54,24)" fg:x="10275" fg:w="3"/><text x="40.9044%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.6544%" y="645" width="0.0119%" height="15" fill="rgb(208,206,53)" fg:x="10275" fg:w="3"/><text x="40.9044%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="40.6663%" y="629" width="0.0317%" height="15" fill="rgb(251,74,39)" fg:x="10278" fg:w="8"/><text x="40.9163%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.6861%" y="613" width="0.0119%" height="15" fill="rgb(226,47,5)" fg:x="10283" fg:w="3"/><text x="40.9361%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.6861%" y="597" width="0.0119%" height="15" fill="rgb(234,111,33)" fg:x="10283" fg:w="3"/><text x="40.9361%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="40.6188%" y="677" width="0.1147%" height="15" fill="rgb(251,14,10)" fg:x="10266" fg:w="29"/><text x="40.8688%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="40.6663%" y="661" width="0.0673%" height="15" fill="rgb(232,43,0)" fg:x="10278" fg:w="17"/><text x="40.9163%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="40.6663%" y="645" width="0.0673%" height="15" fill="rgb(222,68,43)" fg:x="10278" fg:w="17"/><text x="40.9163%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="40.6980%" y="629" width="0.0356%" height="15" fill="rgb(217,24,23)" fg:x="10286" fg:w="9"/><text x="40.9480%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.6980%" y="613" width="0.0356%" height="15" fill="rgb(229,209,14)" fg:x="10286" fg:w="9"/><text x="40.9480%" y="623.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="40.7138%" y="597" width="0.0198%" height="15" fill="rgb(250,149,48)" fg:x="10290" fg:w="5"/><text x="40.9638%" y="607.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="40.7177%" y="581" width="0.0158%" height="15" fill="rgb(210,120,37)" fg:x="10291" fg:w="4"/><text x="40.9677%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="40.7692%" y="645" width="0.0119%" height="15" fill="rgb(210,21,8)" fg:x="10304" fg:w="3"/><text x="41.0192%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="40.7692%" y="629" width="0.0119%" height="15" fill="rgb(243,145,7)" fg:x="10304" fg:w="3"/><text x="41.0192%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="40.7810%" y="613" width="0.0435%" height="15" fill="rgb(238,178,32)" fg:x="10307" fg:w="11"/><text x="41.0310%" y="623.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="40.8008%" y="597" width="0.0237%" height="15" fill="rgb(222,4,10)" fg:x="10312" fg:w="6"/><text x="41.0508%" y="607.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="40.8087%" y="581" width="0.0158%" height="15" fill="rgb(239,7,37)" fg:x="10314" fg:w="4"/><text x="41.0587%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.28%)</title><rect x="40.5793%" y="725" width="0.2770%" height="15" fill="rgb(215,31,37)" fg:x="10256" fg:w="70"/><text x="40.8293%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.24%)</title><rect x="40.6188%" y="709" width="0.2374%" height="15" fill="rgb(224,83,33)" fg:x="10266" fg:w="60"/><text x="40.8688%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (60 samples, 0.24%)</title><rect x="40.6188%" y="693" width="0.2374%" height="15" fill="rgb(239,55,3)" fg:x="10266" fg:w="60"/><text x="40.8688%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.12%)</title><rect x="40.7336%" y="677" width="0.1227%" height="15" fill="rgb(247,92,11)" fg:x="10295" fg:w="31"/><text x="40.9836%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="40.7336%" y="661" width="0.1227%" height="15" fill="rgb(239,200,7)" fg:x="10295" fg:w="31"/><text x="40.9836%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="40.7810%" y="645" width="0.0752%" height="15" fill="rgb(227,115,8)" fg:x="10307" fg:w="19"/><text x="41.0310%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="40.7810%" y="629" width="0.0752%" height="15" fill="rgb(215,189,27)" fg:x="10307" fg:w="19"/><text x="41.0310%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="40.8246%" y="613" width="0.0317%" height="15" fill="rgb(251,216,39)" fg:x="10318" fg:w="8"/><text x="41.0746%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="40.8246%" y="597" width="0.0317%" height="15" fill="rgb(207,29,47)" fg:x="10318" fg:w="8"/><text x="41.0746%" y="607.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="40.8364%" y="581" width="0.0198%" height="15" fill="rgb(210,71,34)" fg:x="10321" fg:w="5"/><text x="41.0864%" y="591.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="40.8404%" y="565" width="0.0158%" height="15" fill="rgb(253,217,51)" fg:x="10322" fg:w="4"/><text x="41.0904%" y="575.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="40.8641%" y="693" width="0.0356%" height="15" fill="rgb(222,117,46)" fg:x="10328" fg:w="9"/><text x="41.1141%" y="703.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="40.8720%" y="677" width="0.0277%" height="15" fill="rgb(226,132,6)" fg:x="10330" fg:w="7"/><text x="41.1220%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="40.9314%" y="613" width="0.0396%" height="15" fill="rgb(254,145,51)" fg:x="10345" fg:w="10"/><text x="41.1814%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="40.9551%" y="597" width="0.0158%" height="15" fill="rgb(231,199,27)" fg:x="10351" fg:w="4"/><text x="41.2051%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="40.8997%" y="661" width="0.1108%" height="15" fill="rgb(245,158,14)" fg:x="10337" fg:w="28"/><text x="41.1497%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.08%)</title><rect x="40.9314%" y="645" width="0.0791%" height="15" fill="rgb(240,113,14)" fg:x="10345" fg:w="20"/><text x="41.1814%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.08%)</title><rect x="40.9314%" y="629" width="0.0791%" height="15" fill="rgb(210,20,13)" fg:x="10345" fg:w="20"/><text x="41.1814%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="40.9710%" y="613" width="0.0396%" height="15" fill="rgb(241,144,13)" fg:x="10355" fg:w="10"/><text x="41.2210%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="40.9710%" y="597" width="0.0396%" height="15" fill="rgb(235,43,34)" fg:x="10355" fg:w="10"/><text x="41.2210%" y="607.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.0422%" y="629" width="0.0158%" height="15" fill="rgb(208,36,20)" fg:x="10373" fg:w="4"/><text x="41.2922%" y="639.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="41.0422%" y="613" width="0.0158%" height="15" fill="rgb(239,204,10)" fg:x="10373" fg:w="4"/><text x="41.2922%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="41.0580%" y="597" width="0.0396%" height="15" fill="rgb(217,84,43)" fg:x="10377" fg:w="10"/><text x="41.3080%" y="607.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="41.0778%" y="581" width="0.0198%" height="15" fill="rgb(241,170,50)" fg:x="10382" fg:w="5"/><text x="41.3278%" y="591.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="41.0778%" y="565" width="0.0198%" height="15" fill="rgb(226,205,29)" fg:x="10382" fg:w="5"/><text x="41.3278%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (70 samples, 0.28%)</title><rect x="40.8562%" y="725" width="0.2770%" height="15" fill="rgb(233,113,1)" fg:x="10326" fg:w="70"/><text x="41.1062%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.28%)</title><rect x="40.8562%" y="709" width="0.2770%" height="15" fill="rgb(253,98,13)" fg:x="10326" fg:w="70"/><text x="41.1062%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (59 samples, 0.23%)</title><rect x="40.8997%" y="693" width="0.2334%" height="15" fill="rgb(211,115,12)" fg:x="10337" fg:w="59"/><text x="41.1497%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (59 samples, 0.23%)</title><rect x="40.8997%" y="677" width="0.2334%" height="15" fill="rgb(208,12,16)" fg:x="10337" fg:w="59"/><text x="41.1497%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.12%)</title><rect x="41.0105%" y="661" width="0.1227%" height="15" fill="rgb(237,193,54)" fg:x="10365" fg:w="31"/><text x="41.2605%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="41.0105%" y="645" width="0.1227%" height="15" fill="rgb(243,22,42)" fg:x="10365" fg:w="31"/><text x="41.2605%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="41.0580%" y="629" width="0.0752%" height="15" fill="rgb(233,151,36)" fg:x="10377" fg:w="19"/><text x="41.3080%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="41.0580%" y="613" width="0.0752%" height="15" fill="rgb(237,57,45)" fg:x="10377" fg:w="19"/><text x="41.3080%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="41.0976%" y="597" width="0.0356%" height="15" fill="rgb(221,88,17)" fg:x="10387" fg:w="9"/><text x="41.3476%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="41.0976%" y="581" width="0.0356%" height="15" fill="rgb(230,79,15)" fg:x="10387" fg:w="9"/><text x="41.3476%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.1332%" y="645" width="0.0158%" height="15" fill="rgb(213,57,13)" fg:x="10396" fg:w="4"/><text x="41.3832%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.1332%" y="629" width="0.0158%" height="15" fill="rgb(222,116,39)" fg:x="10396" fg:w="4"/><text x="41.3832%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.1332%" y="613" width="0.0158%" height="15" fill="rgb(245,107,2)" fg:x="10396" fg:w="4"/><text x="41.3832%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (318 samples, 1.26%)</title><rect x="39.9027%" y="837" width="1.2582%" height="15" fill="rgb(238,1,10)" fg:x="10085" fg:w="318"/><text x="40.1527%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (303 samples, 1.20%)</title><rect x="39.9620%" y="821" width="1.1989%" height="15" fill="rgb(249,4,48)" fg:x="10100" fg:w="303"/><text x="40.2120%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (303 samples, 1.20%)</title><rect x="39.9620%" y="805" width="1.1989%" height="15" fill="rgb(223,151,18)" fg:x="10100" fg:w="303"/><text x="40.2120%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (150 samples, 0.59%)</title><rect x="40.5674%" y="789" width="0.5935%" height="15" fill="rgb(227,65,43)" fg:x="10253" fg:w="150"/><text x="40.8174%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (150 samples, 0.59%)</title><rect x="40.5674%" y="773" width="0.5935%" height="15" fill="rgb(218,40,45)" fg:x="10253" fg:w="150"/><text x="40.8174%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (147 samples, 0.58%)</title><rect x="40.5793%" y="757" width="0.5816%" height="15" fill="rgb(252,121,31)" fg:x="10256" fg:w="147"/><text x="40.8293%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (147 samples, 0.58%)</title><rect x="40.5793%" y="741" width="0.5816%" height="15" fill="rgb(219,158,43)" fg:x="10256" fg:w="147"/><text x="40.8293%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="41.1332%" y="725" width="0.0277%" height="15" fill="rgb(231,162,42)" fg:x="10396" fg:w="7"/><text x="41.3832%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="41.1332%" y="709" width="0.0277%" height="15" fill="rgb(217,179,25)" fg:x="10396" fg:w="7"/><text x="41.3832%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="41.1332%" y="693" width="0.0277%" height="15" fill="rgb(206,212,31)" fg:x="10396" fg:w="7"/><text x="41.3832%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="41.1332%" y="677" width="0.0277%" height="15" fill="rgb(235,144,12)" fg:x="10396" fg:w="7"/><text x="41.3832%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="41.1332%" y="661" width="0.0277%" height="15" fill="rgb(213,51,10)" fg:x="10396" fg:w="7"/><text x="41.3832%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="41.1490%" y="645" width="0.0119%" height="15" fill="rgb(231,145,14)" fg:x="10400" fg:w="3"/><text x="41.3990%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.1490%" y="629" width="0.0119%" height="15" fill="rgb(235,15,28)" fg:x="10400" fg:w="3"/><text x="41.3990%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.1490%" y="613" width="0.0119%" height="15" fill="rgb(237,206,10)" fg:x="10400" fg:w="3"/><text x="41.3990%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.1490%" y="597" width="0.0119%" height="15" fill="rgb(236,227,27)" fg:x="10400" fg:w="3"/><text x="41.3990%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.1490%" y="581" width="0.0119%" height="15" fill="rgb(246,83,35)" fg:x="10400" fg:w="3"/><text x="41.3990%" y="591.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.1807%" y="805" width="0.0158%" height="15" fill="rgb(220,136,24)" fg:x="10408" fg:w="4"/><text x="41.4307%" y="815.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="41.1807%" y="789" width="0.0158%" height="15" fill="rgb(217,3,25)" fg:x="10408" fg:w="4"/><text x="41.4307%" y="799.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.2281%" y="661" width="0.0119%" height="15" fill="rgb(239,24,14)" fg:x="10420" fg:w="3"/><text x="41.4781%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="41.2084%" y="677" width="0.0435%" height="15" fill="rgb(244,16,53)" fg:x="10415" fg:w="11"/><text x="41.4584%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.2400%" y="661" width="0.0119%" height="15" fill="rgb(208,175,44)" fg:x="10423" fg:w="3"/><text x="41.4900%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.2400%" y="645" width="0.0119%" height="15" fill="rgb(252,18,48)" fg:x="10423" fg:w="3"/><text x="41.4900%" y="655.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.2717%" y="645" width="0.0119%" height="15" fill="rgb(234,199,32)" fg:x="10431" fg:w="3"/><text x="41.5217%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="41.1965%" y="725" width="0.1068%" height="15" fill="rgb(225,77,54)" fg:x="10412" fg:w="27"/><text x="41.4465%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="41.2084%" y="709" width="0.0950%" height="15" fill="rgb(225,42,25)" fg:x="10415" fg:w="24"/><text x="41.4584%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="41.2084%" y="693" width="0.0950%" height="15" fill="rgb(242,227,46)" fg:x="10415" fg:w="24"/><text x="41.4584%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="41.2519%" y="677" width="0.0514%" height="15" fill="rgb(246,197,35)" fg:x="10426" fg:w="13"/><text x="41.5019%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="41.2519%" y="661" width="0.0514%" height="15" fill="rgb(215,159,26)" fg:x="10426" fg:w="13"/><text x="41.5019%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.2835%" y="645" width="0.0198%" height="15" fill="rgb(212,194,50)" fg:x="10434" fg:w="5"/><text x="41.5335%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.2835%" y="629" width="0.0198%" height="15" fill="rgb(246,132,1)" fg:x="10434" fg:w="5"/><text x="41.5335%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="41.2914%" y="613" width="0.0119%" height="15" fill="rgb(217,71,7)" fg:x="10436" fg:w="3"/><text x="41.5414%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.2914%" y="597" width="0.0119%" height="15" fill="rgb(252,59,32)" fg:x="10436" fg:w="3"/><text x="41.5414%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.3310%" y="645" width="0.0119%" height="15" fill="rgb(253,204,25)" fg:x="10446" fg:w="3"/><text x="41.5810%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="41.3112%" y="661" width="0.0435%" height="15" fill="rgb(232,21,16)" fg:x="10441" fg:w="11"/><text x="41.5612%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.3429%" y="645" width="0.0119%" height="15" fill="rgb(248,90,29)" fg:x="10449" fg:w="3"/><text x="41.5929%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.3429%" y="629" width="0.0119%" height="15" fill="rgb(249,223,7)" fg:x="10449" fg:w="3"/><text x="41.5929%" y="639.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.3666%" y="629" width="0.0158%" height="15" fill="rgb(231,119,42)" fg:x="10455" fg:w="4"/><text x="41.6166%" y="639.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.3706%" y="613" width="0.0119%" height="15" fill="rgb(215,41,35)" fg:x="10456" fg:w="3"/><text x="41.6206%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.3824%" y="597" width="0.0119%" height="15" fill="rgb(220,44,45)" fg:x="10459" fg:w="3"/><text x="41.6324%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="41.4022%" y="501" width="0.0198%" height="15" fill="rgb(253,197,36)" fg:x="10464" fg:w="5"/><text x="41.6522%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.4022%" y="485" width="0.0198%" height="15" fill="rgb(245,225,54)" fg:x="10464" fg:w="5"/><text x="41.6522%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.4022%" y="469" width="0.0198%" height="15" fill="rgb(239,94,37)" fg:x="10464" fg:w="5"/><text x="41.6522%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.4022%" y="453" width="0.0198%" height="15" fill="rgb(242,217,10)" fg:x="10464" fg:w="5"/><text x="41.6522%" y="463.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="41.4101%" y="437" width="0.0119%" height="15" fill="rgb(250,193,7)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="447.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="41.4101%" y="421" width="0.0119%" height="15" fill="rgb(230,104,19)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.4101%" y="405" width="0.0119%" height="15" fill="rgb(230,181,4)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.4101%" y="389" width="0.0119%" height="15" fill="rgb(216,219,49)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.4101%" y="373" width="0.0119%" height="15" fill="rgb(254,144,0)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.4101%" y="357" width="0.0119%" height="15" fill="rgb(205,209,38)" fg:x="10466" fg:w="3"/><text x="41.6601%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.23%)</title><rect x="41.1965%" y="773" width="0.2295%" height="15" fill="rgb(240,21,42)" fg:x="10412" fg:w="58"/><text x="41.4465%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (58 samples, 0.23%)</title><rect x="41.1965%" y="757" width="0.2295%" height="15" fill="rgb(241,132,3)" fg:x="10412" fg:w="58"/><text x="41.4465%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (58 samples, 0.23%)</title><rect x="41.1965%" y="741" width="0.2295%" height="15" fill="rgb(225,14,2)" fg:x="10412" fg:w="58"/><text x="41.4465%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.12%)</title><rect x="41.3033%" y="725" width="0.1227%" height="15" fill="rgb(210,141,35)" fg:x="10439" fg:w="31"/><text x="41.5533%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="41.3033%" y="709" width="0.1227%" height="15" fill="rgb(251,14,44)" fg:x="10439" fg:w="31"/><text x="41.5533%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="41.3112%" y="693" width="0.1147%" height="15" fill="rgb(247,48,18)" fg:x="10441" fg:w="29"/><text x="41.5612%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="41.3112%" y="677" width="0.1147%" height="15" fill="rgb(225,0,40)" fg:x="10441" fg:w="29"/><text x="41.5612%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="41.3548%" y="661" width="0.0712%" height="15" fill="rgb(221,31,33)" fg:x="10452" fg:w="18"/><text x="41.6048%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="41.3548%" y="645" width="0.0712%" height="15" fill="rgb(237,42,40)" fg:x="10452" fg:w="18"/><text x="41.6048%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="41.3824%" y="629" width="0.0435%" height="15" fill="rgb(233,51,29)" fg:x="10459" fg:w="11"/><text x="41.6324%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="41.3824%" y="613" width="0.0435%" height="15" fill="rgb(226,58,20)" fg:x="10459" fg:w="11"/><text x="41.6324%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="41.3943%" y="597" width="0.0317%" height="15" fill="rgb(208,98,7)" fg:x="10462" fg:w="8"/><text x="41.6443%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="41.3943%" y="581" width="0.0317%" height="15" fill="rgb(228,143,44)" fg:x="10462" fg:w="8"/><text x="41.6443%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="41.3943%" y="565" width="0.0317%" height="15" fill="rgb(246,55,38)" fg:x="10462" fg:w="8"/><text x="41.6443%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="41.3943%" y="549" width="0.0317%" height="15" fill="rgb(247,87,16)" fg:x="10462" fg:w="8"/><text x="41.6443%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="41.3943%" y="533" width="0.0317%" height="15" fill="rgb(234,129,42)" fg:x="10462" fg:w="8"/><text x="41.6443%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="41.4022%" y="517" width="0.0237%" height="15" fill="rgb(220,82,16)" fg:x="10464" fg:w="6"/><text x="41.6522%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="41.4260%" y="661" width="0.0237%" height="15" fill="rgb(211,88,4)" fg:x="10470" fg:w="6"/><text x="41.6760%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="41.4260%" y="709" width="0.0475%" height="15" fill="rgb(248,151,21)" fg:x="10470" fg:w="12"/><text x="41.6760%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="41.4260%" y="693" width="0.0475%" height="15" fill="rgb(238,163,6)" fg:x="10470" fg:w="12"/><text x="41.6760%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="41.4260%" y="677" width="0.0475%" height="15" fill="rgb(209,183,11)" fg:x="10470" fg:w="12"/><text x="41.6760%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="41.4497%" y="661" width="0.0237%" height="15" fill="rgb(219,37,20)" fg:x="10476" fg:w="6"/><text x="41.6997%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="41.4497%" y="645" width="0.0237%" height="15" fill="rgb(210,158,4)" fg:x="10476" fg:w="6"/><text x="41.6997%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.4735%" y="645" width="0.0158%" height="15" fill="rgb(221,167,53)" fg:x="10482" fg:w="4"/><text x="41.7235%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="41.4735%" y="709" width="0.0317%" height="15" fill="rgb(237,151,45)" fg:x="10482" fg:w="8"/><text x="41.7235%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="41.4735%" y="693" width="0.0317%" height="15" fill="rgb(231,39,3)" fg:x="10482" fg:w="8"/><text x="41.7235%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="41.4735%" y="677" width="0.0317%" height="15" fill="rgb(212,167,28)" fg:x="10482" fg:w="8"/><text x="41.7235%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="41.4735%" y="661" width="0.0317%" height="15" fill="rgb(232,178,8)" fg:x="10482" fg:w="8"/><text x="41.7235%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="41.4893%" y="645" width="0.0158%" height="15" fill="rgb(225,151,20)" fg:x="10486" fg:w="4"/><text x="41.7393%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.4893%" y="629" width="0.0158%" height="15" fill="rgb(238,3,37)" fg:x="10486" fg:w="4"/><text x="41.7393%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.5130%" y="533" width="0.0198%" height="15" fill="rgb(251,147,42)" fg:x="10492" fg:w="5"/><text x="41.7630%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.5130%" y="517" width="0.0198%" height="15" fill="rgb(208,173,10)" fg:x="10492" fg:w="5"/><text x="41.7630%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.5130%" y="501" width="0.0198%" height="15" fill="rgb(246,225,4)" fg:x="10492" fg:w="5"/><text x="41.7630%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="41.5209%" y="485" width="0.0119%" height="15" fill="rgb(248,102,6)" fg:x="10494" fg:w="3"/><text x="41.7709%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.5209%" y="469" width="0.0119%" height="15" fill="rgb(232,6,21)" fg:x="10494" fg:w="3"/><text x="41.7709%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.5209%" y="453" width="0.0119%" height="15" fill="rgb(221,179,22)" fg:x="10494" fg:w="3"/><text x="41.7709%" y="463.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.5209%" y="437" width="0.0119%" height="15" fill="rgb(252,50,20)" fg:x="10494" fg:w="3"/><text x="41.7709%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="41.5130%" y="581" width="0.0396%" height="15" fill="rgb(222,56,38)" fg:x="10492" fg:w="10"/><text x="41.7630%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="41.5130%" y="565" width="0.0396%" height="15" fill="rgb(206,193,29)" fg:x="10492" fg:w="10"/><text x="41.7630%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="41.5130%" y="549" width="0.0396%" height="15" fill="rgb(239,192,45)" fg:x="10492" fg:w="10"/><text x="41.7630%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="41.5328%" y="533" width="0.0198%" height="15" fill="rgb(254,18,36)" fg:x="10497" fg:w="5"/><text x="41.7828%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.5328%" y="517" width="0.0198%" height="15" fill="rgb(221,127,11)" fg:x="10497" fg:w="5"/><text x="41.7828%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.5328%" y="501" width="0.0198%" height="15" fill="rgb(234,146,35)" fg:x="10497" fg:w="5"/><text x="41.7828%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.5328%" y="485" width="0.0198%" height="15" fill="rgb(254,201,37)" fg:x="10497" fg:w="5"/><text x="41.7828%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="41.5407%" y="469" width="0.0119%" height="15" fill="rgb(211,202,23)" fg:x="10499" fg:w="3"/><text x="41.7907%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.5407%" y="453" width="0.0119%" height="15" fill="rgb(237,91,2)" fg:x="10499" fg:w="3"/><text x="41.7907%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.5526%" y="469" width="0.0119%" height="15" fill="rgb(226,228,36)" fg:x="10502" fg:w="3"/><text x="41.8026%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.5526%" y="517" width="0.0198%" height="15" fill="rgb(213,63,50)" fg:x="10502" fg:w="5"/><text x="41.8026%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.5526%" y="501" width="0.0198%" height="15" fill="rgb(235,194,19)" fg:x="10502" fg:w="5"/><text x="41.8026%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.5526%" y="485" width="0.0198%" height="15" fill="rgb(207,204,18)" fg:x="10502" fg:w="5"/><text x="41.8026%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="41.5130%" y="629" width="0.0752%" height="15" fill="rgb(248,8,7)" fg:x="10492" fg:w="19"/><text x="41.7630%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="41.5130%" y="613" width="0.0752%" height="15" fill="rgb(223,145,47)" fg:x="10492" fg:w="19"/><text x="41.7630%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="41.5130%" y="597" width="0.0752%" height="15" fill="rgb(228,84,11)" fg:x="10492" fg:w="19"/><text x="41.7630%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="41.5526%" y="581" width="0.0356%" height="15" fill="rgb(218,76,45)" fg:x="10502" fg:w="9"/><text x="41.8026%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="41.5526%" y="565" width="0.0356%" height="15" fill="rgb(223,80,15)" fg:x="10502" fg:w="9"/><text x="41.8026%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="41.5526%" y="549" width="0.0356%" height="15" fill="rgb(219,218,33)" fg:x="10502" fg:w="9"/><text x="41.8026%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="41.5526%" y="533" width="0.0356%" height="15" fill="rgb(208,51,11)" fg:x="10502" fg:w="9"/><text x="41.8026%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="41.5724%" y="517" width="0.0158%" height="15" fill="rgb(229,165,39)" fg:x="10507" fg:w="4"/><text x="41.8224%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.5724%" y="501" width="0.0158%" height="15" fill="rgb(241,100,24)" fg:x="10507" fg:w="4"/><text x="41.8224%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.5724%" y="485" width="0.0158%" height="15" fill="rgb(228,14,23)" fg:x="10507" fg:w="4"/><text x="41.8224%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.5724%" y="469" width="0.0158%" height="15" fill="rgb(247,116,52)" fg:x="10507" fg:w="4"/><text x="41.8224%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.5882%" y="549" width="0.0119%" height="15" fill="rgb(216,149,33)" fg:x="10511" fg:w="3"/><text x="41.8382%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (46 samples, 0.18%)</title><rect x="41.4260%" y="773" width="0.1820%" height="15" fill="rgb(238,142,29)" fg:x="10470" fg:w="46"/><text x="41.6760%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="41.4260%" y="757" width="0.1820%" height="15" fill="rgb(224,83,40)" fg:x="10470" fg:w="46"/><text x="41.6760%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="41.4260%" y="741" width="0.1820%" height="15" fill="rgb(234,165,11)" fg:x="10470" fg:w="46"/><text x="41.6760%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.18%)</title><rect x="41.4260%" y="725" width="0.1820%" height="15" fill="rgb(215,96,23)" fg:x="10470" fg:w="46"/><text x="41.6760%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.10%)</title><rect x="41.5051%" y="709" width="0.1029%" height="15" fill="rgb(233,179,26)" fg:x="10490" fg:w="26"/><text x="41.7551%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.10%)</title><rect x="41.5051%" y="693" width="0.1029%" height="15" fill="rgb(225,129,33)" fg:x="10490" fg:w="26"/><text x="41.7551%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="41.5051%" y="677" width="0.1029%" height="15" fill="rgb(237,49,13)" fg:x="10490" fg:w="26"/><text x="41.7551%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="41.5130%" y="661" width="0.0950%" height="15" fill="rgb(211,3,31)" fg:x="10492" fg:w="24"/><text x="41.7630%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="41.5130%" y="645" width="0.0950%" height="15" fill="rgb(216,152,19)" fg:x="10492" fg:w="24"/><text x="41.7630%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="41.5882%" y="629" width="0.0198%" height="15" fill="rgb(251,121,35)" fg:x="10511" fg:w="5"/><text x="41.8382%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="41.5882%" y="613" width="0.0198%" height="15" fill="rgb(210,217,47)" fg:x="10511" fg:w="5"/><text x="41.8382%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.5882%" y="597" width="0.0198%" height="15" fill="rgb(244,116,22)" fg:x="10511" fg:w="5"/><text x="41.8382%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="41.5882%" y="581" width="0.0198%" height="15" fill="rgb(228,17,21)" fg:x="10511" fg:w="5"/><text x="41.8382%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="41.5882%" y="565" width="0.0198%" height="15" fill="rgb(240,149,34)" fg:x="10511" fg:w="5"/><text x="41.8382%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.6080%" y="645" width="0.0198%" height="15" fill="rgb(208,125,47)" fg:x="10516" fg:w="5"/><text x="41.8580%" y="655.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.6119%" y="629" width="0.0158%" height="15" fill="rgb(249,186,39)" fg:x="10517" fg:w="4"/><text x="41.8619%" y="639.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="41.6119%" y="613" width="0.0158%" height="15" fill="rgb(240,220,33)" fg:x="10517" fg:w="4"/><text x="41.8619%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="41.6080%" y="693" width="0.0435%" height="15" fill="rgb(243,110,23)" fg:x="10516" fg:w="11"/><text x="41.8580%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="41.6080%" y="677" width="0.0435%" height="15" fill="rgb(219,163,46)" fg:x="10516" fg:w="11"/><text x="41.8580%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="41.6080%" y="661" width="0.0435%" height="15" fill="rgb(216,126,30)" fg:x="10516" fg:w="11"/><text x="41.8580%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="41.6278%" y="645" width="0.0237%" height="15" fill="rgb(208,139,11)" fg:x="10521" fg:w="6"/><text x="41.8778%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="41.6278%" y="629" width="0.0237%" height="15" fill="rgb(213,118,36)" fg:x="10521" fg:w="6"/><text x="41.8778%" y="639.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.6357%" y="613" width="0.0158%" height="15" fill="rgb(226,43,17)" fg:x="10523" fg:w="4"/><text x="41.8857%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="41.6515%" y="629" width="0.0237%" height="15" fill="rgb(254,217,4)" fg:x="10527" fg:w="6"/><text x="41.9015%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (135 samples, 0.53%)</title><rect x="41.1609%" y="837" width="0.5341%" height="15" fill="rgb(210,134,47)" fg:x="10403" fg:w="135"/><text x="41.4109%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (135 samples, 0.53%)</title><rect x="41.1609%" y="821" width="0.5341%" height="15" fill="rgb(237,24,49)" fg:x="10403" fg:w="135"/><text x="41.4109%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (126 samples, 0.50%)</title><rect x="41.1965%" y="805" width="0.4985%" height="15" fill="rgb(251,39,46)" fg:x="10412" fg:w="126"/><text x="41.4465%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (126 samples, 0.50%)</title><rect x="41.1965%" y="789" width="0.4985%" height="15" fill="rgb(251,220,3)" fg:x="10412" fg:w="126"/><text x="41.4465%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.09%)</title><rect x="41.6080%" y="773" width="0.0870%" height="15" fill="rgb(228,105,12)" fg:x="10516" fg:w="22"/><text x="41.8580%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.09%)</title><rect x="41.6080%" y="757" width="0.0870%" height="15" fill="rgb(215,196,1)" fg:x="10516" fg:w="22"/><text x="41.8580%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="41.6080%" y="741" width="0.0870%" height="15" fill="rgb(214,33,39)" fg:x="10516" fg:w="22"/><text x="41.8580%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="41.6080%" y="725" width="0.0870%" height="15" fill="rgb(220,19,52)" fg:x="10516" fg:w="22"/><text x="41.8580%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="41.6080%" y="709" width="0.0870%" height="15" fill="rgb(221,78,38)" fg:x="10516" fg:w="22"/><text x="41.8580%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="41.6515%" y="693" width="0.0435%" height="15" fill="rgb(253,30,16)" fg:x="10527" fg:w="11"/><text x="41.9015%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="41.6515%" y="677" width="0.0435%" height="15" fill="rgb(242,65,0)" fg:x="10527" fg:w="11"/><text x="41.9015%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="41.6515%" y="661" width="0.0435%" height="15" fill="rgb(235,201,12)" fg:x="10527" fg:w="11"/><text x="41.9015%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="41.6515%" y="645" width="0.0435%" height="15" fill="rgb(233,161,9)" fg:x="10527" fg:w="11"/><text x="41.9015%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="41.6752%" y="629" width="0.0198%" height="15" fill="rgb(241,207,41)" fg:x="10533" fg:w="5"/><text x="41.9252%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="41.6752%" y="613" width="0.0198%" height="15" fill="rgb(212,69,46)" fg:x="10533" fg:w="5"/><text x="41.9252%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.6832%" y="597" width="0.0119%" height="15" fill="rgb(239,69,45)" fg:x="10535" fg:w="3"/><text x="41.9332%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.6832%" y="581" width="0.0119%" height="15" fill="rgb(242,117,48)" fg:x="10535" fg:w="3"/><text x="41.9332%" y="591.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="41.7267%" y="789" width="0.0277%" height="15" fill="rgb(228,41,36)" fg:x="10546" fg:w="7"/><text x="41.9767%" y="799.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="41.7267%" y="773" width="0.0277%" height="15" fill="rgb(212,3,32)" fg:x="10546" fg:w="7"/><text x="41.9767%" y="783.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="41.7900%" y="693" width="0.0158%" height="15" fill="rgb(233,41,49)" fg:x="10562" fg:w="4"/><text x="42.0400%" y="703.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="41.7900%" y="677" width="0.0158%" height="15" fill="rgb(252,170,49)" fg:x="10562" fg:w="4"/><text x="42.0400%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="41.8058%" y="661" width="0.0237%" height="15" fill="rgb(229,53,26)" fg:x="10566" fg:w="6"/><text x="42.0558%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.8137%" y="645" width="0.0158%" height="15" fill="rgb(217,157,12)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.8137%" y="629" width="0.0158%" height="15" fill="rgb(227,17,9)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="41.8137%" y="613" width="0.0158%" height="15" fill="rgb(218,84,12)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.8137%" y="597" width="0.0158%" height="15" fill="rgb(212,79,24)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.8137%" y="581" width="0.0158%" height="15" fill="rgb(217,222,37)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.8137%" y="565" width="0.0158%" height="15" fill="rgb(246,208,8)" fg:x="10568" fg:w="4"/><text x="42.0637%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.8375%" y="597" width="0.0119%" height="15" fill="rgb(244,133,10)" fg:x="10574" fg:w="3"/><text x="42.0875%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.8375%" y="581" width="0.0119%" height="15" fill="rgb(209,219,41)" fg:x="10574" fg:w="3"/><text x="42.0875%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.8375%" y="565" width="0.0119%" height="15" fill="rgb(253,175,45)" fg:x="10574" fg:w="3"/><text x="42.0875%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="41.7662%" y="709" width="0.0989%" height="15" fill="rgb(235,100,37)" fg:x="10556" fg:w="25"/><text x="42.0162%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="41.8058%" y="693" width="0.0593%" height="15" fill="rgb(225,87,19)" fg:x="10566" fg:w="15"/><text x="42.0558%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="41.8058%" y="677" width="0.0593%" height="15" fill="rgb(217,152,17)" fg:x="10566" fg:w="15"/><text x="42.0558%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="41.8295%" y="661" width="0.0356%" height="15" fill="rgb(235,72,13)" fg:x="10572" fg:w="9"/><text x="42.0795%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="41.8295%" y="645" width="0.0356%" height="15" fill="rgb(233,140,18)" fg:x="10572" fg:w="9"/><text x="42.0795%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="41.8375%" y="629" width="0.0277%" height="15" fill="rgb(207,212,28)" fg:x="10574" fg:w="7"/><text x="42.0875%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="41.8375%" y="613" width="0.0277%" height="15" fill="rgb(220,130,25)" fg:x="10574" fg:w="7"/><text x="42.0875%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="41.8493%" y="597" width="0.0158%" height="15" fill="rgb(205,55,34)" fg:x="10577" fg:w="4"/><text x="42.0993%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.8493%" y="581" width="0.0158%" height="15" fill="rgb(237,54,35)" fg:x="10577" fg:w="4"/><text x="42.0993%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.8493%" y="565" width="0.0158%" height="15" fill="rgb(208,67,23)" fg:x="10577" fg:w="4"/><text x="42.0993%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.8493%" y="549" width="0.0158%" height="15" fill="rgb(206,207,50)" fg:x="10577" fg:w="4"/><text x="42.0993%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.8889%" y="597" width="0.0158%" height="15" fill="rgb(213,211,42)" fg:x="10587" fg:w="4"/><text x="42.1389%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.8889%" y="581" width="0.0158%" height="15" fill="rgb(252,197,50)" fg:x="10587" fg:w="4"/><text x="42.1389%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.8889%" y="565" width="0.0158%" height="15" fill="rgb(251,211,41)" fg:x="10587" fg:w="4"/><text x="42.1389%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="41.8810%" y="645" width="0.0396%" height="15" fill="rgb(229,211,5)" fg:x="10585" fg:w="10"/><text x="42.1310%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="41.8889%" y="629" width="0.0317%" height="15" fill="rgb(239,36,31)" fg:x="10587" fg:w="8"/><text x="42.1389%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="41.8889%" y="613" width="0.0317%" height="15" fill="rgb(248,67,31)" fg:x="10587" fg:w="8"/><text x="42.1389%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="41.9047%" y="597" width="0.0158%" height="15" fill="rgb(249,55,44)" fg:x="10591" fg:w="4"/><text x="42.1547%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.9047%" y="581" width="0.0158%" height="15" fill="rgb(216,82,12)" fg:x="10591" fg:w="4"/><text x="42.1547%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.9047%" y="565" width="0.0158%" height="15" fill="rgb(242,174,1)" fg:x="10591" fg:w="4"/><text x="42.1547%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.9047%" y="549" width="0.0158%" height="15" fill="rgb(208,120,29)" fg:x="10591" fg:w="4"/><text x="42.1547%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.08%)</title><rect x="41.8652%" y="709" width="0.0791%" height="15" fill="rgb(221,105,43)" fg:x="10581" fg:w="20"/><text x="42.1152%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.08%)</title><rect x="41.8652%" y="693" width="0.0791%" height="15" fill="rgb(234,124,22)" fg:x="10581" fg:w="20"/><text x="42.1152%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="41.8810%" y="677" width="0.0633%" height="15" fill="rgb(212,23,30)" fg:x="10585" fg:w="16"/><text x="42.1310%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="41.8810%" y="661" width="0.0633%" height="15" fill="rgb(219,122,53)" fg:x="10585" fg:w="16"/><text x="42.1310%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="41.9285%" y="645" width="0.0158%" height="15" fill="rgb(248,84,24)" fg:x="10597" fg:w="4"/><text x="42.1785%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="41.9285%" y="629" width="0.0158%" height="15" fill="rgb(245,115,18)" fg:x="10597" fg:w="4"/><text x="42.1785%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.9285%" y="613" width="0.0158%" height="15" fill="rgb(227,176,51)" fg:x="10597" fg:w="4"/><text x="42.1785%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="41.9285%" y="597" width="0.0158%" height="15" fill="rgb(229,63,42)" fg:x="10597" fg:w="4"/><text x="42.1785%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="41.9285%" y="581" width="0.0158%" height="15" fill="rgb(247,202,24)" fg:x="10597" fg:w="4"/><text x="42.1785%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.9482%" y="661" width="0.0119%" height="15" fill="rgb(244,173,20)" fg:x="10602" fg:w="3"/><text x="42.1982%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.9482%" y="645" width="0.0119%" height="15" fill="rgb(242,81,47)" fg:x="10602" fg:w="3"/><text x="42.1982%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="41.7544%" y="757" width="0.2176%" height="15" fill="rgb(231,185,54)" fg:x="10553" fg:w="55"/><text x="42.0044%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="41.7662%" y="741" width="0.2057%" height="15" fill="rgb(243,55,32)" fg:x="10556" fg:w="52"/><text x="42.0162%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="41.7662%" y="725" width="0.2057%" height="15" fill="rgb(208,167,19)" fg:x="10556" fg:w="52"/><text x="42.0162%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="41.9443%" y="709" width="0.0277%" height="15" fill="rgb(231,72,35)" fg:x="10601" fg:w="7"/><text x="42.1943%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="41.9443%" y="693" width="0.0277%" height="15" fill="rgb(250,173,51)" fg:x="10601" fg:w="7"/><text x="42.1943%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="41.9443%" y="677" width="0.0277%" height="15" fill="rgb(209,5,22)" fg:x="10601" fg:w="7"/><text x="42.1943%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="41.9601%" y="661" width="0.0119%" height="15" fill="rgb(250,174,19)" fg:x="10605" fg:w="3"/><text x="42.2101%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="41.9601%" y="645" width="0.0119%" height="15" fill="rgb(217,3,49)" fg:x="10605" fg:w="3"/><text x="42.2101%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="41.9759%" y="693" width="0.0158%" height="15" fill="rgb(218,225,5)" fg:x="10609" fg:w="4"/><text x="42.2259%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="41.9799%" y="677" width="0.0119%" height="15" fill="rgb(236,89,11)" fg:x="10610" fg:w="3"/><text x="42.2299%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="41.9799%" y="661" width="0.0119%" height="15" fill="rgb(206,33,28)" fg:x="10610" fg:w="3"/><text x="42.2299%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="41.9720%" y="757" width="0.0317%" height="15" fill="rgb(241,56,42)" fg:x="10608" fg:w="8"/><text x="42.2220%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="41.9720%" y="741" width="0.0317%" height="15" fill="rgb(222,44,11)" fg:x="10608" fg:w="8"/><text x="42.2220%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="41.9759%" y="725" width="0.0277%" height="15" fill="rgb(234,111,20)" fg:x="10609" fg:w="7"/><text x="42.2259%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="41.9759%" y="709" width="0.0277%" height="15" fill="rgb(237,77,6)" fg:x="10609" fg:w="7"/><text x="42.2259%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="41.9918%" y="693" width="0.0119%" height="15" fill="rgb(235,111,23)" fg:x="10613" fg:w="3"/><text x="42.2418%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="41.9918%" y="677" width="0.0119%" height="15" fill="rgb(251,135,29)" fg:x="10613" fg:w="3"/><text x="42.2418%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="42.0195%" y="677" width="0.0237%" height="15" fill="rgb(217,57,1)" fg:x="10620" fg:w="6"/><text x="42.2695%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.0432%" y="501" width="0.0119%" height="15" fill="rgb(249,119,31)" fg:x="10626" fg:w="3"/><text x="42.2932%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (559 samples, 2.21%)</title><rect x="39.8552%" y="901" width="2.2118%" height="15" fill="rgb(233,164,33)" fg:x="10073" fg:w="559"/><text x="40.1052%" y="911.50">&lt;..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (559 samples, 2.21%)</title><rect x="39.8552%" y="885" width="2.2118%" height="15" fill="rgb(250,217,43)" fg:x="10073" fg:w="559"/><text x="40.1052%" y="895.50">r..</text></g><g><title>rayon_core::registry::in_worker (547 samples, 2.16%)</title><rect x="39.9027%" y="869" width="2.1643%" height="15" fill="rgb(232,154,50)" fg:x="10085" fg:w="547"/><text x="40.1527%" y="879.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (547 samples, 2.16%)</title><rect x="39.9027%" y="853" width="2.1643%" height="15" fill="rgb(227,190,8)" fg:x="10085" fg:w="547"/><text x="40.1527%" y="863.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (94 samples, 0.37%)</title><rect x="41.6950%" y="837" width="0.3719%" height="15" fill="rgb(209,217,32)" fg:x="10538" fg:w="94"/><text x="41.9450%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (94 samples, 0.37%)</title><rect x="41.6950%" y="821" width="0.3719%" height="15" fill="rgb(243,203,50)" fg:x="10538" fg:w="94"/><text x="41.9450%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (94 samples, 0.37%)</title><rect x="41.6950%" y="805" width="0.3719%" height="15" fill="rgb(232,152,27)" fg:x="10538" fg:w="94"/><text x="41.9450%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (79 samples, 0.31%)</title><rect x="41.7544%" y="789" width="0.3126%" height="15" fill="rgb(240,34,29)" fg:x="10553" fg:w="79"/><text x="42.0044%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (79 samples, 0.31%)</title><rect x="41.7544%" y="773" width="0.3126%" height="15" fill="rgb(215,185,52)" fg:x="10553" fg:w="79"/><text x="42.0044%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="42.0036%" y="757" width="0.0633%" height="15" fill="rgb(240,89,49)" fg:x="10616" fg:w="16"/><text x="42.2536%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="42.0036%" y="741" width="0.0633%" height="15" fill="rgb(225,12,52)" fg:x="10616" fg:w="16"/><text x="42.2536%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="42.0036%" y="725" width="0.0633%" height="15" fill="rgb(239,128,45)" fg:x="10616" fg:w="16"/><text x="42.2536%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="42.0195%" y="709" width="0.0475%" height="15" fill="rgb(211,78,47)" fg:x="10620" fg:w="12"/><text x="42.2695%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="42.0195%" y="693" width="0.0475%" height="15" fill="rgb(232,31,21)" fg:x="10620" fg:w="12"/><text x="42.2695%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="42.0432%" y="677" width="0.0237%" height="15" fill="rgb(222,168,14)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="42.0432%" y="661" width="0.0237%" height="15" fill="rgb(209,128,24)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="42.0432%" y="645" width="0.0237%" height="15" fill="rgb(249,35,13)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="42.0432%" y="629" width="0.0237%" height="15" fill="rgb(218,7,2)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="42.0432%" y="613" width="0.0237%" height="15" fill="rgb(238,107,27)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="42.0432%" y="597" width="0.0237%" height="15" fill="rgb(217,88,38)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="42.0432%" y="581" width="0.0237%" height="15" fill="rgb(230,207,0)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="42.0432%" y="565" width="0.0237%" height="15" fill="rgb(249,64,54)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="42.0432%" y="549" width="0.0237%" height="15" fill="rgb(231,7,11)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="42.0432%" y="533" width="0.0237%" height="15" fill="rgb(205,149,21)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="42.0432%" y="517" width="0.0237%" height="15" fill="rgb(215,126,34)" fg:x="10626" fg:w="6"/><text x="42.2932%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="42.0551%" y="501" width="0.0119%" height="15" fill="rgb(241,132,45)" fg:x="10629" fg:w="3"/><text x="42.3051%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.0551%" y="485" width="0.0119%" height="15" fill="rgb(252,69,32)" fg:x="10629" fg:w="3"/><text x="42.3051%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6,362 samples, 25.17%)</title><rect x="16.8988%" y="965" width="25.1721%" height="15" fill="rgb(232,204,19)" fg:x="4271" fg:w="6362"/><text x="17.1488%" y="975.50">rayon::iter::plumbing::bridge_producer_c..</text></g><g><title>rayon_core::registry::in_worker (6,344 samples, 25.10%)</title><rect x="16.9700%" y="949" width="25.1009%" height="15" fill="rgb(249,15,47)" fg:x="4289" fg:w="6344"/><text x="17.2200%" y="959.50">rayon_core::registry::in_worker</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6,344 samples, 25.10%)</title><rect x="16.9700%" y="933" width="25.1009%" height="15" fill="rgb(209,227,23)" fg:x="4289" fg:w="6344"/><text x="17.2200%" y="943.50">_ZN10rayon_core4join12join_context28_$u7..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (560 samples, 2.22%)</title><rect x="39.8552%" y="917" width="2.2157%" height="15" fill="rgb(248,92,24)" fg:x="10073" fg:w="560"/><text x="40.1052%" y="927.50">r..</text></g><g><title>exp (4 samples, 0.02%)</title><rect x="42.0828%" y="933" width="0.0158%" height="15" fill="rgb(247,59,2)" fg:x="10636" fg:w="4"/><text x="42.3328%" y="943.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="42.0867%" y="917" width="0.0119%" height="15" fill="rgb(221,30,5)" fg:x="10637" fg:w="3"/><text x="42.3367%" y="927.50"></text></g><g><title>exp (16 samples, 0.06%)</title><rect x="42.1698%" y="885" width="0.0633%" height="15" fill="rgb(208,108,53)" fg:x="10658" fg:w="16"/><text x="42.4198%" y="895.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="42.1817%" y="869" width="0.0514%" height="15" fill="rgb(211,183,26)" fg:x="10661" fg:w="13"/><text x="42.4317%" y="879.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="42.2925%" y="837" width="0.0673%" height="15" fill="rgb(232,132,4)" fg:x="10689" fg:w="17"/><text x="42.5425%" y="847.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="42.3083%" y="821" width="0.0514%" height="15" fill="rgb(253,128,37)" fg:x="10693" fg:w="13"/><text x="42.5583%" y="831.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="42.3993%" y="789" width="0.0673%" height="15" fill="rgb(221,58,24)" fg:x="10716" fg:w="17"/><text x="42.6493%" y="799.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="42.4072%" y="773" width="0.0593%" height="15" fill="rgb(230,54,45)" fg:x="10718" fg:w="15"/><text x="42.6572%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="42.4666%" y="757" width="0.1147%" height="15" fill="rgb(254,21,18)" fg:x="10733" fg:w="29"/><text x="42.7166%" y="767.50"></text></g><g><title>exp (16 samples, 0.06%)</title><rect x="42.5180%" y="741" width="0.0633%" height="15" fill="rgb(221,108,0)" fg:x="10746" fg:w="16"/><text x="42.7680%" y="751.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="42.5259%" y="725" width="0.0554%" height="15" fill="rgb(206,95,1)" fg:x="10748" fg:w="14"/><text x="42.7759%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (83 samples, 0.33%)</title><rect x="42.3597%" y="805" width="0.3284%" height="15" fill="rgb(237,52,5)" fg:x="10706" fg:w="83"/><text x="42.6097%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.22%)</title><rect x="42.4666%" y="789" width="0.2216%" height="15" fill="rgb(218,150,34)" fg:x="10733" fg:w="56"/><text x="42.7166%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (56 samples, 0.22%)</title><rect x="42.4666%" y="773" width="0.2216%" height="15" fill="rgb(235,194,28)" fg:x="10733" fg:w="56"/><text x="42.7166%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="42.5813%" y="757" width="0.1068%" height="15" fill="rgb(245,92,18)" fg:x="10762" fg:w="27"/><text x="42.8313%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="42.5813%" y="741" width="0.1068%" height="15" fill="rgb(253,203,53)" fg:x="10762" fg:w="27"/><text x="42.8313%" y="751.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="42.6446%" y="725" width="0.0435%" height="15" fill="rgb(249,185,47)" fg:x="10778" fg:w="11"/><text x="42.8946%" y="735.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="42.6486%" y="709" width="0.0396%" height="15" fill="rgb(252,194,52)" fg:x="10779" fg:w="10"/><text x="42.8986%" y="719.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="42.7317%" y="773" width="0.0396%" height="15" fill="rgb(210,53,36)" fg:x="10800" fg:w="10"/><text x="42.9817%" y="783.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="42.7396%" y="757" width="0.0317%" height="15" fill="rgb(237,37,25)" fg:x="10802" fg:w="8"/><text x="42.9896%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="42.7712%" y="741" width="0.0989%" height="15" fill="rgb(242,116,27)" fg:x="10810" fg:w="25"/><text x="43.0212%" y="751.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="42.8266%" y="725" width="0.0435%" height="15" fill="rgb(213,185,26)" fg:x="10824" fg:w="11"/><text x="43.0766%" y="735.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="42.8345%" y="709" width="0.0356%" height="15" fill="rgb(225,204,8)" fg:x="10826" fg:w="9"/><text x="43.0845%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (188 samples, 0.74%)</title><rect x="42.2331%" y="853" width="0.7438%" height="15" fill="rgb(254,111,37)" fg:x="10674" fg:w="188"/><text x="42.4831%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (156 samples, 0.62%)</title><rect x="42.3597%" y="837" width="0.6172%" height="15" fill="rgb(242,35,9)" fg:x="10706" fg:w="156"/><text x="42.6097%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (156 samples, 0.62%)</title><rect x="42.3597%" y="821" width="0.6172%" height="15" fill="rgb(232,138,49)" fg:x="10706" fg:w="156"/><text x="42.6097%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (73 samples, 0.29%)</title><rect x="42.6881%" y="805" width="0.2888%" height="15" fill="rgb(247,56,4)" fg:x="10789" fg:w="73"/><text x="42.9381%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (73 samples, 0.29%)</title><rect x="42.6881%" y="789" width="0.2888%" height="15" fill="rgb(226,179,17)" fg:x="10789" fg:w="73"/><text x="42.9381%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.21%)</title><rect x="42.7712%" y="773" width="0.2057%" height="15" fill="rgb(216,163,45)" fg:x="10810" fg:w="52"/><text x="43.0212%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="42.7712%" y="757" width="0.2057%" height="15" fill="rgb(211,157,3)" fg:x="10810" fg:w="52"/><text x="43.0212%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="42.8701%" y="741" width="0.1068%" height="15" fill="rgb(234,44,20)" fg:x="10835" fg:w="27"/><text x="43.1201%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="42.8701%" y="725" width="0.1068%" height="15" fill="rgb(254,138,23)" fg:x="10835" fg:w="27"/><text x="43.1201%" y="735.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="42.9097%" y="709" width="0.0673%" height="15" fill="rgb(206,119,39)" fg:x="10845" fg:w="17"/><text x="43.1597%" y="719.50"></text></g><g><title>[libm.so.6] (16 samples, 0.06%)</title><rect x="42.9137%" y="693" width="0.0633%" height="15" fill="rgb(231,105,52)" fg:x="10846" fg:w="16"/><text x="43.1637%" y="703.50"></text></g><g><title>exp (21 samples, 0.08%)</title><rect x="43.0482%" y="821" width="0.0831%" height="15" fill="rgb(250,20,5)" fg:x="10880" fg:w="21"/><text x="43.2982%" y="831.50"></text></g><g><title>[libm.so.6] (16 samples, 0.06%)</title><rect x="43.0680%" y="805" width="0.0633%" height="15" fill="rgb(215,198,30)" fg:x="10885" fg:w="16"/><text x="43.3180%" y="815.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="43.1708%" y="773" width="0.0554%" height="15" fill="rgb(246,142,8)" fg:x="10911" fg:w="14"/><text x="43.4208%" y="783.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="43.1788%" y="757" width="0.0475%" height="15" fill="rgb(243,26,38)" fg:x="10913" fg:w="12"/><text x="43.4288%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="43.2262%" y="741" width="0.0633%" height="15" fill="rgb(205,133,28)" fg:x="10925" fg:w="16"/><text x="43.4762%" y="751.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="43.2579%" y="725" width="0.0317%" height="15" fill="rgb(212,34,0)" fg:x="10933" fg:w="8"/><text x="43.5079%" y="735.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="43.2619%" y="709" width="0.0277%" height="15" fill="rgb(251,226,22)" fg:x="10934" fg:w="7"/><text x="43.5119%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.23%)</title><rect x="43.1313%" y="789" width="0.2295%" height="15" fill="rgb(252,119,9)" fg:x="10901" fg:w="58"/><text x="43.3813%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.13%)</title><rect x="43.2262%" y="773" width="0.1345%" height="15" fill="rgb(213,150,50)" fg:x="10925" fg:w="34"/><text x="43.4762%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (34 samples, 0.13%)</title><rect x="43.2262%" y="757" width="0.1345%" height="15" fill="rgb(212,24,39)" fg:x="10925" fg:w="34"/><text x="43.4762%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.07%)</title><rect x="43.2895%" y="741" width="0.0712%" height="15" fill="rgb(213,46,39)" fg:x="10941" fg:w="18"/><text x="43.5395%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="43.2895%" y="725" width="0.0712%" height="15" fill="rgb(239,106,12)" fg:x="10941" fg:w="18"/><text x="43.5395%" y="735.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="43.3331%" y="709" width="0.0277%" height="15" fill="rgb(249,229,21)" fg:x="10952" fg:w="7"/><text x="43.5831%" y="719.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="43.3410%" y="693" width="0.0198%" height="15" fill="rgb(212,158,3)" fg:x="10954" fg:w="5"/><text x="43.5910%" y="703.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="43.4241%" y="757" width="0.0514%" height="15" fill="rgb(253,26,48)" fg:x="10975" fg:w="13"/><text x="43.6741%" y="767.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="43.4359%" y="741" width="0.0396%" height="15" fill="rgb(238,178,20)" fg:x="10978" fg:w="10"/><text x="43.6859%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="43.4755%" y="725" width="0.0593%" height="15" fill="rgb(208,86,15)" fg:x="10988" fg:w="15"/><text x="43.7255%" y="735.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="43.4992%" y="709" width="0.0356%" height="15" fill="rgb(239,42,53)" fg:x="10994" fg:w="9"/><text x="43.7492%" y="719.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="43.5072%" y="693" width="0.0277%" height="15" fill="rgb(245,226,8)" fg:x="10996" fg:w="7"/><text x="43.7572%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (158 samples, 0.63%)</title><rect x="42.9770%" y="853" width="0.6251%" height="15" fill="rgb(216,176,32)" fg:x="10862" fg:w="158"/><text x="43.2270%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (158 samples, 0.63%)</title><rect x="42.9770%" y="837" width="0.6251%" height="15" fill="rgb(231,186,21)" fg:x="10862" fg:w="158"/><text x="43.2270%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (119 samples, 0.47%)</title><rect x="43.1313%" y="821" width="0.4708%" height="15" fill="rgb(205,95,49)" fg:x="10901" fg:w="119"/><text x="43.3813%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (119 samples, 0.47%)</title><rect x="43.1313%" y="805" width="0.4708%" height="15" fill="rgb(217,145,8)" fg:x="10901" fg:w="119"/><text x="43.3813%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (61 samples, 0.24%)</title><rect x="43.3608%" y="789" width="0.2414%" height="15" fill="rgb(239,144,48)" fg:x="10959" fg:w="61"/><text x="43.6108%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (61 samples, 0.24%)</title><rect x="43.3608%" y="773" width="0.2414%" height="15" fill="rgb(214,189,23)" fg:x="10959" fg:w="61"/><text x="43.6108%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.13%)</title><rect x="43.4755%" y="757" width="0.1266%" height="15" fill="rgb(229,157,17)" fg:x="10988" fg:w="32"/><text x="43.7255%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (32 samples, 0.13%)</title><rect x="43.4755%" y="741" width="0.1266%" height="15" fill="rgb(230,5,48)" fg:x="10988" fg:w="32"/><text x="43.7255%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.07%)</title><rect x="43.5349%" y="725" width="0.0673%" height="15" fill="rgb(224,156,48)" fg:x="11003" fg:w="17"/><text x="43.7849%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="43.5349%" y="709" width="0.0673%" height="15" fill="rgb(223,14,29)" fg:x="11003" fg:w="17"/><text x="43.7849%" y="719.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="43.5744%" y="693" width="0.0277%" height="15" fill="rgb(229,96,36)" fg:x="11013" fg:w="7"/><text x="43.8244%" y="703.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="43.5823%" y="677" width="0.0198%" height="15" fill="rgb(231,102,53)" fg:x="11015" fg:w="5"/><text x="43.8323%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="43.6021%" y="773" width="0.0237%" height="15" fill="rgb(210,77,38)" fg:x="11020" fg:w="6"/><text x="43.8521%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="43.6140%" y="757" width="0.0119%" height="15" fill="rgb(235,131,6)" fg:x="11023" fg:w="3"/><text x="43.8640%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="43.6140%" y="741" width="0.0119%" height="15" fill="rgb(252,55,38)" fg:x="11023" fg:w="3"/><text x="43.8640%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="43.6259%" y="773" width="0.0119%" height="15" fill="rgb(246,38,14)" fg:x="11026" fg:w="3"/><text x="43.8759%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="43.6259%" y="757" width="0.0119%" height="15" fill="rgb(242,27,5)" fg:x="11026" fg:w="3"/><text x="43.8759%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="43.6377%" y="597" width="0.0119%" height="15" fill="rgb(228,65,35)" fg:x="11029" fg:w="3"/><text x="43.8877%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (395 samples, 1.56%)</title><rect x="42.0986%" y="901" width="1.5629%" height="15" fill="rgb(245,93,11)" fg:x="10640" fg:w="395"/><text x="42.3486%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (361 samples, 1.43%)</title><rect x="42.2331%" y="885" width="1.4283%" height="15" fill="rgb(213,1,31)" fg:x="10674" fg:w="361"/><text x="42.4831%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (361 samples, 1.43%)</title><rect x="42.2331%" y="869" width="1.4283%" height="15" fill="rgb(237,205,14)" fg:x="10674" fg:w="361"/><text x="42.4831%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.06%)</title><rect x="43.6021%" y="853" width="0.0593%" height="15" fill="rgb(232,118,45)" fg:x="11020" fg:w="15"/><text x="43.8521%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.06%)</title><rect x="43.6021%" y="837" width="0.0593%" height="15" fill="rgb(218,5,6)" fg:x="11020" fg:w="15"/><text x="43.8521%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="43.6021%" y="821" width="0.0593%" height="15" fill="rgb(251,87,51)" fg:x="11020" fg:w="15"/><text x="43.8521%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="43.6021%" y="805" width="0.0593%" height="15" fill="rgb(207,225,20)" fg:x="11020" fg:w="15"/><text x="43.8521%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="43.6021%" y="789" width="0.0593%" height="15" fill="rgb(222,78,54)" fg:x="11020" fg:w="15"/><text x="43.8521%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="43.6377%" y="773" width="0.0237%" height="15" fill="rgb(232,85,16)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="43.6377%" y="757" width="0.0237%" height="15" fill="rgb(244,25,33)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="43.6377%" y="741" width="0.0237%" height="15" fill="rgb(233,24,36)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="43.6377%" y="725" width="0.0237%" height="15" fill="rgb(253,49,54)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="43.6377%" y="709" width="0.0237%" height="15" fill="rgb(245,12,22)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="43.6377%" y="693" width="0.0237%" height="15" fill="rgb(253,141,28)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="43.6377%" y="677" width="0.0237%" height="15" fill="rgb(225,207,27)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="43.6377%" y="661" width="0.0237%" height="15" fill="rgb(220,84,2)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="43.6377%" y="645" width="0.0237%" height="15" fill="rgb(224,37,37)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="43.6377%" y="629" width="0.0237%" height="15" fill="rgb(220,143,18)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="43.6377%" y="613" width="0.0237%" height="15" fill="rgb(210,88,33)" fg:x="11029" fg:w="6"/><text x="43.8877%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="43.6496%" y="597" width="0.0119%" height="15" fill="rgb(219,87,51)" fg:x="11032" fg:w="3"/><text x="43.8996%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="43.6496%" y="581" width="0.0119%" height="15" fill="rgb(211,7,35)" fg:x="11032" fg:w="3"/><text x="43.8996%" y="591.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="43.7446%" y="869" width="0.0317%" height="15" fill="rgb(232,77,2)" fg:x="11056" fg:w="8"/><text x="43.9946%" y="879.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="43.7446%" y="853" width="0.0317%" height="15" fill="rgb(249,94,25)" fg:x="11056" fg:w="8"/><text x="43.9946%" y="863.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="43.8435%" y="821" width="0.0514%" height="15" fill="rgb(215,112,2)" fg:x="11081" fg:w="13"/><text x="44.0935%" y="831.50"></text></g><g><title>[libm.so.6] (11 samples, 0.04%)</title><rect x="43.8514%" y="805" width="0.0435%" height="15" fill="rgb(226,115,48)" fg:x="11083" fg:w="11"/><text x="44.1014%" y="815.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="43.9582%" y="773" width="0.0277%" height="15" fill="rgb(249,196,10)" fg:x="11110" fg:w="7"/><text x="44.2082%" y="783.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="43.9622%" y="757" width="0.0237%" height="15" fill="rgb(237,109,14)" fg:x="11111" fg:w="6"/><text x="44.2122%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="43.9859%" y="741" width="0.0514%" height="15" fill="rgb(217,103,53)" fg:x="11117" fg:w="13"/><text x="44.2359%" y="751.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="44.0097%" y="725" width="0.0277%" height="15" fill="rgb(244,137,9)" fg:x="11123" fg:w="7"/><text x="44.2597%" y="735.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="44.0136%" y="709" width="0.0237%" height="15" fill="rgb(227,201,3)" fg:x="11124" fg:w="6"/><text x="44.2636%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.20%)</title><rect x="43.8949%" y="789" width="0.1978%" height="15" fill="rgb(243,94,6)" fg:x="11094" fg:w="50"/><text x="44.1449%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="43.9859%" y="773" width="0.1068%" height="15" fill="rgb(235,118,5)" fg:x="11117" fg:w="27"/><text x="44.2359%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="43.9859%" y="757" width="0.1068%" height="15" fill="rgb(247,10,30)" fg:x="11117" fg:w="27"/><text x="44.2359%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="44.0374%" y="741" width="0.0554%" height="15" fill="rgb(205,26,28)" fg:x="11130" fg:w="14"/><text x="44.2874%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="44.0374%" y="725" width="0.0554%" height="15" fill="rgb(206,99,35)" fg:x="11130" fg:w="14"/><text x="44.2874%" y="735.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="44.0611%" y="709" width="0.0317%" height="15" fill="rgb(238,130,40)" fg:x="11136" fg:w="8"/><text x="44.3111%" y="719.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="44.0650%" y="693" width="0.0277%" height="15" fill="rgb(224,126,31)" fg:x="11137" fg:w="7"/><text x="44.3150%" y="703.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="44.1560%" y="757" width="0.0237%" height="15" fill="rgb(254,105,17)" fg:x="11160" fg:w="6"/><text x="44.4060%" y="767.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="44.1679%" y="741" width="0.0119%" height="15" fill="rgb(216,87,36)" fg:x="11163" fg:w="3"/><text x="44.4179%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="44.1798%" y="725" width="0.0514%" height="15" fill="rgb(240,21,12)" fg:x="11166" fg:w="13"/><text x="44.4298%" y="735.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="44.2075%" y="709" width="0.0237%" height="15" fill="rgb(245,192,34)" fg:x="11173" fg:w="6"/><text x="44.4575%" y="719.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="44.2114%" y="693" width="0.0198%" height="15" fill="rgb(226,100,49)" fg:x="11174" fg:w="5"/><text x="44.4614%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.50%)</title><rect x="43.7762%" y="837" width="0.4985%" height="15" fill="rgb(245,188,27)" fg:x="11064" fg:w="126"/><text x="44.0262%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (96 samples, 0.38%)</title><rect x="43.8949%" y="821" width="0.3798%" height="15" fill="rgb(212,170,8)" fg:x="11094" fg:w="96"/><text x="44.1449%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (96 samples, 0.38%)</title><rect x="43.8949%" y="805" width="0.3798%" height="15" fill="rgb(217,113,29)" fg:x="11094" fg:w="96"/><text x="44.1449%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (46 samples, 0.18%)</title><rect x="44.0927%" y="789" width="0.1820%" height="15" fill="rgb(237,30,3)" fg:x="11144" fg:w="46"/><text x="44.3427%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="44.0927%" y="773" width="0.1820%" height="15" fill="rgb(227,19,28)" fg:x="11144" fg:w="46"/><text x="44.3427%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="44.1798%" y="757" width="0.0950%" height="15" fill="rgb(239,172,45)" fg:x="11166" fg:w="24"/><text x="44.4298%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="44.1798%" y="741" width="0.0950%" height="15" fill="rgb(254,55,39)" fg:x="11166" fg:w="24"/><text x="44.4298%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="44.2312%" y="725" width="0.0435%" height="15" fill="rgb(249,208,12)" fg:x="11179" fg:w="11"/><text x="44.4812%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="44.2312%" y="709" width="0.0435%" height="15" fill="rgb(240,52,13)" fg:x="11179" fg:w="11"/><text x="44.4812%" y="719.50"></text></g><g><title>exp (17 samples, 0.07%)</title><rect x="44.3183%" y="805" width="0.0673%" height="15" fill="rgb(252,149,13)" fg:x="11201" fg:w="17"/><text x="44.5683%" y="815.50"></text></g><g><title>[libm.so.6] (14 samples, 0.06%)</title><rect x="44.3301%" y="789" width="0.0554%" height="15" fill="rgb(232,81,48)" fg:x="11204" fg:w="14"/><text x="44.5801%" y="799.50"></text></g><g><title>exp (12 samples, 0.05%)</title><rect x="44.4251%" y="757" width="0.0475%" height="15" fill="rgb(222,144,2)" fg:x="11228" fg:w="12"/><text x="44.6751%" y="767.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="44.4330%" y="741" width="0.0396%" height="15" fill="rgb(216,81,32)" fg:x="11230" fg:w="10"/><text x="44.6830%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="44.4726%" y="725" width="0.0554%" height="15" fill="rgb(244,78,51)" fg:x="11240" fg:w="14"/><text x="44.7226%" y="735.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="44.5003%" y="709" width="0.0277%" height="15" fill="rgb(217,66,21)" fg:x="11247" fg:w="7"/><text x="44.7503%" y="719.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="44.5003%" y="693" width="0.0277%" height="15" fill="rgb(247,101,42)" fg:x="11247" fg:w="7"/><text x="44.7503%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.20%)</title><rect x="44.3855%" y="773" width="0.1978%" height="15" fill="rgb(227,81,39)" fg:x="11218" fg:w="50"/><text x="44.6355%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="44.4726%" y="757" width="0.1108%" height="15" fill="rgb(220,223,44)" fg:x="11240" fg:w="28"/><text x="44.7226%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="44.4726%" y="741" width="0.1108%" height="15" fill="rgb(205,218,2)" fg:x="11240" fg:w="28"/><text x="44.7226%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="44.5280%" y="725" width="0.0554%" height="15" fill="rgb(212,207,28)" fg:x="11254" fg:w="14"/><text x="44.7780%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="44.5280%" y="709" width="0.0554%" height="15" fill="rgb(224,12,41)" fg:x="11254" fg:w="14"/><text x="44.7780%" y="719.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="44.5636%" y="693" width="0.0198%" height="15" fill="rgb(216,118,12)" fg:x="11263" fg:w="5"/><text x="44.8136%" y="703.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="44.5675%" y="677" width="0.0158%" height="15" fill="rgb(252,97,46)" fg:x="11264" fg:w="4"/><text x="44.8175%" y="687.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="44.6229%" y="741" width="0.0435%" height="15" fill="rgb(244,206,19)" fg:x="11278" fg:w="11"/><text x="44.8729%" y="751.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="44.6388%" y="725" width="0.0277%" height="15" fill="rgb(231,84,31)" fg:x="11282" fg:w="7"/><text x="44.8888%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="44.6665%" y="709" width="0.0396%" height="15" fill="rgb(244,133,0)" fg:x="11289" fg:w="10"/><text x="44.9165%" y="719.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="44.6862%" y="693" width="0.0198%" height="15" fill="rgb(223,15,50)" fg:x="11294" fg:w="5"/><text x="44.9362%" y="703.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="44.6862%" y="677" width="0.0198%" height="15" fill="rgb(250,118,49)" fg:x="11294" fg:w="5"/><text x="44.9362%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="44.7060%" y="709" width="0.0356%" height="15" fill="rgb(248,25,38)" fg:x="11299" fg:w="9"/><text x="44.9560%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="44.7060%" y="693" width="0.0356%" height="15" fill="rgb(215,70,14)" fg:x="11299" fg:w="9"/><text x="44.9560%" y="703.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="44.7218%" y="677" width="0.0198%" height="15" fill="rgb(215,28,15)" fg:x="11303" fg:w="5"/><text x="44.9718%" y="687.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="44.7258%" y="661" width="0.0158%" height="15" fill="rgb(243,6,28)" fg:x="11304" fg:w="4"/><text x="44.9758%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.7416%" y="629" width="0.0198%" height="15" fill="rgb(222,130,1)" fg:x="11308" fg:w="5"/><text x="44.9916%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="44.7416%" y="613" width="0.0198%" height="15" fill="rgb(236,166,44)" fg:x="11308" fg:w="5"/><text x="44.9916%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="44.7416%" y="597" width="0.0198%" height="15" fill="rgb(221,108,14)" fg:x="11308" fg:w="5"/><text x="44.9916%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.7495%" y="581" width="0.0119%" height="15" fill="rgb(252,3,45)" fg:x="11310" fg:w="3"/><text x="44.9995%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.7495%" y="565" width="0.0119%" height="15" fill="rgb(237,68,30)" fg:x="11310" fg:w="3"/><text x="44.9995%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (50 samples, 0.20%)</title><rect x="44.5834%" y="773" width="0.1978%" height="15" fill="rgb(211,79,22)" fg:x="11268" fg:w="50"/><text x="44.8334%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.20%)</title><rect x="44.5834%" y="757" width="0.1978%" height="15" fill="rgb(252,185,21)" fg:x="11268" fg:w="50"/><text x="44.8334%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="44.6665%" y="741" width="0.1147%" height="15" fill="rgb(225,189,26)" fg:x="11289" fg:w="29"/><text x="44.9165%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="44.6665%" y="725" width="0.1147%" height="15" fill="rgb(241,30,40)" fg:x="11289" fg:w="29"/><text x="44.9165%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="44.7416%" y="709" width="0.0396%" height="15" fill="rgb(235,215,44)" fg:x="11308" fg:w="10"/><text x="44.9916%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="44.7416%" y="693" width="0.0396%" height="15" fill="rgb(205,8,29)" fg:x="11308" fg:w="10"/><text x="44.9916%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="44.7416%" y="677" width="0.0396%" height="15" fill="rgb(241,137,42)" fg:x="11308" fg:w="10"/><text x="44.9916%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="44.7416%" y="661" width="0.0396%" height="15" fill="rgb(237,155,2)" fg:x="11308" fg:w="10"/><text x="44.9916%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="44.7416%" y="645" width="0.0396%" height="15" fill="rgb(245,29,42)" fg:x="11308" fg:w="10"/><text x="44.9916%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="44.7614%" y="629" width="0.0198%" height="15" fill="rgb(234,101,35)" fg:x="11313" fg:w="5"/><text x="45.0114%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.7614%" y="613" width="0.0198%" height="15" fill="rgb(228,64,37)" fg:x="11313" fg:w="5"/><text x="45.0114%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="44.7614%" y="597" width="0.0198%" height="15" fill="rgb(217,214,36)" fg:x="11313" fg:w="5"/><text x="45.0114%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="44.7614%" y="581" width="0.0198%" height="15" fill="rgb(243,70,3)" fg:x="11313" fg:w="5"/><text x="45.0114%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.7693%" y="565" width="0.0119%" height="15" fill="rgb(253,158,52)" fg:x="11315" fg:w="3"/><text x="45.0193%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.7693%" y="549" width="0.0119%" height="15" fill="rgb(234,111,54)" fg:x="11315" fg:w="3"/><text x="45.0193%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="44.7812%" y="549" width="0.0237%" height="15" fill="rgb(217,70,32)" fg:x="11318" fg:w="6"/><text x="45.0312%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="44.7891%" y="533" width="0.0158%" height="15" fill="rgb(234,18,33)" fg:x="11320" fg:w="4"/><text x="45.0391%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="44.7891%" y="517" width="0.0158%" height="15" fill="rgb(234,12,49)" fg:x="11320" fg:w="4"/><text x="45.0391%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="44.7812%" y="597" width="0.0475%" height="15" fill="rgb(236,10,21)" fg:x="11318" fg:w="12"/><text x="45.0312%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="44.7812%" y="581" width="0.0475%" height="15" fill="rgb(248,182,45)" fg:x="11318" fg:w="12"/><text x="45.0312%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="44.7812%" y="565" width="0.0475%" height="15" fill="rgb(217,95,36)" fg:x="11318" fg:w="12"/><text x="45.0312%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="44.8049%" y="549" width="0.0237%" height="15" fill="rgb(212,110,31)" fg:x="11324" fg:w="6"/><text x="45.0549%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="44.8049%" y="533" width="0.0237%" height="15" fill="rgb(206,32,53)" fg:x="11324" fg:w="6"/><text x="45.0549%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="44.8129%" y="517" width="0.0158%" height="15" fill="rgb(246,141,37)" fg:x="11326" fg:w="4"/><text x="45.0629%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="44.8129%" y="501" width="0.0158%" height="15" fill="rgb(219,16,7)" fg:x="11326" fg:w="4"/><text x="45.0629%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.8287%" y="533" width="0.0198%" height="15" fill="rgb(230,205,45)" fg:x="11330" fg:w="5"/><text x="45.0787%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="44.8366%" y="517" width="0.0119%" height="15" fill="rgb(231,43,49)" fg:x="11332" fg:w="3"/><text x="45.0866%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="44.8366%" y="501" width="0.0119%" height="15" fill="rgb(212,106,34)" fg:x="11332" fg:w="3"/><text x="45.0866%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.8643%" y="389" width="0.0198%" height="15" fill="rgb(206,83,17)" fg:x="11339" fg:w="5"/><text x="45.1143%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="44.8643%" y="373" width="0.0198%" height="15" fill="rgb(244,154,49)" fg:x="11339" fg:w="5"/><text x="45.1143%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="44.8643%" y="357" width="0.0198%" height="15" fill="rgb(244,149,49)" fg:x="11339" fg:w="5"/><text x="45.1143%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.8722%" y="341" width="0.0119%" height="15" fill="rgb(227,134,18)" fg:x="11341" fg:w="3"/><text x="45.1222%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.8722%" y="325" width="0.0119%" height="15" fill="rgb(237,116,36)" fg:x="11341" fg:w="3"/><text x="45.1222%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.8841%" y="325" width="0.0119%" height="15" fill="rgb(205,129,40)" fg:x="11344" fg:w="3"/><text x="45.1341%" y="335.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="44.8643%" y="453" width="0.0435%" height="15" fill="rgb(236,178,4)" fg:x="11339" fg:w="11"/><text x="45.1143%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="44.8643%" y="437" width="0.0435%" height="15" fill="rgb(251,76,53)" fg:x="11339" fg:w="11"/><text x="45.1143%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="44.8643%" y="421" width="0.0435%" height="15" fill="rgb(242,92,40)" fg:x="11339" fg:w="11"/><text x="45.1143%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="44.8643%" y="405" width="0.0435%" height="15" fill="rgb(209,45,30)" fg:x="11339" fg:w="11"/><text x="45.1143%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="44.8841%" y="389" width="0.0237%" height="15" fill="rgb(218,157,36)" fg:x="11344" fg:w="6"/><text x="45.1341%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="44.8841%" y="373" width="0.0237%" height="15" fill="rgb(222,186,16)" fg:x="11344" fg:w="6"/><text x="45.1341%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="44.8841%" y="357" width="0.0237%" height="15" fill="rgb(254,72,35)" fg:x="11344" fg:w="6"/><text x="45.1341%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="44.8841%" y="341" width="0.0237%" height="15" fill="rgb(224,25,35)" fg:x="11344" fg:w="6"/><text x="45.1341%" y="351.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.8959%" y="325" width="0.0119%" height="15" fill="rgb(206,135,52)" fg:x="11347" fg:w="3"/><text x="45.1459%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.8959%" y="309" width="0.0119%" height="15" fill="rgb(229,174,47)" fg:x="11347" fg:w="3"/><text x="45.1459%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="44.7812%" y="645" width="0.1306%" height="15" fill="rgb(242,184,21)" fg:x="11318" fg:w="33"/><text x="45.0312%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.13%)</title><rect x="44.7812%" y="629" width="0.1306%" height="15" fill="rgb(213,22,45)" fg:x="11318" fg:w="33"/><text x="45.0312%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.13%)</title><rect x="44.7812%" y="613" width="0.1306%" height="15" fill="rgb(237,81,54)" fg:x="11318" fg:w="33"/><text x="45.0312%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.08%)</title><rect x="44.8287%" y="597" width="0.0831%" height="15" fill="rgb(248,177,18)" fg:x="11330" fg:w="21"/><text x="45.0787%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="44.8287%" y="581" width="0.0831%" height="15" fill="rgb(254,31,16)" fg:x="11330" fg:w="21"/><text x="45.0787%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="44.8287%" y="565" width="0.0831%" height="15" fill="rgb(235,20,31)" fg:x="11330" fg:w="21"/><text x="45.0787%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="44.8287%" y="549" width="0.0831%" height="15" fill="rgb(240,56,43)" fg:x="11330" fg:w="21"/><text x="45.0787%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.06%)</title><rect x="44.8485%" y="533" width="0.0633%" height="15" fill="rgb(237,197,51)" fg:x="11335" fg:w="16"/><text x="45.0985%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="44.8485%" y="517" width="0.0633%" height="15" fill="rgb(241,162,44)" fg:x="11335" fg:w="16"/><text x="45.0985%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="44.8564%" y="501" width="0.0554%" height="15" fill="rgb(224,23,20)" fg:x="11337" fg:w="14"/><text x="45.1064%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="44.8564%" y="485" width="0.0554%" height="15" fill="rgb(250,109,34)" fg:x="11337" fg:w="14"/><text x="45.1064%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="44.8643%" y="469" width="0.0475%" height="15" fill="rgb(214,175,50)" fg:x="11339" fg:w="12"/><text x="45.1143%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.9118%" y="581" width="0.0119%" height="15" fill="rgb(213,182,5)" fg:x="11351" fg:w="3"/><text x="45.1618%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="44.9118%" y="565" width="0.0119%" height="15" fill="rgb(209,199,19)" fg:x="11351" fg:w="3"/><text x="45.1618%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="44.9118%" y="549" width="0.0119%" height="15" fill="rgb(236,224,42)" fg:x="11351" fg:w="3"/><text x="45.1618%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="44.7812%" y="693" width="0.1504%" height="15" fill="rgb(246,226,29)" fg:x="11318" fg:w="38"/><text x="45.0312%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.15%)</title><rect x="44.7812%" y="677" width="0.1504%" height="15" fill="rgb(227,223,11)" fg:x="11318" fg:w="38"/><text x="45.0312%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.15%)</title><rect x="44.7812%" y="661" width="0.1504%" height="15" fill="rgb(219,7,51)" fg:x="11318" fg:w="38"/><text x="45.0312%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="44.9118%" y="645" width="0.0198%" height="15" fill="rgb(245,167,10)" fg:x="11351" fg:w="5"/><text x="45.1618%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.9118%" y="629" width="0.0198%" height="15" fill="rgb(237,224,16)" fg:x="11351" fg:w="5"/><text x="45.1618%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="44.9118%" y="613" width="0.0198%" height="15" fill="rgb(226,132,13)" fg:x="11351" fg:w="5"/><text x="45.1618%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="44.9118%" y="597" width="0.0198%" height="15" fill="rgb(214,140,3)" fg:x="11351" fg:w="5"/><text x="45.1618%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="44.9316%" y="581" width="0.0158%" height="15" fill="rgb(221,177,4)" fg:x="11356" fg:w="4"/><text x="45.1816%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="44.9316%" y="565" width="0.0158%" height="15" fill="rgb(238,139,3)" fg:x="11356" fg:w="4"/><text x="45.1816%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="44.9316%" y="549" width="0.0158%" height="15" fill="rgb(216,17,39)" fg:x="11356" fg:w="4"/><text x="45.1816%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (175 samples, 0.69%)</title><rect x="44.2747%" y="837" width="0.6924%" height="15" fill="rgb(238,120,9)" fg:x="11190" fg:w="175"/><text x="44.5247%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (175 samples, 0.69%)</title><rect x="44.2747%" y="821" width="0.6924%" height="15" fill="rgb(244,92,53)" fg:x="11190" fg:w="175"/><text x="44.5247%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (147 samples, 0.58%)</title><rect x="44.3855%" y="805" width="0.5816%" height="15" fill="rgb(224,148,33)" fg:x="11218" fg:w="147"/><text x="44.6355%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (147 samples, 0.58%)</title><rect x="44.3855%" y="789" width="0.5816%" height="15" fill="rgb(243,6,36)" fg:x="11218" fg:w="147"/><text x="44.6355%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (47 samples, 0.19%)</title><rect x="44.7812%" y="773" width="0.1860%" height="15" fill="rgb(230,102,11)" fg:x="11318" fg:w="47"/><text x="45.0312%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (47 samples, 0.19%)</title><rect x="44.7812%" y="757" width="0.1860%" height="15" fill="rgb(234,148,36)" fg:x="11318" fg:w="47"/><text x="45.0312%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.19%)</title><rect x="44.7812%" y="741" width="0.1860%" height="15" fill="rgb(251,153,25)" fg:x="11318" fg:w="47"/><text x="45.0312%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (47 samples, 0.19%)</title><rect x="44.7812%" y="725" width="0.1860%" height="15" fill="rgb(215,129,8)" fg:x="11318" fg:w="47"/><text x="45.0312%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (47 samples, 0.19%)</title><rect x="44.7812%" y="709" width="0.1860%" height="15" fill="rgb(224,128,35)" fg:x="11318" fg:w="47"/><text x="45.0312%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="44.9316%" y="693" width="0.0356%" height="15" fill="rgb(237,56,52)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="44.9316%" y="677" width="0.0356%" height="15" fill="rgb(234,213,19)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="44.9316%" y="661" width="0.0356%" height="15" fill="rgb(252,82,23)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="44.9316%" y="645" width="0.0356%" height="15" fill="rgb(254,201,21)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="44.9316%" y="629" width="0.0356%" height="15" fill="rgb(250,186,11)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="44.9316%" y="613" width="0.0356%" height="15" fill="rgb(211,174,5)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="44.9316%" y="597" width="0.0356%" height="15" fill="rgb(214,121,10)" fg:x="11356" fg:w="9"/><text x="45.1816%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="44.9474%" y="581" width="0.0198%" height="15" fill="rgb(241,66,2)" fg:x="11360" fg:w="5"/><text x="45.1974%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="44.9474%" y="565" width="0.0198%" height="15" fill="rgb(220,167,19)" fg:x="11360" fg:w="5"/><text x="45.1974%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="44.9474%" y="549" width="0.0198%" height="15" fill="rgb(231,54,50)" fg:x="11360" fg:w="5"/><text x="45.1974%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="44.9474%" y="533" width="0.0198%" height="15" fill="rgb(239,217,53)" fg:x="11360" fg:w="5"/><text x="45.1974%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.9553%" y="517" width="0.0119%" height="15" fill="rgb(248,8,0)" fg:x="11362" fg:w="3"/><text x="45.2053%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.9553%" y="501" width="0.0119%" height="15" fill="rgb(229,118,37)" fg:x="11362" fg:w="3"/><text x="45.2053%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.9790%" y="709" width="0.0119%" height="15" fill="rgb(253,223,43)" fg:x="11368" fg:w="3"/><text x="45.2290%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="44.9711%" y="757" width="0.0317%" height="15" fill="rgb(211,77,36)" fg:x="11366" fg:w="8"/><text x="45.2211%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="44.9790%" y="741" width="0.0237%" height="15" fill="rgb(219,3,53)" fg:x="11368" fg:w="6"/><text x="45.2290%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="44.9790%" y="725" width="0.0237%" height="15" fill="rgb(244,45,42)" fg:x="11368" fg:w="6"/><text x="45.2290%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="44.9909%" y="709" width="0.0119%" height="15" fill="rgb(225,95,27)" fg:x="11371" fg:w="3"/><text x="45.2409%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="44.9909%" y="693" width="0.0119%" height="15" fill="rgb(207,74,8)" fg:x="11371" fg:w="3"/><text x="45.2409%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.0107%" y="693" width="0.0119%" height="15" fill="rgb(243,63,36)" fg:x="11376" fg:w="3"/><text x="45.2607%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (347 samples, 1.37%)</title><rect x="43.6615%" y="901" width="1.3730%" height="15" fill="rgb(211,180,12)" fg:x="11035" fg:w="347"/><text x="43.9115%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (347 samples, 1.37%)</title><rect x="43.6615%" y="885" width="1.3730%" height="15" fill="rgb(254,166,49)" fg:x="11035" fg:w="347"/><text x="43.9115%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (318 samples, 1.26%)</title><rect x="43.7762%" y="869" width="1.2582%" height="15" fill="rgb(205,19,0)" fg:x="11064" fg:w="318"/><text x="44.0262%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (318 samples, 1.26%)</title><rect x="43.7762%" y="853" width="1.2582%" height="15" fill="rgb(224,172,32)" fg:x="11064" fg:w="318"/><text x="44.0262%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="44.9672%" y="837" width="0.0673%" height="15" fill="rgb(254,136,30)" fg:x="11365" fg:w="17"/><text x="45.2172%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.07%)</title><rect x="44.9672%" y="821" width="0.0673%" height="15" fill="rgb(246,19,35)" fg:x="11365" fg:w="17"/><text x="45.2172%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="44.9672%" y="805" width="0.0673%" height="15" fill="rgb(219,24,36)" fg:x="11365" fg:w="17"/><text x="45.2172%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="44.9711%" y="789" width="0.0633%" height="15" fill="rgb(251,55,1)" fg:x="11366" fg:w="16"/><text x="45.2211%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="44.9711%" y="773" width="0.0633%" height="15" fill="rgb(218,117,39)" fg:x="11366" fg:w="16"/><text x="45.2211%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="45.0028%" y="757" width="0.0317%" height="15" fill="rgb(248,169,11)" fg:x="11374" fg:w="8"/><text x="45.2528%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.0028%" y="741" width="0.0317%" height="15" fill="rgb(244,40,44)" fg:x="11374" fg:w="8"/><text x="45.2528%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="45.0107%" y="725" width="0.0237%" height="15" fill="rgb(234,62,37)" fg:x="11376" fg:w="6"/><text x="45.2607%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="45.0107%" y="709" width="0.0237%" height="15" fill="rgb(207,117,42)" fg:x="11376" fg:w="6"/><text x="45.2607%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="45.0226%" y="693" width="0.0119%" height="15" fill="rgb(213,43,2)" fg:x="11379" fg:w="3"/><text x="45.2726%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.0226%" y="677" width="0.0119%" height="15" fill="rgb(244,202,51)" fg:x="11379" fg:w="3"/><text x="45.2726%" y="687.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.0226%" y="661" width="0.0119%" height="15" fill="rgb(253,174,46)" fg:x="11379" fg:w="3"/><text x="45.2726%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.0226%" y="645" width="0.0119%" height="15" fill="rgb(251,23,1)" fg:x="11379" fg:w="3"/><text x="45.2726%" y="655.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="45.0700%" y="757" width="0.0158%" height="15" fill="rgb(253,26,1)" fg:x="11391" fg:w="4"/><text x="45.3200%" y="767.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.0740%" y="741" width="0.0119%" height="15" fill="rgb(216,89,31)" fg:x="11392" fg:w="3"/><text x="45.3240%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.0898%" y="629" width="0.0198%" height="15" fill="rgb(209,109,5)" fg:x="11396" fg:w="5"/><text x="45.3398%" y="639.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="45.0938%" y="613" width="0.0158%" height="15" fill="rgb(229,63,13)" fg:x="11397" fg:w="4"/><text x="45.3438%" y="623.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="45.0938%" y="597" width="0.0158%" height="15" fill="rgb(238,137,54)" fg:x="11397" fg:w="4"/><text x="45.3438%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="45.0898%" y="677" width="0.0396%" height="15" fill="rgb(228,1,9)" fg:x="11396" fg:w="10"/><text x="45.3398%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="45.0898%" y="661" width="0.0396%" height="15" fill="rgb(249,120,48)" fg:x="11396" fg:w="10"/><text x="45.3398%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="45.0898%" y="645" width="0.0396%" height="15" fill="rgb(209,72,36)" fg:x="11396" fg:w="10"/><text x="45.3398%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="45.1096%" y="629" width="0.0198%" height="15" fill="rgb(247,98,49)" fg:x="11401" fg:w="5"/><text x="45.3596%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.1096%" y="613" width="0.0198%" height="15" fill="rgb(233,75,36)" fg:x="11401" fg:w="5"/><text x="45.3596%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.1175%" y="597" width="0.0119%" height="15" fill="rgb(225,14,24)" fg:x="11403" fg:w="3"/><text x="45.3675%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.1294%" y="613" width="0.0277%" height="15" fill="rgb(237,193,20)" fg:x="11406" fg:w="7"/><text x="45.3794%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="45.1413%" y="597" width="0.0158%" height="15" fill="rgb(239,122,19)" fg:x="11409" fg:w="4"/><text x="45.3913%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.1452%" y="581" width="0.0119%" height="15" fill="rgb(231,220,10)" fg:x="11410" fg:w="3"/><text x="45.3952%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="45.0859%" y="725" width="0.0989%" height="15" fill="rgb(220,66,15)" fg:x="11395" fg:w="25"/><text x="45.3359%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="45.0898%" y="709" width="0.0950%" height="15" fill="rgb(215,171,52)" fg:x="11396" fg:w="24"/><text x="45.3398%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="45.0898%" y="693" width="0.0950%" height="15" fill="rgb(241,169,50)" fg:x="11396" fg:w="24"/><text x="45.3398%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="45.1294%" y="677" width="0.0554%" height="15" fill="rgb(236,189,0)" fg:x="11406" fg:w="14"/><text x="45.3794%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="45.1294%" y="661" width="0.0554%" height="15" fill="rgb(217,147,20)" fg:x="11406" fg:w="14"/><text x="45.3794%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="45.1294%" y="645" width="0.0554%" height="15" fill="rgb(206,188,39)" fg:x="11406" fg:w="14"/><text x="45.3794%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="45.1294%" y="629" width="0.0554%" height="15" fill="rgb(227,118,25)" fg:x="11406" fg:w="14"/><text x="45.3794%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="45.1571%" y="613" width="0.0277%" height="15" fill="rgb(248,171,40)" fg:x="11413" fg:w="7"/><text x="45.4071%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.1571%" y="597" width="0.0277%" height="15" fill="rgb(251,90,54)" fg:x="11413" fg:w="7"/><text x="45.4071%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.1729%" y="581" width="0.0119%" height="15" fill="rgb(234,11,46)" fg:x="11417" fg:w="3"/><text x="45.4229%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.1848%" y="613" width="0.0198%" height="15" fill="rgb(229,134,13)" fg:x="11420" fg:w="5"/><text x="45.4348%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.1927%" y="597" width="0.0119%" height="15" fill="rgb(223,129,3)" fg:x="11422" fg:w="3"/><text x="45.4427%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="45.1848%" y="661" width="0.0475%" height="15" fill="rgb(221,124,13)" fg:x="11420" fg:w="12"/><text x="45.4348%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="45.1848%" y="645" width="0.0475%" height="15" fill="rgb(234,3,18)" fg:x="11420" fg:w="12"/><text x="45.4348%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="45.1848%" y="629" width="0.0475%" height="15" fill="rgb(249,199,20)" fg:x="11420" fg:w="12"/><text x="45.4348%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="45.2046%" y="613" width="0.0277%" height="15" fill="rgb(224,134,6)" fg:x="11425" fg:w="7"/><text x="45.4546%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.2046%" y="597" width="0.0277%" height="15" fill="rgb(254,83,26)" fg:x="11425" fg:w="7"/><text x="45.4546%" y="607.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="45.2164%" y="581" width="0.0158%" height="15" fill="rgb(217,88,9)" fg:x="11428" fg:w="4"/><text x="45.4664%" y="591.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="45.2164%" y="565" width="0.0158%" height="15" fill="rgb(225,73,2)" fg:x="11428" fg:w="4"/><text x="45.4664%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.2323%" y="597" width="0.0198%" height="15" fill="rgb(226,44,39)" fg:x="11432" fg:w="5"/><text x="45.4823%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.2402%" y="581" width="0.0119%" height="15" fill="rgb(228,53,17)" fg:x="11434" fg:w="3"/><text x="45.4902%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="45.2520%" y="597" width="0.0119%" height="15" fill="rgb(212,27,27)" fg:x="11437" fg:w="3"/><text x="45.5020%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.2520%" y="581" width="0.0119%" height="15" fill="rgb(241,50,6)" fg:x="11437" fg:w="3"/><text x="45.5020%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.2639%" y="469" width="0.0158%" height="15" fill="rgb(225,28,51)" fg:x="11440" fg:w="4"/><text x="45.5139%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.2639%" y="453" width="0.0158%" height="15" fill="rgb(215,33,16)" fg:x="11440" fg:w="4"/><text x="45.5139%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.2639%" y="437" width="0.0158%" height="15" fill="rgb(243,40,39)" fg:x="11440" fg:w="4"/><text x="45.5139%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.2639%" y="517" width="0.0317%" height="15" fill="rgb(225,11,42)" fg:x="11440" fg:w="8"/><text x="45.5139%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.2639%" y="501" width="0.0317%" height="15" fill="rgb(241,220,38)" fg:x="11440" fg:w="8"/><text x="45.5139%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.2639%" y="485" width="0.0317%" height="15" fill="rgb(244,52,35)" fg:x="11440" fg:w="8"/><text x="45.5139%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.2797%" y="469" width="0.0158%" height="15" fill="rgb(246,42,46)" fg:x="11444" fg:w="4"/><text x="45.5297%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.2797%" y="453" width="0.0158%" height="15" fill="rgb(205,184,13)" fg:x="11444" fg:w="4"/><text x="45.5297%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.2797%" y="437" width="0.0158%" height="15" fill="rgb(209,48,36)" fg:x="11444" fg:w="4"/><text x="45.5297%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.2797%" y="421" width="0.0158%" height="15" fill="rgb(244,34,51)" fg:x="11444" fg:w="4"/><text x="45.5297%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.3035%" y="213" width="0.0119%" height="15" fill="rgb(221,107,33)" fg:x="11450" fg:w="3"/><text x="45.5535%" y="223.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="45.3035%" y="197" width="0.0119%" height="15" fill="rgb(224,203,12)" fg:x="11450" fg:w="3"/><text x="45.5535%" y="207.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="45.3035%" y="181" width="0.0119%" height="15" fill="rgb(230,215,18)" fg:x="11450" fg:w="3"/><text x="45.5535%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.3035%" y="261" width="0.0277%" height="15" fill="rgb(206,185,35)" fg:x="11450" fg:w="7"/><text x="45.5535%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="45.3035%" y="245" width="0.0277%" height="15" fill="rgb(228,140,34)" fg:x="11450" fg:w="7"/><text x="45.5535%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="45.3035%" y="229" width="0.0277%" height="15" fill="rgb(208,93,13)" fg:x="11450" fg:w="7"/><text x="45.5535%" y="239.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.3153%" y="213" width="0.0158%" height="15" fill="rgb(221,193,39)" fg:x="11453" fg:w="4"/><text x="45.5653%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.3153%" y="197" width="0.0158%" height="15" fill="rgb(241,132,34)" fg:x="11453" fg:w="4"/><text x="45.5653%" y="207.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.3153%" y="181" width="0.0158%" height="15" fill="rgb(221,141,10)" fg:x="11453" fg:w="4"/><text x="45.5653%" y="191.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.3153%" y="165" width="0.0158%" height="15" fill="rgb(226,90,31)" fg:x="11453" fg:w="4"/><text x="45.5653%" y="175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.29%)</title><rect x="45.0542%" y="773" width="0.2928%" height="15" fill="rgb(243,75,5)" fg:x="11387" fg:w="74"/><text x="45.3042%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (66 samples, 0.26%)</title><rect x="45.0859%" y="757" width="0.2611%" height="15" fill="rgb(227,156,21)" fg:x="11395" fg:w="66"/><text x="45.3359%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (66 samples, 0.26%)</title><rect x="45.0859%" y="741" width="0.2611%" height="15" fill="rgb(250,195,8)" fg:x="11395" fg:w="66"/><text x="45.3359%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (41 samples, 0.16%)</title><rect x="45.1848%" y="725" width="0.1622%" height="15" fill="rgb(220,134,5)" fg:x="11420" fg:w="41"/><text x="45.4348%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.16%)</title><rect x="45.1848%" y="709" width="0.1622%" height="15" fill="rgb(246,106,34)" fg:x="11420" fg:w="41"/><text x="45.4348%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.16%)</title><rect x="45.1848%" y="693" width="0.1622%" height="15" fill="rgb(205,1,4)" fg:x="11420" fg:w="41"/><text x="45.4348%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (41 samples, 0.16%)</title><rect x="45.1848%" y="677" width="0.1622%" height="15" fill="rgb(224,151,29)" fg:x="11420" fg:w="41"/><text x="45.4348%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.11%)</title><rect x="45.2323%" y="661" width="0.1147%" height="15" fill="rgb(251,196,0)" fg:x="11432" fg:w="29"/><text x="45.4823%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="45.2323%" y="645" width="0.1147%" height="15" fill="rgb(212,127,0)" fg:x="11432" fg:w="29"/><text x="45.4823%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.11%)</title><rect x="45.2323%" y="629" width="0.1147%" height="15" fill="rgb(236,71,53)" fg:x="11432" fg:w="29"/><text x="45.4823%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.11%)</title><rect x="45.2323%" y="613" width="0.1147%" height="15" fill="rgb(227,99,0)" fg:x="11432" fg:w="29"/><text x="45.4823%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.08%)</title><rect x="45.2639%" y="597" width="0.0831%" height="15" fill="rgb(239,89,21)" fg:x="11440" fg:w="21"/><text x="45.5139%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.08%)</title><rect x="45.2639%" y="581" width="0.0831%" height="15" fill="rgb(243,122,19)" fg:x="11440" fg:w="21"/><text x="45.5139%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="45.2639%" y="565" width="0.0831%" height="15" fill="rgb(229,192,45)" fg:x="11440" fg:w="21"/><text x="45.5139%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="45.2639%" y="549" width="0.0831%" height="15" fill="rgb(235,165,35)" fg:x="11440" fg:w="21"/><text x="45.5139%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="45.2639%" y="533" width="0.0831%" height="15" fill="rgb(253,202,0)" fg:x="11440" fg:w="21"/><text x="45.5139%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="45.2956%" y="517" width="0.0514%" height="15" fill="rgb(235,51,20)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="45.2956%" y="501" width="0.0514%" height="15" fill="rgb(218,95,46)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="45.2956%" y="485" width="0.0514%" height="15" fill="rgb(212,81,10)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="45.2956%" y="469" width="0.0514%" height="15" fill="rgb(240,59,0)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="45.2956%" y="453" width="0.0514%" height="15" fill="rgb(212,191,42)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="45.2956%" y="437" width="0.0514%" height="15" fill="rgb(233,140,3)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="45.2956%" y="421" width="0.0514%" height="15" fill="rgb(215,69,23)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="45.2956%" y="405" width="0.0514%" height="15" fill="rgb(240,202,20)" fg:x="11448" fg:w="13"/><text x="45.5456%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.04%)</title><rect x="45.3035%" y="389" width="0.0435%" height="15" fill="rgb(209,146,50)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="399.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="45.3035%" y="373" width="0.0435%" height="15" fill="rgb(253,102,54)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="45.3035%" y="357" width="0.0435%" height="15" fill="rgb(250,173,47)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="45.3035%" y="341" width="0.0435%" height="15" fill="rgb(232,142,7)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="45.3035%" y="325" width="0.0435%" height="15" fill="rgb(230,157,47)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="45.3035%" y="309" width="0.0435%" height="15" fill="rgb(214,177,35)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="45.3035%" y="293" width="0.0435%" height="15" fill="rgb(234,119,46)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="45.3035%" y="277" width="0.0435%" height="15" fill="rgb(241,180,50)" fg:x="11450" fg:w="11"/><text x="45.5535%" y="287.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.3312%" y="261" width="0.0158%" height="15" fill="rgb(221,54,25)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.3312%" y="245" width="0.0158%" height="15" fill="rgb(209,157,44)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="255.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.3312%" y="229" width="0.0158%" height="15" fill="rgb(246,115,41)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="239.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.3312%" y="213" width="0.0158%" height="15" fill="rgb(229,86,1)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.3312%" y="197" width="0.0158%" height="15" fill="rgb(240,108,53)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="207.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.3312%" y="181" width="0.0158%" height="15" fill="rgb(227,134,2)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="191.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.3312%" y="165" width="0.0158%" height="15" fill="rgb(213,129,25)" fg:x="11457" fg:w="4"/><text x="45.5812%" y="175.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.3589%" y="741" width="0.0119%" height="15" fill="rgb(226,35,21)" fg:x="11464" fg:w="3"/><text x="45.6089%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.3707%" y="613" width="0.0119%" height="15" fill="rgb(208,129,26)" fg:x="11467" fg:w="3"/><text x="45.6207%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.3707%" y="661" width="0.0198%" height="15" fill="rgb(224,83,6)" fg:x="11467" fg:w="5"/><text x="45.6207%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.3707%" y="645" width="0.0198%" height="15" fill="rgb(227,52,39)" fg:x="11467" fg:w="5"/><text x="45.6207%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.3707%" y="629" width="0.0198%" height="15" fill="rgb(241,30,17)" fg:x="11467" fg:w="5"/><text x="45.6207%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.3905%" y="597" width="0.0119%" height="15" fill="rgb(246,186,42)" fg:x="11472" fg:w="3"/><text x="45.6405%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="45.3707%" y="709" width="0.0396%" height="15" fill="rgb(221,169,15)" fg:x="11467" fg:w="10"/><text x="45.6207%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="45.3707%" y="693" width="0.0396%" height="15" fill="rgb(235,108,21)" fg:x="11467" fg:w="10"/><text x="45.6207%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="45.3707%" y="677" width="0.0396%" height="15" fill="rgb(219,148,30)" fg:x="11467" fg:w="10"/><text x="45.6207%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="45.3905%" y="661" width="0.0198%" height="15" fill="rgb(220,109,5)" fg:x="11472" fg:w="5"/><text x="45.6405%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.3905%" y="645" width="0.0198%" height="15" fill="rgb(213,203,48)" fg:x="11472" fg:w="5"/><text x="45.6405%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.3905%" y="629" width="0.0198%" height="15" fill="rgb(244,71,33)" fg:x="11472" fg:w="5"/><text x="45.6405%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.3905%" y="613" width="0.0198%" height="15" fill="rgb(209,23,2)" fg:x="11472" fg:w="5"/><text x="45.6405%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.4103%" y="645" width="0.0158%" height="15" fill="rgb(219,97,7)" fg:x="11477" fg:w="4"/><text x="45.6603%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.4103%" y="629" width="0.0158%" height="15" fill="rgb(216,161,23)" fg:x="11477" fg:w="4"/><text x="45.6603%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.4103%" y="613" width="0.0158%" height="15" fill="rgb(207,45,42)" fg:x="11477" fg:w="4"/><text x="45.6603%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (102 samples, 0.40%)</title><rect x="45.0423%" y="821" width="0.4036%" height="15" fill="rgb(241,61,4)" fg:x="11384" fg:w="102"/><text x="45.2923%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (99 samples, 0.39%)</title><rect x="45.0542%" y="805" width="0.3917%" height="15" fill="rgb(236,170,1)" fg:x="11387" fg:w="99"/><text x="45.3042%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (99 samples, 0.39%)</title><rect x="45.0542%" y="789" width="0.3917%" height="15" fill="rgb(239,72,5)" fg:x="11387" fg:w="99"/><text x="45.3042%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.10%)</title><rect x="45.3470%" y="773" width="0.0989%" height="15" fill="rgb(214,13,50)" fg:x="11461" fg:w="25"/><text x="45.5970%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="45.3470%" y="757" width="0.0989%" height="15" fill="rgb(224,88,9)" fg:x="11461" fg:w="25"/><text x="45.5970%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="45.3707%" y="741" width="0.0752%" height="15" fill="rgb(238,192,34)" fg:x="11467" fg:w="19"/><text x="45.6207%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="45.3707%" y="725" width="0.0752%" height="15" fill="rgb(217,203,50)" fg:x="11467" fg:w="19"/><text x="45.6207%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="45.4103%" y="709" width="0.0356%" height="15" fill="rgb(241,123,32)" fg:x="11477" fg:w="9"/><text x="45.6603%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="45.4103%" y="693" width="0.0356%" height="15" fill="rgb(248,151,39)" fg:x="11477" fg:w="9"/><text x="45.6603%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="45.4103%" y="677" width="0.0356%" height="15" fill="rgb(208,89,6)" fg:x="11477" fg:w="9"/><text x="45.6603%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="45.4103%" y="661" width="0.0356%" height="15" fill="rgb(254,43,26)" fg:x="11477" fg:w="9"/><text x="45.6603%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="45.4261%" y="645" width="0.0198%" height="15" fill="rgb(216,158,13)" fg:x="11481" fg:w="5"/><text x="45.6761%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.4261%" y="629" width="0.0198%" height="15" fill="rgb(212,47,37)" fg:x="11481" fg:w="5"/><text x="45.6761%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.4261%" y="613" width="0.0198%" height="15" fill="rgb(254,16,10)" fg:x="11481" fg:w="5"/><text x="45.6761%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.4261%" y="597" width="0.0198%" height="15" fill="rgb(223,228,16)" fg:x="11481" fg:w="5"/><text x="45.6761%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="45.4340%" y="581" width="0.0119%" height="15" fill="rgb(249,108,50)" fg:x="11483" fg:w="3"/><text x="45.6840%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.4340%" y="565" width="0.0119%" height="15" fill="rgb(208,220,5)" fg:x="11483" fg:w="3"/><text x="45.6840%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.4617%" y="661" width="0.0119%" height="15" fill="rgb(217,89,48)" fg:x="11490" fg:w="3"/><text x="45.7117%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="45.4617%" y="645" width="0.0119%" height="15" fill="rgb(212,113,41)" fg:x="11490" fg:w="3"/><text x="45.7117%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="45.4617%" y="629" width="0.0119%" height="15" fill="rgb(231,127,5)" fg:x="11490" fg:w="3"/><text x="45.7117%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.4736%" y="597" width="0.0119%" height="15" fill="rgb(217,141,17)" fg:x="11493" fg:w="3"/><text x="45.7236%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.4736%" y="581" width="0.0119%" height="15" fill="rgb(245,125,54)" fg:x="11493" fg:w="3"/><text x="45.7236%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.4736%" y="565" width="0.0119%" height="15" fill="rgb(248,125,3)" fg:x="11493" fg:w="3"/><text x="45.7236%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.4617%" y="709" width="0.0317%" height="15" fill="rgb(236,119,51)" fg:x="11490" fg:w="8"/><text x="45.7117%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.4617%" y="693" width="0.0317%" height="15" fill="rgb(239,99,8)" fg:x="11490" fg:w="8"/><text x="45.7117%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.4617%" y="677" width="0.0317%" height="15" fill="rgb(224,228,4)" fg:x="11490" fg:w="8"/><text x="45.7117%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="45.4736%" y="661" width="0.0198%" height="15" fill="rgb(220,131,45)" fg:x="11493" fg:w="5"/><text x="45.7236%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.4736%" y="645" width="0.0198%" height="15" fill="rgb(215,62,5)" fg:x="11493" fg:w="5"/><text x="45.7236%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.4736%" y="629" width="0.0198%" height="15" fill="rgb(253,12,24)" fg:x="11493" fg:w="5"/><text x="45.7236%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.4736%" y="613" width="0.0198%" height="15" fill="rgb(248,120,50)" fg:x="11493" fg:w="5"/><text x="45.7236%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.4934%" y="645" width="0.0158%" height="15" fill="rgb(245,194,10)" fg:x="11498" fg:w="4"/><text x="45.7434%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.4934%" y="629" width="0.0158%" height="15" fill="rgb(241,149,38)" fg:x="11498" fg:w="4"/><text x="45.7434%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.4934%" y="613" width="0.0158%" height="15" fill="rgb(219,215,7)" fg:x="11498" fg:w="4"/><text x="45.7434%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="45.4538%" y="757" width="0.0712%" height="15" fill="rgb(208,120,31)" fg:x="11488" fg:w="18"/><text x="45.7038%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="45.4617%" y="741" width="0.0633%" height="15" fill="rgb(244,30,8)" fg:x="11490" fg:w="16"/><text x="45.7117%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="45.4617%" y="725" width="0.0633%" height="15" fill="rgb(238,35,44)" fg:x="11490" fg:w="16"/><text x="45.7117%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="45.4934%" y="709" width="0.0317%" height="15" fill="rgb(243,218,37)" fg:x="11498" fg:w="8"/><text x="45.7434%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.4934%" y="693" width="0.0317%" height="15" fill="rgb(218,169,10)" fg:x="11498" fg:w="8"/><text x="45.7434%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.4934%" y="677" width="0.0317%" height="15" fill="rgb(221,144,10)" fg:x="11498" fg:w="8"/><text x="45.7434%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.4934%" y="661" width="0.0317%" height="15" fill="rgb(226,41,38)" fg:x="11498" fg:w="8"/><text x="45.7434%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.5092%" y="645" width="0.0158%" height="15" fill="rgb(228,3,1)" fg:x="11502" fg:w="4"/><text x="45.7592%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.5092%" y="629" width="0.0158%" height="15" fill="rgb(209,129,12)" fg:x="11502" fg:w="4"/><text x="45.7592%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.5092%" y="613" width="0.0158%" height="15" fill="rgb(213,136,33)" fg:x="11502" fg:w="4"/><text x="45.7592%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.5092%" y="597" width="0.0158%" height="15" fill="rgb(209,181,29)" fg:x="11502" fg:w="4"/><text x="45.7592%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.5330%" y="645" width="0.0119%" height="15" fill="rgb(234,173,18)" fg:x="11508" fg:w="3"/><text x="45.7830%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="45.5330%" y="629" width="0.0119%" height="15" fill="rgb(227,73,47)" fg:x="11508" fg:w="3"/><text x="45.7830%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="45.5330%" y="613" width="0.0119%" height="15" fill="rgb(234,9,34)" fg:x="11508" fg:w="3"/><text x="45.7830%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="45.5290%" y="693" width="0.0356%" height="15" fill="rgb(235,172,15)" fg:x="11507" fg:w="9"/><text x="45.7790%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.5330%" y="677" width="0.0317%" height="15" fill="rgb(245,61,2)" fg:x="11508" fg:w="8"/><text x="45.7830%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.5330%" y="661" width="0.0317%" height="15" fill="rgb(238,39,47)" fg:x="11508" fg:w="8"/><text x="45.7830%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="45.5448%" y="645" width="0.0198%" height="15" fill="rgb(234,37,24)" fg:x="11511" fg:w="5"/><text x="45.7948%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.5448%" y="629" width="0.0198%" height="15" fill="rgb(248,223,24)" fg:x="11511" fg:w="5"/><text x="45.7948%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.5448%" y="613" width="0.0198%" height="15" fill="rgb(223,12,15)" fg:x="11511" fg:w="5"/><text x="45.7948%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.5448%" y="597" width="0.0198%" height="15" fill="rgb(249,6,3)" fg:x="11511" fg:w="5"/><text x="45.7948%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="45.5527%" y="581" width="0.0119%" height="15" fill="rgb(237,105,33)" fg:x="11513" fg:w="3"/><text x="45.8027%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.5527%" y="565" width="0.0119%" height="15" fill="rgb(252,208,35)" fg:x="11513" fg:w="3"/><text x="45.8027%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.5646%" y="629" width="0.0158%" height="15" fill="rgb(215,181,35)" fg:x="11516" fg:w="4"/><text x="45.8146%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="45.5646%" y="613" width="0.0158%" height="15" fill="rgb(246,212,3)" fg:x="11516" fg:w="4"/><text x="45.8146%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="45.5646%" y="597" width="0.0158%" height="15" fill="rgb(247,156,24)" fg:x="11516" fg:w="4"/><text x="45.8146%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.5884%" y="421" width="0.0119%" height="15" fill="rgb(248,9,31)" fg:x="11522" fg:w="3"/><text x="45.8384%" y="431.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.5884%" y="405" width="0.0119%" height="15" fill="rgb(234,26,45)" fg:x="11522" fg:w="3"/><text x="45.8384%" y="415.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.5884%" y="389" width="0.0119%" height="15" fill="rgb(249,11,32)" fg:x="11522" fg:w="3"/><text x="45.8384%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="45.5884%" y="469" width="0.0237%" height="15" fill="rgb(249,162,33)" fg:x="11522" fg:w="6"/><text x="45.8384%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="45.5884%" y="453" width="0.0237%" height="15" fill="rgb(232,4,32)" fg:x="11522" fg:w="6"/><text x="45.8384%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="45.5884%" y="437" width="0.0237%" height="15" fill="rgb(212,5,45)" fg:x="11522" fg:w="6"/><text x="45.8384%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="45.6002%" y="421" width="0.0119%" height="15" fill="rgb(227,95,13)" fg:x="11525" fg:w="3"/><text x="45.8502%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6002%" y="405" width="0.0119%" height="15" fill="rgb(223,205,10)" fg:x="11525" fg:w="3"/><text x="45.8502%" y="415.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="45.6002%" y="389" width="0.0119%" height="15" fill="rgb(222,178,8)" fg:x="11525" fg:w="3"/><text x="45.8502%" y="399.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="45.6002%" y="373" width="0.0119%" height="15" fill="rgb(216,13,22)" fg:x="11525" fg:w="3"/><text x="45.8502%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (45 samples, 0.18%)</title><rect x="45.4459%" y="821" width="0.1780%" height="15" fill="rgb(240,167,12)" fg:x="11486" fg:w="45"/><text x="45.6959%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.18%)</title><rect x="45.4459%" y="805" width="0.1780%" height="15" fill="rgb(235,68,35)" fg:x="11486" fg:w="45"/><text x="45.6959%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.17%)</title><rect x="45.4538%" y="789" width="0.1701%" height="15" fill="rgb(253,40,27)" fg:x="11488" fg:w="43"/><text x="45.7038%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (43 samples, 0.17%)</title><rect x="45.4538%" y="773" width="0.1701%" height="15" fill="rgb(214,19,28)" fg:x="11488" fg:w="43"/><text x="45.7038%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.10%)</title><rect x="45.5250%" y="757" width="0.0989%" height="15" fill="rgb(210,167,45)" fg:x="11506" fg:w="25"/><text x="45.7750%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.10%)</title><rect x="45.5250%" y="741" width="0.0989%" height="15" fill="rgb(232,97,40)" fg:x="11506" fg:w="25"/><text x="45.7750%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="45.5290%" y="725" width="0.0950%" height="15" fill="rgb(250,35,23)" fg:x="11507" fg:w="24"/><text x="45.7790%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="45.5290%" y="709" width="0.0950%" height="15" fill="rgb(248,47,53)" fg:x="11507" fg:w="24"/><text x="45.7790%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="45.5646%" y="693" width="0.0593%" height="15" fill="rgb(226,58,50)" fg:x="11516" fg:w="15"/><text x="45.8146%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="45.5646%" y="677" width="0.0593%" height="15" fill="rgb(217,105,26)" fg:x="11516" fg:w="15"/><text x="45.8146%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="45.5646%" y="661" width="0.0593%" height="15" fill="rgb(208,64,1)" fg:x="11516" fg:w="15"/><text x="45.8146%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="45.5646%" y="645" width="0.0593%" height="15" fill="rgb(214,80,1)" fg:x="11516" fg:w="15"/><text x="45.8146%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.04%)</title><rect x="45.5804%" y="629" width="0.0435%" height="15" fill="rgb(206,175,26)" fg:x="11520" fg:w="11"/><text x="45.8304%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="45.5804%" y="613" width="0.0435%" height="15" fill="rgb(235,156,37)" fg:x="11520" fg:w="11"/><text x="45.8304%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="45.5804%" y="597" width="0.0435%" height="15" fill="rgb(213,100,9)" fg:x="11520" fg:w="11"/><text x="45.8304%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="45.5804%" y="581" width="0.0435%" height="15" fill="rgb(241,15,13)" fg:x="11520" fg:w="11"/><text x="45.8304%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="45.5804%" y="565" width="0.0435%" height="15" fill="rgb(205,97,43)" fg:x="11520" fg:w="11"/><text x="45.8304%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="45.5884%" y="549" width="0.0356%" height="15" fill="rgb(216,106,32)" fg:x="11522" fg:w="9"/><text x="45.8384%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="45.5884%" y="533" width="0.0356%" height="15" fill="rgb(226,200,8)" fg:x="11522" fg:w="9"/><text x="45.8384%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="45.5884%" y="517" width="0.0356%" height="15" fill="rgb(244,54,29)" fg:x="11522" fg:w="9"/><text x="45.8384%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="45.5884%" y="501" width="0.0356%" height="15" fill="rgb(252,169,12)" fg:x="11522" fg:w="9"/><text x="45.8384%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="45.5884%" y="485" width="0.0356%" height="15" fill="rgb(231,199,11)" fg:x="11522" fg:w="9"/><text x="45.8384%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="45.6121%" y="469" width="0.0119%" height="15" fill="rgb(233,191,18)" fg:x="11528" fg:w="3"/><text x="45.8621%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="45.6121%" y="453" width="0.0119%" height="15" fill="rgb(215,83,47)" fg:x="11528" fg:w="3"/><text x="45.8621%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6121%" y="437" width="0.0119%" height="15" fill="rgb(251,67,19)" fg:x="11528" fg:w="3"/><text x="45.8621%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6240%" y="645" width="0.0119%" height="15" fill="rgb(240,7,20)" fg:x="11531" fg:w="3"/><text x="45.8740%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.6240%" y="693" width="0.0277%" height="15" fill="rgb(210,150,26)" fg:x="11531" fg:w="7"/><text x="45.8740%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="45.6240%" y="677" width="0.0277%" height="15" fill="rgb(228,75,42)" fg:x="11531" fg:w="7"/><text x="45.8740%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="45.6240%" y="661" width="0.0277%" height="15" fill="rgb(237,134,48)" fg:x="11531" fg:w="7"/><text x="45.8740%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.6358%" y="645" width="0.0158%" height="15" fill="rgb(205,80,50)" fg:x="11534" fg:w="4"/><text x="45.8858%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.6358%" y="629" width="0.0158%" height="15" fill="rgb(217,74,48)" fg:x="11534" fg:w="4"/><text x="45.8858%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6517%" y="629" width="0.0119%" height="15" fill="rgb(205,82,50)" fg:x="11538" fg:w="3"/><text x="45.9017%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="45.6240%" y="741" width="0.0554%" height="15" fill="rgb(228,1,33)" fg:x="11531" fg:w="14"/><text x="45.8740%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="45.6240%" y="725" width="0.0554%" height="15" fill="rgb(214,50,23)" fg:x="11531" fg:w="14"/><text x="45.8740%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="45.6240%" y="709" width="0.0554%" height="15" fill="rgb(210,62,9)" fg:x="11531" fg:w="14"/><text x="45.8740%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="45.6517%" y="693" width="0.0277%" height="15" fill="rgb(210,104,37)" fg:x="11538" fg:w="7"/><text x="45.9017%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="45.6517%" y="677" width="0.0277%" height="15" fill="rgb(232,104,43)" fg:x="11538" fg:w="7"/><text x="45.9017%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="45.6517%" y="661" width="0.0277%" height="15" fill="rgb(244,52,6)" fg:x="11538" fg:w="7"/><text x="45.9017%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="45.6517%" y="645" width="0.0277%" height="15" fill="rgb(211,174,52)" fg:x="11538" fg:w="7"/><text x="45.9017%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="45.6635%" y="629" width="0.0158%" height="15" fill="rgb(229,48,4)" fg:x="11541" fg:w="4"/><text x="45.9135%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="45.6635%" y="613" width="0.0158%" height="15" fill="rgb(205,155,16)" fg:x="11541" fg:w="4"/><text x="45.9135%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6794%" y="565" width="0.0119%" height="15" fill="rgb(211,141,53)" fg:x="11545" fg:w="3"/><text x="45.9294%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="45.6794%" y="613" width="0.0198%" height="15" fill="rgb(240,148,11)" fg:x="11545" fg:w="5"/><text x="45.9294%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="45.6794%" y="597" width="0.0198%" height="15" fill="rgb(214,45,23)" fg:x="11545" fg:w="5"/><text x="45.9294%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="45.6794%" y="581" width="0.0198%" height="15" fill="rgb(248,74,26)" fg:x="11545" fg:w="5"/><text x="45.9294%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (920 samples, 3.64%)</title><rect x="42.0709%" y="965" width="3.6401%" height="15" fill="rgb(218,121,16)" fg:x="10633" fg:w="920"/><text x="42.3209%" y="975.50">rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (920 samples, 3.64%)</title><rect x="42.0709%" y="949" width="3.6401%" height="15" fill="rgb(218,10,47)" fg:x="10633" fg:w="920"/><text x="42.3209%" y="959.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (913 samples, 3.61%)</title><rect x="42.0986%" y="933" width="3.6124%" height="15" fill="rgb(227,99,14)" fg:x="10640" fg:w="913"/><text x="42.3486%" y="943.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (913 samples, 3.61%)</title><rect x="42.0986%" y="917" width="3.6124%" height="15" fill="rgb(229,83,46)" fg:x="10640" fg:w="913"/><text x="42.3486%" y="927.50">_ZN1..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (171 samples, 0.68%)</title><rect x="45.0344%" y="901" width="0.6766%" height="15" fill="rgb(228,25,1)" fg:x="11382" fg:w="171"/><text x="45.2844%" y="911.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (171 samples, 0.68%)</title><rect x="45.0344%" y="885" width="0.6766%" height="15" fill="rgb(252,190,15)" fg:x="11382" fg:w="171"/><text x="45.2844%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (171 samples, 0.68%)</title><rect x="45.0344%" y="869" width="0.6766%" height="15" fill="rgb(213,103,51)" fg:x="11382" fg:w="171"/><text x="45.2844%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (169 samples, 0.67%)</title><rect x="45.0423%" y="853" width="0.6687%" height="15" fill="rgb(220,38,44)" fg:x="11384" fg:w="169"/><text x="45.2923%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (169 samples, 0.67%)</title><rect x="45.0423%" y="837" width="0.6687%" height="15" fill="rgb(210,45,26)" fg:x="11384" fg:w="169"/><text x="45.2923%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.09%)</title><rect x="45.6240%" y="821" width="0.0870%" height="15" fill="rgb(205,95,48)" fg:x="11531" fg:w="22"/><text x="45.8740%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.09%)</title><rect x="45.6240%" y="805" width="0.0870%" height="15" fill="rgb(225,179,37)" fg:x="11531" fg:w="22"/><text x="45.8740%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="45.6240%" y="789" width="0.0870%" height="15" fill="rgb(230,209,3)" fg:x="11531" fg:w="22"/><text x="45.8740%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.09%)</title><rect x="45.6240%" y="773" width="0.0870%" height="15" fill="rgb(248,12,46)" fg:x="11531" fg:w="22"/><text x="45.8740%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="45.6240%" y="757" width="0.0870%" height="15" fill="rgb(234,18,0)" fg:x="11531" fg:w="22"/><text x="45.8740%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="45.6794%" y="741" width="0.0317%" height="15" fill="rgb(238,197,14)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="45.6794%" y="725" width="0.0317%" height="15" fill="rgb(251,162,48)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.6794%" y="709" width="0.0317%" height="15" fill="rgb(237,73,42)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.6794%" y="693" width="0.0317%" height="15" fill="rgb(211,108,8)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.6794%" y="677" width="0.0317%" height="15" fill="rgb(213,45,22)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="45.6794%" y="661" width="0.0317%" height="15" fill="rgb(252,154,5)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="45.6794%" y="645" width="0.0317%" height="15" fill="rgb(221,79,52)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="45.6794%" y="629" width="0.0317%" height="15" fill="rgb(229,220,36)" fg:x="11545" fg:w="8"/><text x="45.9294%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="45.6991%" y="613" width="0.0119%" height="15" fill="rgb(211,17,16)" fg:x="11550" fg:w="3"/><text x="45.9491%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="45.6991%" y="597" width="0.0119%" height="15" fill="rgb(222,55,31)" fg:x="11550" fg:w="3"/><text x="45.9491%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="45.6991%" y="581" width="0.0119%" height="15" fill="rgb(221,221,31)" fg:x="11550" fg:w="3"/><text x="45.9491%" y="591.50"></text></g><g><title>exp (19 samples, 0.08%)</title><rect x="45.7624%" y="917" width="0.0752%" height="15" fill="rgb(227,168,26)" fg:x="11566" fg:w="19"/><text x="46.0124%" y="927.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="45.7783%" y="901" width="0.0593%" height="15" fill="rgb(224,139,9)" fg:x="11570" fg:w="15"/><text x="46.0283%" y="911.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="45.8732%" y="869" width="0.0356%" height="15" fill="rgb(254,172,0)" fg:x="11594" fg:w="9"/><text x="46.1232%" y="879.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="45.8772%" y="853" width="0.0317%" height="15" fill="rgb(235,203,1)" fg:x="11595" fg:w="8"/><text x="46.1272%" y="863.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="45.9761%" y="821" width="0.0514%" height="15" fill="rgb(216,205,24)" fg:x="11620" fg:w="13"/><text x="46.2261%" y="831.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="45.9801%" y="805" width="0.0475%" height="15" fill="rgb(233,24,6)" fg:x="11621" fg:w="12"/><text x="46.2301%" y="815.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="46.0908%" y="773" width="0.0396%" height="15" fill="rgb(244,110,9)" fg:x="11649" fg:w="10"/><text x="46.3408%" y="783.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="46.0988%" y="757" width="0.0317%" height="15" fill="rgb(239,222,42)" fg:x="11651" fg:w="8"/><text x="46.3488%" y="767.50"></text></g><g><title>exp (22 samples, 0.09%)</title><rect x="46.2175%" y="725" width="0.0870%" height="15" fill="rgb(218,145,13)" fg:x="11681" fg:w="22"/><text x="46.4675%" y="735.50"></text></g><g><title>[libm.so.6] (18 samples, 0.07%)</title><rect x="46.2333%" y="709" width="0.0712%" height="15" fill="rgb(207,69,11)" fg:x="11685" fg:w="18"/><text x="46.4833%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="46.3045%" y="693" width="0.0752%" height="15" fill="rgb(220,223,22)" fg:x="11703" fg:w="19"/><text x="46.5545%" y="703.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="46.3362%" y="677" width="0.0435%" height="15" fill="rgb(245,102,5)" fg:x="11711" fg:w="11"/><text x="46.5862%" y="687.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="46.3441%" y="661" width="0.0356%" height="15" fill="rgb(211,148,2)" fg:x="11713" fg:w="9"/><text x="46.5941%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (90 samples, 0.36%)</title><rect x="46.1304%" y="741" width="0.3561%" height="15" fill="rgb(241,13,44)" fg:x="11659" fg:w="90"/><text x="46.3804%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="46.3045%" y="725" width="0.1820%" height="15" fill="rgb(219,137,21)" fg:x="11703" fg:w="46"/><text x="46.5545%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.18%)</title><rect x="46.3045%" y="709" width="0.1820%" height="15" fill="rgb(242,206,5)" fg:x="11703" fg:w="46"/><text x="46.5545%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="46.3797%" y="693" width="0.1068%" height="15" fill="rgb(217,114,22)" fg:x="11722" fg:w="27"/><text x="46.6297%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="46.3797%" y="677" width="0.1068%" height="15" fill="rgb(253,206,42)" fg:x="11722" fg:w="27"/><text x="46.6297%" y="687.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="46.4509%" y="661" width="0.0356%" height="15" fill="rgb(236,102,18)" fg:x="11740" fg:w="9"/><text x="46.7009%" y="671.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="46.4549%" y="645" width="0.0317%" height="15" fill="rgb(208,59,49)" fg:x="11741" fg:w="8"/><text x="46.7049%" y="655.50"></text></g><g><title>exp (21 samples, 0.08%)</title><rect x="46.5577%" y="709" width="0.0831%" height="15" fill="rgb(215,194,28)" fg:x="11767" fg:w="21"/><text x="46.8077%" y="719.50"></text></g><g><title>[libm.so.6] (16 samples, 0.06%)</title><rect x="46.5775%" y="693" width="0.0633%" height="15" fill="rgb(243,207,11)" fg:x="11772" fg:w="16"/><text x="46.8275%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="46.6408%" y="677" width="0.1227%" height="15" fill="rgb(254,179,35)" fg:x="11788" fg:w="31"/><text x="46.8908%" y="687.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="46.7318%" y="661" width="0.0317%" height="15" fill="rgb(235,97,3)" fg:x="11811" fg:w="8"/><text x="46.9818%" y="671.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="46.7358%" y="645" width="0.0277%" height="15" fill="rgb(215,155,33)" fg:x="11812" fg:w="7"/><text x="46.9858%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (221 samples, 0.87%)</title><rect x="46.0275%" y="789" width="0.8744%" height="15" fill="rgb(223,128,12)" fg:x="11633" fg:w="221"/><text x="46.2775%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (195 samples, 0.77%)</title><rect x="46.1304%" y="773" width="0.7715%" height="15" fill="rgb(208,157,18)" fg:x="11659" fg:w="195"/><text x="46.3804%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (195 samples, 0.77%)</title><rect x="46.1304%" y="757" width="0.7715%" height="15" fill="rgb(249,70,54)" fg:x="11659" fg:w="195"/><text x="46.3804%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (105 samples, 0.42%)</title><rect x="46.4865%" y="741" width="0.4154%" height="15" fill="rgb(244,118,24)" fg:x="11749" fg:w="105"/><text x="46.7365%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (105 samples, 0.42%)</title><rect x="46.4865%" y="725" width="0.4154%" height="15" fill="rgb(211,54,0)" fg:x="11749" fg:w="105"/><text x="46.7365%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (66 samples, 0.26%)</title><rect x="46.6408%" y="709" width="0.2611%" height="15" fill="rgb(245,137,45)" fg:x="11788" fg:w="66"/><text x="46.8908%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (66 samples, 0.26%)</title><rect x="46.6408%" y="693" width="0.2611%" height="15" fill="rgb(232,154,31)" fg:x="11788" fg:w="66"/><text x="46.8908%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.14%)</title><rect x="46.7635%" y="677" width="0.1385%" height="15" fill="rgb(253,6,39)" fg:x="11819" fg:w="35"/><text x="47.0135%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.14%)</title><rect x="46.7635%" y="661" width="0.1385%" height="15" fill="rgb(234,183,24)" fg:x="11819" fg:w="35"/><text x="47.0135%" y="671.50"></text></g><g><title>exp (19 samples, 0.08%)</title><rect x="46.8268%" y="645" width="0.0752%" height="15" fill="rgb(252,84,40)" fg:x="11835" fg:w="19"/><text x="47.0768%" y="655.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="46.8505%" y="629" width="0.0514%" height="15" fill="rgb(224,65,2)" fg:x="11841" fg:w="13"/><text x="47.1005%" y="639.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="46.9534%" y="757" width="0.0435%" height="15" fill="rgb(229,38,24)" fg:x="11867" fg:w="11"/><text x="47.2034%" y="767.50"></text></g><g><title>[libm.so.6] (11 samples, 0.04%)</title><rect x="46.9534%" y="741" width="0.0435%" height="15" fill="rgb(218,131,50)" fg:x="11867" fg:w="11"/><text x="47.2034%" y="751.50"></text></g><g><title>exp (15 samples, 0.06%)</title><rect x="47.0879%" y="709" width="0.0593%" height="15" fill="rgb(233,106,18)" fg:x="11901" fg:w="15"/><text x="47.3379%" y="719.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="47.0998%" y="693" width="0.0475%" height="15" fill="rgb(220,216,11)" fg:x="11904" fg:w="12"/><text x="47.3498%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="47.1473%" y="677" width="0.1345%" height="15" fill="rgb(251,100,45)" fg:x="11916" fg:w="34"/><text x="47.3973%" y="687.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="47.2264%" y="661" width="0.0554%" height="15" fill="rgb(235,143,32)" fg:x="11936" fg:w="14"/><text x="47.4764%" y="671.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="47.2462%" y="645" width="0.0356%" height="15" fill="rgb(248,124,34)" fg:x="11941" fg:w="9"/><text x="47.4962%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (106 samples, 0.42%)</title><rect x="46.9969%" y="725" width="0.4194%" height="15" fill="rgb(225,221,4)" fg:x="11878" fg:w="106"/><text x="47.2469%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (68 samples, 0.27%)</title><rect x="47.1473%" y="709" width="0.2691%" height="15" fill="rgb(242,27,43)" fg:x="11916" fg:w="68"/><text x="47.3973%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (68 samples, 0.27%)</title><rect x="47.1473%" y="693" width="0.2691%" height="15" fill="rgb(227,54,8)" fg:x="11916" fg:w="68"/><text x="47.3973%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (34 samples, 0.13%)</title><rect x="47.2818%" y="677" width="0.1345%" height="15" fill="rgb(253,139,49)" fg:x="11950" fg:w="34"/><text x="47.5318%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="47.2818%" y="661" width="0.1345%" height="15" fill="rgb(231,26,43)" fg:x="11950" fg:w="34"/><text x="47.5318%" y="671.50"></text></g><g><title>exp (16 samples, 0.06%)</title><rect x="47.3530%" y="645" width="0.0633%" height="15" fill="rgb(207,121,39)" fg:x="11968" fg:w="16"/><text x="47.6030%" y="655.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="47.3688%" y="629" width="0.0475%" height="15" fill="rgb(223,101,35)" fg:x="11972" fg:w="12"/><text x="47.6188%" y="639.50"></text></g><g><title>exp (15 samples, 0.06%)</title><rect x="47.5073%" y="693" width="0.0593%" height="15" fill="rgb(232,87,23)" fg:x="12007" fg:w="15"/><text x="47.7573%" y="703.50"></text></g><g><title>[libm.so.6] (12 samples, 0.05%)</title><rect x="47.5192%" y="677" width="0.0475%" height="15" fill="rgb(225,180,29)" fg:x="12010" fg:w="12"/><text x="47.7692%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.13%)</title><rect x="47.5667%" y="661" width="0.1345%" height="15" fill="rgb(225,25,17)" fg:x="12022" fg:w="34"/><text x="47.8167%" y="671.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="47.6498%" y="645" width="0.0514%" height="15" fill="rgb(223,8,52)" fg:x="12043" fg:w="13"/><text x="47.8998%" y="655.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="47.6616%" y="629" width="0.0396%" height="15" fill="rgb(246,42,21)" fg:x="12046" fg:w="10"/><text x="47.9116%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.12%)</title><rect x="47.7012%" y="661" width="0.1227%" height="15" fill="rgb(205,64,43)" fg:x="12056" fg:w="31"/><text x="47.9512%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="47.7012%" y="645" width="0.1227%" height="15" fill="rgb(221,160,13)" fg:x="12056" fg:w="31"/><text x="47.9512%" y="655.50"></text></g><g><title>exp (14 samples, 0.06%)</title><rect x="47.7685%" y="629" width="0.0554%" height="15" fill="rgb(239,58,35)" fg:x="12073" fg:w="14"/><text x="48.0185%" y="639.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="47.7724%" y="613" width="0.0514%" height="15" fill="rgb(251,26,40)" fg:x="12074" fg:w="13"/><text x="48.0224%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8318%" y="501" width="0.0119%" height="15" fill="rgb(247,0,4)" fg:x="12089" fg:w="3"/><text x="48.0818%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (492 samples, 1.95%)</title><rect x="45.9088%" y="837" width="1.9467%" height="15" fill="rgb(218,130,10)" fg:x="11603" fg:w="492"/><text x="46.1588%" y="847.50">r..</text></g><g><title>rayon_core::registry::in_worker (462 samples, 1.83%)</title><rect x="46.0275%" y="821" width="1.8280%" height="15" fill="rgb(239,32,7)" fg:x="11633" fg:w="462"/><text x="46.2775%" y="831.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (462 samples, 1.83%)</title><rect x="46.0275%" y="805" width="1.8280%" height="15" fill="rgb(210,192,24)" fg:x="11633" fg:w="462"/><text x="46.2775%" y="815.50">_..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (241 samples, 0.95%)</title><rect x="46.9020%" y="789" width="0.9535%" height="15" fill="rgb(226,212,17)" fg:x="11854" fg:w="241"/><text x="47.1520%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (241 samples, 0.95%)</title><rect x="46.9020%" y="773" width="0.9535%" height="15" fill="rgb(219,201,28)" fg:x="11854" fg:w="241"/><text x="47.1520%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (217 samples, 0.86%)</title><rect x="46.9969%" y="757" width="0.8586%" height="15" fill="rgb(235,207,41)" fg:x="11878" fg:w="217"/><text x="47.2469%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (217 samples, 0.86%)</title><rect x="46.9969%" y="741" width="0.8586%" height="15" fill="rgb(241,95,54)" fg:x="11878" fg:w="217"/><text x="47.2469%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (111 samples, 0.44%)</title><rect x="47.4163%" y="725" width="0.4392%" height="15" fill="rgb(248,12,23)" fg:x="11984" fg:w="111"/><text x="47.6663%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (111 samples, 0.44%)</title><rect x="47.4163%" y="709" width="0.4392%" height="15" fill="rgb(228,173,4)" fg:x="11984" fg:w="111"/><text x="47.6663%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (73 samples, 0.29%)</title><rect x="47.5667%" y="693" width="0.2888%" height="15" fill="rgb(254,99,5)" fg:x="12022" fg:w="73"/><text x="47.8167%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (73 samples, 0.29%)</title><rect x="47.5667%" y="677" width="0.2888%" height="15" fill="rgb(212,184,17)" fg:x="12022" fg:w="73"/><text x="47.8167%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="47.8239%" y="661" width="0.0317%" height="15" fill="rgb(252,174,1)" fg:x="12087" fg:w="8"/><text x="48.0739%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="47.8239%" y="645" width="0.0317%" height="15" fill="rgb(241,118,51)" fg:x="12087" fg:w="8"/><text x="48.0739%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="47.8239%" y="629" width="0.0317%" height="15" fill="rgb(227,94,47)" fg:x="12087" fg:w="8"/><text x="48.0739%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="47.8239%" y="613" width="0.0317%" height="15" fill="rgb(229,104,2)" fg:x="12087" fg:w="8"/><text x="48.0739%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="47.8239%" y="597" width="0.0317%" height="15" fill="rgb(219,28,31)" fg:x="12087" fg:w="8"/><text x="48.0739%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="47.8318%" y="581" width="0.0237%" height="15" fill="rgb(233,109,36)" fg:x="12089" fg:w="6"/><text x="48.0818%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="47.8318%" y="565" width="0.0237%" height="15" fill="rgb(246,88,11)" fg:x="12089" fg:w="6"/><text x="48.0818%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="47.8318%" y="549" width="0.0237%" height="15" fill="rgb(209,212,17)" fg:x="12089" fg:w="6"/><text x="48.0818%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="47.8318%" y="533" width="0.0237%" height="15" fill="rgb(243,59,29)" fg:x="12089" fg:w="6"/><text x="48.0818%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="47.8318%" y="517" width="0.0237%" height="15" fill="rgb(244,205,48)" fg:x="12089" fg:w="6"/><text x="48.0818%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.8436%" y="501" width="0.0119%" height="15" fill="rgb(227,30,6)" fg:x="12092" fg:w="3"/><text x="48.0936%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8436%" y="485" width="0.0119%" height="15" fill="rgb(220,205,48)" fg:x="12092" fg:w="3"/><text x="48.0936%" y="495.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="47.9267%" y="805" width="0.0435%" height="15" fill="rgb(250,94,14)" fg:x="12113" fg:w="11"/><text x="48.1767%" y="815.50"></text></g><g><title>[libm.so.6] (10 samples, 0.04%)</title><rect x="47.9307%" y="789" width="0.0396%" height="15" fill="rgb(216,119,42)" fg:x="12114" fg:w="10"/><text x="48.1807%" y="799.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="48.0415%" y="757" width="0.0317%" height="15" fill="rgb(232,155,0)" fg:x="12142" fg:w="8"/><text x="48.2915%" y="767.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="48.0573%" y="741" width="0.0158%" height="15" fill="rgb(212,24,32)" fg:x="12146" fg:w="4"/><text x="48.3073%" y="751.50"></text></g><g><title>exp (16 samples, 0.06%)</title><rect x="48.1443%" y="709" width="0.0633%" height="15" fill="rgb(216,69,20)" fg:x="12168" fg:w="16"/><text x="48.3943%" y="719.50"></text></g><g><title>[libm.so.6] (15 samples, 0.06%)</title><rect x="48.1483%" y="693" width="0.0593%" height="15" fill="rgb(229,73,31)" fg:x="12169" fg:w="15"/><text x="48.3983%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="48.2076%" y="677" width="0.1029%" height="15" fill="rgb(224,219,20)" fg:x="12184" fg:w="26"/><text x="48.4576%" y="687.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="48.2710%" y="661" width="0.0396%" height="15" fill="rgb(215,146,41)" fg:x="12200" fg:w="10"/><text x="48.5210%" y="671.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="48.2749%" y="645" width="0.0356%" height="15" fill="rgb(244,71,31)" fg:x="12201" fg:w="9"/><text x="48.5249%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (89 samples, 0.35%)</title><rect x="48.0731%" y="725" width="0.3521%" height="15" fill="rgb(224,24,11)" fg:x="12150" fg:w="89"/><text x="48.3231%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="48.2076%" y="709" width="0.2176%" height="15" fill="rgb(229,76,15)" fg:x="12184" fg:w="55"/><text x="48.4576%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (55 samples, 0.22%)</title><rect x="48.2076%" y="693" width="0.2176%" height="15" fill="rgb(209,93,2)" fg:x="12184" fg:w="55"/><text x="48.4576%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.11%)</title><rect x="48.3105%" y="677" width="0.1147%" height="15" fill="rgb(216,200,50)" fg:x="12210" fg:w="29"/><text x="48.5605%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.11%)</title><rect x="48.3105%" y="661" width="0.1147%" height="15" fill="rgb(211,67,34)" fg:x="12210" fg:w="29"/><text x="48.5605%" y="671.50"></text></g><g><title>exp (10 samples, 0.04%)</title><rect x="48.3857%" y="645" width="0.0396%" height="15" fill="rgb(225,87,47)" fg:x="12229" fg:w="10"/><text x="48.6357%" y="655.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="48.3976%" y="629" width="0.0277%" height="15" fill="rgb(217,185,16)" fg:x="12232" fg:w="7"/><text x="48.6476%" y="639.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="48.4965%" y="693" width="0.0514%" height="15" fill="rgb(205,0,0)" fg:x="12257" fg:w="13"/><text x="48.7465%" y="703.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="48.5163%" y="677" width="0.0317%" height="15" fill="rgb(207,116,45)" fg:x="12262" fg:w="8"/><text x="48.7663%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="48.5479%" y="661" width="0.0950%" height="15" fill="rgb(221,156,26)" fg:x="12270" fg:w="24"/><text x="48.7979%" y="671.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="48.6073%" y="645" width="0.0356%" height="15" fill="rgb(213,140,4)" fg:x="12285" fg:w="9"/><text x="48.8573%" y="655.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="48.6073%" y="629" width="0.0356%" height="15" fill="rgb(231,224,15)" fg:x="12285" fg:w="9"/><text x="48.8573%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (77 samples, 0.30%)</title><rect x="48.4253%" y="725" width="0.3047%" height="15" fill="rgb(244,76,20)" fg:x="12239" fg:w="77"/><text x="48.6753%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (77 samples, 0.30%)</title><rect x="48.4253%" y="709" width="0.3047%" height="15" fill="rgb(238,117,7)" fg:x="12239" fg:w="77"/><text x="48.6753%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="48.5479%" y="693" width="0.1820%" height="15" fill="rgb(235,1,10)" fg:x="12270" fg:w="46"/><text x="48.7979%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.18%)</title><rect x="48.5479%" y="677" width="0.1820%" height="15" fill="rgb(216,165,6)" fg:x="12270" fg:w="46"/><text x="48.7979%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.09%)</title><rect x="48.6429%" y="661" width="0.0870%" height="15" fill="rgb(246,91,35)" fg:x="12294" fg:w="22"/><text x="48.8929%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="48.6429%" y="645" width="0.0870%" height="15" fill="rgb(228,96,24)" fg:x="12294" fg:w="22"/><text x="48.8929%" y="655.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="48.6943%" y="629" width="0.0356%" height="15" fill="rgb(254,217,53)" fg:x="12307" fg:w="9"/><text x="48.9443%" y="639.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="48.7022%" y="613" width="0.0277%" height="15" fill="rgb(209,60,0)" fg:x="12309" fg:w="7"/><text x="48.9522%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.7299%" y="597" width="0.0198%" height="15" fill="rgb(250,93,26)" fg:x="12316" fg:w="5"/><text x="48.9799%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="48.7299%" y="581" width="0.0198%" height="15" fill="rgb(211,9,40)" fg:x="12316" fg:w="5"/><text x="48.9799%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="48.7299%" y="565" width="0.0198%" height="15" fill="rgb(242,57,20)" fg:x="12316" fg:w="5"/><text x="48.9799%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="48.7378%" y="549" width="0.0119%" height="15" fill="rgb(248,85,48)" fg:x="12318" fg:w="3"/><text x="48.9878%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.7378%" y="533" width="0.0119%" height="15" fill="rgb(212,117,2)" fg:x="12318" fg:w="3"/><text x="48.9878%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (202 samples, 0.80%)</title><rect x="47.9702%" y="773" width="0.7992%" height="15" fill="rgb(243,19,3)" fg:x="12124" fg:w="202"/><text x="48.2202%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (176 samples, 0.70%)</title><rect x="48.0731%" y="757" width="0.6964%" height="15" fill="rgb(232,217,24)" fg:x="12150" fg:w="176"/><text x="48.3231%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (176 samples, 0.70%)</title><rect x="48.0731%" y="741" width="0.6964%" height="15" fill="rgb(224,175,40)" fg:x="12150" fg:w="176"/><text x="48.3231%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="48.7299%" y="725" width="0.0396%" height="15" fill="rgb(212,162,32)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="48.7299%" y="709" width="0.0396%" height="15" fill="rgb(215,9,4)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="48.7299%" y="693" width="0.0396%" height="15" fill="rgb(242,42,7)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="48.7299%" y="677" width="0.0396%" height="15" fill="rgb(242,184,45)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="48.7299%" y="661" width="0.0396%" height="15" fill="rgb(228,111,51)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="48.7299%" y="645" width="0.0396%" height="15" fill="rgb(236,147,17)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="48.7299%" y="629" width="0.0396%" height="15" fill="rgb(210,75,22)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="48.7299%" y="613" width="0.0396%" height="15" fill="rgb(217,159,45)" fg:x="12316" fg:w="10"/><text x="48.9799%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="48.7497%" y="597" width="0.0198%" height="15" fill="rgb(245,165,53)" fg:x="12321" fg:w="5"/><text x="48.9997%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="48.7497%" y="581" width="0.0198%" height="15" fill="rgb(251,190,50)" fg:x="12321" fg:w="5"/><text x="48.9997%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="48.7497%" y="565" width="0.0198%" height="15" fill="rgb(208,203,29)" fg:x="12321" fg:w="5"/><text x="48.9997%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="48.7497%" y="549" width="0.0198%" height="15" fill="rgb(207,209,35)" fg:x="12321" fg:w="5"/><text x="48.9997%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="48.7576%" y="533" width="0.0119%" height="15" fill="rgb(230,144,49)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="48.7576%" y="517" width="0.0119%" height="15" fill="rgb(229,31,6)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.7576%" y="501" width="0.0119%" height="15" fill="rgb(251,129,24)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="48.7576%" y="485" width="0.0119%" height="15" fill="rgb(235,105,15)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="48.7576%" y="469" width="0.0119%" height="15" fill="rgb(216,52,43)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.7576%" y="453" width="0.0119%" height="15" fill="rgb(238,144,41)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="48.7576%" y="437" width="0.0119%" height="15" fill="rgb(243,63,9)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="48.7576%" y="421" width="0.0119%" height="15" fill="rgb(246,208,1)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="48.7576%" y="405" width="0.0119%" height="15" fill="rgb(233,182,18)" fg:x="12323" fg:w="3"/><text x="49.0076%" y="415.50"></text></g><g><title>exp (11 samples, 0.04%)</title><rect x="48.8011%" y="741" width="0.0435%" height="15" fill="rgb(242,224,8)" fg:x="12334" fg:w="11"/><text x="49.0511%" y="751.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="48.8091%" y="725" width="0.0356%" height="15" fill="rgb(243,54,37)" fg:x="12336" fg:w="9"/><text x="49.0591%" y="735.50"></text></g><g><title>exp (13 samples, 0.05%)</title><rect x="48.9040%" y="693" width="0.0514%" height="15" fill="rgb(233,192,12)" fg:x="12360" fg:w="13"/><text x="49.1540%" y="703.50"></text></g><g><title>[libm.so.6] (13 samples, 0.05%)</title><rect x="48.9040%" y="677" width="0.0514%" height="15" fill="rgb(251,192,53)" fg:x="12360" fg:w="13"/><text x="49.1540%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="48.9554%" y="661" width="0.0633%" height="15" fill="rgb(246,141,26)" fg:x="12373" fg:w="16"/><text x="49.2054%" y="671.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="48.9911%" y="645" width="0.0277%" height="15" fill="rgb(239,195,19)" fg:x="12382" fg:w="7"/><text x="49.2411%" y="655.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="48.9990%" y="629" width="0.0198%" height="15" fill="rgb(241,16,39)" fg:x="12384" fg:w="5"/><text x="49.2490%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (59 samples, 0.23%)</title><rect x="48.8447%" y="709" width="0.2334%" height="15" fill="rgb(223,13,53)" fg:x="12345" fg:w="59"/><text x="49.0947%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.12%)</title><rect x="48.9554%" y="693" width="0.1227%" height="15" fill="rgb(214,227,0)" fg:x="12373" fg:w="31"/><text x="49.2054%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.12%)</title><rect x="48.9554%" y="677" width="0.1227%" height="15" fill="rgb(228,103,26)" fg:x="12373" fg:w="31"/><text x="49.2054%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="49.0188%" y="661" width="0.0593%" height="15" fill="rgb(254,177,53)" fg:x="12389" fg:w="15"/><text x="49.2688%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="49.0188%" y="645" width="0.0593%" height="15" fill="rgb(208,201,34)" fg:x="12389" fg:w="15"/><text x="49.2688%" y="655.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="49.0425%" y="629" width="0.0356%" height="15" fill="rgb(212,39,5)" fg:x="12395" fg:w="9"/><text x="49.2925%" y="639.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="49.0465%" y="613" width="0.0317%" height="15" fill="rgb(246,117,3)" fg:x="12396" fg:w="8"/><text x="49.2965%" y="623.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="49.1533%" y="677" width="0.0356%" height="15" fill="rgb(244,118,39)" fg:x="12423" fg:w="9"/><text x="49.4033%" y="687.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="49.1572%" y="661" width="0.0317%" height="15" fill="rgb(241,64,10)" fg:x="12424" fg:w="8"/><text x="49.4072%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="49.1889%" y="645" width="0.0712%" height="15" fill="rgb(229,39,44)" fg:x="12432" fg:w="18"/><text x="49.4389%" y="655.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="49.2403%" y="629" width="0.0198%" height="15" fill="rgb(230,226,3)" fg:x="12445" fg:w="5"/><text x="49.4903%" y="639.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="49.2443%" y="613" width="0.0158%" height="15" fill="rgb(222,13,42)" fg:x="12446" fg:w="4"/><text x="49.4943%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="49.2601%" y="645" width="0.0593%" height="15" fill="rgb(247,180,54)" fg:x="12450" fg:w="15"/><text x="49.5101%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="49.2601%" y="629" width="0.0593%" height="15" fill="rgb(205,96,16)" fg:x="12450" fg:w="15"/><text x="49.5101%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="49.3076%" y="613" width="0.0119%" height="15" fill="rgb(205,100,21)" fg:x="12462" fg:w="3"/><text x="49.5576%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="49.3076%" y="597" width="0.0119%" height="15" fill="rgb(248,51,4)" fg:x="12462" fg:w="3"/><text x="49.5576%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.3195%" y="517" width="0.0119%" height="15" fill="rgb(217,197,30)" fg:x="12465" fg:w="3"/><text x="49.5695%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="49.3195%" y="565" width="0.0237%" height="15" fill="rgb(240,179,40)" fg:x="12465" fg:w="6"/><text x="49.5695%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="49.3195%" y="549" width="0.0237%" height="15" fill="rgb(212,185,35)" fg:x="12465" fg:w="6"/><text x="49.5695%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="49.3195%" y="533" width="0.0237%" height="15" fill="rgb(251,222,31)" fg:x="12465" fg:w="6"/><text x="49.5695%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="49.3313%" y="517" width="0.0119%" height="15" fill="rgb(208,140,36)" fg:x="12468" fg:w="3"/><text x="49.5813%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.3313%" y="501" width="0.0119%" height="15" fill="rgb(220,148,1)" fg:x="12468" fg:w="3"/><text x="49.5813%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="49.3511%" y="277" width="0.0158%" height="15" fill="rgb(254,4,28)" fg:x="12473" fg:w="4"/><text x="49.6011%" y="287.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="49.3551%" y="261" width="0.0119%" height="15" fill="rgb(222,185,44)" fg:x="12474" fg:w="3"/><text x="49.6051%" y="271.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="49.3551%" y="245" width="0.0119%" height="15" fill="rgb(215,74,39)" fg:x="12474" fg:w="3"/><text x="49.6051%" y="255.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (155 samples, 0.61%)</title><rect x="48.7695%" y="773" width="0.6133%" height="15" fill="rgb(247,86,4)" fg:x="12326" fg:w="155"/><text x="49.0195%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (155 samples, 0.61%)</title><rect x="48.7695%" y="757" width="0.6133%" height="15" fill="rgb(231,105,32)" fg:x="12326" fg:w="155"/><text x="49.0195%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (136 samples, 0.54%)</title><rect x="48.8447%" y="741" width="0.5381%" height="15" fill="rgb(222,65,35)" fg:x="12345" fg:w="136"/><text x="49.0947%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (136 samples, 0.54%)</title><rect x="48.8447%" y="725" width="0.5381%" height="15" fill="rgb(218,145,35)" fg:x="12345" fg:w="136"/><text x="49.0947%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (77 samples, 0.30%)</title><rect x="49.0781%" y="709" width="0.3047%" height="15" fill="rgb(208,7,15)" fg:x="12404" fg:w="77"/><text x="49.3281%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (77 samples, 0.30%)</title><rect x="49.0781%" y="693" width="0.3047%" height="15" fill="rgb(209,83,13)" fg:x="12404" fg:w="77"/><text x="49.3281%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.19%)</title><rect x="49.1889%" y="677" width="0.1939%" height="15" fill="rgb(218,3,10)" fg:x="12432" fg:w="49"/><text x="49.4389%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.19%)</title><rect x="49.1889%" y="661" width="0.1939%" height="15" fill="rgb(211,219,4)" fg:x="12432" fg:w="49"/><text x="49.4389%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="49.3195%" y="645" width="0.0633%" height="15" fill="rgb(228,194,12)" fg:x="12465" fg:w="16"/><text x="49.5695%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="49.3195%" y="629" width="0.0633%" height="15" fill="rgb(210,175,7)" fg:x="12465" fg:w="16"/><text x="49.5695%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="49.3195%" y="613" width="0.0633%" height="15" fill="rgb(243,132,6)" fg:x="12465" fg:w="16"/><text x="49.5695%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="49.3195%" y="597" width="0.0633%" height="15" fill="rgb(207,72,18)" fg:x="12465" fg:w="16"/><text x="49.5695%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="49.3195%" y="581" width="0.0633%" height="15" fill="rgb(236,1,18)" fg:x="12465" fg:w="16"/><text x="49.5695%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="49.3432%" y="565" width="0.0396%" height="15" fill="rgb(227,0,18)" fg:x="12471" fg:w="10"/><text x="49.5932%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="49.3432%" y="549" width="0.0396%" height="15" fill="rgb(247,37,5)" fg:x="12471" fg:w="10"/><text x="49.5932%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="49.3432%" y="533" width="0.0396%" height="15" fill="rgb(237,179,24)" fg:x="12471" fg:w="10"/><text x="49.5932%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="49.3432%" y="517" width="0.0396%" height="15" fill="rgb(226,53,20)" fg:x="12471" fg:w="10"/><text x="49.5932%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="49.3511%" y="501" width="0.0317%" height="15" fill="rgb(247,75,7)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="49.3511%" y="485" width="0.0317%" height="15" fill="rgb(233,96,12)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="49.3511%" y="469" width="0.0317%" height="15" fill="rgb(224,125,0)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="49.3511%" y="453" width="0.0317%" height="15" fill="rgb(224,92,25)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="49.3511%" y="437" width="0.0317%" height="15" fill="rgb(224,42,24)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="49.3511%" y="421" width="0.0317%" height="15" fill="rgb(234,132,49)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="49.3511%" y="405" width="0.0317%" height="15" fill="rgb(248,100,35)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="49.3511%" y="389" width="0.0317%" height="15" fill="rgb(239,94,40)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="49.3511%" y="373" width="0.0317%" height="15" fill="rgb(235,139,28)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="49.3511%" y="357" width="0.0317%" height="15" fill="rgb(217,144,7)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="49.3511%" y="341" width="0.0317%" height="15" fill="rgb(227,55,4)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="49.3511%" y="325" width="0.0317%" height="15" fill="rgb(252,82,54)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="49.3511%" y="309" width="0.0317%" height="15" fill="rgb(245,172,4)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="49.3511%" y="293" width="0.0317%" height="15" fill="rgb(207,26,27)" fg:x="12473" fg:w="8"/><text x="49.6011%" y="303.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="49.3669%" y="277" width="0.0158%" height="15" fill="rgb(252,98,18)" fg:x="12477" fg:w="4"/><text x="49.6169%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="49.3669%" y="261" width="0.0158%" height="15" fill="rgb(244,8,26)" fg:x="12477" fg:w="4"/><text x="49.6169%" y="271.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="49.3669%" y="245" width="0.0158%" height="15" fill="rgb(237,173,45)" fg:x="12477" fg:w="4"/><text x="49.6169%" y="255.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="49.3709%" y="229" width="0.0119%" height="15" fill="rgb(208,213,49)" fg:x="12478" fg:w="3"/><text x="49.6209%" y="239.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="49.4223%" y="677" width="0.0119%" height="15" fill="rgb(212,122,37)" fg:x="12491" fg:w="3"/><text x="49.6723%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="49.4223%" y="661" width="0.0119%" height="15" fill="rgb(213,80,17)" fg:x="12491" fg:w="3"/><text x="49.6723%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="49.4500%" y="597" width="0.0198%" height="15" fill="rgb(206,210,43)" fg:x="12498" fg:w="5"/><text x="49.7000%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="49.4500%" y="581" width="0.0198%" height="15" fill="rgb(229,214,3)" fg:x="12498" fg:w="5"/><text x="49.7000%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="49.4500%" y="565" width="0.0198%" height="15" fill="rgb(235,213,29)" fg:x="12498" fg:w="5"/><text x="49.7000%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="49.4579%" y="549" width="0.0119%" height="15" fill="rgb(248,135,26)" fg:x="12500" fg:w="3"/><text x="49.7079%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.4579%" y="533" width="0.0119%" height="15" fill="rgb(242,188,12)" fg:x="12500" fg:w="3"/><text x="49.7079%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="49.4342%" y="645" width="0.0514%" height="15" fill="rgb(245,38,12)" fg:x="12494" fg:w="13"/><text x="49.6842%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="49.4500%" y="629" width="0.0356%" height="15" fill="rgb(218,42,13)" fg:x="12498" fg:w="9"/><text x="49.7000%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="49.4500%" y="613" width="0.0356%" height="15" fill="rgb(238,132,49)" fg:x="12498" fg:w="9"/><text x="49.7000%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="49.4698%" y="597" width="0.0158%" height="15" fill="rgb(209,196,19)" fg:x="12503" fg:w="4"/><text x="49.7198%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="49.4698%" y="581" width="0.0158%" height="15" fill="rgb(244,131,22)" fg:x="12503" fg:w="4"/><text x="49.7198%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="49.4698%" y="565" width="0.0158%" height="15" fill="rgb(223,18,34)" fg:x="12503" fg:w="4"/><text x="49.7198%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="49.4698%" y="549" width="0.0158%" height="15" fill="rgb(252,124,54)" fg:x="12503" fg:w="4"/><text x="49.7198%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.4936%" y="533" width="0.0119%" height="15" fill="rgb(229,106,42)" fg:x="12509" fg:w="3"/><text x="49.7436%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="49.4936%" y="581" width="0.0198%" height="15" fill="rgb(221,129,1)" fg:x="12509" fg:w="5"/><text x="49.7436%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="49.4936%" y="565" width="0.0198%" height="15" fill="rgb(229,74,15)" fg:x="12509" fg:w="5"/><text x="49.7436%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="49.4936%" y="549" width="0.0198%" height="15" fill="rgb(210,206,50)" fg:x="12509" fg:w="5"/><text x="49.7436%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.5133%" y="517" width="0.0119%" height="15" fill="rgb(251,114,31)" fg:x="12514" fg:w="3"/><text x="49.7633%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="49.4856%" y="645" width="0.0475%" height="15" fill="rgb(215,225,28)" fg:x="12507" fg:w="12"/><text x="49.7356%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="49.4856%" y="629" width="0.0475%" height="15" fill="rgb(237,109,14)" fg:x="12507" fg:w="12"/><text x="49.7356%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="49.4936%" y="613" width="0.0396%" height="15" fill="rgb(230,13,37)" fg:x="12509" fg:w="10"/><text x="49.7436%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="49.4936%" y="597" width="0.0396%" height="15" fill="rgb(231,40,28)" fg:x="12509" fg:w="10"/><text x="49.7436%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="49.5133%" y="581" width="0.0198%" height="15" fill="rgb(231,202,18)" fg:x="12514" fg:w="5"/><text x="49.7633%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="49.5133%" y="565" width="0.0198%" height="15" fill="rgb(225,33,18)" fg:x="12514" fg:w="5"/><text x="49.7633%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="49.5133%" y="549" width="0.0198%" height="15" fill="rgb(223,64,47)" fg:x="12514" fg:w="5"/><text x="49.7633%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="49.5133%" y="533" width="0.0198%" height="15" fill="rgb(234,114,13)" fg:x="12514" fg:w="5"/><text x="49.7633%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.14%)</title><rect x="49.4025%" y="693" width="0.1424%" height="15" fill="rgb(248,56,40)" fg:x="12486" fg:w="36"/><text x="49.6525%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="49.4342%" y="677" width="0.1108%" height="15" fill="rgb(221,194,21)" fg:x="12494" fg:w="28"/><text x="49.6842%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="49.4342%" y="661" width="0.1108%" height="15" fill="rgb(242,108,46)" fg:x="12494" fg:w="28"/><text x="49.6842%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="49.5331%" y="645" width="0.0119%" height="15" fill="rgb(220,106,10)" fg:x="12519" fg:w="3"/><text x="49.7831%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="49.5331%" y="629" width="0.0119%" height="15" fill="rgb(211,88,4)" fg:x="12519" fg:w="3"/><text x="49.7831%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.5331%" y="613" width="0.0119%" height="15" fill="rgb(214,95,34)" fg:x="12519" fg:w="3"/><text x="49.7831%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="49.5450%" y="693" width="0.0158%" height="15" fill="rgb(250,160,33)" fg:x="12522" fg:w="4"/><text x="49.7950%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="49.5450%" y="677" width="0.0158%" height="15" fill="rgb(225,29,10)" fg:x="12522" fg:w="4"/><text x="49.7950%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.5885%" y="517" width="0.0119%" height="15" fill="rgb(224,28,30)" fg:x="12533" fg:w="3"/><text x="49.8385%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="49.5766%" y="565" width="0.0356%" height="15" fill="rgb(231,77,4)" fg:x="12530" fg:w="9"/><text x="49.8266%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="49.5885%" y="549" width="0.0237%" height="15" fill="rgb(209,63,21)" fg:x="12533" fg:w="6"/><text x="49.8385%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="49.5885%" y="533" width="0.0237%" height="15" fill="rgb(226,22,11)" fg:x="12533" fg:w="6"/><text x="49.8385%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="49.6004%" y="517" width="0.0119%" height="15" fill="rgb(216,82,30)" fg:x="12536" fg:w="3"/><text x="49.8504%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.6004%" y="501" width="0.0119%" height="15" fill="rgb(246,227,38)" fg:x="12536" fg:w="3"/><text x="49.8504%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (449 samples, 1.78%)</title><rect x="47.8555%" y="837" width="1.7765%" height="15" fill="rgb(251,203,53)" fg:x="12095" fg:w="449"/><text x="48.1055%" y="847.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (449 samples, 1.78%)</title><rect x="47.8555%" y="821" width="1.7765%" height="15" fill="rgb(254,101,1)" fg:x="12095" fg:w="449"/><text x="48.1055%" y="831.50">r..</text></g><g><title>rayon_core::registry::in_worker (420 samples, 1.66%)</title><rect x="47.9702%" y="805" width="1.6618%" height="15" fill="rgb(241,180,5)" fg:x="12124" fg:w="420"/><text x="48.2202%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (420 samples, 1.66%)</title><rect x="47.9702%" y="789" width="1.6618%" height="15" fill="rgb(218,168,4)" fg:x="12124" fg:w="420"/><text x="48.2202%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (63 samples, 0.25%)</title><rect x="49.3828%" y="773" width="0.2493%" height="15" fill="rgb(224,223,32)" fg:x="12481" fg:w="63"/><text x="49.6328%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (63 samples, 0.25%)</title><rect x="49.3828%" y="757" width="0.2493%" height="15" fill="rgb(236,106,22)" fg:x="12481" fg:w="63"/><text x="49.6328%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.25%)</title><rect x="49.3828%" y="741" width="0.2493%" height="15" fill="rgb(206,121,5)" fg:x="12481" fg:w="63"/><text x="49.6328%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (58 samples, 0.23%)</title><rect x="49.4025%" y="725" width="0.2295%" height="15" fill="rgb(233,87,28)" fg:x="12486" fg:w="58"/><text x="49.6525%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (58 samples, 0.23%)</title><rect x="49.4025%" y="709" width="0.2295%" height="15" fill="rgb(236,137,17)" fg:x="12486" fg:w="58"/><text x="49.6525%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.07%)</title><rect x="49.5608%" y="693" width="0.0712%" height="15" fill="rgb(209,183,38)" fg:x="12526" fg:w="18"/><text x="49.8108%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.07%)</title><rect x="49.5608%" y="677" width="0.0712%" height="15" fill="rgb(206,162,44)" fg:x="12526" fg:w="18"/><text x="49.8108%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="49.5608%" y="661" width="0.0712%" height="15" fill="rgb(237,70,39)" fg:x="12526" fg:w="18"/><text x="49.8108%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="49.5766%" y="645" width="0.0554%" height="15" fill="rgb(212,176,5)" fg:x="12530" fg:w="14"/><text x="49.8266%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="49.5766%" y="629" width="0.0554%" height="15" fill="rgb(232,95,16)" fg:x="12530" fg:w="14"/><text x="49.8266%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="49.5766%" y="613" width="0.0554%" height="15" fill="rgb(219,115,35)" fg:x="12530" fg:w="14"/><text x="49.8266%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="49.5766%" y="597" width="0.0554%" height="15" fill="rgb(251,67,27)" fg:x="12530" fg:w="14"/><text x="49.8266%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="49.5766%" y="581" width="0.0554%" height="15" fill="rgb(222,95,40)" fg:x="12530" fg:w="14"/><text x="49.8266%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="49.6122%" y="565" width="0.0198%" height="15" fill="rgb(250,35,16)" fg:x="12539" fg:w="5"/><text x="49.8622%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="49.6122%" y="549" width="0.0198%" height="15" fill="rgb(224,86,44)" fg:x="12539" fg:w="5"/><text x="49.8622%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="49.6122%" y="533" width="0.0198%" height="15" fill="rgb(237,53,53)" fg:x="12539" fg:w="5"/><text x="49.8622%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="49.6320%" y="757" width="0.0277%" height="15" fill="rgb(208,171,33)" fg:x="12544" fg:w="7"/><text x="49.8820%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="49.6439%" y="741" width="0.0158%" height="15" fill="rgb(222,64,27)" fg:x="12547" fg:w="4"/><text x="49.8939%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="49.6439%" y="725" width="0.0158%" height="15" fill="rgb(221,121,35)" fg:x="12547" fg:w="4"/><text x="49.8939%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (969 samples, 3.83%)</title><rect x="45.8376%" y="885" width="3.8340%" height="15" fill="rgb(228,137,42)" fg:x="11585" fg:w="969"/><text x="46.0876%" y="895.50">rayo..</text></g><g><title>rayon_core::registry::in_worker (951 samples, 3.76%)</title><rect x="45.9088%" y="869" width="3.7628%" height="15" fill="rgb(227,54,21)" fg:x="11603" fg:w="951"/><text x="46.1588%" y="879.50">rayo..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (951 samples, 3.76%)</title><rect x="45.9088%" y="853" width="3.7628%" height="15" fill="rgb(240,168,33)" fg:x="11603" fg:w="951"/><text x="46.1588%" y="863.50">_ZN1..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="49.6320%" y="837" width="0.0396%" height="15" fill="rgb(243,159,6)" fg:x="12544" fg:w="10"/><text x="49.8820%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="49.6320%" y="821" width="0.0396%" height="15" fill="rgb(205,211,41)" fg:x="12544" fg:w="10"/><text x="49.8820%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="49.6320%" y="805" width="0.0396%" height="15" fill="rgb(253,30,1)" fg:x="12544" fg:w="10"/><text x="49.8820%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="49.6320%" y="789" width="0.0396%" height="15" fill="rgb(226,80,18)" fg:x="12544" fg:w="10"/><text x="49.8820%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="49.6320%" y="773" width="0.0396%" height="15" fill="rgb(253,156,46)" fg:x="12544" fg:w="10"/><text x="49.8820%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="49.6597%" y="757" width="0.0119%" height="15" fill="rgb(248,87,27)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="49.6597%" y="741" width="0.0119%" height="15" fill="rgb(227,122,2)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.6597%" y="725" width="0.0119%" height="15" fill="rgb(229,94,39)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="49.6597%" y="709" width="0.0119%" height="15" fill="rgb(225,173,31)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="49.6597%" y="693" width="0.0119%" height="15" fill="rgb(239,176,30)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.6597%" y="677" width="0.0119%" height="15" fill="rgb(212,104,21)" fg:x="12551" fg:w="3"/><text x="49.9097%" y="687.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="49.7191%" y="805" width="0.0356%" height="15" fill="rgb(240,209,40)" fg:x="12566" fg:w="9"/><text x="49.9691%" y="815.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="49.7270%" y="789" width="0.0277%" height="15" fill="rgb(234,195,5)" fg:x="12568" fg:w="7"/><text x="49.9770%" y="799.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="49.7903%" y="757" width="0.0198%" height="15" fill="rgb(238,213,1)" fg:x="12584" fg:w="5"/><text x="50.0403%" y="767.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="49.7982%" y="741" width="0.0119%" height="15" fill="rgb(235,182,54)" fg:x="12586" fg:w="3"/><text x="50.0482%" y="751.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="49.8655%" y="709" width="0.0198%" height="15" fill="rgb(229,50,46)" fg:x="12603" fg:w="5"/><text x="50.1155%" y="719.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="49.8655%" y="693" width="0.0198%" height="15" fill="rgb(219,145,13)" fg:x="12603" fg:w="5"/><text x="50.1155%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="49.8101%" y="725" width="0.0870%" height="15" fill="rgb(220,226,10)" fg:x="12589" fg:w="22"/><text x="50.0601%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="49.8853%" y="709" width="0.0119%" height="15" fill="rgb(248,47,30)" fg:x="12608" fg:w="3"/><text x="50.1353%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="49.8853%" y="693" width="0.0119%" height="15" fill="rgb(231,209,44)" fg:x="12608" fg:w="3"/><text x="50.1353%" y="703.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="49.9367%" y="693" width="0.0356%" height="15" fill="rgb(209,80,30)" fg:x="12621" fg:w="9"/><text x="50.1867%" y="703.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="49.9367%" y="677" width="0.0356%" height="15" fill="rgb(232,9,14)" fg:x="12621" fg:w="9"/><text x="50.1867%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (60 samples, 0.24%)</title><rect x="49.7547%" y="773" width="0.2374%" height="15" fill="rgb(243,91,43)" fg:x="12575" fg:w="60"/><text x="50.0047%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="49.8101%" y="757" width="0.1820%" height="15" fill="rgb(231,90,52)" fg:x="12589" fg:w="46"/><text x="50.0601%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.18%)</title><rect x="49.8101%" y="741" width="0.1820%" height="15" fill="rgb(253,192,44)" fg:x="12589" fg:w="46"/><text x="50.0601%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (24 samples, 0.09%)</title><rect x="49.8971%" y="725" width="0.0950%" height="15" fill="rgb(241,66,31)" fg:x="12611" fg:w="24"/><text x="50.1471%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.09%)</title><rect x="49.8971%" y="709" width="0.0950%" height="15" fill="rgb(235,81,37)" fg:x="12611" fg:w="24"/><text x="50.1471%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="49.9723%" y="693" width="0.0198%" height="15" fill="rgb(223,221,9)" fg:x="12630" fg:w="5"/><text x="50.2223%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="49.9723%" y="677" width="0.0198%" height="15" fill="rgb(242,180,7)" fg:x="12630" fg:w="5"/><text x="50.2223%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="49.9802%" y="661" width="0.0119%" height="15" fill="rgb(243,78,19)" fg:x="12632" fg:w="3"/><text x="50.2302%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="49.9802%" y="645" width="0.0119%" height="15" fill="rgb(233,23,17)" fg:x="12632" fg:w="3"/><text x="50.2302%" y="655.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="50.0237%" y="741" width="0.0237%" height="15" fill="rgb(252,122,45)" fg:x="12643" fg:w="6"/><text x="50.2737%" y="751.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="50.0317%" y="725" width="0.0158%" height="15" fill="rgb(247,108,20)" fg:x="12645" fg:w="4"/><text x="50.2817%" y="735.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="50.0870%" y="693" width="0.0277%" height="15" fill="rgb(235,84,21)" fg:x="12659" fg:w="7"/><text x="50.3370%" y="703.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="50.0910%" y="677" width="0.0237%" height="15" fill="rgb(247,129,10)" fg:x="12660" fg:w="6"/><text x="50.3410%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="50.0475%" y="709" width="0.0831%" height="15" fill="rgb(208,173,14)" fg:x="12649" fg:w="21"/><text x="50.2975%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="50.1147%" y="693" width="0.0158%" height="15" fill="rgb(236,31,38)" fg:x="12666" fg:w="4"/><text x="50.3647%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="50.1147%" y="677" width="0.0158%" height="15" fill="rgb(232,65,17)" fg:x="12666" fg:w="4"/><text x="50.3647%" y="687.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="50.1741%" y="677" width="0.0356%" height="15" fill="rgb(224,45,49)" fg:x="12681" fg:w="9"/><text x="50.4241%" y="687.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="50.1860%" y="661" width="0.0237%" height="15" fill="rgb(225,2,53)" fg:x="12684" fg:w="6"/><text x="50.4360%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.2255%" y="469" width="0.0119%" height="15" fill="rgb(248,210,53)" fg:x="12694" fg:w="3"/><text x="50.4755%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="50.2255%" y="517" width="0.0237%" height="15" fill="rgb(211,1,30)" fg:x="12694" fg:w="6"/><text x="50.4755%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="50.2255%" y="501" width="0.0237%" height="15" fill="rgb(224,96,15)" fg:x="12694" fg:w="6"/><text x="50.4755%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="50.2255%" y="485" width="0.0237%" height="15" fill="rgb(252,45,11)" fg:x="12694" fg:w="6"/><text x="50.4755%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.2374%" y="469" width="0.0119%" height="15" fill="rgb(220,125,38)" fg:x="12697" fg:w="3"/><text x="50.4874%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.2374%" y="453" width="0.0119%" height="15" fill="rgb(243,161,33)" fg:x="12697" fg:w="3"/><text x="50.4874%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="50.2176%" y="565" width="0.0554%" height="15" fill="rgb(248,197,34)" fg:x="12692" fg:w="14"/><text x="50.4676%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="50.2255%" y="549" width="0.0475%" height="15" fill="rgb(228,165,23)" fg:x="12694" fg:w="12"/><text x="50.4755%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="50.2255%" y="533" width="0.0475%" height="15" fill="rgb(236,94,38)" fg:x="12694" fg:w="12"/><text x="50.4755%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="50.2493%" y="517" width="0.0237%" height="15" fill="rgb(220,13,23)" fg:x="12700" fg:w="6"/><text x="50.4993%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="50.2493%" y="501" width="0.0237%" height="15" fill="rgb(234,26,39)" fg:x="12700" fg:w="6"/><text x="50.4993%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="50.2493%" y="485" width="0.0237%" height="15" fill="rgb(205,117,44)" fg:x="12700" fg:w="6"/><text x="50.4993%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="50.2493%" y="469" width="0.0237%" height="15" fill="rgb(250,42,2)" fg:x="12700" fg:w="6"/><text x="50.4993%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="50.2572%" y="453" width="0.0158%" height="15" fill="rgb(223,83,14)" fg:x="12702" fg:w="4"/><text x="50.5072%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.2572%" y="437" width="0.0158%" height="15" fill="rgb(241,147,50)" fg:x="12702" fg:w="4"/><text x="50.5072%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.2809%" y="453" width="0.0158%" height="15" fill="rgb(218,90,6)" fg:x="12708" fg:w="4"/><text x="50.5309%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="50.2809%" y="501" width="0.0277%" height="15" fill="rgb(210,191,5)" fg:x="12708" fg:w="7"/><text x="50.5309%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="50.2809%" y="485" width="0.0277%" height="15" fill="rgb(225,139,19)" fg:x="12708" fg:w="7"/><text x="50.5309%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="50.2809%" y="469" width="0.0277%" height="15" fill="rgb(210,1,33)" fg:x="12708" fg:w="7"/><text x="50.5309%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.2967%" y="453" width="0.0119%" height="15" fill="rgb(213,50,3)" fg:x="12712" fg:w="3"/><text x="50.5467%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.2967%" y="437" width="0.0119%" height="15" fill="rgb(234,227,4)" fg:x="12712" fg:w="3"/><text x="50.5467%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="50.3086%" y="501" width="0.0158%" height="15" fill="rgb(246,63,5)" fg:x="12715" fg:w="4"/><text x="50.5586%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.3086%" y="485" width="0.0158%" height="15" fill="rgb(245,136,27)" fg:x="12715" fg:w="4"/><text x="50.5586%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="50.3086%" y="469" width="0.0158%" height="15" fill="rgb(247,199,27)" fg:x="12715" fg:w="4"/><text x="50.5586%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="50.3086%" y="453" width="0.0158%" height="15" fill="rgb(252,158,49)" fg:x="12715" fg:w="4"/><text x="50.5586%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.3244%" y="421" width="0.0158%" height="15" fill="rgb(254,73,1)" fg:x="12719" fg:w="4"/><text x="50.5744%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="50.3244%" y="405" width="0.0158%" height="15" fill="rgb(248,93,19)" fg:x="12719" fg:w="4"/><text x="50.5744%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="50.3244%" y="389" width="0.0158%" height="15" fill="rgb(206,67,5)" fg:x="12719" fg:w="4"/><text x="50.5744%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.3482%" y="277" width="0.0158%" height="15" fill="rgb(209,210,4)" fg:x="12725" fg:w="4"/><text x="50.5982%" y="287.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="50.3482%" y="261" width="0.0158%" height="15" fill="rgb(214,185,36)" fg:x="12725" fg:w="4"/><text x="50.5982%" y="271.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="50.3482%" y="245" width="0.0158%" height="15" fill="rgb(233,191,26)" fg:x="12725" fg:w="4"/><text x="50.5982%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (173 samples, 0.68%)</title><rect x="49.6914%" y="821" width="0.6845%" height="15" fill="rgb(248,94,17)" fg:x="12559" fg:w="173"/><text x="49.9414%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (157 samples, 0.62%)</title><rect x="49.7547%" y="805" width="0.6212%" height="15" fill="rgb(250,64,4)" fg:x="12575" fg:w="157"/><text x="50.0047%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (157 samples, 0.62%)</title><rect x="49.7547%" y="789" width="0.6212%" height="15" fill="rgb(218,41,53)" fg:x="12575" fg:w="157"/><text x="50.0047%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (97 samples, 0.38%)</title><rect x="49.9921%" y="773" width="0.3838%" height="15" fill="rgb(251,176,28)" fg:x="12635" fg:w="97"/><text x="50.2421%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (97 samples, 0.38%)</title><rect x="49.9921%" y="757" width="0.3838%" height="15" fill="rgb(247,22,9)" fg:x="12635" fg:w="97"/><text x="50.2421%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (83 samples, 0.33%)</title><rect x="50.0475%" y="741" width="0.3284%" height="15" fill="rgb(218,201,14)" fg:x="12649" fg:w="83"/><text x="50.2975%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (83 samples, 0.33%)</title><rect x="50.0475%" y="725" width="0.3284%" height="15" fill="rgb(218,94,10)" fg:x="12649" fg:w="83"/><text x="50.2975%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (62 samples, 0.25%)</title><rect x="50.1306%" y="709" width="0.2453%" height="15" fill="rgb(222,183,52)" fg:x="12670" fg:w="62"/><text x="50.3806%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.25%)</title><rect x="50.1306%" y="693" width="0.2453%" height="15" fill="rgb(242,140,25)" fg:x="12670" fg:w="62"/><text x="50.3806%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.17%)</title><rect x="50.2097%" y="677" width="0.1662%" height="15" fill="rgb(235,197,38)" fg:x="12690" fg:w="42"/><text x="50.4597%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (42 samples, 0.17%)</title><rect x="50.2097%" y="661" width="0.1662%" height="15" fill="rgb(237,136,15)" fg:x="12690" fg:w="42"/><text x="50.4597%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (40 samples, 0.16%)</title><rect x="50.2176%" y="645" width="0.1583%" height="15" fill="rgb(223,44,49)" fg:x="12692" fg:w="40"/><text x="50.4676%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40 samples, 0.16%)</title><rect x="50.2176%" y="629" width="0.1583%" height="15" fill="rgb(227,71,15)" fg:x="12692" fg:w="40"/><text x="50.4676%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.16%)</title><rect x="50.2176%" y="613" width="0.1583%" height="15" fill="rgb(225,153,20)" fg:x="12692" fg:w="40"/><text x="50.4676%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.16%)</title><rect x="50.2176%" y="597" width="0.1583%" height="15" fill="rgb(210,190,26)" fg:x="12692" fg:w="40"/><text x="50.4676%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.16%)</title><rect x="50.2176%" y="581" width="0.1583%" height="15" fill="rgb(223,147,5)" fg:x="12692" fg:w="40"/><text x="50.4676%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.10%)</title><rect x="50.2730%" y="565" width="0.1029%" height="15" fill="rgb(207,14,23)" fg:x="12706" fg:w="26"/><text x="50.5230%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="50.2730%" y="549" width="0.1029%" height="15" fill="rgb(211,195,53)" fg:x="12706" fg:w="26"/><text x="50.5230%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.09%)</title><rect x="50.2809%" y="533" width="0.0950%" height="15" fill="rgb(237,75,46)" fg:x="12708" fg:w="24"/><text x="50.5309%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.09%)</title><rect x="50.2809%" y="517" width="0.0950%" height="15" fill="rgb(254,55,14)" fg:x="12708" fg:w="24"/><text x="50.5309%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="50.3244%" y="501" width="0.0514%" height="15" fill="rgb(230,185,30)" fg:x="12719" fg:w="13"/><text x="50.5744%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="50.3244%" y="485" width="0.0514%" height="15" fill="rgb(220,14,11)" fg:x="12719" fg:w="13"/><text x="50.5744%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="50.3244%" y="469" width="0.0514%" height="15" fill="rgb(215,169,44)" fg:x="12719" fg:w="13"/><text x="50.5744%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="50.3244%" y="453" width="0.0514%" height="15" fill="rgb(253,203,20)" fg:x="12719" fg:w="13"/><text x="50.5744%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="50.3244%" y="437" width="0.0514%" height="15" fill="rgb(229,225,17)" fg:x="12719" fg:w="13"/><text x="50.5744%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="50.3403%" y="421" width="0.0356%" height="15" fill="rgb(236,76,26)" fg:x="12723" fg:w="9"/><text x="50.5903%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="50.3403%" y="405" width="0.0356%" height="15" fill="rgb(234,15,30)" fg:x="12723" fg:w="9"/><text x="50.5903%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="50.3403%" y="389" width="0.0356%" height="15" fill="rgb(211,113,48)" fg:x="12723" fg:w="9"/><text x="50.5903%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="50.3403%" y="373" width="0.0356%" height="15" fill="rgb(221,31,36)" fg:x="12723" fg:w="9"/><text x="50.5903%" y="383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="50.3482%" y="357" width="0.0277%" height="15" fill="rgb(215,118,52)" fg:x="12725" fg:w="7"/><text x="50.5982%" y="367.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="50.3482%" y="341" width="0.0277%" height="15" fill="rgb(241,151,27)" fg:x="12725" fg:w="7"/><text x="50.5982%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="50.3482%" y="325" width="0.0277%" height="15" fill="rgb(253,51,3)" fg:x="12725" fg:w="7"/><text x="50.5982%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="50.3482%" y="309" width="0.0277%" height="15" fill="rgb(216,201,24)" fg:x="12725" fg:w="7"/><text x="50.5982%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="50.3482%" y="293" width="0.0277%" height="15" fill="rgb(231,107,4)" fg:x="12725" fg:w="7"/><text x="50.5982%" y="303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="50.3640%" y="277" width="0.0119%" height="15" fill="rgb(243,97,54)" fg:x="12729" fg:w="3"/><text x="50.6140%" y="287.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="50.3640%" y="261" width="0.0119%" height="15" fill="rgb(221,32,51)" fg:x="12729" fg:w="3"/><text x="50.6140%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.3640%" y="245" width="0.0119%" height="15" fill="rgb(218,171,35)" fg:x="12729" fg:w="3"/><text x="50.6140%" y="255.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.3640%" y="229" width="0.0119%" height="15" fill="rgb(214,20,53)" fg:x="12729" fg:w="3"/><text x="50.6140%" y="239.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="50.4352%" y="741" width="0.0158%" height="15" fill="rgb(239,9,52)" fg:x="12747" fg:w="4"/><text x="50.6852%" y="751.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="50.4352%" y="725" width="0.0158%" height="15" fill="rgb(215,114,45)" fg:x="12747" fg:w="4"/><text x="50.6852%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="50.4511%" y="709" width="0.0593%" height="15" fill="rgb(208,118,9)" fg:x="12751" fg:w="15"/><text x="50.7011%" y="719.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="50.4867%" y="693" width="0.0237%" height="15" fill="rgb(235,7,39)" fg:x="12760" fg:w="6"/><text x="50.7367%" y="703.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="50.4906%" y="677" width="0.0198%" height="15" fill="rgb(243,225,15)" fg:x="12761" fg:w="5"/><text x="50.7406%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.16%)</title><rect x="50.4075%" y="757" width="0.1622%" height="15" fill="rgb(225,216,18)" fg:x="12740" fg:w="41"/><text x="50.6575%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.12%)</title><rect x="50.4511%" y="741" width="0.1187%" height="15" fill="rgb(233,36,38)" fg:x="12751" fg:w="30"/><text x="50.7011%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.12%)</title><rect x="50.4511%" y="725" width="0.1187%" height="15" fill="rgb(239,88,23)" fg:x="12751" fg:w="30"/><text x="50.7011%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.06%)</title><rect x="50.5104%" y="709" width="0.0593%" height="15" fill="rgb(219,181,35)" fg:x="12766" fg:w="15"/><text x="50.7604%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="50.5104%" y="693" width="0.0593%" height="15" fill="rgb(215,18,46)" fg:x="12766" fg:w="15"/><text x="50.7604%" y="703.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="50.5381%" y="677" width="0.0317%" height="15" fill="rgb(241,38,11)" fg:x="12773" fg:w="8"/><text x="50.7881%" y="687.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="50.5500%" y="661" width="0.0198%" height="15" fill="rgb(248,169,45)" fg:x="12776" fg:w="5"/><text x="50.8000%" y="671.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="50.5935%" y="725" width="0.0198%" height="15" fill="rgb(239,50,49)" fg:x="12787" fg:w="5"/><text x="50.8435%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="50.5935%" y="709" width="0.0198%" height="15" fill="rgb(231,96,31)" fg:x="12787" fg:w="5"/><text x="50.8435%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="50.6133%" y="693" width="0.0356%" height="15" fill="rgb(224,193,37)" fg:x="12792" fg:w="9"/><text x="50.8633%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.6370%" y="677" width="0.0119%" height="15" fill="rgb(227,153,50)" fg:x="12798" fg:w="3"/><text x="50.8870%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.04%)</title><rect x="50.6489%" y="693" width="0.0435%" height="15" fill="rgb(249,228,3)" fg:x="12801" fg:w="11"/><text x="50.8989%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="50.6489%" y="677" width="0.0435%" height="15" fill="rgb(219,164,43)" fg:x="12801" fg:w="11"/><text x="50.8989%" y="687.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="50.6647%" y="661" width="0.0277%" height="15" fill="rgb(216,45,41)" fg:x="12805" fg:w="7"/><text x="50.9147%" y="671.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="50.6687%" y="645" width="0.0237%" height="15" fill="rgb(210,226,51)" fg:x="12806" fg:w="6"/><text x="50.9187%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.6924%" y="469" width="0.0119%" height="15" fill="rgb(209,117,49)" fg:x="12812" fg:w="3"/><text x="50.9424%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="50.6924%" y="517" width="0.0237%" height="15" fill="rgb(206,196,24)" fg:x="12812" fg:w="6"/><text x="50.9424%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="50.6924%" y="501" width="0.0237%" height="15" fill="rgb(253,218,3)" fg:x="12812" fg:w="6"/><text x="50.9424%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="50.6924%" y="485" width="0.0237%" height="15" fill="rgb(252,166,2)" fg:x="12812" fg:w="6"/><text x="50.9424%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.7043%" y="469" width="0.0119%" height="15" fill="rgb(236,218,26)" fg:x="12815" fg:w="3"/><text x="50.9543%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7043%" y="453" width="0.0119%" height="15" fill="rgb(254,84,19)" fg:x="12815" fg:w="3"/><text x="50.9543%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="50.6924%" y="565" width="0.0435%" height="15" fill="rgb(219,137,29)" fg:x="12812" fg:w="11"/><text x="50.9424%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="50.6924%" y="549" width="0.0435%" height="15" fill="rgb(227,47,52)" fg:x="12812" fg:w="11"/><text x="50.9424%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.04%)</title><rect x="50.6924%" y="533" width="0.0435%" height="15" fill="rgb(229,167,24)" fg:x="12812" fg:w="11"/><text x="50.9424%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="50.7162%" y="517" width="0.0198%" height="15" fill="rgb(233,164,1)" fg:x="12818" fg:w="5"/><text x="50.9662%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.7162%" y="501" width="0.0198%" height="15" fill="rgb(218,88,48)" fg:x="12818" fg:w="5"/><text x="50.9662%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.7162%" y="485" width="0.0198%" height="15" fill="rgb(226,214,24)" fg:x="12818" fg:w="5"/><text x="50.9662%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.7162%" y="469" width="0.0198%" height="15" fill="rgb(233,29,12)" fg:x="12818" fg:w="5"/><text x="50.9662%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.7241%" y="453" width="0.0119%" height="15" fill="rgb(219,120,34)" fg:x="12820" fg:w="3"/><text x="50.9741%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7241%" y="437" width="0.0119%" height="15" fill="rgb(226,78,44)" fg:x="12820" fg:w="3"/><text x="50.9741%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.7359%" y="501" width="0.0198%" height="15" fill="rgb(240,15,48)" fg:x="12823" fg:w="5"/><text x="50.9859%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.7359%" y="485" width="0.0198%" height="15" fill="rgb(253,176,7)" fg:x="12823" fg:w="5"/><text x="50.9859%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.7359%" y="469" width="0.0198%" height="15" fill="rgb(206,166,28)" fg:x="12823" fg:w="5"/><text x="50.9859%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.7438%" y="453" width="0.0119%" height="15" fill="rgb(241,53,51)" fg:x="12825" fg:w="3"/><text x="50.9938%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7438%" y="437" width="0.0119%" height="15" fill="rgb(249,112,30)" fg:x="12825" fg:w="3"/><text x="50.9938%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="50.6924%" y="613" width="0.0831%" height="15" fill="rgb(217,85,30)" fg:x="12812" fg:w="21"/><text x="50.9424%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.08%)</title><rect x="50.6924%" y="597" width="0.0831%" height="15" fill="rgb(233,49,7)" fg:x="12812" fg:w="21"/><text x="50.9424%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.08%)</title><rect x="50.6924%" y="581" width="0.0831%" height="15" fill="rgb(234,109,9)" fg:x="12812" fg:w="21"/><text x="50.9424%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="50.7359%" y="565" width="0.0396%" height="15" fill="rgb(253,95,22)" fg:x="12823" fg:w="10"/><text x="50.9859%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="50.7359%" y="549" width="0.0396%" height="15" fill="rgb(233,176,25)" fg:x="12823" fg:w="10"/><text x="50.9859%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="50.7359%" y="533" width="0.0396%" height="15" fill="rgb(236,33,39)" fg:x="12823" fg:w="10"/><text x="50.9859%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="50.7359%" y="517" width="0.0396%" height="15" fill="rgb(223,226,42)" fg:x="12823" fg:w="10"/><text x="50.9859%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="50.7557%" y="501" width="0.0198%" height="15" fill="rgb(216,99,33)" fg:x="12828" fg:w="5"/><text x="51.0057%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.7557%" y="485" width="0.0198%" height="15" fill="rgb(235,84,23)" fg:x="12828" fg:w="5"/><text x="51.0057%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.7557%" y="469" width="0.0198%" height="15" fill="rgb(232,2,27)" fg:x="12828" fg:w="5"/><text x="51.0057%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.7557%" y="453" width="0.0198%" height="15" fill="rgb(241,23,22)" fg:x="12828" fg:w="5"/><text x="51.0057%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.7636%" y="437" width="0.0119%" height="15" fill="rgb(211,73,27)" fg:x="12830" fg:w="3"/><text x="51.0136%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7636%" y="421" width="0.0119%" height="15" fill="rgb(235,109,49)" fg:x="12830" fg:w="3"/><text x="51.0136%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7755%" y="501" width="0.0119%" height="15" fill="rgb(230,99,29)" fg:x="12833" fg:w="3"/><text x="51.0255%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="50.7755%" y="485" width="0.0119%" height="15" fill="rgb(245,199,7)" fg:x="12833" fg:w="3"/><text x="51.0255%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="50.7755%" y="469" width="0.0119%" height="15" fill="rgb(217,179,10)" fg:x="12833" fg:w="3"/><text x="51.0255%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.7874%" y="437" width="0.0119%" height="15" fill="rgb(254,99,47)" fg:x="12836" fg:w="3"/><text x="51.0374%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="50.7755%" y="549" width="0.0317%" height="15" fill="rgb(251,121,7)" fg:x="12833" fg:w="8"/><text x="51.0255%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="50.7755%" y="533" width="0.0317%" height="15" fill="rgb(250,177,26)" fg:x="12833" fg:w="8"/><text x="51.0255%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="50.7755%" y="517" width="0.0317%" height="15" fill="rgb(232,88,15)" fg:x="12833" fg:w="8"/><text x="51.0255%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="50.7874%" y="501" width="0.0198%" height="15" fill="rgb(251,54,54)" fg:x="12836" fg:w="5"/><text x="51.0374%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.7874%" y="485" width="0.0198%" height="15" fill="rgb(208,177,15)" fg:x="12836" fg:w="5"/><text x="51.0374%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.7874%" y="469" width="0.0198%" height="15" fill="rgb(205,97,32)" fg:x="12836" fg:w="5"/><text x="51.0374%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.7874%" y="453" width="0.0198%" height="15" fill="rgb(217,192,13)" fg:x="12836" fg:w="5"/><text x="51.0374%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.8072%" y="469" width="0.0119%" height="15" fill="rgb(215,163,41)" fg:x="12841" fg:w="3"/><text x="51.0572%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.8269%" y="293" width="0.0198%" height="15" fill="rgb(246,83,29)" fg:x="12846" fg:w="5"/><text x="51.0769%" y="303.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.8269%" y="277" width="0.0198%" height="15" fill="rgb(219,2,45)" fg:x="12846" fg:w="5"/><text x="51.0769%" y="287.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.8269%" y="261" width="0.0198%" height="15" fill="rgb(242,215,33)" fg:x="12846" fg:w="5"/><text x="51.0769%" y="271.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="50.8349%" y="245" width="0.0119%" height="15" fill="rgb(217,1,6)" fg:x="12848" fg:w="3"/><text x="51.0849%" y="255.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="50.8349%" y="229" width="0.0119%" height="15" fill="rgb(207,85,52)" fg:x="12848" fg:w="3"/><text x="51.0849%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.8349%" y="213" width="0.0119%" height="15" fill="rgb(231,171,19)" fg:x="12848" fg:w="3"/><text x="51.0849%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.8467%" y="213" width="0.0119%" height="15" fill="rgb(207,128,4)" fg:x="12851" fg:w="3"/><text x="51.0967%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.8586%" y="85" width="0.0119%" height="15" fill="rgb(219,208,4)" fg:x="12854" fg:w="3"/><text x="51.1086%" y="95.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (79 samples, 0.31%)</title><rect x="50.5698%" y="757" width="0.3126%" height="15" fill="rgb(235,161,42)" fg:x="12781" fg:w="79"/><text x="50.8198%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (79 samples, 0.31%)</title><rect x="50.5698%" y="741" width="0.3126%" height="15" fill="rgb(247,218,18)" fg:x="12781" fg:w="79"/><text x="50.8198%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (68 samples, 0.27%)</title><rect x="50.6133%" y="725" width="0.2691%" height="15" fill="rgb(232,114,51)" fg:x="12792" fg:w="68"/><text x="50.8633%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (68 samples, 0.27%)</title><rect x="50.6133%" y="709" width="0.2691%" height="15" fill="rgb(222,95,3)" fg:x="12792" fg:w="68"/><text x="50.8633%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (48 samples, 0.19%)</title><rect x="50.6924%" y="693" width="0.1899%" height="15" fill="rgb(240,65,29)" fg:x="12812" fg:w="48"/><text x="50.9424%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (48 samples, 0.19%)</title><rect x="50.6924%" y="677" width="0.1899%" height="15" fill="rgb(249,209,20)" fg:x="12812" fg:w="48"/><text x="50.9424%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.19%)</title><rect x="50.6924%" y="661" width="0.1899%" height="15" fill="rgb(241,48,37)" fg:x="12812" fg:w="48"/><text x="50.9424%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.19%)</title><rect x="50.6924%" y="645" width="0.1899%" height="15" fill="rgb(230,140,42)" fg:x="12812" fg:w="48"/><text x="50.9424%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (48 samples, 0.19%)</title><rect x="50.6924%" y="629" width="0.1899%" height="15" fill="rgb(230,176,45)" fg:x="12812" fg:w="48"/><text x="50.9424%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.11%)</title><rect x="50.7755%" y="613" width="0.1068%" height="15" fill="rgb(245,112,21)" fg:x="12833" fg:w="27"/><text x="51.0255%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.11%)</title><rect x="50.7755%" y="597" width="0.1068%" height="15" fill="rgb(207,183,35)" fg:x="12833" fg:w="27"/><text x="51.0255%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.11%)</title><rect x="50.7755%" y="581" width="0.1068%" height="15" fill="rgb(227,44,33)" fg:x="12833" fg:w="27"/><text x="51.0255%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="50.7755%" y="565" width="0.1068%" height="15" fill="rgb(246,120,21)" fg:x="12833" fg:w="27"/><text x="51.0255%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.08%)</title><rect x="50.8072%" y="549" width="0.0752%" height="15" fill="rgb(235,57,52)" fg:x="12841" fg:w="19"/><text x="51.0572%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.08%)</title><rect x="50.8072%" y="533" width="0.0752%" height="15" fill="rgb(238,84,10)" fg:x="12841" fg:w="19"/><text x="51.0572%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="50.8072%" y="517" width="0.0752%" height="15" fill="rgb(251,200,32)" fg:x="12841" fg:w="19"/><text x="51.0572%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="50.8072%" y="501" width="0.0752%" height="15" fill="rgb(247,159,13)" fg:x="12841" fg:w="19"/><text x="51.0572%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="50.8072%" y="485" width="0.0752%" height="15" fill="rgb(238,64,4)" fg:x="12841" fg:w="19"/><text x="51.0572%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.06%)</title><rect x="50.8190%" y="469" width="0.0633%" height="15" fill="rgb(221,131,51)" fg:x="12844" fg:w="16"/><text x="51.0690%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.06%)</title><rect x="50.8190%" y="453" width="0.0633%" height="15" fill="rgb(242,5,29)" fg:x="12844" fg:w="16"/><text x="51.0690%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="50.8190%" y="437" width="0.0633%" height="15" fill="rgb(214,130,32)" fg:x="12844" fg:w="16"/><text x="51.0690%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="50.8269%" y="421" width="0.0554%" height="15" fill="rgb(244,210,16)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="50.8269%" y="405" width="0.0554%" height="15" fill="rgb(234,48,26)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="50.8269%" y="389" width="0.0554%" height="15" fill="rgb(231,82,38)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="50.8269%" y="373" width="0.0554%" height="15" fill="rgb(254,128,41)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="50.8269%" y="357" width="0.0554%" height="15" fill="rgb(212,73,49)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="50.8269%" y="341" width="0.0554%" height="15" fill="rgb(205,62,54)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="50.8269%" y="325" width="0.0554%" height="15" fill="rgb(228,0,8)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="50.8269%" y="309" width="0.0554%" height="15" fill="rgb(251,28,17)" fg:x="12846" fg:w="14"/><text x="51.0769%" y="319.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="50.8467%" y="293" width="0.0356%" height="15" fill="rgb(238,105,27)" fg:x="12851" fg:w="9"/><text x="51.0967%" y="303.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="50.8467%" y="277" width="0.0356%" height="15" fill="rgb(237,216,33)" fg:x="12851" fg:w="9"/><text x="51.0967%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="50.8467%" y="261" width="0.0356%" height="15" fill="rgb(229,228,25)" fg:x="12851" fg:w="9"/><text x="51.0967%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="50.8467%" y="245" width="0.0356%" height="15" fill="rgb(233,75,23)" fg:x="12851" fg:w="9"/><text x="51.0967%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="50.8467%" y="229" width="0.0356%" height="15" fill="rgb(231,207,16)" fg:x="12851" fg:w="9"/><text x="51.0967%" y="239.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="50.8586%" y="213" width="0.0237%" height="15" fill="rgb(231,191,45)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="223.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="50.8586%" y="197" width="0.0237%" height="15" fill="rgb(224,133,17)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="207.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="50.8586%" y="181" width="0.0237%" height="15" fill="rgb(209,178,27)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="191.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="50.8586%" y="165" width="0.0237%" height="15" fill="rgb(218,37,11)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="175.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="50.8586%" y="149" width="0.0237%" height="15" fill="rgb(251,226,25)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="50.8586%" y="133" width="0.0237%" height="15" fill="rgb(209,222,27)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="143.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="50.8586%" y="117" width="0.0237%" height="15" fill="rgb(238,22,21)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="127.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="50.8586%" y="101" width="0.0237%" height="15" fill="rgb(233,161,25)" fg:x="12854" fg:w="6"/><text x="51.1086%" y="111.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="50.8705%" y="85" width="0.0119%" height="15" fill="rgb(226,122,53)" fg:x="12857" fg:w="3"/><text x="51.1205%" y="95.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.8705%" y="69" width="0.0119%" height="15" fill="rgb(220,123,17)" fg:x="12857" fg:w="3"/><text x="51.1205%" y="79.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.8705%" y="53" width="0.0119%" height="15" fill="rgb(230,224,35)" fg:x="12857" fg:w="3"/><text x="51.1205%" y="63.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="50.8705%" y="37" width="0.0119%" height="15" fill="rgb(246,83,8)" fg:x="12857" fg:w="3"/><text x="51.1205%" y="47.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (136 samples, 0.54%)</title><rect x="50.3759%" y="821" width="0.5381%" height="15" fill="rgb(230,214,17)" fg:x="12732" fg:w="136"/><text x="50.6259%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (136 samples, 0.54%)</title><rect x="50.3759%" y="805" width="0.5381%" height="15" fill="rgb(222,97,18)" fg:x="12732" fg:w="136"/><text x="50.6259%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (128 samples, 0.51%)</title><rect x="50.4075%" y="789" width="0.5064%" height="15" fill="rgb(206,79,1)" fg:x="12740" fg:w="128"/><text x="50.6575%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (128 samples, 0.51%)</title><rect x="50.4075%" y="773" width="0.5064%" height="15" fill="rgb(214,121,34)" fg:x="12740" fg:w="128"/><text x="50.6575%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="50.8823%" y="757" width="0.0317%" height="15" fill="rgb(249,199,46)" fg:x="12860" fg:w="8"/><text x="51.1323%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="50.8823%" y="741" width="0.0317%" height="15" fill="rgb(214,222,46)" fg:x="12860" fg:w="8"/><text x="51.1323%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="50.8823%" y="725" width="0.0317%" height="15" fill="rgb(248,168,30)" fg:x="12860" fg:w="8"/><text x="51.1323%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="50.8942%" y="709" width="0.0198%" height="15" fill="rgb(226,14,28)" fg:x="12863" fg:w="5"/><text x="51.1442%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="50.8942%" y="693" width="0.0198%" height="15" fill="rgb(253,123,1)" fg:x="12863" fg:w="5"/><text x="51.1442%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="50.9021%" y="677" width="0.0119%" height="15" fill="rgb(225,24,42)" fg:x="12865" fg:w="3"/><text x="51.1521%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="50.9021%" y="661" width="0.0119%" height="15" fill="rgb(216,161,37)" fg:x="12865" fg:w="3"/><text x="51.1521%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="50.9021%" y="645" width="0.0119%" height="15" fill="rgb(251,164,26)" fg:x="12865" fg:w="3"/><text x="51.1521%" y="655.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.9259%" y="677" width="0.0119%" height="15" fill="rgb(219,177,3)" fg:x="12871" fg:w="3"/><text x="51.1759%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="50.9259%" y="661" width="0.0119%" height="15" fill="rgb(222,65,0)" fg:x="12871" fg:w="3"/><text x="51.1759%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.9377%" y="645" width="0.0158%" height="15" fill="rgb(223,69,54)" fg:x="12874" fg:w="4"/><text x="51.1877%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="50.9140%" y="693" width="0.0554%" height="15" fill="rgb(235,30,27)" fg:x="12868" fg:w="14"/><text x="51.1640%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="50.9377%" y="677" width="0.0317%" height="15" fill="rgb(220,183,50)" fg:x="12874" fg:w="8"/><text x="51.1877%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="50.9377%" y="661" width="0.0317%" height="15" fill="rgb(248,198,15)" fg:x="12874" fg:w="8"/><text x="51.1877%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="50.9535%" y="645" width="0.0158%" height="15" fill="rgb(222,211,4)" fg:x="12878" fg:w="4"/><text x="51.2035%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="50.9535%" y="629" width="0.0158%" height="15" fill="rgb(214,102,34)" fg:x="12878" fg:w="4"/><text x="51.2035%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.9575%" y="613" width="0.0119%" height="15" fill="rgb(245,92,5)" fg:x="12879" fg:w="3"/><text x="51.2075%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="50.9575%" y="597" width="0.0119%" height="15" fill="rgb(252,72,51)" fg:x="12879" fg:w="3"/><text x="51.2075%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="50.9852%" y="629" width="0.0198%" height="15" fill="rgb(252,208,19)" fg:x="12886" fg:w="5"/><text x="51.2352%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="50.9931%" y="613" width="0.0119%" height="15" fill="rgb(211,69,7)" fg:x="12888" fg:w="3"/><text x="51.2431%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="50.9931%" y="597" width="0.0119%" height="15" fill="rgb(211,27,16)" fg:x="12888" fg:w="3"/><text x="51.2431%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="50.9140%" y="741" width="0.1108%" height="15" fill="rgb(219,216,14)" fg:x="12868" fg:w="28"/><text x="51.1640%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="50.9140%" y="725" width="0.1108%" height="15" fill="rgb(219,71,8)" fg:x="12868" fg:w="28"/><text x="51.1640%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="50.9140%" y="709" width="0.1108%" height="15" fill="rgb(223,170,53)" fg:x="12868" fg:w="28"/><text x="51.1640%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="50.9694%" y="693" width="0.0554%" height="15" fill="rgb(246,21,26)" fg:x="12882" fg:w="14"/><text x="51.2194%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="50.9694%" y="677" width="0.0554%" height="15" fill="rgb(248,20,46)" fg:x="12882" fg:w="14"/><text x="51.2194%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="50.9852%" y="661" width="0.0396%" height="15" fill="rgb(252,94,11)" fg:x="12886" fg:w="10"/><text x="51.2352%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="50.9852%" y="645" width="0.0396%" height="15" fill="rgb(236,163,8)" fg:x="12886" fg:w="10"/><text x="51.2352%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="51.0129%" y="629" width="0.0119%" height="15" fill="rgb(217,221,45)" fg:x="12893" fg:w="3"/><text x="51.2629%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="51.0129%" y="613" width="0.0119%" height="15" fill="rgb(238,38,17)" fg:x="12893" fg:w="3"/><text x="51.2629%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0129%" y="597" width="0.0119%" height="15" fill="rgb(242,210,23)" fg:x="12893" fg:w="3"/><text x="51.2629%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.0129%" y="581" width="0.0119%" height="15" fill="rgb(250,86,53)" fg:x="12893" fg:w="3"/><text x="51.2629%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="51.0129%" y="565" width="0.0119%" height="15" fill="rgb(223,168,25)" fg:x="12893" fg:w="3"/><text x="51.2629%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.0327%" y="645" width="0.0119%" height="15" fill="rgb(251,189,4)" fg:x="12898" fg:w="3"/><text x="51.2827%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0525%" y="565" width="0.0119%" height="15" fill="rgb(245,19,28)" fg:x="12903" fg:w="3"/><text x="51.3025%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="51.0446%" y="613" width="0.0317%" height="15" fill="rgb(207,10,34)" fg:x="12901" fg:w="8"/><text x="51.2946%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.0525%" y="597" width="0.0237%" height="15" fill="rgb(235,153,31)" fg:x="12903" fg:w="6"/><text x="51.3025%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.0525%" y="581" width="0.0237%" height="15" fill="rgb(228,72,37)" fg:x="12903" fg:w="6"/><text x="51.3025%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.0643%" y="565" width="0.0119%" height="15" fill="rgb(215,15,16)" fg:x="12906" fg:w="3"/><text x="51.3143%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0643%" y="549" width="0.0119%" height="15" fill="rgb(250,119,29)" fg:x="12906" fg:w="3"/><text x="51.3143%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0762%" y="533" width="0.0119%" height="15" fill="rgb(214,59,1)" fg:x="12909" fg:w="3"/><text x="51.3262%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.0762%" y="517" width="0.0119%" height="15" fill="rgb(223,109,25)" fg:x="12909" fg:w="3"/><text x="51.3262%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0881%" y="453" width="0.0119%" height="15" fill="rgb(230,198,22)" fg:x="12912" fg:w="3"/><text x="51.3381%" y="463.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.0881%" y="437" width="0.0119%" height="15" fill="rgb(245,184,46)" fg:x="12912" fg:w="3"/><text x="51.3381%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="51.0248%" y="661" width="0.0870%" height="15" fill="rgb(253,73,16)" fg:x="12896" fg:w="22"/><text x="51.2748%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="51.0446%" y="645" width="0.0673%" height="15" fill="rgb(206,94,45)" fg:x="12901" fg:w="17"/><text x="51.2946%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="51.0446%" y="629" width="0.0673%" height="15" fill="rgb(236,83,27)" fg:x="12901" fg:w="17"/><text x="51.2946%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="51.0762%" y="613" width="0.0356%" height="15" fill="rgb(220,196,8)" fg:x="12909" fg:w="9"/><text x="51.3262%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="51.0762%" y="597" width="0.0356%" height="15" fill="rgb(254,185,14)" fg:x="12909" fg:w="9"/><text x="51.3262%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="51.0762%" y="581" width="0.0356%" height="15" fill="rgb(226,50,22)" fg:x="12909" fg:w="9"/><text x="51.3262%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="51.0762%" y="565" width="0.0356%" height="15" fill="rgb(253,147,0)" fg:x="12909" fg:w="9"/><text x="51.3262%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="51.0762%" y="549" width="0.0356%" height="15" fill="rgb(252,46,33)" fg:x="12909" fg:w="9"/><text x="51.3262%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="51.0881%" y="533" width="0.0237%" height="15" fill="rgb(242,22,54)" fg:x="12912" fg:w="6"/><text x="51.3381%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="51.0881%" y="517" width="0.0237%" height="15" fill="rgb(223,178,32)" fg:x="12912" fg:w="6"/><text x="51.3381%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.0881%" y="501" width="0.0237%" height="15" fill="rgb(214,106,53)" fg:x="12912" fg:w="6"/><text x="51.3381%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.0881%" y="485" width="0.0237%" height="15" fill="rgb(232,65,50)" fg:x="12912" fg:w="6"/><text x="51.3381%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.0881%" y="469" width="0.0237%" height="15" fill="rgb(231,110,28)" fg:x="12912" fg:w="6"/><text x="51.3381%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.0999%" y="453" width="0.0119%" height="15" fill="rgb(216,71,40)" fg:x="12915" fg:w="3"/><text x="51.3499%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.0999%" y="437" width="0.0119%" height="15" fill="rgb(229,89,53)" fg:x="12915" fg:w="3"/><text x="51.3499%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (370 samples, 1.46%)</title><rect x="49.6716%" y="885" width="1.4640%" height="15" fill="rgb(210,124,14)" fg:x="12554" fg:w="370"/><text x="49.9216%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (370 samples, 1.46%)</title><rect x="49.6716%" y="869" width="1.4640%" height="15" fill="rgb(236,213,6)" fg:x="12554" fg:w="370"/><text x="49.9216%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (365 samples, 1.44%)</title><rect x="49.6914%" y="853" width="1.4442%" height="15" fill="rgb(228,41,5)" fg:x="12559" fg:w="365"/><text x="49.9414%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (365 samples, 1.44%)</title><rect x="49.6914%" y="837" width="1.4442%" height="15" fill="rgb(221,167,25)" fg:x="12559" fg:w="365"/><text x="49.9414%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (56 samples, 0.22%)</title><rect x="50.9140%" y="821" width="0.2216%" height="15" fill="rgb(228,144,37)" fg:x="12868" fg:w="56"/><text x="51.1640%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (56 samples, 0.22%)</title><rect x="50.9140%" y="805" width="0.2216%" height="15" fill="rgb(227,189,38)" fg:x="12868" fg:w="56"/><text x="51.1640%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.22%)</title><rect x="50.9140%" y="789" width="0.2216%" height="15" fill="rgb(218,8,2)" fg:x="12868" fg:w="56"/><text x="51.1640%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.22%)</title><rect x="50.9140%" y="773" width="0.2216%" height="15" fill="rgb(209,61,28)" fg:x="12868" fg:w="56"/><text x="51.1640%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (56 samples, 0.22%)</title><rect x="50.9140%" y="757" width="0.2216%" height="15" fill="rgb(233,140,39)" fg:x="12868" fg:w="56"/><text x="51.1640%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (28 samples, 0.11%)</title><rect x="51.0248%" y="741" width="0.1108%" height="15" fill="rgb(251,66,48)" fg:x="12896" fg:w="28"/><text x="51.2748%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (28 samples, 0.11%)</title><rect x="51.0248%" y="725" width="0.1108%" height="15" fill="rgb(210,44,45)" fg:x="12896" fg:w="28"/><text x="51.2748%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.11%)</title><rect x="51.0248%" y="709" width="0.1108%" height="15" fill="rgb(214,136,46)" fg:x="12896" fg:w="28"/><text x="51.2748%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="51.0248%" y="693" width="0.1108%" height="15" fill="rgb(207,130,50)" fg:x="12896" fg:w="28"/><text x="51.2748%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="51.0248%" y="677" width="0.1108%" height="15" fill="rgb(228,102,49)" fg:x="12896" fg:w="28"/><text x="51.2748%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="51.1118%" y="661" width="0.0237%" height="15" fill="rgb(253,55,1)" fg:x="12918" fg:w="6"/><text x="51.3618%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="51.1118%" y="645" width="0.0237%" height="15" fill="rgb(238,222,9)" fg:x="12918" fg:w="6"/><text x="51.3618%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.1118%" y="629" width="0.0237%" height="15" fill="rgb(246,99,6)" fg:x="12918" fg:w="6"/><text x="51.3618%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.1118%" y="613" width="0.0237%" height="15" fill="rgb(219,110,26)" fg:x="12918" fg:w="6"/><text x="51.3618%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.1118%" y="597" width="0.0237%" height="15" fill="rgb(239,160,33)" fg:x="12918" fg:w="6"/><text x="51.3618%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="51.1197%" y="581" width="0.0158%" height="15" fill="rgb(220,202,23)" fg:x="12920" fg:w="4"/><text x="51.3697%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="51.1197%" y="565" width="0.0158%" height="15" fill="rgb(208,80,26)" fg:x="12920" fg:w="4"/><text x="51.3697%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.1197%" y="549" width="0.0158%" height="15" fill="rgb(243,85,7)" fg:x="12920" fg:w="4"/><text x="51.3697%" y="559.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="51.1593%" y="837" width="0.0198%" height="15" fill="rgb(228,77,47)" fg:x="12930" fg:w="5"/><text x="51.4093%" y="847.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="51.1593%" y="821" width="0.0198%" height="15" fill="rgb(212,226,8)" fg:x="12930" fg:w="5"/><text x="51.4093%" y="831.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="51.1949%" y="789" width="0.0198%" height="15" fill="rgb(241,120,54)" fg:x="12939" fg:w="5"/><text x="51.4449%" y="799.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="51.1989%" y="773" width="0.0158%" height="15" fill="rgb(226,80,16)" fg:x="12940" fg:w="4"/><text x="51.4489%" y="783.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="51.2384%" y="741" width="0.0277%" height="15" fill="rgb(240,76,13)" fg:x="12950" fg:w="7"/><text x="51.4884%" y="751.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="51.2384%" y="725" width="0.0277%" height="15" fill="rgb(252,74,8)" fg:x="12950" fg:w="7"/><text x="51.4884%" y="735.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.2859%" y="693" width="0.0119%" height="15" fill="rgb(244,155,2)" fg:x="12962" fg:w="3"/><text x="51.5359%" y="703.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.2859%" y="677" width="0.0119%" height="15" fill="rgb(215,81,35)" fg:x="12962" fg:w="3"/><text x="51.5359%" y="687.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.3057%" y="645" width="0.0119%" height="15" fill="rgb(206,55,2)" fg:x="12967" fg:w="3"/><text x="51.5557%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.3057%" y="629" width="0.0119%" height="15" fill="rgb(231,2,34)" fg:x="12967" fg:w="3"/><text x="51.5557%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.3176%" y="613" width="0.0198%" height="15" fill="rgb(242,176,48)" fg:x="12970" fg:w="5"/><text x="51.5676%" y="623.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="51.3215%" y="597" width="0.0158%" height="15" fill="rgb(249,31,36)" fg:x="12971" fg:w="4"/><text x="51.5715%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.3255%" y="581" width="0.0119%" height="15" fill="rgb(205,18,17)" fg:x="12972" fg:w="3"/><text x="51.5755%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.09%)</title><rect x="51.2978%" y="661" width="0.0870%" height="15" fill="rgb(254,130,5)" fg:x="12965" fg:w="22"/><text x="51.5478%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="51.3176%" y="645" width="0.0673%" height="15" fill="rgb(229,42,45)" fg:x="12970" fg:w="17"/><text x="51.5676%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="51.3176%" y="629" width="0.0673%" height="15" fill="rgb(245,95,25)" fg:x="12970" fg:w="17"/><text x="51.5676%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.05%)</title><rect x="51.3373%" y="613" width="0.0475%" height="15" fill="rgb(249,193,38)" fg:x="12975" fg:w="12"/><text x="51.5873%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="51.3373%" y="597" width="0.0475%" height="15" fill="rgb(241,140,43)" fg:x="12975" fg:w="12"/><text x="51.5873%" y="607.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="51.3690%" y="581" width="0.0158%" height="15" fill="rgb(245,78,48)" fg:x="12983" fg:w="4"/><text x="51.6190%" y="591.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="51.3690%" y="565" width="0.0158%" height="15" fill="rgb(214,92,39)" fg:x="12983" fg:w="4"/><text x="51.6190%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="51.3967%" y="597" width="0.0593%" height="15" fill="rgb(211,189,14)" fg:x="12990" fg:w="15"/><text x="51.6467%" y="607.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="51.4244%" y="581" width="0.0317%" height="15" fill="rgb(218,7,24)" fg:x="12997" fg:w="8"/><text x="51.6744%" y="591.50"></text></g><g><title>[libm.so.6] (6 samples, 0.02%)</title><rect x="51.4323%" y="565" width="0.0237%" height="15" fill="rgb(224,200,49)" fg:x="12999" fg:w="6"/><text x="51.6823%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (61 samples, 0.24%)</title><rect x="51.2661%" y="709" width="0.2414%" height="15" fill="rgb(218,210,14)" fg:x="12957" fg:w="61"/><text x="51.5161%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.21%)</title><rect x="51.2978%" y="693" width="0.2097%" height="15" fill="rgb(234,142,31)" fg:x="12965" fg:w="53"/><text x="51.5478%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (53 samples, 0.21%)</title><rect x="51.2978%" y="677" width="0.2097%" height="15" fill="rgb(227,165,2)" fg:x="12965" fg:w="53"/><text x="51.5478%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.12%)</title><rect x="51.3848%" y="661" width="0.1227%" height="15" fill="rgb(232,44,46)" fg:x="12987" fg:w="31"/><text x="51.6348%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.12%)</title><rect x="51.3848%" y="645" width="0.1227%" height="15" fill="rgb(236,149,47)" fg:x="12987" fg:w="31"/><text x="51.6348%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.11%)</title><rect x="51.3967%" y="629" width="0.1108%" height="15" fill="rgb(227,45,31)" fg:x="12990" fg:w="28"/><text x="51.6467%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.11%)</title><rect x="51.3967%" y="613" width="0.1108%" height="15" fill="rgb(240,176,51)" fg:x="12990" fg:w="28"/><text x="51.6467%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.05%)</title><rect x="51.4560%" y="597" width="0.0514%" height="15" fill="rgb(249,146,41)" fg:x="13005" fg:w="13"/><text x="51.7060%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="51.4560%" y="581" width="0.0514%" height="15" fill="rgb(213,208,4)" fg:x="13005" fg:w="13"/><text x="51.7060%" y="591.50"></text></g><g><title>exp (8 samples, 0.03%)</title><rect x="51.4758%" y="565" width="0.0317%" height="15" fill="rgb(245,84,36)" fg:x="13010" fg:w="8"/><text x="51.7258%" y="575.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="51.4798%" y="549" width="0.0277%" height="15" fill="rgb(254,84,18)" fg:x="13011" fg:w="7"/><text x="51.7298%" y="559.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="51.5154%" y="677" width="0.0158%" height="15" fill="rgb(225,38,54)" fg:x="13020" fg:w="4"/><text x="51.7654%" y="687.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.5193%" y="661" width="0.0119%" height="15" fill="rgb(246,50,30)" fg:x="13021" fg:w="3"/><text x="51.7693%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.5431%" y="597" width="0.0277%" height="15" fill="rgb(246,148,9)" fg:x="13027" fg:w="7"/><text x="51.7931%" y="607.50"></text></g><g><title>exp (6 samples, 0.02%)</title><rect x="51.5470%" y="581" width="0.0237%" height="15" fill="rgb(223,75,4)" fg:x="13028" fg:w="6"/><text x="51.7970%" y="591.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="51.5550%" y="565" width="0.0158%" height="15" fill="rgb(239,148,41)" fg:x="13030" fg:w="4"/><text x="51.8050%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="51.5312%" y="645" width="0.0712%" height="15" fill="rgb(205,195,3)" fg:x="13024" fg:w="18"/><text x="51.7812%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="51.5431%" y="629" width="0.0593%" height="15" fill="rgb(254,161,1)" fg:x="13027" fg:w="15"/><text x="51.7931%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="51.5431%" y="613" width="0.0593%" height="15" fill="rgb(211,229,8)" fg:x="13027" fg:w="15"/><text x="51.7931%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="51.5708%" y="597" width="0.0317%" height="15" fill="rgb(220,97,9)" fg:x="13034" fg:w="8"/><text x="51.8208%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="51.5708%" y="581" width="0.0317%" height="15" fill="rgb(240,218,8)" fg:x="13034" fg:w="8"/><text x="51.8208%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.5906%" y="565" width="0.0119%" height="15" fill="rgb(250,44,0)" fg:x="13039" fg:w="3"/><text x="51.8406%" y="575.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.5906%" y="549" width="0.0119%" height="15" fill="rgb(236,41,53)" fg:x="13039" fg:w="3"/><text x="51.8406%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.6104%" y="581" width="0.0237%" height="15" fill="rgb(218,227,13)" fg:x="13044" fg:w="6"/><text x="51.8604%" y="591.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="51.6183%" y="565" width="0.0158%" height="15" fill="rgb(217,94,32)" fg:x="13046" fg:w="4"/><text x="51.8683%" y="575.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="51.6183%" y="549" width="0.0158%" height="15" fill="rgb(213,217,12)" fg:x="13046" fg:w="4"/><text x="51.8683%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (38 samples, 0.15%)</title><rect x="51.5075%" y="709" width="0.1504%" height="15" fill="rgb(229,13,46)" fg:x="13018" fg:w="38"/><text x="51.7575%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.15%)</title><rect x="51.5075%" y="693" width="0.1504%" height="15" fill="rgb(243,139,5)" fg:x="13018" fg:w="38"/><text x="51.7575%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.13%)</title><rect x="51.5312%" y="677" width="0.1266%" height="15" fill="rgb(249,38,45)" fg:x="13024" fg:w="32"/><text x="51.7812%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (32 samples, 0.13%)</title><rect x="51.5312%" y="661" width="0.1266%" height="15" fill="rgb(216,70,11)" fg:x="13024" fg:w="32"/><text x="51.7812%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="51.6024%" y="645" width="0.0554%" height="15" fill="rgb(253,101,25)" fg:x="13042" fg:w="14"/><text x="51.8524%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="51.6024%" y="629" width="0.0554%" height="15" fill="rgb(207,197,30)" fg:x="13042" fg:w="14"/><text x="51.8524%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="51.6104%" y="613" width="0.0475%" height="15" fill="rgb(238,87,13)" fg:x="13044" fg:w="12"/><text x="51.8604%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="51.6104%" y="597" width="0.0475%" height="15" fill="rgb(215,155,8)" fg:x="13044" fg:w="12"/><text x="51.8604%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="51.6341%" y="581" width="0.0237%" height="15" fill="rgb(239,166,38)" fg:x="13050" fg:w="6"/><text x="51.8841%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.6341%" y="565" width="0.0237%" height="15" fill="rgb(240,194,35)" fg:x="13050" fg:w="6"/><text x="51.8841%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.6460%" y="549" width="0.0119%" height="15" fill="rgb(219,10,44)" fg:x="13053" fg:w="3"/><text x="51.8960%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.6578%" y="581" width="0.0158%" height="15" fill="rgb(251,220,35)" fg:x="13056" fg:w="4"/><text x="51.9078%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.6578%" y="565" width="0.0158%" height="15" fill="rgb(218,117,13)" fg:x="13056" fg:w="4"/><text x="51.9078%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="51.6578%" y="549" width="0.0158%" height="15" fill="rgb(221,213,40)" fg:x="13056" fg:w="4"/><text x="51.9078%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="51.6578%" y="629" width="0.0356%" height="15" fill="rgb(251,224,35)" fg:x="13056" fg:w="9"/><text x="51.9078%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="51.6578%" y="613" width="0.0356%" height="15" fill="rgb(241,33,39)" fg:x="13056" fg:w="9"/><text x="51.9078%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="51.6578%" y="597" width="0.0356%" height="15" fill="rgb(222,74,17)" fg:x="13056" fg:w="9"/><text x="51.9078%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="51.6737%" y="581" width="0.0198%" height="15" fill="rgb(225,103,0)" fg:x="13060" fg:w="5"/><text x="51.9237%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="51.6737%" y="565" width="0.0198%" height="15" fill="rgb(240,0,12)" fg:x="13060" fg:w="5"/><text x="51.9237%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="51.6737%" y="549" width="0.0198%" height="15" fill="rgb(233,213,37)" fg:x="13060" fg:w="5"/><text x="51.9237%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="51.6737%" y="533" width="0.0198%" height="15" fill="rgb(225,84,52)" fg:x="13060" fg:w="5"/><text x="51.9237%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.6816%" y="517" width="0.0119%" height="15" fill="rgb(247,160,51)" fg:x="13062" fg:w="3"/><text x="51.9316%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.6816%" y="501" width="0.0119%" height="15" fill="rgb(244,60,51)" fg:x="13062" fg:w="3"/><text x="51.9316%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.7053%" y="549" width="0.0158%" height="15" fill="rgb(233,114,7)" fg:x="13068" fg:w="4"/><text x="51.9553%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (131 samples, 0.52%)</title><rect x="51.2147%" y="757" width="0.5183%" height="15" fill="rgb(246,136,16)" fg:x="12944" fg:w="131"/><text x="51.4647%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (118 samples, 0.47%)</title><rect x="51.2661%" y="741" width="0.4669%" height="15" fill="rgb(243,114,45)" fg:x="12957" fg:w="118"/><text x="51.5161%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (118 samples, 0.47%)</title><rect x="51.2661%" y="725" width="0.4669%" height="15" fill="rgb(247,183,43)" fg:x="12957" fg:w="118"/><text x="51.5161%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.08%)</title><rect x="51.6578%" y="709" width="0.0752%" height="15" fill="rgb(251,210,42)" fg:x="13056" fg:w="19"/><text x="51.9078%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.08%)</title><rect x="51.6578%" y="693" width="0.0752%" height="15" fill="rgb(221,88,35)" fg:x="13056" fg:w="19"/><text x="51.9078%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.08%)</title><rect x="51.6578%" y="677" width="0.0752%" height="15" fill="rgb(242,21,20)" fg:x="13056" fg:w="19"/><text x="51.9078%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.08%)</title><rect x="51.6578%" y="661" width="0.0752%" height="15" fill="rgb(233,226,36)" fg:x="13056" fg:w="19"/><text x="51.9078%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.08%)</title><rect x="51.6578%" y="645" width="0.0752%" height="15" fill="rgb(243,189,34)" fg:x="13056" fg:w="19"/><text x="51.9078%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="51.6934%" y="629" width="0.0396%" height="15" fill="rgb(207,145,50)" fg:x="13065" fg:w="10"/><text x="51.9434%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="51.6934%" y="613" width="0.0396%" height="15" fill="rgb(242,1,50)" fg:x="13065" fg:w="10"/><text x="51.9434%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="51.6934%" y="597" width="0.0396%" height="15" fill="rgb(231,65,32)" fg:x="13065" fg:w="10"/><text x="51.9434%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="51.7053%" y="581" width="0.0277%" height="15" fill="rgb(208,68,49)" fg:x="13068" fg:w="7"/><text x="51.9553%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="51.7053%" y="565" width="0.0277%" height="15" fill="rgb(253,54,49)" fg:x="13068" fg:w="7"/><text x="51.9553%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.7211%" y="549" width="0.0119%" height="15" fill="rgb(245,186,24)" fg:x="13072" fg:w="3"/><text x="51.9711%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.7211%" y="533" width="0.0119%" height="15" fill="rgb(209,2,41)" fg:x="13072" fg:w="3"/><text x="51.9711%" y="543.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="51.7449%" y="725" width="0.0158%" height="15" fill="rgb(242,208,54)" fg:x="13078" fg:w="4"/><text x="51.9949%" y="735.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="51.7449%" y="709" width="0.0158%" height="15" fill="rgb(225,9,51)" fg:x="13078" fg:w="4"/><text x="51.9949%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.7844%" y="597" width="0.0119%" height="15" fill="rgb(207,207,25)" fg:x="13088" fg:w="3"/><text x="52.0344%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.7844%" y="645" width="0.0237%" height="15" fill="rgb(253,96,18)" fg:x="13088" fg:w="6"/><text x="52.0344%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.7844%" y="629" width="0.0237%" height="15" fill="rgb(252,215,20)" fg:x="13088" fg:w="6"/><text x="52.0344%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.7844%" y="613" width="0.0237%" height="15" fill="rgb(245,227,26)" fg:x="13088" fg:w="6"/><text x="52.0344%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.7963%" y="597" width="0.0119%" height="15" fill="rgb(241,208,0)" fg:x="13091" fg:w="3"/><text x="52.0463%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.7963%" y="581" width="0.0119%" height="15" fill="rgb(224,130,10)" fg:x="13091" fg:w="3"/><text x="52.0463%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8082%" y="581" width="0.0119%" height="15" fill="rgb(237,29,0)" fg:x="13094" fg:w="3"/><text x="52.0582%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="51.7607%" y="693" width="0.0712%" height="15" fill="rgb(219,27,41)" fg:x="13082" fg:w="18"/><text x="52.0107%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="51.7844%" y="677" width="0.0475%" height="15" fill="rgb(245,101,19)" fg:x="13088" fg:w="12"/><text x="52.0344%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="51.7844%" y="661" width="0.0475%" height="15" fill="rgb(243,44,37)" fg:x="13088" fg:w="12"/><text x="52.0344%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="51.8082%" y="645" width="0.0237%" height="15" fill="rgb(228,213,43)" fg:x="13094" fg:w="6"/><text x="52.0582%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.8082%" y="629" width="0.0237%" height="15" fill="rgb(219,163,21)" fg:x="13094" fg:w="6"/><text x="52.0582%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.8082%" y="613" width="0.0237%" height="15" fill="rgb(234,86,24)" fg:x="13094" fg:w="6"/><text x="52.0582%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.8082%" y="597" width="0.0237%" height="15" fill="rgb(225,10,24)" fg:x="13094" fg:w="6"/><text x="52.0582%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.8201%" y="581" width="0.0119%" height="15" fill="rgb(218,109,7)" fg:x="13097" fg:w="3"/><text x="52.0701%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8201%" y="565" width="0.0119%" height="15" fill="rgb(210,20,26)" fg:x="13097" fg:w="3"/><text x="52.0701%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.8201%" y="549" width="0.0119%" height="15" fill="rgb(216,18,1)" fg:x="13097" fg:w="3"/><text x="52.0701%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.8319%" y="661" width="0.0119%" height="15" fill="rgb(206,163,23)" fg:x="13100" fg:w="3"/><text x="52.0819%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.8319%" y="645" width="0.0119%" height="15" fill="rgb(229,150,31)" fg:x="13100" fg:w="3"/><text x="52.0819%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8438%" y="581" width="0.0119%" height="15" fill="rgb(231,10,5)" fg:x="13103" fg:w="3"/><text x="52.0938%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.8438%" y="629" width="0.0237%" height="15" fill="rgb(250,40,50)" fg:x="13103" fg:w="6"/><text x="52.0938%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="51.8438%" y="613" width="0.0237%" height="15" fill="rgb(217,119,7)" fg:x="13103" fg:w="6"/><text x="52.0938%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="51.8438%" y="597" width="0.0237%" height="15" fill="rgb(245,214,40)" fg:x="13103" fg:w="6"/><text x="52.0938%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.8557%" y="581" width="0.0119%" height="15" fill="rgb(216,187,1)" fg:x="13106" fg:w="3"/><text x="52.1057%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8557%" y="565" width="0.0119%" height="15" fill="rgb(237,146,21)" fg:x="13106" fg:w="3"/><text x="52.1057%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8675%" y="501" width="0.0119%" height="15" fill="rgb(210,174,47)" fg:x="13109" fg:w="3"/><text x="52.1175%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.8675%" y="485" width="0.0119%" height="15" fill="rgb(218,111,39)" fg:x="13109" fg:w="3"/><text x="52.1175%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="51.8675%" y="469" width="0.0119%" height="15" fill="rgb(224,95,19)" fg:x="13109" fg:w="3"/><text x="52.1175%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.8992%" y="421" width="0.0119%" height="15" fill="rgb(234,15,38)" fg:x="13117" fg:w="3"/><text x="52.1492%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (46 samples, 0.18%)</title><rect x="51.7330%" y="757" width="0.1820%" height="15" fill="rgb(246,56,12)" fg:x="13075" fg:w="46"/><text x="51.9830%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="51.7330%" y="741" width="0.1820%" height="15" fill="rgb(247,16,17)" fg:x="13075" fg:w="46"/><text x="51.9830%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.15%)</title><rect x="51.7607%" y="725" width="0.1543%" height="15" fill="rgb(215,151,11)" fg:x="13082" fg:w="39"/><text x="52.0107%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (39 samples, 0.15%)</title><rect x="51.7607%" y="709" width="0.1543%" height="15" fill="rgb(225,16,24)" fg:x="13082" fg:w="39"/><text x="52.0107%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.08%)</title><rect x="51.8319%" y="693" width="0.0831%" height="15" fill="rgb(217,117,5)" fg:x="13100" fg:w="21"/><text x="52.0819%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.08%)</title><rect x="51.8319%" y="677" width="0.0831%" height="15" fill="rgb(246,187,53)" fg:x="13100" fg:w="21"/><text x="52.0819%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="51.8438%" y="661" width="0.0712%" height="15" fill="rgb(241,71,40)" fg:x="13103" fg:w="18"/><text x="52.0938%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="51.8438%" y="645" width="0.0712%" height="15" fill="rgb(231,67,39)" fg:x="13103" fg:w="18"/><text x="52.0938%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.05%)</title><rect x="51.8675%" y="629" width="0.0475%" height="15" fill="rgb(222,120,24)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.05%)</title><rect x="51.8675%" y="613" width="0.0475%" height="15" fill="rgb(248,3,3)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="51.8675%" y="597" width="0.0475%" height="15" fill="rgb(228,218,5)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="51.8675%" y="581" width="0.0475%" height="15" fill="rgb(212,202,43)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="51.8675%" y="565" width="0.0475%" height="15" fill="rgb(235,183,2)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="51.8675%" y="549" width="0.0475%" height="15" fill="rgb(230,165,10)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="51.8675%" y="533" width="0.0475%" height="15" fill="rgb(219,54,40)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="51.8675%" y="517" width="0.0475%" height="15" fill="rgb(244,73,9)" fg:x="13109" fg:w="12"/><text x="52.1175%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="51.8794%" y="501" width="0.0356%" height="15" fill="rgb(212,32,45)" fg:x="13112" fg:w="9"/><text x="52.1294%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="51.8794%" y="485" width="0.0356%" height="15" fill="rgb(205,58,31)" fg:x="13112" fg:w="9"/><text x="52.1294%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="51.8794%" y="469" width="0.0356%" height="15" fill="rgb(250,120,43)" fg:x="13112" fg:w="9"/><text x="52.1294%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.8992%" y="453" width="0.0158%" height="15" fill="rgb(235,13,10)" fg:x="13117" fg:w="4"/><text x="52.1492%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="51.8992%" y="437" width="0.0158%" height="15" fill="rgb(232,219,31)" fg:x="13117" fg:w="4"/><text x="52.1492%" y="447.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="51.9190%" y="709" width="0.0119%" height="15" fill="rgb(218,157,51)" fg:x="13122" fg:w="3"/><text x="52.1690%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="51.9190%" y="693" width="0.0119%" height="15" fill="rgb(211,91,52)" fg:x="13122" fg:w="3"/><text x="52.1690%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="51.9308%" y="677" width="0.0237%" height="15" fill="rgb(240,173,1)" fg:x="13125" fg:w="6"/><text x="52.1808%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.9388%" y="661" width="0.0158%" height="15" fill="rgb(248,20,47)" fg:x="13127" fg:w="4"/><text x="52.1888%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="51.9388%" y="645" width="0.0158%" height="15" fill="rgb(217,221,40)" fg:x="13127" fg:w="4"/><text x="52.1888%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="51.9546%" y="549" width="0.0158%" height="15" fill="rgb(226,149,51)" fg:x="13131" fg:w="4"/><text x="52.2046%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="51.9546%" y="533" width="0.0158%" height="15" fill="rgb(252,193,7)" fg:x="13131" fg:w="4"/><text x="52.2046%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="51.9546%" y="517" width="0.0158%" height="15" fill="rgb(205,123,0)" fg:x="13131" fg:w="4"/><text x="52.2046%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.07%)</title><rect x="51.9150%" y="741" width="0.0673%" height="15" fill="rgb(233,173,25)" fg:x="13121" fg:w="17"/><text x="52.1650%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="51.9150%" y="725" width="0.0673%" height="15" fill="rgb(216,63,32)" fg:x="13121" fg:w="17"/><text x="52.1650%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="51.9308%" y="709" width="0.0514%" height="15" fill="rgb(209,56,45)" fg:x="13125" fg:w="13"/><text x="52.1808%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.05%)</title><rect x="51.9308%" y="693" width="0.0514%" height="15" fill="rgb(226,111,49)" fg:x="13125" fg:w="13"/><text x="52.1808%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="51.9546%" y="677" width="0.0277%" height="15" fill="rgb(244,181,21)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="51.9546%" y="661" width="0.0277%" height="15" fill="rgb(222,126,15)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.9546%" y="645" width="0.0277%" height="15" fill="rgb(222,95,17)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="51.9546%" y="629" width="0.0277%" height="15" fill="rgb(254,46,5)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="51.9546%" y="613" width="0.0277%" height="15" fill="rgb(236,216,35)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="51.9546%" y="597" width="0.0277%" height="15" fill="rgb(217,187,26)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="51.9546%" y="581" width="0.0277%" height="15" fill="rgb(207,192,25)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="51.9546%" y="565" width="0.0277%" height="15" fill="rgb(253,135,27)" fg:x="13131" fg:w="7"/><text x="52.2046%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="51.9704%" y="549" width="0.0119%" height="15" fill="rgb(211,122,29)" fg:x="13135" fg:w="3"/><text x="52.2204%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9704%" y="533" width="0.0119%" height="15" fill="rgb(233,162,40)" fg:x="13135" fg:w="3"/><text x="52.2204%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="51.9704%" y="517" width="0.0119%" height="15" fill="rgb(222,184,47)" fg:x="13135" fg:w="3"/><text x="52.2204%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="51.9704%" y="501" width="0.0119%" height="15" fill="rgb(249,99,23)" fg:x="13135" fg:w="3"/><text x="52.2204%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="51.9704%" y="485" width="0.0119%" height="15" fill="rgb(214,60,12)" fg:x="13135" fg:w="3"/><text x="52.2204%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (207 samples, 0.82%)</title><rect x="51.1791%" y="805" width="0.8190%" height="15" fill="rgb(250,229,36)" fg:x="12935" fg:w="207"/><text x="51.4291%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (198 samples, 0.78%)</title><rect x="51.2147%" y="789" width="0.7834%" height="15" fill="rgb(232,195,10)" fg:x="12944" fg:w="198"/><text x="51.4647%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (198 samples, 0.78%)</title><rect x="51.2147%" y="773" width="0.7834%" height="15" fill="rgb(205,213,31)" fg:x="12944" fg:w="198"/><text x="51.4647%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.08%)</title><rect x="51.9150%" y="757" width="0.0831%" height="15" fill="rgb(237,43,8)" fg:x="13121" fg:w="21"/><text x="52.1650%" y="767.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="51.9823%" y="741" width="0.0158%" height="15" fill="rgb(216,208,3)" fg:x="13138" fg:w="4"/><text x="52.2323%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="51.9823%" y="725" width="0.0158%" height="15" fill="rgb(228,179,44)" fg:x="13138" fg:w="4"/><text x="52.2323%" y="735.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="51.9823%" y="709" width="0.0158%" height="15" fill="rgb(230,192,27)" fg:x="13138" fg:w="4"/><text x="52.2323%" y="719.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="51.9823%" y="693" width="0.0158%" height="15" fill="rgb(251,30,38)" fg:x="13138" fg:w="4"/><text x="52.2323%" y="703.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="51.9823%" y="677" width="0.0158%" height="15" fill="rgb(246,55,52)" fg:x="13138" fg:w="4"/><text x="52.2323%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="52.0060%" y="741" width="0.0237%" height="15" fill="rgb(249,79,26)" fg:x="13144" fg:w="6"/><text x="52.2560%" y="751.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="52.0179%" y="725" width="0.0119%" height="15" fill="rgb(220,202,16)" fg:x="13147" fg:w="3"/><text x="52.2679%" y="735.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="52.0179%" y="709" width="0.0119%" height="15" fill="rgb(250,170,23)" fg:x="13147" fg:w="3"/><text x="52.2679%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="51.9981%" y="805" width="0.0554%" height="15" fill="rgb(230,7,37)" fg:x="13142" fg:w="14"/><text x="52.2481%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="51.9981%" y="789" width="0.0554%" height="15" fill="rgb(213,71,1)" fg:x="13142" fg:w="14"/><text x="52.2481%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="52.0060%" y="773" width="0.0475%" height="15" fill="rgb(227,87,39)" fg:x="13144" fg:w="12"/><text x="52.2560%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="52.0060%" y="757" width="0.0475%" height="15" fill="rgb(210,41,29)" fg:x="13144" fg:w="12"/><text x="52.2560%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="52.0298%" y="741" width="0.0237%" height="15" fill="rgb(206,191,31)" fg:x="13150" fg:w="6"/><text x="52.2798%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="52.0298%" y="725" width="0.0237%" height="15" fill="rgb(247,75,54)" fg:x="13150" fg:w="6"/><text x="52.2798%" y="735.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="52.0377%" y="709" width="0.0158%" height="15" fill="rgb(208,54,50)" fg:x="13152" fg:w="4"/><text x="52.2877%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="52.0416%" y="693" width="0.0119%" height="15" fill="rgb(214,90,37)" fg:x="13153" fg:w="3"/><text x="52.2916%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="52.0654%" y="757" width="0.0119%" height="15" fill="rgb(220,132,6)" fg:x="13159" fg:w="3"/><text x="52.3154%" y="767.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="52.0891%" y="661" width="0.0119%" height="15" fill="rgb(213,167,7)" fg:x="13165" fg:w="3"/><text x="52.3391%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="52.0891%" y="645" width="0.0119%" height="15" fill="rgb(243,36,27)" fg:x="13165" fg:w="3"/><text x="52.3391%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="52.1010%" y="629" width="0.0158%" height="15" fill="rgb(235,147,12)" fg:x="13168" fg:w="4"/><text x="52.3510%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="52.1010%" y="613" width="0.0158%" height="15" fill="rgb(212,198,44)" fg:x="13168" fg:w="4"/><text x="52.3510%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="52.1010%" y="597" width="0.0158%" height="15" fill="rgb(218,68,50)" fg:x="13168" fg:w="4"/><text x="52.3510%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="52.0851%" y="677" width="0.0475%" height="15" fill="rgb(224,79,48)" fg:x="13164" fg:w="12"/><text x="52.3351%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="52.1010%" y="661" width="0.0317%" height="15" fill="rgb(213,191,50)" fg:x="13168" fg:w="8"/><text x="52.3510%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="52.1010%" y="645" width="0.0317%" height="15" fill="rgb(254,146,10)" fg:x="13168" fg:w="8"/><text x="52.3510%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="52.1168%" y="629" width="0.0158%" height="15" fill="rgb(215,175,11)" fg:x="13172" fg:w="4"/><text x="52.3668%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="52.1168%" y="613" width="0.0158%" height="15" fill="rgb(207,49,7)" fg:x="13172" fg:w="4"/><text x="52.3668%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="52.1168%" y="597" width="0.0158%" height="15" fill="rgb(234,144,29)" fg:x="13172" fg:w="4"/><text x="52.3668%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (255 samples, 1.01%)</title><rect x="51.1356%" y="869" width="1.0089%" height="15" fill="rgb(213,222,48)" fg:x="12924" fg:w="255"/><text x="51.3856%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (255 samples, 1.01%)</title><rect x="51.1356%" y="853" width="1.0089%" height="15" fill="rgb(222,8,6)" fg:x="12924" fg:w="255"/><text x="51.3856%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (244 samples, 0.97%)</title><rect x="51.1791%" y="837" width="0.9654%" height="15" fill="rgb(221,114,49)" fg:x="12935" fg:w="244"/><text x="51.4291%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (244 samples, 0.97%)</title><rect x="51.1791%" y="821" width="0.9654%" height="15" fill="rgb(250,140,42)" fg:x="12935" fg:w="244"/><text x="51.4291%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.09%)</title><rect x="52.0535%" y="805" width="0.0910%" height="15" fill="rgb(250,150,27)" fg:x="13156" fg:w="23"/><text x="52.3035%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (23 samples, 0.09%)</title><rect x="52.0535%" y="789" width="0.0910%" height="15" fill="rgb(252,159,3)" fg:x="13156" fg:w="23"/><text x="52.3035%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="52.0535%" y="773" width="0.0910%" height="15" fill="rgb(241,182,3)" fg:x="13156" fg:w="23"/><text x="52.3035%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="52.0772%" y="757" width="0.0673%" height="15" fill="rgb(236,3,9)" fg:x="13162" fg:w="17"/><text x="52.3272%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="52.0772%" y="741" width="0.0673%" height="15" fill="rgb(223,227,51)" fg:x="13162" fg:w="17"/><text x="52.3272%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="52.0772%" y="725" width="0.0673%" height="15" fill="rgb(232,133,30)" fg:x="13162" fg:w="17"/><text x="52.3272%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="52.0851%" y="709" width="0.0593%" height="15" fill="rgb(209,93,27)" fg:x="13164" fg:w="15"/><text x="52.3351%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="52.0851%" y="693" width="0.0593%" height="15" fill="rgb(208,108,34)" fg:x="13164" fg:w="15"/><text x="52.3351%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="52.1326%" y="677" width="0.0119%" height="15" fill="rgb(215,189,13)" fg:x="13176" fg:w="3"/><text x="52.3826%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="52.1326%" y="661" width="0.0119%" height="15" fill="rgb(206,88,23)" fg:x="13176" fg:w="3"/><text x="52.3826%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (1,627 samples, 6.44%)</title><rect x="45.7110%" y="949" width="6.4374%" height="15" fill="rgb(240,173,0)" fg:x="11553" fg:w="1627"/><text x="45.9610%" y="959.50">&lt;rayon_c..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,627 samples, 6.44%)</title><rect x="45.7110%" y="933" width="6.4374%" height="15" fill="rgb(223,106,52)" fg:x="11553" fg:w="1627"/><text x="45.9610%" y="943.50">rayon::i..</text></g><g><title>rayon_core::registry::in_worker (1,595 samples, 6.31%)</title><rect x="45.8376%" y="917" width="6.3108%" height="15" fill="rgb(206,130,16)" fg:x="11585" fg:w="1595"/><text x="46.0876%" y="927.50">rayon_co..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (1,595 samples, 6.31%)</title><rect x="45.8376%" y="901" width="6.3108%" height="15" fill="rgb(220,54,25)" fg:x="11585" fg:w="1595"/><text x="46.0876%" y="911.50">_ZN10ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (256 samples, 1.01%)</title><rect x="51.1356%" y="885" width="1.0129%" height="15" fill="rgb(210,4,38)" fg:x="12924" fg:w="256"/><text x="51.3856%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10,501 samples, 41.55%)</title><rect x="10.6275%" y="1013" width="41.5486%" height="15" fill="rgb(238,94,39)" fg:x="2686" fg:w="10501"/><text x="10.8775%" y="1023.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::registry::in_worker (10,483 samples, 41.48%)</title><rect x="10.6987%" y="997" width="41.4774%" height="15" fill="rgb(234,124,34)" fg:x="2704" fg:w="10483"/><text x="10.9487%" y="1007.50">rayon_core::registry::in_worker</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8,916 samples, 35.28%)</title><rect x="16.8988%" y="981" width="35.2774%" height="15" fill="rgb(221,91,40)" fg:x="4271" fg:w="8916"/><text x="17.1488%" y="991.50">_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1,634 samples, 6.47%)</title><rect x="45.7110%" y="965" width="6.4651%" height="15" fill="rgb(246,53,28)" fg:x="11553" fg:w="1634"/><text x="45.9610%" y="975.50">rayon_co..</text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="52.1564%" y="949" width="0.0198%" height="15" fill="rgb(229,109,7)" fg:x="13182" fg:w="5"/><text x="52.4064%" y="959.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="52.1564%" y="933" width="0.0198%" height="15" fill="rgb(249,117,8)" fg:x="13182" fg:w="5"/><text x="52.4064%" y="943.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="52.1564%" y="917" width="0.0198%" height="15" fill="rgb(210,181,1)" fg:x="13182" fg:w="5"/><text x="52.4064%" y="927.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="52.1564%" y="901" width="0.0198%" height="15" fill="rgb(211,66,1)" fg:x="13182" fg:w="5"/><text x="52.4064%" y="911.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="52.1564%" y="885" width="0.0198%" height="15" fill="rgb(221,90,14)" fg:x="13182" fg:w="5"/><text x="52.4064%" y="895.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.2197%" y="917" width="0.0119%" height="15" fill="rgb(219,222,44)" fg:x="13198" fg:w="3"/><text x="52.4697%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="52.2197%" y="933" width="0.0198%" height="15" fill="rgb(246,34,33)" fg:x="13198" fg:w="5"/><text x="52.4697%" y="943.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="52.2157%" y="949" width="0.0277%" height="15" fill="rgb(227,135,41)" fg:x="13197" fg:w="7"/><text x="52.4657%" y="959.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="52.2632%" y="821" width="0.0158%" height="15" fill="rgb(226,15,14)" fg:x="13209" fg:w="4"/><text x="52.5132%" y="831.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="52.2632%" y="805" width="0.0158%" height="15" fill="rgb(236,148,47)" fg:x="13209" fg:w="4"/><text x="52.5132%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="52.2513%" y="901" width="0.0317%" height="15" fill="rgb(233,162,52)" fg:x="13206" fg:w="8"/><text x="52.5013%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="52.2592%" y="885" width="0.0237%" height="15" fill="rgb(244,35,28)" fg:x="13208" fg:w="6"/><text x="52.5092%" y="895.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="52.2632%" y="869" width="0.0198%" height="15" fill="rgb(205,121,10)" fg:x="13209" fg:w="5"/><text x="52.5132%" y="879.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="52.2632%" y="853" width="0.0198%" height="15" fill="rgb(250,58,18)" fg:x="13209" fg:w="5"/><text x="52.5132%" y="863.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="52.2632%" y="837" width="0.0198%" height="15" fill="rgb(216,37,13)" fg:x="13209" fg:w="5"/><text x="52.5132%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="52.2513%" y="933" width="0.0356%" height="15" fill="rgb(221,215,42)" fg:x="13206" fg:w="9"/><text x="52.5013%" y="943.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="52.2513%" y="917" width="0.0356%" height="15" fill="rgb(217,214,19)" fg:x="13206" fg:w="9"/><text x="52.5013%" y="927.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (4 samples, 0.02%)</title><rect x="52.2909%" y="901" width="0.0158%" height="15" fill="rgb(233,139,13)" fg:x="13216" fg:w="4"/><text x="52.5409%" y="911.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="52.2909%" y="885" width="0.0158%" height="15" fill="rgb(247,168,23)" fg:x="13216" fg:w="4"/><text x="52.5409%" y="895.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="52.2909%" y="869" width="0.0158%" height="15" fill="rgb(207,202,1)" fg:x="13216" fg:w="4"/><text x="52.5409%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (27 samples, 0.11%)</title><rect x="52.2157%" y="965" width="0.1068%" height="15" fill="rgb(220,155,48)" fg:x="13197" fg:w="27"/><text x="52.4657%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.07%)</title><rect x="52.2513%" y="949" width="0.0712%" height="15" fill="rgb(250,43,26)" fg:x="13206" fg:w="18"/><text x="52.5013%" y="959.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (9 samples, 0.04%)</title><rect x="52.2869%" y="933" width="0.0356%" height="15" fill="rgb(212,190,23)" fg:x="13215" fg:w="9"/><text x="52.5369%" y="943.50"></text></g><g><title>_ZN10rayon_core5sleep5Sleep20wake_specific_thread17hd1e277363f658c0fE.llvm.15756283938292969533 (9 samples, 0.04%)</title><rect x="52.2869%" y="917" width="0.0356%" height="15" fill="rgb(216,39,24)" fg:x="13215" fg:w="9"/><text x="52.5369%" y="927.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="52.3067%" y="901" width="0.0158%" height="15" fill="rgb(252,113,16)" fg:x="13220" fg:w="4"/><text x="52.5567%" y="911.50"></text></g><g><title>rayon::slice::quicksort::recurse (32 samples, 0.13%)</title><rect x="52.2078%" y="981" width="0.1266%" height="15" fill="rgb(208,113,19)" fg:x="13195" fg:w="32"/><text x="52.4578%" y="991.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.3225%" y="965" width="0.0119%" height="15" fill="rgb(234,107,25)" fg:x="13224" fg:w="3"/><text x="52.5725%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (38 samples, 0.15%)</title><rect x="52.2078%" y="997" width="0.1504%" height="15" fill="rgb(234,217,51)" fg:x="13195" fg:w="38"/><text x="52.4578%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="52.3384%" y="981" width="0.0198%" height="15" fill="rgb(251,29,42)" fg:x="13228" fg:w="5"/><text x="52.5884%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="52.3384%" y="965" width="0.0198%" height="15" fill="rgb(221,62,51)" fg:x="13228" fg:w="5"/><text x="52.5884%" y="975.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.3384%" y="949" width="0.0198%" height="15" fill="rgb(240,192,43)" fg:x="13228" fg:w="5"/><text x="52.5884%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="52.3463%" y="933" width="0.0119%" height="15" fill="rgb(224,157,47)" fg:x="13230" fg:w="3"/><text x="52.5963%" y="943.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="52.3463%" y="917" width="0.0119%" height="15" fill="rgb(226,84,45)" fg:x="13230" fg:w="3"/><text x="52.5963%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11,575 samples, 45.80%)</title><rect x="6.5680%" y="1029" width="45.7981%" height="15" fill="rgb(208,207,23)" fg:x="1660" fg:w="11575"/><text x="6.8180%" y="1039.50">&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute</text></g><g><title>rayon::slice::quicksort::recurse (48 samples, 0.19%)</title><rect x="52.1761%" y="1013" width="0.1899%" height="15" fill="rgb(253,34,51)" fg:x="13187" fg:w="48"/><text x="52.4261%" y="1023.50"></text></g><g><title>_ZN15crossbeam_epoch8internal6Global11try_advance17hc5c2d2a7bbd69d62E.llvm.5682719666558062417 (3 samples, 0.01%)</title><rect x="52.4175%" y="949" width="0.0119%" height="15" fill="rgb(227,26,34)" fg:x="13248" fg:w="3"/><text x="52.6675%" y="959.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (19 samples, 0.08%)</title><rect x="52.3661%" y="1013" width="0.0752%" height="15" fill="rgb(245,75,19)" fg:x="13235" fg:w="19"/><text x="52.6161%" y="1023.50"></text></g><g><title>crossbeam_deque::deque::Stealer&lt;T&gt;::steal (16 samples, 0.06%)</title><rect x="52.3779%" y="997" width="0.0633%" height="15" fill="rgb(250,191,31)" fg:x="13238" fg:w="16"/><text x="52.6279%" y="1007.50"></text></g><g><title>crossbeam_epoch::default::with_handle (14 samples, 0.06%)</title><rect x="52.3859%" y="981" width="0.0554%" height="15" fill="rgb(224,11,50)" fg:x="13240" fg:w="14"/><text x="52.6359%" y="991.50"></text></g><g><title>crossbeam_epoch::internal::Global::collect (6 samples, 0.02%)</title><rect x="52.4175%" y="965" width="0.0237%" height="15" fill="rgb(231,171,7)" fg:x="13248" fg:w="6"/><text x="52.6675%" y="975.50"></text></g><g><title>crossbeam_epoch::sync::queue::Queue&lt;T&gt;::try_pop_if (3 samples, 0.01%)</title><rect x="52.4294%" y="949" width="0.0119%" height="15" fill="rgb(252,214,10)" fg:x="13251" fg:w="3"/><text x="52.6794%" y="959.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="52.4294%" y="933" width="0.0119%" height="15" fill="rgb(249,45,46)" fg:x="13251" fg:w="3"/><text x="52.6794%" y="943.50"></text></g><g><title>_ZN10rayon_core8registry12WorkerThread9find_work17h465c2510094f8a6dE.llvm.15556414435114607671 (24 samples, 0.09%)</title><rect x="52.3661%" y="1029" width="0.0950%" height="15" fill="rgb(240,173,7)" fg:x="13235" fg:w="24"/><text x="52.6161%" y="1039.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.02%)</title><rect x="52.4610%" y="709" width="0.0237%" height="15" fill="rgb(235,214,13)" fg:x="13259" fg:w="6"/><text x="52.7110%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="52.4689%" y="693" width="0.0158%" height="15" fill="rgb(245,156,8)" fg:x="13261" fg:w="4"/><text x="52.7189%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="52.4610%" y="757" width="0.0277%" height="15" fill="rgb(235,46,12)" fg:x="13259" fg:w="7"/><text x="52.7110%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="52.4610%" y="741" width="0.0277%" height="15" fill="rgb(221,81,14)" fg:x="13259" fg:w="7"/><text x="52.7110%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="52.4610%" y="725" width="0.0277%" height="15" fill="rgb(238,207,9)" fg:x="13259" fg:w="7"/><text x="52.7110%" y="735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="52.4966%" y="581" width="0.0198%" height="15" fill="rgb(224,129,35)" fg:x="13268" fg:w="5"/><text x="52.7466%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="52.5006%" y="565" width="0.0158%" height="15" fill="rgb(243,218,34)" fg:x="13269" fg:w="4"/><text x="52.7506%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="52.4966%" y="613" width="0.0277%" height="15" fill="rgb(220,166,13)" fg:x="13268" fg:w="7"/><text x="52.7466%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="52.4966%" y="597" width="0.0277%" height="15" fill="rgb(227,167,49)" fg:x="13268" fg:w="7"/><text x="52.7466%" y="607.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="52.5243%" y="533" width="0.0356%" height="15" fill="rgb(234,142,12)" fg:x="13275" fg:w="9"/><text x="52.7743%" y="543.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="52.5243%" y="517" width="0.0356%" height="15" fill="rgb(207,100,48)" fg:x="13275" fg:w="9"/><text x="52.7743%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.02%)</title><rect x="52.5362%" y="501" width="0.0237%" height="15" fill="rgb(210,25,14)" fg:x="13278" fg:w="6"/><text x="52.7862%" y="511.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.05%)</title><rect x="52.5243%" y="565" width="0.0475%" height="15" fill="rgb(246,116,27)" fg:x="13275" fg:w="12"/><text x="52.7743%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (12 samples, 0.05%)</title><rect x="52.5243%" y="549" width="0.0475%" height="15" fill="rgb(214,193,42)" fg:x="13275" fg:w="12"/><text x="52.7743%" y="559.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="52.5599%" y="533" width="0.0119%" height="15" fill="rgb(214,122,8)" fg:x="13284" fg:w="3"/><text x="52.8099%" y="543.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (11 samples, 0.04%)</title><rect x="52.5718%" y="485" width="0.0435%" height="15" fill="rgb(244,173,18)" fg:x="13287" fg:w="11"/><text x="52.8218%" y="495.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="52.5797%" y="469" width="0.0356%" height="15" fill="rgb(232,68,19)" fg:x="13289" fg:w="9"/><text x="52.8297%" y="479.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="52.5995%" y="453" width="0.0158%" height="15" fill="rgb(236,224,1)" fg:x="13294" fg:w="4"/><text x="52.8495%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.13%)</title><rect x="52.4966%" y="629" width="0.1306%" height="15" fill="rgb(240,11,8)" fg:x="13268" fg:w="33"/><text x="52.7466%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.10%)</title><rect x="52.5243%" y="613" width="0.1029%" height="15" fill="rgb(244,159,20)" fg:x="13275" fg:w="26"/><text x="52.7743%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (26 samples, 0.10%)</title><rect x="52.5243%" y="597" width="0.1029%" height="15" fill="rgb(240,223,54)" fg:x="13275" fg:w="26"/><text x="52.7743%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.10%)</title><rect x="52.5243%" y="581" width="0.1029%" height="15" fill="rgb(237,146,5)" fg:x="13275" fg:w="26"/><text x="52.7743%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="52.5718%" y="565" width="0.0554%" height="15" fill="rgb(218,221,32)" fg:x="13287" fg:w="14"/><text x="52.8218%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (14 samples, 0.06%)</title><rect x="52.5718%" y="549" width="0.0554%" height="15" fill="rgb(244,96,26)" fg:x="13287" fg:w="14"/><text x="52.8218%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="52.5718%" y="533" width="0.0554%" height="15" fill="rgb(245,184,37)" fg:x="13287" fg:w="14"/><text x="52.8218%" y="543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (14 samples, 0.06%)</title><rect x="52.5718%" y="517" width="0.0554%" height="15" fill="rgb(248,91,47)" fg:x="13287" fg:w="14"/><text x="52.8218%" y="527.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (14 samples, 0.06%)</title><rect x="52.5718%" y="501" width="0.0554%" height="15" fill="rgb(243,199,8)" fg:x="13287" fg:w="14"/><text x="52.8218%" y="511.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="52.6153%" y="485" width="0.0119%" height="15" fill="rgb(249,12,15)" fg:x="13298" fg:w="3"/><text x="52.8653%" y="495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="52.6272%" y="581" width="0.0119%" height="15" fill="rgb(245,97,12)" fg:x="13301" fg:w="3"/><text x="52.8772%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="52.6272%" y="565" width="0.0119%" height="15" fill="rgb(244,61,1)" fg:x="13301" fg:w="3"/><text x="52.8772%" y="575.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="52.6272%" y="549" width="0.0119%" height="15" fill="rgb(222,194,10)" fg:x="13301" fg:w="3"/><text x="52.8772%" y="559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.03%)</title><rect x="52.6391%" y="501" width="0.0317%" height="15" fill="rgb(226,178,8)" fg:x="13304" fg:w="8"/><text x="52.8891%" y="511.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.03%)</title><rect x="52.6391%" y="485" width="0.0317%" height="15" fill="rgb(241,32,34)" fg:x="13304" fg:w="8"/><text x="52.8891%" y="495.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="52.6509%" y="469" width="0.0198%" height="15" fill="rgb(254,26,6)" fg:x="13307" fg:w="5"/><text x="52.9009%" y="479.50"></text></g><g><title>_ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h40cf71c3fa59f199E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="1029" width="0.2176%" height="15" fill="rgb(249,71,11)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="1013" width="0.2176%" height="15" fill="rgb(232,170,27)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="52.4610%" y="997" width="0.2176%" height="15" fill="rgb(214,223,17)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="52.4610%" y="981" width="0.2176%" height="15" fill="rgb(250,18,15)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="965" width="0.2176%" height="15" fill="rgb(212,153,51)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="52.4610%" y="949" width="0.2176%" height="15" fill="rgb(219,194,12)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="52.4610%" y="933" width="0.2176%" height="15" fill="rgb(212,58,17)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="917" width="0.2176%" height="15" fill="rgb(254,5,10)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="52.4610%" y="901" width="0.2176%" height="15" fill="rgb(246,91,7)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="52.4610%" y="885" width="0.2176%" height="15" fill="rgb(218,108,49)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="869" width="0.2176%" height="15" fill="rgb(238,123,20)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="52.4610%" y="853" width="0.2176%" height="15" fill="rgb(231,69,23)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="52.4610%" y="837" width="0.2176%" height="15" fill="rgb(230,209,3)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="821" width="0.2176%" height="15" fill="rgb(231,19,0)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.22%)</title><rect x="52.4610%" y="805" width="0.2176%" height="15" fill="rgb(226,192,25)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (55 samples, 0.22%)</title><rect x="52.4610%" y="789" width="0.2176%" height="15" fill="rgb(223,175,53)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (55 samples, 0.22%)</title><rect x="52.4610%" y="773" width="0.2176%" height="15" fill="rgb(248,35,51)" fg:x="13259" fg:w="55"/><text x="52.7110%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (48 samples, 0.19%)</title><rect x="52.4887%" y="757" width="0.1899%" height="15" fill="rgb(230,37,26)" fg:x="13266" fg:w="48"/><text x="52.7387%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (48 samples, 0.19%)</title><rect x="52.4887%" y="741" width="0.1899%" height="15" fill="rgb(206,120,22)" fg:x="13266" fg:w="48"/><text x="52.7387%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.19%)</title><rect x="52.4887%" y="725" width="0.1899%" height="15" fill="rgb(207,165,28)" fg:x="13266" fg:w="48"/><text x="52.7387%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="52.4966%" y="709" width="0.1820%" height="15" fill="rgb(226,23,46)" fg:x="13268" fg:w="46"/><text x="52.7466%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (46 samples, 0.18%)</title><rect x="52.4966%" y="693" width="0.1820%" height="15" fill="rgb(208,130,44)" fg:x="13268" fg:w="46"/><text x="52.7466%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (46 samples, 0.18%)</title><rect x="52.4966%" y="677" width="0.1820%" height="15" fill="rgb(231,67,8)" fg:x="13268" fg:w="46"/><text x="52.7466%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.18%)</title><rect x="52.4966%" y="661" width="0.1820%" height="15" fill="rgb(205,183,22)" fg:x="13268" fg:w="46"/><text x="52.7466%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (46 samples, 0.18%)</title><rect x="52.4966%" y="645" width="0.1820%" height="15" fill="rgb(224,47,9)" fg:x="13268" fg:w="46"/><text x="52.7466%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.05%)</title><rect x="52.6272%" y="629" width="0.0514%" height="15" fill="rgb(250,183,49)" fg:x="13301" fg:w="13"/><text x="52.8772%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.05%)</title><rect x="52.6272%" y="613" width="0.0514%" height="15" fill="rgb(220,151,39)" fg:x="13301" fg:w="13"/><text x="52.8772%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="52.6272%" y="597" width="0.0514%" height="15" fill="rgb(220,118,20)" fg:x="13301" fg:w="13"/><text x="52.8772%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="52.6391%" y="581" width="0.0396%" height="15" fill="rgb(231,65,51)" fg:x="13304" fg:w="10"/><text x="52.8891%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (10 samples, 0.04%)</title><rect x="52.6391%" y="565" width="0.0396%" height="15" fill="rgb(253,125,37)" fg:x="13304" fg:w="10"/><text x="52.8891%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="52.6391%" y="549" width="0.0396%" height="15" fill="rgb(232,102,6)" fg:x="13304" fg:w="10"/><text x="52.8891%" y="559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (10 samples, 0.04%)</title><rect x="52.6391%" y="533" width="0.0396%" height="15" fill="rgb(251,105,13)" fg:x="13304" fg:w="10"/><text x="52.8891%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (10 samples, 0.04%)</title><rect x="52.6391%" y="517" width="0.0396%" height="15" fill="rgb(222,179,29)" fg:x="13304" fg:w="10"/><text x="52.8891%" y="527.50"></text></g><g><title>core::bool::&lt;impl bool&gt;::then (11 samples, 0.04%)</title><rect x="52.6945%" y="965" width="0.0435%" height="15" fill="rgb(229,180,53)" fg:x="13318" fg:w="11"/><text x="52.9445%" y="975.50"></text></g><g><title>std::sys::unix::futex::futex_wait (142 samples, 0.56%)</title><rect x="52.6945%" y="981" width="0.5618%" height="15" fill="rgb(238,104,13)" fg:x="13318" fg:w="142"/><text x="52.9445%" y="991.50"></text></g><g><title>syscall (131 samples, 0.52%)</title><rect x="52.7380%" y="965" width="0.5183%" height="15" fill="rgb(210,130,5)" fg:x="13329" fg:w="131"/><text x="52.9880%" y="975.50"></text></g><g><title>[libc.so.6] (11,838 samples, 46.84%)</title><rect x="6.4295%" y="1173" width="46.8386%" height="15" fill="rgb(233,87,49)" fg:x="1625" fg:w="11838"/><text x="6.6795%" y="1183.50">[libc.so.6]</text></g><g><title>[libc.so.6] (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1157" width="46.7002%" height="15" fill="rgb(243,34,9)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1167.50">[libc.so.6]</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1141" width="46.7002%" height="15" fill="rgb(235,225,10)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1151.50">std::sys::unix::thread::Thread::new::thread_start</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1125" width="46.7002%" height="15" fill="rgb(212,0,30)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1135.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1109" width="46.7002%" height="15" fill="rgb(211,177,0)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1119.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1093" width="46.7002%" height="15" fill="rgb(225,220,11)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1103.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1077" width="46.7002%" height="15" fill="rgb(215,10,13)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1087.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>rayon_core::registry::ThreadBuilder::run (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1061" width="46.7002%" height="15" fill="rgb(240,177,14)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1071.50">rayon_core::registry::ThreadBuilder::run</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11,803 samples, 46.70%)</title><rect x="6.5680%" y="1045" width="46.7002%" height="15" fill="rgb(243,7,39)" fg:x="1660" fg:w="11803"/><text x="6.8180%" y="1055.50">rayon_core::registry::WorkerThread::wait_until_cold</text></g><g><title>rayon_core::sleep::Sleep::sleep (145 samples, 0.57%)</title><rect x="52.6945%" y="1029" width="0.5737%" height="15" fill="rgb(212,99,0)" fg:x="13318" fg:w="145"/><text x="52.9445%" y="1039.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (145 samples, 0.57%)</title><rect x="52.6945%" y="1013" width="0.5737%" height="15" fill="rgb(225,162,48)" fg:x="13318" fg:w="145"/><text x="52.9445%" y="1023.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (145 samples, 0.57%)</title><rect x="52.6945%" y="997" width="0.5737%" height="15" fill="rgb(246,16,25)" fg:x="13318" fg:w="145"/><text x="52.9445%" y="1007.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (3 samples, 0.01%)</title><rect x="53.2563%" y="981" width="0.0119%" height="15" fill="rgb(220,150,2)" fg:x="13460" fg:w="3"/><text x="53.5063%" y="991.50"></text></g><g><title>core::sync::atomic::AtomicU32::compare_exchange (3 samples, 0.01%)</title><rect x="53.2563%" y="965" width="0.0119%" height="15" fill="rgb(237,113,11)" fg:x="13460" fg:w="3"/><text x="53.5063%" y="975.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (3 samples, 0.01%)</title><rect x="53.2563%" y="949" width="0.0119%" height="15" fill="rgb(236,70,20)" fg:x="13460" fg:w="3"/><text x="53.5063%" y="959.50"></text></g><g><title>&lt;&amp;[u8] as nom::traits::Offset&gt;::offset (7 samples, 0.03%)</title><rect x="53.2682%" y="1157" width="0.0277%" height="15" fill="rgb(234,94,7)" fg:x="13463" fg:w="7"/><text x="53.5182%" y="1167.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeTo&lt;usize&gt;&gt;&gt;::slice (10 samples, 0.04%)</title><rect x="53.2998%" y="1157" width="0.0396%" height="15" fill="rgb(250,221,0)" fg:x="13471" fg:w="10"/><text x="53.5498%" y="1167.50"></text></g><g><title>&lt;(A,B) as nom::branch::Alt&lt;Input,Output,Error&gt;&gt;::choice (3 samples, 0.01%)</title><rect x="53.3394%" y="1157" width="0.0119%" height="15" fill="rgb(245,149,46)" fg:x="13481" fg:w="3"/><text x="53.5894%" y="1167.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (22 samples, 0.09%)</title><rect x="53.3513%" y="1157" width="0.0870%" height="15" fill="rgb(215,37,27)" fg:x="13484" fg:w="22"/><text x="53.6013%" y="1167.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTakeAtPosition&gt;::split_at_position1_complete (12 samples, 0.05%)</title><rect x="53.4383%" y="1157" width="0.0475%" height="15" fill="rgb(232,65,3)" fg:x="13506" fg:w="12"/><text x="53.6883%" y="1167.50"></text></g><g><title>memchr::arch::x86_64::memchr::memrchr_raw::find_avx2 (5 samples, 0.02%)</title><rect x="53.4937%" y="1157" width="0.0198%" height="15" fill="rgb(214,2,16)" fg:x="13520" fg:w="5"/><text x="53.7437%" y="1167.50"></text></g><g><title>[part2-23b854f12cc120ae] (63 samples, 0.25%)</title><rect x="53.2682%" y="1173" width="0.2493%" height="15" fill="rgb(227,131,50)" fg:x="13463" fg:w="63"/><text x="53.5182%" y="1183.50"></text></g><g><title>&lt;&amp;str as nom::traits::FindToken&lt;char&gt;&gt;::find_token (24 samples, 0.09%)</title><rect x="53.5174%" y="1157" width="0.0950%" height="15" fill="rgb(247,131,45)" fg:x="13526" fg:w="24"/><text x="53.7674%" y="1167.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeFrom&lt;usize&gt;&gt;&gt;::slice (4 samples, 0.02%)</title><rect x="53.6124%" y="1157" width="0.0158%" height="15" fill="rgb(215,97,47)" fg:x="13550" fg:w="4"/><text x="53.8624%" y="1167.50"></text></g><g><title>&lt;(A,B) as nom::branch::Alt&lt;Input,Output,Error&gt;&gt;::choice (15 samples, 0.06%)</title><rect x="53.6282%" y="1157" width="0.0593%" height="15" fill="rgb(233,143,12)" fg:x="13554" fg:w="15"/><text x="53.8782%" y="1167.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (17 samples, 0.07%)</title><rect x="53.6876%" y="1157" width="0.0673%" height="15" fill="rgb(222,57,17)" fg:x="13569" fg:w="17"/><text x="53.9376%" y="1167.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (37 samples, 0.15%)</title><rect x="53.7588%" y="1157" width="0.1464%" height="15" fill="rgb(214,119,38)" fg:x="13587" fg:w="37"/><text x="54.0088%" y="1167.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTakeAtPosition&gt;::split_at_position1_complete (25 samples, 0.10%)</title><rect x="53.9052%" y="1157" width="0.0989%" height="15" fill="rgb(217,28,47)" fg:x="13624" fg:w="25"/><text x="54.1552%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.0120%" y="1093" width="0.0119%" height="15" fill="rgb(231,14,52)" fg:x="13651" fg:w="3"/><text x="54.2620%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.0120%" y="1077" width="0.0119%" height="15" fill="rgb(220,158,18)" fg:x="13651" fg:w="3"/><text x="54.2620%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.0120%" y="1061" width="0.0119%" height="15" fill="rgb(222,143,46)" fg:x="13651" fg:w="3"/><text x="54.2620%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="1029" width="0.0158%" height="15" fill="rgb(227,165,5)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="1013" width="0.0158%" height="15" fill="rgb(216,222,49)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="997" width="0.0158%" height="15" fill="rgb(238,73,39)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="1007.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="54.0239%" y="981" width="0.0158%" height="15" fill="rgb(252,115,9)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="965" width="0.0158%" height="15" fill="rgb(238,202,4)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="949" width="0.0158%" height="15" fill="rgb(252,153,44)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="933" width="0.0158%" height="15" fill="rgb(235,128,27)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.0239%" y="917" width="0.0158%" height="15" fill="rgb(221,121,47)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="54.0239%" y="901" width="0.0158%" height="15" fill="rgb(247,211,47)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="885" width="0.0158%" height="15" fill="rgb(252,47,49)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="869" width="0.0158%" height="15" fill="rgb(219,119,53)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="853" width="0.0158%" height="15" fill="rgb(243,165,53)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="837" width="0.0158%" height="15" fill="rgb(230,12,35)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="821" width="0.0158%" height="15" fill="rgb(239,57,49)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="805" width="0.0158%" height="15" fill="rgb(231,154,7)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="54.0239%" y="789" width="0.0158%" height="15" fill="rgb(248,81,34)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="773" width="0.0158%" height="15" fill="rgb(247,9,5)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="757" width="0.0158%" height="15" fill="rgb(228,172,27)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="741" width="0.0158%" height="15" fill="rgb(230,57,44)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="54.0239%" y="725" width="0.0158%" height="15" fill="rgb(249,35,22)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="709" width="0.0158%" height="15" fill="rgb(250,137,27)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="693" width="0.0158%" height="15" fill="rgb(251,57,31)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="677" width="0.0158%" height="15" fill="rgb(238,60,0)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.0239%" y="661" width="0.0158%" height="15" fill="rgb(242,185,39)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="54.0239%" y="645" width="0.0158%" height="15" fill="rgb(240,63,43)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.0239%" y="629" width="0.0158%" height="15" fill="rgb(236,155,6)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.0239%" y="613" width="0.0158%" height="15" fill="rgb(215,11,29)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.0239%" y="597" width="0.0158%" height="15" fill="rgb(228,180,48)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.0239%" y="581" width="0.0158%" height="15" fill="rgb(241,102,12)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="591.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="54.0239%" y="565" width="0.0158%" height="15" fill="rgb(246,213,4)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="575.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="54.0239%" y="549" width="0.0158%" height="15" fill="rgb(218,134,35)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="559.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="54.0239%" y="533" width="0.0158%" height="15" fill="rgb(251,117,35)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="543.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="54.0239%" y="517" width="0.0158%" height="15" fill="rgb(206,156,45)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="527.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="54.0239%" y="501" width="0.0158%" height="15" fill="rgb(218,52,27)" fg:x="13654" fg:w="4"/><text x="54.2739%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="54.0239%" y="1093" width="0.0237%" height="15" fill="rgb(238,83,36)" fg:x="13654" fg:w="6"/><text x="54.2739%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.0239%" y="1077" width="0.0237%" height="15" fill="rgb(218,53,43)" fg:x="13654" fg:w="6"/><text x="54.2739%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.0239%" y="1061" width="0.0237%" height="15" fill="rgb(239,54,39)" fg:x="13654" fg:w="6"/><text x="54.2739%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.0239%" y="1045" width="0.0237%" height="15" fill="rgb(212,198,13)" fg:x="13654" fg:w="6"/><text x="54.2739%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.04%)</title><rect x="54.0081%" y="1157" width="0.0435%" height="15" fill="rgb(234,54,46)" fg:x="13650" fg:w="11"/><text x="54.2581%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.04%)</title><rect x="54.0081%" y="1141" width="0.0435%" height="15" fill="rgb(217,120,7)" fg:x="13650" fg:w="11"/><text x="54.2581%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.04%)</title><rect x="54.0081%" y="1125" width="0.0435%" height="15" fill="rgb(246,39,15)" fg:x="13650" fg:w="11"/><text x="54.2581%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="54.0120%" y="1109" width="0.0396%" height="15" fill="rgb(242,143,31)" fg:x="13651" fg:w="10"/><text x="54.2620%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="54.1149%" y="741" width="0.0317%" height="15" fill="rgb(252,60,24)" fg:x="13677" fg:w="8"/><text x="54.3649%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="54.1149%" y="725" width="0.0317%" height="15" fill="rgb(249,220,7)" fg:x="13677" fg:w="8"/><text x="54.3649%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="54.1149%" y="709" width="0.0317%" height="15" fill="rgb(236,67,13)" fg:x="13677" fg:w="8"/><text x="54.3649%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="54.1189%" y="693" width="0.0277%" height="15" fill="rgb(210,62,39)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="54.1189%" y="677" width="0.0277%" height="15" fill="rgb(219,122,53)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="54.1189%" y="661" width="0.0277%" height="15" fill="rgb(218,87,25)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="54.1189%" y="645" width="0.0277%" height="15" fill="rgb(234,179,48)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="54.1189%" y="629" width="0.0277%" height="15" fill="rgb(248,90,0)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="54.1189%" y="613" width="0.0277%" height="15" fill="rgb(207,228,37)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="623.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="54.1189%" y="597" width="0.0277%" height="15" fill="rgb(235,214,15)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="54.1189%" y="581" width="0.0277%" height="15" fill="rgb(210,144,39)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="591.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="54.1189%" y="565" width="0.0277%" height="15" fill="rgb(222,67,41)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="575.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="54.1189%" y="549" width="0.0277%" height="15" fill="rgb(205,35,37)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="54.1189%" y="533" width="0.0277%" height="15" fill="rgb(216,125,40)" fg:x="13678" fg:w="7"/><text x="54.3689%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.05%)</title><rect x="54.1149%" y="789" width="0.0475%" height="15" fill="rgb(228,227,20)" fg:x="13677" fg:w="12"/><text x="54.3649%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.05%)</title><rect x="54.1149%" y="773" width="0.0475%" height="15" fill="rgb(242,173,45)" fg:x="13677" fg:w="12"/><text x="54.3649%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.05%)</title><rect x="54.1149%" y="757" width="0.0475%" height="15" fill="rgb(215,79,24)" fg:x="13677" fg:w="12"/><text x="54.3649%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="54.1466%" y="741" width="0.0158%" height="15" fill="rgb(238,164,38)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.1466%" y="725" width="0.0158%" height="15" fill="rgb(245,196,38)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.1466%" y="709" width="0.0158%" height="15" fill="rgb(231,217,29)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.1466%" y="693" width="0.0158%" height="15" fill="rgb(245,6,4)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.1466%" y="677" width="0.0158%" height="15" fill="rgb(214,76,49)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.1466%" y="661" width="0.0158%" height="15" fill="rgb(205,96,12)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.1466%" y="645" width="0.0158%" height="15" fill="rgb(243,131,4)" fg:x="13685" fg:w="4"/><text x="54.3966%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="54.1149%" y="837" width="0.0593%" height="15" fill="rgb(214,114,4)" fg:x="13677" fg:w="15"/><text x="54.3649%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="54.1149%" y="821" width="0.0593%" height="15" fill="rgb(234,215,15)" fg:x="13677" fg:w="15"/><text x="54.3649%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="54.1149%" y="805" width="0.0593%" height="15" fill="rgb(250,216,45)" fg:x="13677" fg:w="15"/><text x="54.3649%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="54.1624%" y="789" width="0.0119%" height="15" fill="rgb(236,128,4)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.1624%" y="773" width="0.0119%" height="15" fill="rgb(234,50,33)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.1624%" y="757" width="0.0119%" height="15" fill="rgb(253,131,37)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.1624%" y="741" width="0.0119%" height="15" fill="rgb(218,55,27)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.1624%" y="725" width="0.0119%" height="15" fill="rgb(241,220,28)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.1624%" y="709" width="0.0119%" height="15" fill="rgb(241,90,48)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.1624%" y="693" width="0.0119%" height="15" fill="rgb(216,43,37)" fg:x="13689" fg:w="3"/><text x="54.4124%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="54.1149%" y="965" width="0.0673%" height="15" fill="rgb(207,173,9)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="54.1149%" y="949" width="0.0673%" height="15" fill="rgb(240,126,30)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="54.1149%" y="933" width="0.0673%" height="15" fill="rgb(228,178,53)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.07%)</title><rect x="54.1149%" y="917" width="0.0673%" height="15" fill="rgb(217,33,4)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.07%)</title><rect x="54.1149%" y="901" width="0.0673%" height="15" fill="rgb(206,124,34)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.07%)</title><rect x="54.1149%" y="885" width="0.0673%" height="15" fill="rgb(208,122,53)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.07%)</title><rect x="54.1149%" y="869" width="0.0673%" height="15" fill="rgb(215,202,26)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (17 samples, 0.07%)</title><rect x="54.1149%" y="853" width="0.0673%" height="15" fill="rgb(232,198,31)" fg:x="13677" fg:w="17"/><text x="54.3649%" y="863.50"></text></g><g><title>[libc.so.6] (34 samples, 0.13%)</title><rect x="54.0516%" y="1157" width="0.1345%" height="15" fill="rgb(222,23,35)" fg:x="13661" fg:w="34"/><text x="54.3016%" y="1167.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (18 samples, 0.07%)</title><rect x="54.1149%" y="1141" width="0.0712%" height="15" fill="rgb(242,27,53)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1151.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (18 samples, 0.07%)</title><rect x="54.1149%" y="1125" width="0.0712%" height="15" fill="rgb(210,216,42)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1135.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (18 samples, 0.07%)</title><rect x="54.1149%" y="1109" width="0.0712%" height="15" fill="rgb(234,39,38)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1119.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (18 samples, 0.07%)</title><rect x="54.1149%" y="1093" width="0.0712%" height="15" fill="rgb(235,126,54)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1103.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (18 samples, 0.07%)</title><rect x="54.1149%" y="1077" width="0.0712%" height="15" fill="rgb(235,150,33)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1087.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (18 samples, 0.07%)</title><rect x="54.1149%" y="1061" width="0.0712%" height="15" fill="rgb(249,49,53)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.07%)</title><rect x="54.1149%" y="1045" width="0.0712%" height="15" fill="rgb(238,60,50)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.07%)</title><rect x="54.1149%" y="1029" width="0.0712%" height="15" fill="rgb(210,5,2)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.07%)</title><rect x="54.1149%" y="1013" width="0.0712%" height="15" fill="rgb(214,207,24)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.07%)</title><rect x="54.1149%" y="997" width="0.0712%" height="15" fill="rgb(228,173,2)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (18 samples, 0.07%)</title><rect x="54.1149%" y="981" width="0.0712%" height="15" fill="rgb(244,26,8)" fg:x="13677" fg:w="18"/><text x="54.3649%" y="991.50"></text></g><g><title>[libm.so.6] (165 samples, 0.65%)</title><rect x="54.1861%" y="1157" width="0.6528%" height="15" fill="rgb(249,153,35)" fg:x="13695" fg:w="165"/><text x="54.4361%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.8429%" y="645" width="0.0119%" height="15" fill="rgb(221,215,40)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.8429%" y="629" width="0.0119%" height="15" fill="rgb(238,106,35)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="54.8429%" y="613" width="0.0119%" height="15" fill="rgb(207,195,21)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.8429%" y="597" width="0.0119%" height="15" fill="rgb(205,43,29)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.8429%" y="581" width="0.0119%" height="15" fill="rgb(236,35,21)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="54.8429%" y="565" width="0.0119%" height="15" fill="rgb(244,74,8)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.8429%" y="549" width="0.0119%" height="15" fill="rgb(241,229,7)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="54.8429%" y="533" width="0.0119%" height="15" fill="rgb(212,223,25)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="54.8429%" y="517" width="0.0119%" height="15" fill="rgb(234,58,53)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="527.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="54.8429%" y="501" width="0.0119%" height="15" fill="rgb(244,36,1)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="511.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="54.8429%" y="485" width="0.0119%" height="15" fill="rgb(222,40,54)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="54.8429%" y="469" width="0.0119%" height="15" fill="rgb(210,207,39)" fg:x="13861" fg:w="3"/><text x="55.0929%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="1093" width="0.0158%" height="15" fill="rgb(234,52,14)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="1077" width="0.0158%" height="15" fill="rgb(239,108,46)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="1061" width="0.0158%" height="15" fill="rgb(252,223,5)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="1045" width="0.0158%" height="15" fill="rgb(227,181,11)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="1029" width="0.0158%" height="15" fill="rgb(248,126,40)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="1013" width="0.0158%" height="15" fill="rgb(243,1,18)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.8429%" y="997" width="0.0158%" height="15" fill="rgb(214,145,23)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="54.8429%" y="981" width="0.0158%" height="15" fill="rgb(241,218,11)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="965" width="0.0158%" height="15" fill="rgb(214,219,24)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="949" width="0.0158%" height="15" fill="rgb(235,32,7)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="933" width="0.0158%" height="15" fill="rgb(227,121,28)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="917" width="0.0158%" height="15" fill="rgb(216,129,49)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="901" width="0.0158%" height="15" fill="rgb(207,194,50)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="885" width="0.0158%" height="15" fill="rgb(207,4,18)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="869" width="0.0158%" height="15" fill="rgb(213,50,30)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="853" width="0.0158%" height="15" fill="rgb(208,77,22)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="837" width="0.0158%" height="15" fill="rgb(244,204,34)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="54.8429%" y="821" width="0.0158%" height="15" fill="rgb(230,20,17)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="54.8429%" y="805" width="0.0158%" height="15" fill="rgb(237,83,15)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="789" width="0.0158%" height="15" fill="rgb(221,109,25)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="773" width="0.0158%" height="15" fill="rgb(205,194,52)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="757" width="0.0158%" height="15" fill="rgb(244,173,54)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="741" width="0.0158%" height="15" fill="rgb(227,181,18)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="725" width="0.0158%" height="15" fill="rgb(238,36,30)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="709" width="0.0158%" height="15" fill="rgb(254,85,0)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.8429%" y="693" width="0.0158%" height="15" fill="rgb(247,63,33)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.8429%" y="677" width="0.0158%" height="15" fill="rgb(220,7,54)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (4 samples, 0.02%)</title><rect x="54.8429%" y="661" width="0.0158%" height="15" fill="rgb(238,227,21)" fg:x="13861" fg:w="4"/><text x="55.0929%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (6 samples, 0.02%)</title><rect x="54.8429%" y="1157" width="0.0237%" height="15" fill="rgb(237,29,31)" fg:x="13861" fg:w="6"/><text x="55.0929%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8429%" y="1141" width="0.0237%" height="15" fill="rgb(211,21,50)" fg:x="13861" fg:w="6"/><text x="55.0929%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8429%" y="1125" width="0.0237%" height="15" fill="rgb(239,119,2)" fg:x="13861" fg:w="6"/><text x="55.0929%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (6 samples, 0.02%)</title><rect x="54.8429%" y="1109" width="0.0237%" height="15" fill="rgb(250,2,39)" fg:x="13861" fg:w="6"/><text x="55.0929%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="1093" width="0.0237%" height="15" fill="rgb(244,46,53)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="1077" width="0.0237%" height="15" fill="rgb(209,21,19)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="1061" width="0.0237%" height="15" fill="rgb(236,145,4)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="1045" width="0.0237%" height="15" fill="rgb(220,133,36)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="1029" width="0.0237%" height="15" fill="rgb(244,18,3)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="1013" width="0.0237%" height="15" fill="rgb(232,171,48)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="54.8667%" y="997" width="0.0237%" height="15" fill="rgb(223,223,53)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="54.8667%" y="981" width="0.0237%" height="15" fill="rgb(246,92,13)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="965" width="0.0237%" height="15" fill="rgb(229,171,10)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="949" width="0.0237%" height="15" fill="rgb(213,131,26)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="933" width="0.0237%" height="15" fill="rgb(242,87,54)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="917" width="0.0237%" height="15" fill="rgb(237,21,35)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="901" width="0.0237%" height="15" fill="rgb(253,13,47)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="885" width="0.0237%" height="15" fill="rgb(215,122,49)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="869" width="0.0237%" height="15" fill="rgb(209,179,30)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="853" width="0.0237%" height="15" fill="rgb(235,100,24)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="837" width="0.0237%" height="15" fill="rgb(209,67,24)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="54.8667%" y="821" width="0.0237%" height="15" fill="rgb(206,74,32)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="54.8667%" y="805" width="0.0237%" height="15" fill="rgb(212,45,25)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="54.8667%" y="789" width="0.0237%" height="15" fill="rgb(239,26,3)" fg:x="13867" fg:w="6"/><text x="55.1167%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="54.8706%" y="773" width="0.0198%" height="15" fill="rgb(218,36,15)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="54.8706%" y="757" width="0.0198%" height="15" fill="rgb(206,108,24)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="54.8706%" y="741" width="0.0198%" height="15" fill="rgb(234,204,42)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="54.8706%" y="725" width="0.0198%" height="15" fill="rgb(229,2,11)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="54.8706%" y="709" width="0.0198%" height="15" fill="rgb(221,20,48)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="54.8706%" y="693" width="0.0198%" height="15" fill="rgb(244,164,10)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="703.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="54.8706%" y="677" width="0.0198%" height="15" fill="rgb(243,229,2)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="54.8706%" y="661" width="0.0198%" height="15" fill="rgb(232,131,37)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="54.8706%" y="645" width="0.0198%" height="15" fill="rgb(217,156,11)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="54.8706%" y="629" width="0.0198%" height="15" fill="rgb(239,99,48)" fg:x="13868" fg:w="5"/><text x="55.1206%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.8904%" y="805" width="0.0119%" height="15" fill="rgb(231,209,9)" fg:x="13873" fg:w="3"/><text x="55.1404%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.8904%" y="789" width="0.0119%" height="15" fill="rgb(254,97,27)" fg:x="13873" fg:w="3"/><text x="55.1404%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.8904%" y="773" width="0.0119%" height="15" fill="rgb(223,151,38)" fg:x="13873" fg:w="3"/><text x="55.1404%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="54.8904%" y="853" width="0.0277%" height="15" fill="rgb(219,206,35)" fg:x="13873" fg:w="7"/><text x="55.1404%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="54.8904%" y="837" width="0.0277%" height="15" fill="rgb(216,130,31)" fg:x="13873" fg:w="7"/><text x="55.1404%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="54.8904%" y="821" width="0.0277%" height="15" fill="rgb(251,97,34)" fg:x="13873" fg:w="7"/><text x="55.1404%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="54.9023%" y="805" width="0.0158%" height="15" fill="rgb(246,159,47)" fg:x="13876" fg:w="4"/><text x="55.1523%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="54.9023%" y="789" width="0.0158%" height="15" fill="rgb(232,87,10)" fg:x="13876" fg:w="4"/><text x="55.1523%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="54.9023%" y="773" width="0.0158%" height="15" fill="rgb(249,1,37)" fg:x="13876" fg:w="4"/><text x="55.1523%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="54.9023%" y="757" width="0.0158%" height="15" fill="rgb(239,135,14)" fg:x="13876" fg:w="4"/><text x="55.1523%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="54.8904%" y="1029" width="0.0356%" height="15" fill="rgb(253,116,46)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="54.8904%" y="1013" width="0.0356%" height="15" fill="rgb(222,217,37)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="54.8904%" y="997" width="0.0356%" height="15" fill="rgb(252,96,8)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="54.8904%" y="981" width="0.0356%" height="15" fill="rgb(254,103,41)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="54.8904%" y="965" width="0.0356%" height="15" fill="rgb(218,213,19)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="54.8904%" y="949" width="0.0356%" height="15" fill="rgb(253,95,21)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="54.8904%" y="933" width="0.0356%" height="15" fill="rgb(229,26,28)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="54.8904%" y="917" width="0.0356%" height="15" fill="rgb(230,129,16)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="54.8904%" y="901" width="0.0356%" height="15" fill="rgb(236,126,17)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="54.8904%" y="885" width="0.0356%" height="15" fill="rgb(209,33,33)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="54.8904%" y="869" width="0.0356%" height="15" fill="rgb(227,85,29)" fg:x="13873" fg:w="9"/><text x="55.1404%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.06%)</title><rect x="54.8667%" y="1141" width="0.0633%" height="15" fill="rgb(241,53,46)" fg:x="13867" fg:w="16"/><text x="55.1167%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.06%)</title><rect x="54.8667%" y="1125" width="0.0633%" height="15" fill="rgb(228,167,53)" fg:x="13867" fg:w="16"/><text x="55.1167%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (16 samples, 0.06%)</title><rect x="54.8667%" y="1109" width="0.0633%" height="15" fill="rgb(238,195,45)" fg:x="13867" fg:w="16"/><text x="55.1167%" y="1119.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.04%)</title><rect x="54.8904%" y="1093" width="0.0396%" height="15" fill="rgb(252,124,45)" fg:x="13873" fg:w="10"/><text x="55.1404%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="54.8904%" y="1077" width="0.0396%" height="15" fill="rgb(251,38,35)" fg:x="13873" fg:w="10"/><text x="55.1404%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="54.8904%" y="1061" width="0.0396%" height="15" fill="rgb(227,33,2)" fg:x="13873" fg:w="10"/><text x="55.1404%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="54.8904%" y="1045" width="0.0396%" height="15" fill="rgb(223,157,46)" fg:x="13873" fg:w="10"/><text x="55.1404%" y="1055.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="54.9300%" y="1141" width="0.0119%" height="15" fill="rgb(222,78,41)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.9300%" y="1125" width="0.0119%" height="15" fill="rgb(248,176,11)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.9300%" y="1109" width="0.0119%" height="15" fill="rgb(241,221,18)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1119.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.9300%" y="1093" width="0.0119%" height="15" fill="rgb(218,85,22)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.9300%" y="1077" width="0.0119%" height="15" fill="rgb(222,223,7)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.9300%" y="1061" width="0.0119%" height="15" fill="rgb(254,59,39)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.9300%" y="1045" width="0.0119%" height="15" fill="rgb(247,100,27)" fg:x="13883" fg:w="3"/><text x="55.1800%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (22 samples, 0.09%)</title><rect x="54.8667%" y="1157" width="0.0870%" height="15" fill="rgb(237,207,10)" fg:x="13867" fg:w="22"/><text x="55.1167%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="54.9418%" y="1141" width="0.0119%" height="15" fill="rgb(220,121,28)" fg:x="13886" fg:w="3"/><text x="55.1918%" y="1151.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="54.9418%" y="1125" width="0.0119%" height="15" fill="rgb(213,223,20)" fg:x="13886" fg:w="3"/><text x="55.1918%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="54.9418%" y="1109" width="0.0119%" height="15" fill="rgb(205,121,27)" fg:x="13886" fg:w="3"/><text x="55.1918%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="54.9418%" y="1093" width="0.0119%" height="15" fill="rgb(253,24,53)" fg:x="13886" fg:w="3"/><text x="55.1918%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="54.9418%" y="1077" width="0.0119%" height="15" fill="rgb(224,224,47)" fg:x="13886" fg:w="3"/><text x="55.1918%" y="1087.50"></text></g><g><title>cfree (13 samples, 0.05%)</title><rect x="54.9735%" y="1157" width="0.0514%" height="15" fill="rgb(250,125,36)" fg:x="13894" fg:w="13"/><text x="55.2235%" y="1167.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="55.0249%" y="1045" width="0.0119%" height="15" fill="rgb(240,144,38)" fg:x="13907" fg:w="3"/><text x="55.2749%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="55.0249%" y="1093" width="0.0237%" height="15" fill="rgb(250,15,50)" fg:x="13907" fg:w="6"/><text x="55.2749%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="55.0249%" y="1077" width="0.0237%" height="15" fill="rgb(210,24,26)" fg:x="13907" fg:w="6"/><text x="55.2749%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="55.0249%" y="1061" width="0.0237%" height="15" fill="rgb(234,53,53)" fg:x="13907" fg:w="6"/><text x="55.2749%" y="1071.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (8 samples, 0.03%)</title><rect x="55.0249%" y="1157" width="0.0317%" height="15" fill="rgb(208,108,28)" fg:x="13907" fg:w="8"/><text x="55.2749%" y="1167.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (8 samples, 0.03%)</title><rect x="55.0249%" y="1141" width="0.0317%" height="15" fill="rgb(227,143,7)" fg:x="13907" fg:w="8"/><text x="55.2749%" y="1151.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (8 samples, 0.03%)</title><rect x="55.0249%" y="1125" width="0.0317%" height="15" fill="rgb(238,189,38)" fg:x="13907" fg:w="8"/><text x="55.2749%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="55.0249%" y="1109" width="0.0317%" height="15" fill="rgb(222,69,15)" fg:x="13907" fg:w="8"/><text x="55.2749%" y="1119.50"></text></g><g><title>day_16::parse_grid (6 samples, 0.02%)</title><rect x="55.0764%" y="1157" width="0.0237%" height="15" fill="rgb(213,169,7)" fg:x="13920" fg:w="6"/><text x="55.3264%" y="1167.50"></text></g><g><title>exp (328 samples, 1.30%)</title><rect x="55.1080%" y="1157" width="1.2978%" height="15" fill="rgb(251,219,4)" fg:x="13928" fg:w="328"/><text x="55.3580%" y="1167.50"></text></g><g><title>malloc (14 samples, 0.06%)</title><rect x="56.4058%" y="1157" width="0.0554%" height="15" fill="rgb(241,55,40)" fg:x="14256" fg:w="14"/><text x="56.6558%" y="1167.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw (3 samples, 0.01%)</title><rect x="56.4612%" y="1157" width="0.0119%" height="15" fill="rgb(243,57,30)" fg:x="14270" fg:w="3"/><text x="56.7112%" y="1167.50"></text></g><g><title>oorandom::Rand64::rand_range (67 samples, 0.27%)</title><rect x="56.4731%" y="1157" width="0.2651%" height="15" fill="rgb(234,50,30)" fg:x="14273" fg:w="67"/><text x="56.7231%" y="1167.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="56.7421%" y="469" width="0.0198%" height="15" fill="rgb(239,23,42)" fg:x="14341" fg:w="5"/><text x="56.9921%" y="479.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="56.7461%" y="453" width="0.0158%" height="15" fill="rgb(217,38,19)" fg:x="14342" fg:w="4"/><text x="56.9961%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.7421%" y="613" width="0.0317%" height="15" fill="rgb(215,179,16)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.7421%" y="597" width="0.0317%" height="15" fill="rgb(254,21,37)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (8 samples, 0.03%)</title><rect x="56.7421%" y="581" width="0.0317%" height="15" fill="rgb(219,207,48)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.7421%" y="565" width="0.0317%" height="15" fill="rgb(227,225,41)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.7421%" y="549" width="0.0317%" height="15" fill="rgb(223,130,1)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (8 samples, 0.03%)</title><rect x="56.7421%" y="533" width="0.0317%" height="15" fill="rgb(249,54,42)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.7421%" y="517" width="0.0317%" height="15" fill="rgb(248,69,25)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.03%)</title><rect x="56.7421%" y="501" width="0.0317%" height="15" fill="rgb(234,21,32)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="511.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.03%)</title><rect x="56.7421%" y="485" width="0.0317%" height="15" fill="rgb(252,136,6)" fg:x="14341" fg:w="8"/><text x="56.9921%" y="495.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="56.7619%" y="469" width="0.0119%" height="15" fill="rgb(245,87,12)" fg:x="14346" fg:w="3"/><text x="57.0119%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="1013" width="0.0356%" height="15" fill="rgb(208,12,15)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="997" width="0.0356%" height="15" fill="rgb(250,98,2)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="981" width="0.0356%" height="15" fill="rgb(205,213,15)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="56.7421%" y="965" width="0.0356%" height="15" fill="rgb(248,192,44)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="56.7421%" y="949" width="0.0356%" height="15" fill="rgb(221,89,17)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="933" width="0.0356%" height="15" fill="rgb(209,55,3)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="917" width="0.0356%" height="15" fill="rgb(247,23,45)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="901" width="0.0356%" height="15" fill="rgb(235,152,23)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="885" width="0.0356%" height="15" fill="rgb(244,63,13)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="869" width="0.0356%" height="15" fill="rgb(227,30,37)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="853" width="0.0356%" height="15" fill="rgb(224,49,42)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="837" width="0.0356%" height="15" fill="rgb(218,129,5)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="821" width="0.0356%" height="15" fill="rgb(240,199,54)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="805" width="0.0356%" height="15" fill="rgb(234,31,13)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="56.7421%" y="789" width="0.0356%" height="15" fill="rgb(219,73,54)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="56.7421%" y="773" width="0.0356%" height="15" fill="rgb(251,162,10)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="757" width="0.0356%" height="15" fill="rgb(240,138,47)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="741" width="0.0356%" height="15" fill="rgb(216,138,26)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="725" width="0.0356%" height="15" fill="rgb(243,17,35)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="709" width="0.0356%" height="15" fill="rgb(241,60,18)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="693" width="0.0356%" height="15" fill="rgb(234,2,44)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="677" width="0.0356%" height="15" fill="rgb(225,225,33)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="56.7421%" y="661" width="0.0356%" height="15" fill="rgb(234,50,31)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="56.7421%" y="645" width="0.0356%" height="15" fill="rgb(249,6,25)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (9 samples, 0.04%)</title><rect x="56.7421%" y="629" width="0.0356%" height="15" fill="rgb(241,5,17)" fg:x="14341" fg:w="9"/><text x="56.9921%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="56.7421%" y="1061" width="0.0396%" height="15" fill="rgb(207,116,10)" fg:x="14341" fg:w="10"/><text x="56.9921%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="56.7421%" y="1045" width="0.0396%" height="15" fill="rgb(222,128,18)" fg:x="14341" fg:w="10"/><text x="56.9921%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (10 samples, 0.04%)</title><rect x="56.7421%" y="1029" width="0.0396%" height="15" fill="rgb(229,109,25)" fg:x="14341" fg:w="10"/><text x="56.9921%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (13 samples, 0.05%)</title><rect x="56.7421%" y="1125" width="0.0514%" height="15" fill="rgb(222,102,25)" fg:x="14341" fg:w="13"/><text x="56.9921%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.05%)</title><rect x="56.7421%" y="1109" width="0.0514%" height="15" fill="rgb(239,211,5)" fg:x="14341" fg:w="13"/><text x="56.9921%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.05%)</title><rect x="56.7421%" y="1093" width="0.0514%" height="15" fill="rgb(223,136,26)" fg:x="14341" fg:w="13"/><text x="56.9921%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (13 samples, 0.05%)</title><rect x="56.7421%" y="1077" width="0.0514%" height="15" fill="rgb(227,30,15)" fg:x="14341" fg:w="13"/><text x="56.9921%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.7817%" y="1061" width="0.0119%" height="15" fill="rgb(247,76,4)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="1071.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="56.7817%" y="1045" width="0.0119%" height="15" fill="rgb(245,38,48)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="1029" width="0.0119%" height="15" fill="rgb(210,220,14)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="1013" width="0.0119%" height="15" fill="rgb(224,60,51)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="997" width="0.0119%" height="15" fill="rgb(212,133,49)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="981" width="0.0119%" height="15" fill="rgb(231,39,22)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="965" width="0.0119%" height="15" fill="rgb(236,173,22)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="949" width="0.0119%" height="15" fill="rgb(210,70,0)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="933" width="0.0119%" height="15" fill="rgb(215,170,11)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="917" width="0.0119%" height="15" fill="rgb(220,154,28)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="901" width="0.0119%" height="15" fill="rgb(240,160,41)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.7817%" y="885" width="0.0119%" height="15" fill="rgb(243,215,41)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="56.7817%" y="869" width="0.0119%" height="15" fill="rgb(214,208,31)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="853" width="0.0119%" height="15" fill="rgb(247,57,22)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="837" width="0.0119%" height="15" fill="rgb(228,73,52)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="821" width="0.0119%" height="15" fill="rgb(252,60,9)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="805" width="0.0119%" height="15" fill="rgb(233,9,51)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="789" width="0.0119%" height="15" fill="rgb(223,67,14)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="773" width="0.0119%" height="15" fill="rgb(222,86,2)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="757" width="0.0119%" height="15" fill="rgb(243,58,54)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="741" width="0.0119%" height="15" fill="rgb(210,200,39)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="725" width="0.0119%" height="15" fill="rgb(238,135,9)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.7817%" y="709" width="0.0119%" height="15" fill="rgb(232,179,7)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="56.7817%" y="693" width="0.0119%" height="15" fill="rgb(245,65,41)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="677" width="0.0119%" height="15" fill="rgb(227,43,8)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="661" width="0.0119%" height="15" fill="rgb(235,91,14)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="645" width="0.0119%" height="15" fill="rgb(235,219,31)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.7817%" y="629" width="0.0119%" height="15" fill="rgb(227,121,25)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="56.7817%" y="613" width="0.0119%" height="15" fill="rgb(254,129,24)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="597" width="0.0119%" height="15" fill="rgb(226,144,49)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="581" width="0.0119%" height="15" fill="rgb(214,187,32)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="565" width="0.0119%" height="15" fill="rgb(243,129,46)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="56.7817%" y="549" width="0.0119%" height="15" fill="rgb(221,185,35)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="56.7817%" y="533" width="0.0119%" height="15" fill="rgb(205,0,32)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.7817%" y="517" width="0.0119%" height="15" fill="rgb(229,179,12)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.7817%" y="501" width="0.0119%" height="15" fill="rgb(252,107,19)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="56.7817%" y="485" width="0.0119%" height="15" fill="rgb(220,95,27)" fg:x="14351" fg:w="3"/><text x="57.0317%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.8015%" y="869" width="0.0119%" height="15" fill="rgb(240,113,40)" fg:x="14356" fg:w="3"/><text x="57.0515%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.8015%" y="853" width="0.0119%" height="15" fill="rgb(208,4,43)" fg:x="14356" fg:w="3"/><text x="57.0515%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="56.8015%" y="837" width="0.0119%" height="15" fill="rgb(247,189,30)" fg:x="14356" fg:w="3"/><text x="57.0515%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8015%" y="917" width="0.0198%" height="15" fill="rgb(231,157,17)" fg:x="14356" fg:w="5"/><text x="57.0515%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8015%" y="901" width="0.0198%" height="15" fill="rgb(224,139,6)" fg:x="14356" fg:w="5"/><text x="57.0515%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8015%" y="885" width="0.0198%" height="15" fill="rgb(223,83,16)" fg:x="14356" fg:w="5"/><text x="57.0515%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.02%)</title><rect x="56.8015%" y="1061" width="0.0237%" height="15" fill="rgb(232,211,20)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="56.8015%" y="1045" width="0.0237%" height="15" fill="rgb(225,203,35)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="56.8015%" y="1029" width="0.0237%" height="15" fill="rgb(215,211,44)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="56.8015%" y="1013" width="0.0237%" height="15" fill="rgb(248,213,26)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.02%)</title><rect x="56.8015%" y="997" width="0.0237%" height="15" fill="rgb(214,23,52)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="56.8015%" y="981" width="0.0237%" height="15" fill="rgb(225,173,50)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="56.8015%" y="965" width="0.0237%" height="15" fill="rgb(206,150,22)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="56.8015%" y="949" width="0.0237%" height="15" fill="rgb(239,64,23)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="56.8015%" y="933" width="0.0237%" height="15" fill="rgb(242,50,38)" fg:x="14356" fg:w="6"/><text x="57.0515%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="56.8252%" y="981" width="0.0198%" height="15" fill="rgb(217,91,15)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="965" width="0.0198%" height="15" fill="rgb(230,172,6)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="949" width="0.0198%" height="15" fill="rgb(221,98,26)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="933" width="0.0198%" height="15" fill="rgb(227,210,45)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.8252%" y="917" width="0.0198%" height="15" fill="rgb(206,8,30)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="56.8252%" y="901" width="0.0198%" height="15" fill="rgb(241,219,17)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="885" width="0.0198%" height="15" fill="rgb(247,121,29)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="869" width="0.0198%" height="15" fill="rgb(219,169,49)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="853" width="0.0198%" height="15" fill="rgb(253,49,49)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.8252%" y="837" width="0.0198%" height="15" fill="rgb(217,178,3)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="56.8252%" y="821" width="0.0198%" height="15" fill="rgb(234,73,37)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="805" width="0.0198%" height="15" fill="rgb(250,98,22)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="789" width="0.0198%" height="15" fill="rgb(220,108,37)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="773" width="0.0198%" height="15" fill="rgb(225,168,10)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="56.8252%" y="757" width="0.0198%" height="15" fill="rgb(247,215,21)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="741" width="0.0198%" height="15" fill="rgb(253,189,31)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="725" width="0.0198%" height="15" fill="rgb(241,54,22)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="709" width="0.0198%" height="15" fill="rgb(211,87,4)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="56.8252%" y="693" width="0.0198%" height="15" fill="rgb(245,112,24)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="677" width="0.0198%" height="15" fill="rgb(235,190,41)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="661" width="0.0198%" height="15" fill="rgb(214,89,8)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="645" width="0.0198%" height="15" fill="rgb(249,155,35)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.8252%" y="629" width="0.0198%" height="15" fill="rgb(249,88,26)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="56.8252%" y="613" width="0.0198%" height="15" fill="rgb(232,56,8)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.8252%" y="597" width="0.0198%" height="15" fill="rgb(240,95,3)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.8252%" y="581" width="0.0198%" height="15" fill="rgb(222,44,28)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.8252%" y="565" width="0.0198%" height="15" fill="rgb(234,16,30)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.8252%" y="549" width="0.0198%" height="15" fill="rgb(223,26,17)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="559.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="56.8252%" y="533" width="0.0198%" height="15" fill="rgb(239,187,47)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="543.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="56.8252%" y="517" width="0.0198%" height="15" fill="rgb(247,102,50)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="527.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="56.8252%" y="501" width="0.0198%" height="15" fill="rgb(231,216,22)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="511.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="56.8252%" y="485" width="0.0198%" height="15" fill="rgb(216,201,26)" fg:x="14362" fg:w="5"/><text x="57.0752%" y="495.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="56.8292%" y="469" width="0.0158%" height="15" fill="rgb(214,186,23)" fg:x="14363" fg:w="4"/><text x="57.0792%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.06%)</title><rect x="56.7935%" y="1109" width="0.0593%" height="15" fill="rgb(235,184,4)" fg:x="14354" fg:w="15"/><text x="57.0435%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.06%)</title><rect x="56.7935%" y="1093" width="0.0593%" height="15" fill="rgb(244,46,17)" fg:x="14354" fg:w="15"/><text x="57.0435%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.06%)</title><rect x="56.7935%" y="1077" width="0.0593%" height="15" fill="rgb(248,74,46)" fg:x="14354" fg:w="15"/><text x="57.0435%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="56.8252%" y="1061" width="0.0277%" height="15" fill="rgb(243,79,5)" fg:x="14362" fg:w="7"/><text x="57.0752%" y="1071.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="56.8252%" y="1045" width="0.0277%" height="15" fill="rgb(213,148,1)" fg:x="14362" fg:w="7"/><text x="57.0752%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="56.8252%" y="1029" width="0.0277%" height="15" fill="rgb(221,30,0)" fg:x="14362" fg:w="7"/><text x="57.0752%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="56.8252%" y="1013" width="0.0277%" height="15" fill="rgb(207,85,29)" fg:x="14362" fg:w="7"/><text x="57.0752%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="56.8252%" y="997" width="0.0277%" height="15" fill="rgb(239,31,46)" fg:x="14362" fg:w="7"/><text x="57.0752%" y="1007.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="56.8608%" y="1045" width="0.0158%" height="15" fill="rgb(219,6,1)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.8608%" y="1029" width="0.0158%" height="15" fill="rgb(229,90,29)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.8608%" y="1013" width="0.0158%" height="15" fill="rgb(242,201,42)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.8608%" y="997" width="0.0158%" height="15" fill="rgb(243,80,54)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.8608%" y="981" width="0.0158%" height="15" fill="rgb(223,166,15)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="56.8608%" y="965" width="0.0158%" height="15" fill="rgb(238,78,27)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.8608%" y="949" width="0.0158%" height="15" fill="rgb(235,28,43)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.8608%" y="933" width="0.0158%" height="15" fill="rgb(240,210,28)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.8608%" y="917" width="0.0158%" height="15" fill="rgb(253,6,46)" fg:x="14371" fg:w="4"/><text x="57.1108%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.8766%" y="837" width="0.0158%" height="15" fill="rgb(250,159,47)" fg:x="14375" fg:w="4"/><text x="57.1266%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.8766%" y="821" width="0.0158%" height="15" fill="rgb(216,139,2)" fg:x="14375" fg:w="4"/><text x="57.1266%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.8766%" y="805" width="0.0158%" height="15" fill="rgb(221,124,44)" fg:x="14375" fg:w="4"/><text x="57.1266%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="56.8766%" y="885" width="0.0237%" height="15" fill="rgb(205,37,22)" fg:x="14375" fg:w="6"/><text x="57.1266%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="56.8766%" y="869" width="0.0237%" height="15" fill="rgb(250,55,8)" fg:x="14375" fg:w="6"/><text x="57.1266%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.02%)</title><rect x="56.8766%" y="853" width="0.0237%" height="15" fill="rgb(215,83,48)" fg:x="14375" fg:w="6"/><text x="57.1266%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.06%)</title><rect x="56.8529%" y="1109" width="0.0554%" height="15" fill="rgb(253,2,32)" fg:x="14369" fg:w="14"/><text x="57.1029%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.06%)</title><rect x="56.8529%" y="1093" width="0.0554%" height="15" fill="rgb(236,67,28)" fg:x="14369" fg:w="14"/><text x="57.1029%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.06%)</title><rect x="56.8529%" y="1077" width="0.0554%" height="15" fill="rgb(252,55,15)" fg:x="14369" fg:w="14"/><text x="57.1029%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (14 samples, 0.06%)</title><rect x="56.8529%" y="1061" width="0.0554%" height="15" fill="rgb(243,173,17)" fg:x="14369" fg:w="14"/><text x="57.1029%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="56.8766%" y="1045" width="0.0317%" height="15" fill="rgb(215,212,13)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="56.8766%" y="1029" width="0.0317%" height="15" fill="rgb(253,176,6)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.8766%" y="1013" width="0.0317%" height="15" fill="rgb(236,105,26)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.8766%" y="997" width="0.0317%" height="15" fill="rgb(239,226,32)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="56.8766%" y="981" width="0.0317%" height="15" fill="rgb(236,104,51)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="56.8766%" y="965" width="0.0317%" height="15" fill="rgb(220,172,33)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="56.8766%" y="949" width="0.0317%" height="15" fill="rgb(224,182,25)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.8766%" y="933" width="0.0317%" height="15" fill="rgb(236,184,24)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.8766%" y="917" width="0.0317%" height="15" fill="rgb(241,221,14)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="56.8766%" y="901" width="0.0317%" height="15" fill="rgb(227,146,5)" fg:x="14375" fg:w="8"/><text x="57.1266%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9083%" y="901" width="0.0158%" height="15" fill="rgb(214,15,23)" fg:x="14383" fg:w="4"/><text x="57.1583%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.9083%" y="885" width="0.0158%" height="15" fill="rgb(233,157,31)" fg:x="14383" fg:w="4"/><text x="57.1583%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.9083%" y="869" width="0.0158%" height="15" fill="rgb(211,27,52)" fg:x="14383" fg:w="4"/><text x="57.1583%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="56.9122%" y="853" width="0.0119%" height="15" fill="rgb(212,223,15)" fg:x="14384" fg:w="3"/><text x="57.1622%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.9122%" y="837" width="0.0119%" height="15" fill="rgb(254,211,0)" fg:x="14384" fg:w="3"/><text x="57.1622%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.9122%" y="821" width="0.0119%" height="15" fill="rgb(205,43,38)" fg:x="14384" fg:w="3"/><text x="57.1622%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="56.9122%" y="805" width="0.0119%" height="15" fill="rgb(242,206,46)" fg:x="14384" fg:w="3"/><text x="57.1622%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.9083%" y="1029" width="0.0198%" height="15" fill="rgb(220,221,12)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.9083%" y="1013" width="0.0198%" height="15" fill="rgb(217,156,35)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.9083%" y="997" width="0.0198%" height="15" fill="rgb(207,181,49)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="56.9083%" y="981" width="0.0198%" height="15" fill="rgb(235,103,47)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="56.9083%" y="965" width="0.0198%" height="15" fill="rgb(222,63,28)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.9083%" y="949" width="0.0198%" height="15" fill="rgb(244,137,21)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.9083%" y="933" width="0.0198%" height="15" fill="rgb(228,35,27)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.9083%" y="917" width="0.0198%" height="15" fill="rgb(226,191,41)" fg:x="14383" fg:w="5"/><text x="57.1583%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.9281%" y="837" width="0.0119%" height="15" fill="rgb(210,154,3)" fg:x="14388" fg:w="3"/><text x="57.1781%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.9281%" y="821" width="0.0119%" height="15" fill="rgb(216,60,49)" fg:x="14388" fg:w="3"/><text x="57.1781%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="56.9281%" y="805" width="0.0119%" height="15" fill="rgb(226,17,20)" fg:x="14388" fg:w="3"/><text x="57.1781%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.9281%" y="885" width="0.0198%" height="15" fill="rgb(206,115,35)" fg:x="14388" fg:w="5"/><text x="57.1781%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.9281%" y="869" width="0.0198%" height="15" fill="rgb(227,88,1)" fg:x="14388" fg:w="5"/><text x="57.1781%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.9281%" y="853" width="0.0198%" height="15" fill="rgb(230,222,24)" fg:x="14388" fg:w="5"/><text x="57.1781%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.03%)</title><rect x="56.9281%" y="1029" width="0.0317%" height="15" fill="rgb(214,124,32)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.9281%" y="1013" width="0.0317%" height="15" fill="rgb(240,41,36)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.9281%" y="997" width="0.0317%" height="15" fill="rgb(221,17,52)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="56.9281%" y="981" width="0.0317%" height="15" fill="rgb(252,70,16)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.03%)</title><rect x="56.9281%" y="965" width="0.0317%" height="15" fill="rgb(250,177,4)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.03%)</title><rect x="56.9281%" y="949" width="0.0317%" height="15" fill="rgb(240,188,47)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.03%)</title><rect x="56.9281%" y="933" width="0.0317%" height="15" fill="rgb(215,92,12)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.03%)</title><rect x="56.9281%" y="917" width="0.0317%" height="15" fill="rgb(242,110,29)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.03%)</title><rect x="56.9281%" y="901" width="0.0317%" height="15" fill="rgb(208,211,26)" fg:x="14388" fg:w="8"/><text x="57.1781%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="56.9479%" y="885" width="0.0119%" height="15" fill="rgb(244,147,6)" fg:x="14393" fg:w="3"/><text x="57.1979%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.9479%" y="869" width="0.0119%" height="15" fill="rgb(211,130,42)" fg:x="14393" fg:w="3"/><text x="57.1979%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.9479%" y="853" width="0.0119%" height="15" fill="rgb(220,63,1)" fg:x="14393" fg:w="3"/><text x="57.1979%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="56.9479%" y="837" width="0.0119%" height="15" fill="rgb(241,212,30)" fg:x="14393" fg:w="3"/><text x="57.1979%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.9597%" y="821" width="0.0198%" height="15" fill="rgb(233,153,17)" fg:x="14396" fg:w="5"/><text x="57.2097%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.9597%" y="805" width="0.0198%" height="15" fill="rgb(236,3,10)" fg:x="14396" fg:w="5"/><text x="57.2097%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.9597%" y="789" width="0.0198%" height="15" fill="rgb(232,41,21)" fg:x="14396" fg:w="5"/><text x="57.2097%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="56.9676%" y="773" width="0.0119%" height="15" fill="rgb(206,63,51)" fg:x="14398" fg:w="3"/><text x="57.2176%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="56.9676%" y="757" width="0.0119%" height="15" fill="rgb(250,214,3)" fg:x="14398" fg:w="3"/><text x="57.2176%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="56.9676%" y="741" width="0.0119%" height="15" fill="rgb(254,89,27)" fg:x="14398" fg:w="3"/><text x="57.2176%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="56.9676%" y="725" width="0.0119%" height="15" fill="rgb(249,41,14)" fg:x="14398" fg:w="3"/><text x="57.2176%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.26%)</title><rect x="56.7381%" y="1157" width="0.2611%" height="15" fill="rgb(221,196,51)" fg:x="14340" fg:w="66"/><text x="56.9881%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (66 samples, 0.26%)</title><rect x="56.7381%" y="1141" width="0.2611%" height="15" fill="rgb(214,116,26)" fg:x="14340" fg:w="66"/><text x="56.9881%" y="1151.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (52 samples, 0.21%)</title><rect x="56.7935%" y="1125" width="0.2057%" height="15" fill="rgb(236,67,7)" fg:x="14354" fg:w="52"/><text x="57.0435%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (23 samples, 0.09%)</title><rect x="56.9083%" y="1109" width="0.0910%" height="15" fill="rgb(253,179,32)" fg:x="14383" fg:w="23"/><text x="57.1583%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (23 samples, 0.09%)</title><rect x="56.9083%" y="1093" width="0.0910%" height="15" fill="rgb(218,33,15)" fg:x="14383" fg:w="23"/><text x="57.1583%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.09%)</title><rect x="56.9083%" y="1077" width="0.0910%" height="15" fill="rgb(217,202,41)" fg:x="14383" fg:w="23"/><text x="57.1583%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.09%)</title><rect x="56.9083%" y="1061" width="0.0910%" height="15" fill="rgb(234,133,5)" fg:x="14383" fg:w="23"/><text x="57.1583%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (23 samples, 0.09%)</title><rect x="56.9083%" y="1045" width="0.0910%" height="15" fill="rgb(240,47,40)" fg:x="14383" fg:w="23"/><text x="57.1583%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="56.9597%" y="1029" width="0.0396%" height="15" fill="rgb(234,166,26)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="56.9597%" y="1013" width="0.0396%" height="15" fill="rgb(244,125,51)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="56.9597%" y="997" width="0.0396%" height="15" fill="rgb(229,171,11)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="56.9597%" y="981" width="0.0396%" height="15" fill="rgb(224,38,45)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="56.9597%" y="965" width="0.0396%" height="15" fill="rgb(237,27,7)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.04%)</title><rect x="56.9597%" y="949" width="0.0396%" height="15" fill="rgb(216,52,7)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.04%)</title><rect x="56.9597%" y="933" width="0.0396%" height="15" fill="rgb(243,11,11)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="56.9597%" y="917" width="0.0396%" height="15" fill="rgb(253,167,20)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="56.9597%" y="901" width="0.0396%" height="15" fill="rgb(215,207,5)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="56.9597%" y="885" width="0.0396%" height="15" fill="rgb(252,127,31)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.04%)</title><rect x="56.9597%" y="869" width="0.0396%" height="15" fill="rgb(209,106,27)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.04%)</title><rect x="56.9597%" y="853" width="0.0396%" height="15" fill="rgb(214,220,18)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.04%)</title><rect x="56.9597%" y="837" width="0.0396%" height="15" fill="rgb(237,89,12)" fg:x="14396" fg:w="10"/><text x="57.2097%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="56.9795%" y="821" width="0.0198%" height="15" fill="rgb(209,167,36)" fg:x="14401" fg:w="5"/><text x="57.2295%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="56.9795%" y="805" width="0.0198%" height="15" fill="rgb(243,45,22)" fg:x="14401" fg:w="5"/><text x="57.2295%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="56.9795%" y="789" width="0.0198%" height="15" fill="rgb(239,2,46)" fg:x="14401" fg:w="5"/><text x="57.2295%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="56.9795%" y="773" width="0.0198%" height="15" fill="rgb(241,101,0)" fg:x="14401" fg:w="5"/><text x="57.2295%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.9835%" y="757" width="0.0158%" height="15" fill="rgb(244,34,31)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="56.9835%" y="741" width="0.0158%" height="15" fill="rgb(248,23,22)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9835%" y="725" width="0.0158%" height="15" fill="rgb(218,27,48)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.9835%" y="709" width="0.0158%" height="15" fill="rgb(232,78,1)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.9835%" y="693" width="0.0158%" height="15" fill="rgb(233,169,12)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="56.9835%" y="677" width="0.0158%" height="15" fill="rgb(225,222,54)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9835%" y="661" width="0.0158%" height="15" fill="rgb(245,126,29)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.9835%" y="645" width="0.0158%" height="15" fill="rgb(241,63,48)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.9835%" y="629" width="0.0158%" height="15" fill="rgb(235,126,38)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="56.9835%" y="613" width="0.0158%" height="15" fill="rgb(232,96,49)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="56.9835%" y="597" width="0.0158%" height="15" fill="rgb(211,146,40)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="56.9835%" y="581" width="0.0158%" height="15" fill="rgb(247,93,44)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="56.9835%" y="565" width="0.0158%" height="15" fill="rgb(251,41,49)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="56.9835%" y="549" width="0.0158%" height="15" fill="rgb(218,155,12)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="559.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="56.9835%" y="533" width="0.0158%" height="15" fill="rgb(221,161,30)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="543.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="56.9835%" y="517" width="0.0158%" height="15" fill="rgb(221,179,11)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="527.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="56.9835%" y="501" width="0.0158%" height="15" fill="rgb(224,170,48)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="511.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="56.9835%" y="485" width="0.0158%" height="15" fill="rgb(223,117,5)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="495.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="56.9835%" y="469" width="0.0158%" height="15" fill="rgb(209,52,20)" fg:x="14402" fg:w="4"/><text x="57.2335%" y="479.50"></text></g><g><title>rayon::slice::quicksort::recurse (27 samples, 0.11%)</title><rect x="56.9993%" y="1157" width="0.1068%" height="15" fill="rgb(209,19,41)" fg:x="14406" fg:w="27"/><text x="57.2493%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1101%" y="1013" width="0.0119%" height="15" fill="rgb(210,177,12)" fg:x="14434" fg:w="3"/><text x="57.3601%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1101%" y="997" width="0.0119%" height="15" fill="rgb(211,159,37)" fg:x="14434" fg:w="3"/><text x="57.3601%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1101%" y="981" width="0.0119%" height="15" fill="rgb(209,20,2)" fg:x="14434" fg:w="3"/><text x="57.3601%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (5 samples, 0.02%)</title><rect x="57.1101%" y="1077" width="0.0198%" height="15" fill="rgb(244,3,46)" fg:x="14434" fg:w="5"/><text x="57.3601%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.1101%" y="1061" width="0.0198%" height="15" fill="rgb(220,94,38)" fg:x="14434" fg:w="5"/><text x="57.3601%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.1101%" y="1045" width="0.0198%" height="15" fill="rgb(253,14,31)" fg:x="14434" fg:w="5"/><text x="57.3601%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (5 samples, 0.02%)</title><rect x="57.1101%" y="1029" width="0.0198%" height="15" fill="rgb(234,176,13)" fg:x="14434" fg:w="5"/><text x="57.3601%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.02%)</title><rect x="57.1101%" y="1125" width="0.0237%" height="15" fill="rgb(218,62,25)" fg:x="14434" fg:w="6"/><text x="57.3601%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.02%)</title><rect x="57.1101%" y="1109" width="0.0237%" height="15" fill="rgb(216,124,40)" fg:x="14434" fg:w="6"/><text x="57.3601%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.02%)</title><rect x="57.1101%" y="1093" width="0.0237%" height="15" fill="rgb(228,170,12)" fg:x="14434" fg:w="6"/><text x="57.3601%" y="1103.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (9 samples, 0.04%)</title><rect x="57.1101%" y="1157" width="0.0356%" height="15" fill="rgb(231,226,5)" fg:x="14434" fg:w="9"/><text x="57.3601%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="57.1101%" y="1141" width="0.0356%" height="15" fill="rgb(237,122,22)" fg:x="14434" fg:w="9"/><text x="57.3601%" y="1151.50"></text></g><g><title>_ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h40cf71c3fa59f199E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="1125" width="0.0119%" height="15" fill="rgb(209,185,25)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="1109" width="0.0119%" height="15" fill="rgb(228,200,32)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="1093" width="0.0119%" height="15" fill="rgb(217,140,10)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="1077" width="0.0119%" height="15" fill="rgb(253,17,24)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="1061" width="0.0119%" height="15" fill="rgb(212,61,6)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="1045" width="0.0119%" height="15" fill="rgb(205,14,25)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="1029" width="0.0119%" height="15" fill="rgb(232,69,41)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="1013" width="0.0119%" height="15" fill="rgb(241,106,47)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="997" width="0.0119%" height="15" fill="rgb(210,213,53)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="981" width="0.0119%" height="15" fill="rgb(253,175,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="965" width="0.0119%" height="15" fill="rgb(211,171,24)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="949" width="0.0119%" height="15" fill="rgb(229,80,7)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="933" width="0.0119%" height="15" fill="rgb(212,46,39)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="917" width="0.0119%" height="15" fill="rgb(240,80,45)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="901" width="0.0119%" height="15" fill="rgb(253,177,40)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="885" width="0.0119%" height="15" fill="rgb(249,200,15)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="869" width="0.0119%" height="15" fill="rgb(217,78,26)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.1338%" y="853" width="0.0119%" height="15" fill="rgb(254,151,32)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="57.1338%" y="837" width="0.0119%" height="15" fill="rgb(226,165,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="821" width="0.0119%" height="15" fill="rgb(250,206,4)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="805" width="0.0119%" height="15" fill="rgb(231,229,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="789" width="0.0119%" height="15" fill="rgb(239,217,8)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="773" width="0.0119%" height="15" fill="rgb(225,204,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="757" width="0.0119%" height="15" fill="rgb(230,56,32)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="741" width="0.0119%" height="15" fill="rgb(222,56,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="725" width="0.0119%" height="15" fill="rgb(253,108,27)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="709" width="0.0119%" height="15" fill="rgb(212,87,36)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="693" width="0.0119%" height="15" fill="rgb(247,82,36)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="677" width="0.0119%" height="15" fill="rgb(222,143,9)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="661" width="0.0119%" height="15" fill="rgb(238,162,48)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="645" width="0.0119%" height="15" fill="rgb(221,59,43)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="629" width="0.0119%" height="15" fill="rgb(205,166,41)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1338%" y="613" width="0.0119%" height="15" fill="rgb(241,186,40)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h2ab060ac3118f808E.llvm.10433209731842971856 (3 samples, 0.01%)</title><rect x="57.1338%" y="597" width="0.0119%" height="15" fill="rgb(216,119,35)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1338%" y="581" width="0.0119%" height="15" fill="rgb(208,68,38)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="57.1338%" y="565" width="0.0119%" height="15" fill="rgb(217,113,1)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="57.1338%" y="549" width="0.0119%" height="15" fill="rgb(242,153,3)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="559.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="57.1338%" y="533" width="0.0119%" height="15" fill="rgb(229,76,35)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="543.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.1338%" y="517" width="0.0119%" height="15" fill="rgb(229,125,34)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="57.1338%" y="501" width="0.0119%" height="15" fill="rgb(238,179,36)" fg:x="14440" fg:w="3"/><text x="57.3838%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="57.1457%" y="1157" width="0.0119%" height="15" fill="rgb(244,183,19)" fg:x="14443" fg:w="3"/><text x="57.3957%" y="1167.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="57.1457%" y="1141" width="0.0119%" height="15" fill="rgb(216,85,49)" fg:x="14443" fg:w="3"/><text x="57.3957%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1457%" y="1125" width="0.0119%" height="15" fill="rgb(208,161,47)" fg:x="14443" fg:w="3"/><text x="57.3957%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1457%" y="1109" width="0.0119%" height="15" fill="rgb(233,210,18)" fg:x="14443" fg:w="3"/><text x="57.3957%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1576%" y="1157" width="0.0119%" height="15" fill="rgb(205,104,42)" fg:x="14446" fg:w="3"/><text x="57.4076%" y="1167.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="57.1576%" y="1141" width="0.0119%" height="15" fill="rgb(248,90,43)" fg:x="14446" fg:w="3"/><text x="57.4076%" y="1151.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (5 samples, 0.02%)</title><rect x="57.1734%" y="1157" width="0.0198%" height="15" fill="rgb(206,198,11)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1167.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (5 samples, 0.02%)</title><rect x="57.1734%" y="1141" width="0.0198%" height="15" fill="rgb(239,165,27)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1151.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (5 samples, 0.02%)</title><rect x="57.1734%" y="1125" width="0.0198%" height="15" fill="rgb(246,44,32)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1135.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (5 samples, 0.02%)</title><rect x="57.1734%" y="1109" width="0.0198%" height="15" fill="rgb(252,65,42)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1119.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (5 samples, 0.02%)</title><rect x="57.1734%" y="1093" width="0.0198%" height="15" fill="rgb(246,197,18)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1103.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (5 samples, 0.02%)</title><rect x="57.1734%" y="1077" width="0.0198%" height="15" fill="rgb(216,192,4)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="57.1734%" y="1061" width="0.0198%" height="15" fill="rgb(208,117,10)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1071.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="57.1734%" y="1045" width="0.0198%" height="15" fill="rgb(240,61,47)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.1734%" y="1029" width="0.0198%" height="15" fill="rgb(228,178,21)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.1734%" y="1013" width="0.0198%" height="15" fill="rgb(219,96,54)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="57.1734%" y="997" width="0.0198%" height="15" fill="rgb(250,177,24)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.1734%" y="981" width="0.0198%" height="15" fill="rgb(242,154,46)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.1734%" y="965" width="0.0198%" height="15" fill="rgb(226,176,29)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="57.1734%" y="949" width="0.0198%" height="15" fill="rgb(226,29,2)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="57.1734%" y="933" width="0.0198%" height="15" fill="rgb(237,104,14)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="943.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="57.1734%" y="917" width="0.0198%" height="15" fill="rgb(245,207,31)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="57.1734%" y="901" width="0.0198%" height="15" fill="rgb(229,211,45)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="57.1734%" y="885" width="0.0198%" height="15" fill="rgb(229,113,15)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="57.1734%" y="869" width="0.0198%" height="15" fill="rgb(237,147,15)" fg:x="14450" fg:w="5"/><text x="57.4234%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="57.1813%" y="853" width="0.0119%" height="15" fill="rgb(244,120,12)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1813%" y="837" width="0.0119%" height="15" fill="rgb(205,120,12)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1813%" y="821" width="0.0119%" height="15" fill="rgb(231,26,45)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="57.1813%" y="805" width="0.0119%" height="15" fill="rgb(246,98,1)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="57.1813%" y="789" width="0.0119%" height="15" fill="rgb(207,68,45)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="57.1813%" y="773" width="0.0119%" height="15" fill="rgb(231,27,38)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="57.1813%" y="757" width="0.0119%" height="15" fill="rgb(214,223,3)" fg:x="14452" fg:w="3"/><text x="57.4313%" y="767.50"></text></g><g><title>[unknown] (940 samples, 3.72%)</title><rect x="53.5174%" y="1173" width="3.7192%" height="15" fill="rgb(228,195,46)" fg:x="13526" fg:w="940"/><text x="53.7674%" y="1183.50">[unk..</text></g><g><title>syscall (11 samples, 0.04%)</title><rect x="57.1932%" y="1157" width="0.0435%" height="15" fill="rgb(231,100,42)" fg:x="14455" fg:w="11"/><text x="57.4432%" y="1167.50"></text></g><g><title>&lt;criterion::Criterion as core::default::Default&gt;::default (3 samples, 0.01%)</title><rect x="57.2367%" y="917" width="0.0119%" height="15" fill="rgb(236,53,4)" fg:x="14466" fg:w="3"/><text x="57.4867%" y="927.50"></text></g><g><title>criterion::kde::sweep_and_estimate (19 samples, 0.08%)</title><rect x="57.2486%" y="805" width="0.0752%" height="15" fill="rgb(230,152,12)" fg:x="14469" fg:w="19"/><text x="57.4986%" y="815.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="57.2881%" y="789" width="0.0356%" height="15" fill="rgb(226,101,19)" fg:x="14479" fg:w="9"/><text x="57.5381%" y="799.50"></text></g><g><title>[libm.so.6] (8 samples, 0.03%)</title><rect x="57.2921%" y="773" width="0.0317%" height="15" fill="rgb(250,149,32)" fg:x="14480" fg:w="8"/><text x="57.5421%" y="783.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::abs_distributions (21 samples, 0.08%)</title><rect x="57.2486%" y="853" width="0.0831%" height="15" fill="rgb(232,178,12)" fg:x="14469" fg:w="21"/><text x="57.4986%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (21 samples, 0.08%)</title><rect x="57.2486%" y="837" width="0.0831%" height="15" fill="rgb(246,151,17)" fg:x="14469" fg:w="21"/><text x="57.4986%" y="847.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (21 samples, 0.08%)</title><rect x="57.2486%" y="821" width="0.0831%" height="15" fill="rgb(252,17,51)" fg:x="14469" fg:w="21"/><text x="57.4986%" y="831.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::rel_distributions (6 samples, 0.02%)</title><rect x="57.3316%" y="853" width="0.0237%" height="15" fill="rgb(250,207,23)" fg:x="14490" fg:w="6"/><text x="57.5816%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (6 samples, 0.02%)</title><rect x="57.3316%" y="837" width="0.0237%" height="15" fill="rgb(205,27,5)" fg:x="14490" fg:w="6"/><text x="57.5816%" y="847.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::rel_distribution (6 samples, 0.02%)</title><rect x="57.3316%" y="821" width="0.0237%" height="15" fill="rgb(224,32,19)" fg:x="14490" fg:w="6"/><text x="57.5816%" y="831.50"></text></g><g><title>criterion::kde::sweep_and_estimate (6 samples, 0.02%)</title><rect x="57.3316%" y="805" width="0.0237%" height="15" fill="rgb(247,214,40)" fg:x="14490" fg:w="6"/><text x="57.5816%" y="815.50"></text></g><g><title>&lt;criterion::html::Html as criterion::report::Report&gt;::measurement_complete (32 samples, 0.13%)</title><rect x="57.2486%" y="869" width="0.1266%" height="15" fill="rgb(239,199,17)" fg:x="14469" fg:w="32"/><text x="57.4986%" y="879.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::t_test (5 samples, 0.02%)</title><rect x="57.3554%" y="853" width="0.0198%" height="15" fill="rgb(251,159,9)" fg:x="14496" fg:w="5"/><text x="57.6054%" y="863.50"></text></g><g><title>criterion::kde::sweep_and_estimate (5 samples, 0.02%)</title><rect x="57.3554%" y="837" width="0.0198%" height="15" fill="rgb(225,78,32)" fg:x="14496" fg:w="5"/><text x="57.6054%" y="847.50"></text></g><g><title>criterion::analysis::compare::common (7 samples, 0.03%)</title><rect x="57.3752%" y="869" width="0.0277%" height="15" fill="rgb(206,97,47)" fg:x="14501" fg:w="7"/><text x="57.6252%" y="879.50"></text></g><g><title>criterion::estimate::build_change_estimates (7 samples, 0.03%)</title><rect x="57.3752%" y="853" width="0.0277%" height="15" fill="rgb(227,107,4)" fg:x="14501" fg:w="7"/><text x="57.6252%" y="863.50"></text></g><g><title>criterion::stats::Distribution&lt;A&gt;::confidence_interval (5 samples, 0.02%)</title><rect x="57.3831%" y="837" width="0.0198%" height="15" fill="rgb(241,146,50)" fg:x="14503" fg:w="5"/><text x="57.6331%" y="847.50"></text></g><g><title>criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.02%)</title><rect x="57.3831%" y="821" width="0.0198%" height="15" fill="rgb(232,92,30)" fg:x="14503" fg:w="5"/><text x="57.6331%" y="831.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="57.3831%" y="805" width="0.0198%" height="15" fill="rgb(222,0,40)" fg:x="14503" fg:w="5"/><text x="57.6331%" y="815.50"></text></g><g><title>_ZN10rayon_core8registry8Registry14in_worker_cold17he529fc7478b89cdcE.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="57.3870%" y="789" width="0.0158%" height="15" fill="rgb(219,54,33)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="799.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (4 samples, 0.02%)</title><rect x="57.3870%" y="773" width="0.0158%" height="15" fill="rgb(226,209,28)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="783.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="57.3870%" y="757" width="0.0158%" height="15" fill="rgb(254,205,35)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="767.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="57.3870%" y="741" width="0.0158%" height="15" fill="rgb(230,159,3)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="751.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="57.3870%" y="725" width="0.0158%" height="15" fill="rgb(232,190,24)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="735.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="57.3870%" y="709" width="0.0158%" height="15" fill="rgb(217,227,44)" fg:x="14504" fg:w="4"/><text x="57.6370%" y="719.50"></text></g><g><title>criterion::analysis::estimates (4 samples, 0.02%)</title><rect x="57.4029%" y="869" width="0.0158%" height="15" fill="rgb(236,211,1)" fg:x="14508" fg:w="4"/><text x="57.6529%" y="879.50"></text></g><g><title>criterion::estimate::build_estimates (3 samples, 0.01%)</title><rect x="57.4068%" y="853" width="0.0119%" height="15" fill="rgb(250,127,46)" fg:x="14509" fg:w="3"/><text x="57.6568%" y="863.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (72 samples, 0.28%)</title><rect x="57.6205%" y="789" width="0.2849%" height="15" fill="rgb(229,213,6)" fg:x="14563" fg:w="72"/><text x="57.8705%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.02%)</title><rect x="57.9054%" y="789" width="0.0158%" height="15" fill="rgb(237,15,36)" fg:x="14635" fg:w="4"/><text x="58.1554%" y="799.50"></text></g><g><title>core::slice::memchr::memchr_aligned (3 samples, 0.01%)</title><rect x="57.9093%" y="773" width="0.0119%" height="15" fill="rgb(213,131,41)" fg:x="14636" fg:w="3"/><text x="58.1593%" y="783.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeFrom&lt;usize&gt;&gt;&gt;::slice (6 samples, 0.02%)</title><rect x="58.8193%" y="741" width="0.0237%" height="15" fill="rgb(225,82,44)" fg:x="14866" fg:w="6"/><text x="59.0693%" y="751.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeTo&lt;usize&gt;&gt;&gt;::slice (9 samples, 0.04%)</title><rect x="58.8431%" y="741" width="0.0356%" height="15" fill="rgb(249,42,11)" fg:x="14872" fg:w="9"/><text x="59.0931%" y="751.50"></text></g><g><title>&lt;(A,B) as nom::branch::Alt&lt;Input,Output,Error&gt;&gt;::choice (193 samples, 0.76%)</title><rect x="58.1348%" y="773" width="0.7636%" height="15" fill="rgb(253,11,29)" fg:x="14693" fg:w="193"/><text x="58.3848%" y="783.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (44 samples, 0.17%)</title><rect x="58.7244%" y="757" width="0.1741%" height="15" fill="rgb(206,8,54)" fg:x="14842" fg:w="44"/><text x="58.9744%" y="767.50"></text></g><g><title>memchr::arch::x86_64::memchr::count_raw::find_avx2 (5 samples, 0.02%)</title><rect x="58.8787%" y="741" width="0.0198%" height="15" fill="rgb(222,186,2)" fg:x="14881" fg:w="5"/><text x="59.1287%" y="751.50"></text></g><g><title>&lt;&amp;str as nom::traits::FindToken&lt;char&gt;&gt;::find_token (33 samples, 0.13%)</title><rect x="59.2308%" y="741" width="0.1306%" height="15" fill="rgb(221,206,53)" fg:x="14970" fg:w="33"/><text x="59.4808%" y="751.50"></text></g><g><title>&lt;&amp;[u8] as nom::traits::Offset&gt;::offset (4 samples, 0.02%)</title><rect x="59.4484%" y="725" width="0.0158%" height="15" fill="rgb(230,150,21)" fg:x="15025" fg:w="4"/><text x="59.6984%" y="735.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeFrom&lt;usize&gt;&gt;&gt;::slice (4 samples, 0.02%)</title><rect x="59.4643%" y="725" width="0.0158%" height="15" fill="rgb(253,202,10)" fg:x="15029" fg:w="4"/><text x="59.7143%" y="735.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeTo&lt;usize&gt;&gt;&gt;::slice (7 samples, 0.03%)</title><rect x="59.4801%" y="725" width="0.0277%" height="15" fill="rgb(238,109,40)" fg:x="15033" fg:w="7"/><text x="59.7301%" y="735.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTakeAtPosition&gt;::split_at_position1_complete (137 samples, 0.54%)</title><rect x="59.0251%" y="757" width="0.5421%" height="15" fill="rgb(247,120,22)" fg:x="14918" fg:w="137"/><text x="59.2751%" y="767.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (52 samples, 0.21%)</title><rect x="59.3614%" y="741" width="0.2057%" height="15" fill="rgb(207,43,30)" fg:x="15003" fg:w="52"/><text x="59.6114%" y="751.50"></text></g><g><title>memchr::arch::x86_64::memchr::count_raw::find_avx2 (15 samples, 0.06%)</title><rect x="59.5078%" y="725" width="0.0593%" height="15" fill="rgb(213,211,24)" fg:x="15040" fg:w="15"/><text x="59.7578%" y="735.50"></text></g><g><title>__rust_alloc (4 samples, 0.02%)</title><rect x="59.5751%" y="757" width="0.0158%" height="15" fill="rgb(239,73,39)" fg:x="15057" fg:w="4"/><text x="59.8251%" y="767.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (188 samples, 0.74%)</title><rect x="58.8985%" y="773" width="0.7438%" height="15" fill="rgb(245,182,19)" fg:x="14886" fg:w="188"/><text x="59.1485%" y="783.50"></text></g><g><title>malloc (13 samples, 0.05%)</title><rect x="59.5909%" y="757" width="0.0514%" height="15" fill="rgb(247,143,26)" fg:x="15061" fg:w="13"/><text x="59.8409%" y="767.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw (5 samples, 0.02%)</title><rect x="59.9628%" y="725" width="0.0198%" height="15" fill="rgb(228,191,23)" fg:x="15155" fg:w="5"/><text x="60.2128%" y="735.50"></text></g><g><title>[part2-23b854f12cc120ae] (8 samples, 0.03%)</title><rect x="59.9628%" y="741" width="0.0317%" height="15" fill="rgb(253,165,31)" fg:x="15155" fg:w="8"/><text x="60.2128%" y="751.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw_avx2 (3 samples, 0.01%)</title><rect x="59.9826%" y="725" width="0.0119%" height="15" fill="rgb(234,138,20)" fg:x="15160" fg:w="3"/><text x="60.2326%" y="735.50"></text></g><g><title>alloc::vec::in_place_collect::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (129 samples, 0.51%)</title><rect x="59.6581%" y="773" width="0.5104%" height="15" fill="rgb(218,191,29)" fg:x="15078" fg:w="129"/><text x="59.9081%" y="783.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (72 samples, 0.28%)</title><rect x="59.8837%" y="757" width="0.2849%" height="15" fill="rgb(221,157,19)" fg:x="15135" fg:w="72"/><text x="60.1337%" y="767.50"></text></g><g><title>memchr::arch::x86_64::memchr::memrchr_raw::find_avx2 (44 samples, 0.17%)</title><rect x="59.9945%" y="741" width="0.1741%" height="15" fill="rgb(237,26,42)" fg:x="15163" fg:w="44"/><text x="60.2445%" y="751.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw (35 samples, 0.14%)</title><rect x="60.0301%" y="725" width="0.1385%" height="15" fill="rgb(220,163,24)" fg:x="15172" fg:w="35"/><text x="60.2801%" y="735.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw_avx2 (29 samples, 0.11%)</title><rect x="60.0538%" y="709" width="0.1147%" height="15" fill="rgb(242,115,20)" fg:x="15178" fg:w="29"/><text x="60.3038%" y="719.50"></text></g><g><title>day_16::parse_grid (599 samples, 2.37%)</title><rect x="57.9212%" y="789" width="2.3700%" height="15" fill="rgb(210,206,9)" fg:x="14639" fg:w="599"/><text x="58.1712%" y="799.50">da..</text></g><g><title>cfree (31 samples, 0.12%)</title><rect x="60.1686%" y="773" width="0.1227%" height="15" fill="rgb(208,71,17)" fg:x="15207" fg:w="31"/><text x="60.4186%" y="783.50"></text></g><g><title>[libc.so.6] (23 samples, 0.09%)</title><rect x="60.2002%" y="757" width="0.0910%" height="15" fill="rgb(233,7,5)" fg:x="15215" fg:w="23"/><text x="60.4502%" y="767.50"></text></g><g><title>[libc.so.6] (19 samples, 0.08%)</title><rect x="76.2127%" y="773" width="0.0752%" height="15" fill="rgb(207,92,33)" fg:x="19262" fg:w="19"/><text x="76.4627%" y="783.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve_for_push (13 samples, 0.05%)</title><rect x="76.2879%" y="773" width="0.0514%" height="15" fill="rgb(218,87,9)" fg:x="19281" fg:w="13"/><text x="76.5379%" y="783.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h874fe6fd4c316364E.llvm.14503850581183162861 (13 samples, 0.05%)</title><rect x="76.2879%" y="757" width="0.0514%" height="15" fill="rgb(219,47,37)" fg:x="19281" fg:w="13"/><text x="76.5379%" y="767.50"></text></g><g><title>realloc (13 samples, 0.05%)</title><rect x="76.2879%" y="741" width="0.0514%" height="15" fill="rgb(221,152,34)" fg:x="19281" fg:w="13"/><text x="76.5379%" y="751.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="76.2918%" y="725" width="0.0475%" height="15" fill="rgb(235,176,21)" fg:x="19282" fg:w="12"/><text x="76.5418%" y="735.50"></text></g><g><title>[libc.so.6] (12 samples, 0.05%)</title><rect x="76.2918%" y="709" width="0.0475%" height="15" fill="rgb(232,212,21)" fg:x="19282" fg:w="12"/><text x="76.5418%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (4,785 samples, 18.93%)</title><rect x="57.4187%" y="853" width="18.9325%" height="15" fill="rgb(245,82,39)" fg:x="14512" fg:w="4785"/><text x="57.6687%" y="863.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4,785 samples, 18.93%)</title><rect x="57.4187%" y="837" width="18.9325%" height="15" fill="rgb(241,52,51)" fg:x="14512" fg:w="4785"/><text x="57.6687%" y="847.50">&lt;core::iter::adapters::map::Ma..</text></g><g><title>criterion::bencher::Bencher&lt;M&gt;::iter (4,785 samples, 18.93%)</title><rect x="57.4187%" y="821" width="18.9325%" height="15" fill="rgb(219,91,24)" fg:x="14512" fg:w="4785"/><text x="57.6687%" y="831.50">criterion::bencher::Bencher&lt;M&gt;..</text></g><g><title>day_16::part2 (4,785 samples, 18.93%)</title><rect x="57.4187%" y="805" width="18.9325%" height="15" fill="rgb(241,142,12)" fg:x="14512" fg:w="4785"/><text x="57.6687%" y="815.50">day_16::part2</text></g><g><title>day_16::tilt_north (4,059 samples, 16.06%)</title><rect x="60.2912%" y="789" width="16.0600%" height="15" fill="rgb(230,27,9)" fg:x="15238" fg:w="4059"/><text x="60.5412%" y="799.50">day_16::tilt_north</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (82 samples, 0.32%)</title><rect x="76.6163%" y="805" width="0.3244%" height="15" fill="rgb(249,181,32)" fg:x="19364" fg:w="82"/><text x="76.8663%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (10 samples, 0.04%)</title><rect x="76.9407%" y="805" width="0.0396%" height="15" fill="rgb(230,107,3)" fg:x="19446" fg:w="10"/><text x="77.1907%" y="815.50"></text></g><g><title>core::slice::memchr::memchr_aligned (5 samples, 0.02%)</title><rect x="76.9605%" y="789" width="0.0198%" height="15" fill="rgb(246,204,14)" fg:x="19451" fg:w="5"/><text x="77.2105%" y="799.50"></text></g><g><title>&lt;&amp;[u8] as nom::traits::Offset&gt;::offset (14 samples, 0.06%)</title><rect x="78.0802%" y="757" width="0.0554%" height="15" fill="rgb(213,192,47)" fg:x="19734" fg:w="14"/><text x="78.3302%" y="767.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeFrom&lt;usize&gt;&gt;&gt;::slice (19 samples, 0.08%)</title><rect x="78.1356%" y="757" width="0.0752%" height="15" fill="rgb(240,44,36)" fg:x="19748" fg:w="19"/><text x="78.3856%" y="767.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeTo&lt;usize&gt;&gt;&gt;::slice (32 samples, 0.13%)</title><rect x="78.2108%" y="757" width="0.1266%" height="15" fill="rgb(244,209,38)" fg:x="19767" fg:w="32"/><text x="78.4608%" y="767.50"></text></g><g><title>&lt;(A,B) as nom::branch::Alt&lt;Input,Output,Error&gt;&gt;::choice (293 samples, 1.16%)</title><rect x="77.2731%" y="789" width="1.1593%" height="15" fill="rgb(219,34,37)" fg:x="19530" fg:w="293"/><text x="77.5231%" y="799.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (130 samples, 0.51%)</title><rect x="77.9180%" y="773" width="0.5144%" height="15" fill="rgb(210,28,6)" fg:x="19693" fg:w="130"/><text x="78.1680%" y="783.50"></text></g><g><title>memchr::arch::x86_64::memchr::count_raw::find_avx2 (24 samples, 0.09%)</title><rect x="78.3374%" y="757" width="0.0950%" height="15" fill="rgb(244,110,52)" fg:x="19799" fg:w="24"/><text x="78.5874%" y="767.50"></text></g><g><title>&lt;&amp;str as nom::traits::FindToken&lt;char&gt;&gt;::find_token (64 samples, 0.25%)</title><rect x="78.9428%" y="757" width="0.2532%" height="15" fill="rgb(254,124,47)" fg:x="19952" fg:w="64"/><text x="79.1928%" y="767.50"></text></g><g><title>&lt;&amp;[u8] as nom::traits::Offset&gt;::offset (6 samples, 0.02%)</title><rect x="79.3068%" y="741" width="0.0237%" height="15" fill="rgb(254,110,13)" fg:x="20044" fg:w="6"/><text x="79.5568%" y="751.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeFrom&lt;usize&gt;&gt;&gt;::slice (12 samples, 0.05%)</title><rect x="79.3305%" y="741" width="0.0475%" height="15" fill="rgb(252,57,21)" fg:x="20050" fg:w="12"/><text x="79.5805%" y="751.50"></text></g><g><title>&lt;&amp;str as nom::traits::Slice&lt;core::ops::range::RangeTo&lt;usize&gt;&gt;&gt;::slice (20 samples, 0.08%)</title><rect x="79.3780%" y="741" width="0.0791%" height="15" fill="rgb(242,60,45)" fg:x="20062" fg:w="20"/><text x="79.6280%" y="751.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTake&gt;::take_split (90 samples, 0.36%)</title><rect x="79.1960%" y="757" width="0.3561%" height="15" fill="rgb(234,49,30)" fg:x="20016" fg:w="90"/><text x="79.4460%" y="767.50"></text></g><g><title>memchr::arch::x86_64::memchr::count_raw::find_avx2 (24 samples, 0.09%)</title><rect x="79.4571%" y="741" width="0.0950%" height="15" fill="rgb(218,98,6)" fg:x="20082" fg:w="24"/><text x="79.7071%" y="751.50"></text></g><g><title>&lt;nom_locate::LocatedSpan&lt;T,X&gt; as nom::traits::InputTakeAtPosition&gt;::split_at_position1_complete (235 samples, 0.93%)</title><rect x="78.6302%" y="773" width="0.9298%" height="15" fill="rgb(220,174,29)" fg:x="19873" fg:w="235"/><text x="78.8802%" y="783.50"></text></g><g><title>&lt;F as nom::internal::Parser&lt;I,O,E&gt;&gt;::parse (309 samples, 1.22%)</title><rect x="78.4324%" y="789" width="1.2226%" height="15" fill="rgb(236,163,23)" fg:x="19823" fg:w="309"/><text x="78.6824%" y="799.50"></text></g><g><title>malloc (21 samples, 0.08%)</title><rect x="79.5719%" y="773" width="0.0831%" height="15" fill="rgb(242,114,45)" fg:x="20111" fg:w="21"/><text x="79.8219%" y="783.50"></text></g><g><title>__rdl_dealloc (3 samples, 0.01%)</title><rect x="79.6550%" y="789" width="0.0119%" height="15" fill="rgb(232,10,53)" fg:x="20132" fg:w="3"/><text x="79.9050%" y="799.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (3 samples, 0.01%)</title><rect x="79.6550%" y="773" width="0.0119%" height="15" fill="rgb(245,108,29)" fg:x="20132" fg:w="3"/><text x="79.9050%" y="783.50"></text></g><g><title>__rust_dealloc (10 samples, 0.04%)</title><rect x="79.6669%" y="789" width="0.0396%" height="15" fill="rgb(240,89,53)" fg:x="20135" fg:w="10"/><text x="79.9169%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (5 samples, 0.02%)</title><rect x="79.9319%" y="773" width="0.0198%" height="15" fill="rgb(226,60,45)" fg:x="20202" fg:w="5"/><text x="80.1819%" y="783.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h874fe6fd4c316364E.llvm.14503850581183162861 (5 samples, 0.02%)</title><rect x="79.9319%" y="757" width="0.0198%" height="15" fill="rgb(230,41,44)" fg:x="20202" fg:w="5"/><text x="80.1819%" y="767.50"></text></g><g><title>realloc (5 samples, 0.02%)</title><rect x="79.9319%" y="741" width="0.0198%" height="15" fill="rgb(230,26,20)" fg:x="20202" fg:w="5"/><text x="80.1819%" y="751.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="79.9319%" y="725" width="0.0198%" height="15" fill="rgb(237,170,32)" fg:x="20202" fg:w="5"/><text x="80.1819%" y="735.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="79.9319%" y="709" width="0.0198%" height="15" fill="rgb(212,35,42)" fg:x="20202" fg:w="5"/><text x="80.1819%" y="719.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw (4 samples, 0.02%)</title><rect x="80.0665%" y="741" width="0.0158%" height="15" fill="rgb(227,31,34)" fg:x="20236" fg:w="4"/><text x="80.3165%" y="751.50"></text></g><g><title>[part2-23b854f12cc120ae] (5 samples, 0.02%)</title><rect x="80.0665%" y="757" width="0.0198%" height="15" fill="rgb(216,19,18)" fg:x="20236" fg:w="5"/><text x="80.3165%" y="767.50"></text></g><g><title>alloc::vec::in_place_collect::&lt;impl alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt; for alloc::vec::Vec&lt;T&gt;&gt;::from_iter (159 samples, 0.63%)</title><rect x="79.7064%" y="789" width="0.6291%" height="15" fill="rgb(211,133,42)" fg:x="20145" fg:w="159"/><text x="79.9564%" y="799.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (96 samples, 0.38%)</title><rect x="79.9557%" y="773" width="0.3798%" height="15" fill="rgb(244,66,13)" fg:x="20208" fg:w="96"/><text x="80.2057%" y="783.50"></text></g><g><title>memchr::arch::x86_64::memchr::memrchr_raw::find_avx2 (63 samples, 0.25%)</title><rect x="80.0863%" y="757" width="0.2493%" height="15" fill="rgb(218,185,50)" fg:x="20241" fg:w="63"/><text x="80.3363%" y="767.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw (47 samples, 0.19%)</title><rect x="80.1496%" y="741" width="0.1860%" height="15" fill="rgb(219,149,13)" fg:x="20257" fg:w="47"/><text x="80.3996%" y="751.50"></text></g><g><title>memchr::arch::x86_64::avx2::memchr::One::rfind_raw_avx2 (45 samples, 0.18%)</title><rect x="80.1575%" y="725" width="0.1780%" height="15" fill="rgb(221,125,0)" fg:x="20259" fg:w="45"/><text x="80.4075%" y="735.50"></text></g><g><title>day_16::parse_grid (895 samples, 3.54%)</title><rect x="76.9843%" y="805" width="3.5412%" height="15" fill="rgb(247,126,27)" fg:x="19457" fg:w="895"/><text x="77.2343%" y="815.50">day_..</text></g><g><title>cfree (48 samples, 0.19%)</title><rect x="80.3355%" y="789" width="0.1899%" height="15" fill="rgb(250,138,30)" fg:x="20304" fg:w="48"/><text x="80.5855%" y="799.50"></text></g><g><title>[libc.so.6] (20 samples, 0.08%)</title><rect x="80.4463%" y="773" width="0.0791%" height="15" fill="rgb(230,151,9)" fg:x="20332" fg:w="20"/><text x="80.6963%" y="783.50"></text></g><g><title>[libc.so.6] (13 samples, 0.05%)</title><rect x="99.7824%" y="789" width="0.0514%" height="15" fill="rgb(233,80,38)" fg:x="25219" fg:w="13"/><text x="100.0324%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve_for_push (36 samples, 0.14%)</title><rect x="99.8338%" y="789" width="0.1424%" height="15" fill="rgb(232,68,43)" fg:x="25232" fg:w="36"/><text x="100.0838%" y="799.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h874fe6fd4c316364E.llvm.14503850581183162861 (34 samples, 0.13%)</title><rect x="99.8417%" y="773" width="0.1345%" height="15" fill="rgb(254,5,50)" fg:x="25234" fg:w="34"/><text x="100.0917%" y="783.50"></text></g><g><title>realloc (30 samples, 0.12%)</title><rect x="99.8576%" y="757" width="0.1187%" height="15" fill="rgb(225,45,5)" fg:x="25238" fg:w="30"/><text x="100.1076%" y="767.50"></text></g><g><title>[libc.so.6] (25 samples, 0.10%)</title><rect x="99.8773%" y="741" width="0.0989%" height="15" fill="rgb(239,22,3)" fg:x="25243" fg:w="25"/><text x="100.1273%" y="751.50"></text></g><g><title>[libc.so.6] (24 samples, 0.09%)</title><rect x="99.8813%" y="725" width="0.0950%" height="15" fill="rgb(243,129,0)" fg:x="25244" fg:w="24"/><text x="100.1313%" y="735.50"></text></g><g><title>_start (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1173" width="42.7514%" height="15" fill="rgb(223,164,0)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1183.50">_start</text></g><g><title>__libc_start_main (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1157" width="42.7514%" height="15" fill="rgb(221,46,29)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1167.50">__libc_start_main</text></g><g><title>[libc.so.6] (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1141" width="42.7514%" height="15" fill="rgb(205,97,47)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1151.50">[libc.so.6]</text></g><g><title>main (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1125" width="42.7514%" height="15" fill="rgb(249,14,8)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1135.50">main</text></g><g><title>std::rt::lang_start_internal (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1109" width="42.7514%" height="15" fill="rgb(216,77,3)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1119.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1093" width="42.7514%" height="15" fill="rgb(206,168,54)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1103.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1077" width="42.7514%" height="15" fill="rgb(236,3,41)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1087.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1061" width="42.7514%" height="15" fill="rgb(231,132,24)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1071.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::_{{closure}} (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1045" width="42.7514%" height="15" fill="rgb(227,221,40)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1055.50">std::rt::lang_start_internal::_{{closure}}</text></g><g><title>std::panic::catch_unwind (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1029" width="42.7514%" height="15" fill="rgb(233,151,11)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1039.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,805 samples, 42.75%)</title><rect x="57.2367%" y="1013" width="42.7514%" height="15" fill="rgb(247,81,35)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1023.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,805 samples, 42.75%)</title><rect x="57.2367%" y="997" width="42.7514%" height="15" fill="rgb(243,128,48)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="1007.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (10,805 samples, 42.75%)</title><rect x="57.2367%" y="981" width="42.7514%" height="15" fill="rgb(253,16,10)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="991.50">core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;..</text></g><g><title>_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h08e54ba5a6ed5d50E.llvm.12764540048861360677 (10,805 samples, 42.75%)</title><rect x="57.2367%" y="965" width="42.7514%" height="15" fill="rgb(228,67,27)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="975.50">_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h08e54ba5a6ed5d5..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (10,805 samples, 42.75%)</title><rect x="57.2367%" y="949" width="42.7514%" height="15" fill="rgb(231,105,25)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="959.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>part2::main (10,805 samples, 42.75%)</title><rect x="57.2367%" y="933" width="42.7514%" height="15" fill="rgb(213,166,47)" fg:x="14466" fg:w="10805"/><text x="57.4867%" y="943.50">part2::main</text></g><g><title>criterion::Criterion&lt;M&gt;::bench_function (10,802 samples, 42.74%)</title><rect x="57.2486%" y="917" width="42.7396%" height="15" fill="rgb(209,27,10)" fg:x="14469" fg:w="10802"/><text x="57.4986%" y="927.50">criterion::Criterion&lt;M&gt;::bench_function</text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (10,802 samples, 42.74%)</title><rect x="57.2486%" y="901" width="42.7396%" height="15" fill="rgb(241,44,30)" fg:x="14469" fg:w="10802"/><text x="57.4986%" y="911.50">criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function</text></g><g><title>criterion::analysis::common (10,802 samples, 42.74%)</title><rect x="57.2486%" y="885" width="42.7396%" height="15" fill="rgb(223,216,15)" fg:x="14469" fg:w="10802"/><text x="57.4986%" y="895.50">criterion::analysis::common</text></g><g><title>criterion::routine::Routine::sample (10,759 samples, 42.57%)</title><rect x="57.4187%" y="869" width="42.5694%" height="15" fill="rgb(227,14,7)" fg:x="14512" fg:w="10759"/><text x="57.6687%" y="879.50">criterion::routine::Routine::sample</text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::warm_up (5,974 samples, 23.64%)</title><rect x="76.3512%" y="853" width="23.6369%" height="15" fill="rgb(237,14,5)" fg:x="19297" fg:w="5974"/><text x="76.6012%" y="863.50">&lt;criterion::routine::Function&lt;M,F,T&gt; a..</text></g><g><title>criterion::bencher::Bencher&lt;M&gt;::iter (5,974 samples, 23.64%)</title><rect x="76.3512%" y="837" width="23.6369%" height="15" fill="rgb(232,14,36)" fg:x="19297" fg:w="5974"/><text x="76.6012%" y="847.50">criterion::bencher::Bencher&lt;M&gt;::iter</text></g><g><title>day_16::part2 (5,974 samples, 23.64%)</title><rect x="76.3512%" y="821" width="23.6369%" height="15" fill="rgb(234,0,38)" fg:x="19297" fg:w="5974"/><text x="76.6012%" y="831.50">day_16::part2</text></g><g><title>day_16::tilt_north (4,919 samples, 19.46%)</title><rect x="80.5254%" y="805" width="19.4627%" height="15" fill="rgb(207,170,14)" fg:x="20352" fg:w="4919"/><text x="80.7754%" y="815.50">day_16::tilt_north</text></g><g><title>all (25,274 samples, 100%)</title><rect x="0.0000%" y="1205" width="100.0000%" height="15" fill="rgb(252,45,13)" fg:x="0" fg:w="25274"/><text x="0.2500%" y="1215.50"></text></g><g><title>part2-23b854f12 (23,803 samples, 94.18%)</title><rect x="5.8202%" y="1189" width="94.1798%" height="15" fill="rgb(213,142,7)" fg:x="1471" fg:w="23803"/><text x="6.0702%" y="1199.50">part2-23b854f12</text></g></svg></svg>