Skip to content

Instantly share code, notes, and snippets.

@icristescu
Created May 21, 2020 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icristescu/a36bc4ae0c11329be76caa26e7a6e08d to your computer and use it in GitHub Desktop.
Save icristescu/a36bc4ae0c11329be76caa26e7a6e08d to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- 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:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#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[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
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];
searching = 0;
}
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);
}
else if (e.target.id == "unzoom") unzoom();
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 = "Function: " + 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 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["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_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 update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
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 = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("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(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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 = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
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 = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// 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;
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
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 + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>camlIndex__mem_1616 (10,130 samples, 0.49%)</title><rect x="1148.5" y="1317" width="5.9" height="15.0" fill="rgb(211,96,51)" rx="2" ry="2" />
<text x="1151.54" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (468 samples, 0.02%)</title><rect x="709.9" y="1733" width="0.3" height="15.0" fill="rgb(237,228,53)" rx="2" ry="2" />
<text x="712.91" y="1743.5" ></text>
</g>
<g >
<title>caml_thread_yield (504 samples, 0.02%)</title><rect x="737.4" y="1429" width="0.3" height="15.0" fill="rgb(253,134,34)" rx="2" ry="2" />
<text x="740.44" y="1439.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (323 samples, 0.02%)</title><rect x="818.8" y="1317" width="0.2" height="15.0" fill="rgb(208,184,39)" rx="2" ry="2" />
<text x="821.85" y="1327.5" ></text>
</g>
<g >
<title>caml_pread (534 samples, 0.03%)</title><rect x="818.0" y="1333" width="0.3" height="15.0" fill="rgb(213,39,20)" rx="2" ry="2" />
<text x="820.97" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (30,530 samples, 1.49%)</title><rect x="787.7" y="1429" width="17.5" height="15.0" fill="rgb(243,70,15)" rx="2" ry="2" />
<text x="790.65" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (308 samples, 0.02%)</title><rect x="793.1" y="1317" width="0.1" height="15.0" fill="rgb(247,180,54)" rx="2" ry="2" />
<text x="796.06" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4606 (2,702 samples, 0.13%)</title><rect x="774.2" y="1525" width="1.6" height="15.0" fill="rgb(241,1,28)" rx="2" ry="2" />
<text x="777.24" y="1535.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,209 samples, 0.11%)</title><rect x="335.2" y="1877" width="1.3" height="15.0" fill="rgb(222,210,34)" rx="2" ry="2" />
<text x="338.25" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,810 samples, 0.09%)</title><rect x="965.7" y="1285" width="1.1" height="15.0" fill="rgb(235,45,27)" rx="2" ry="2" />
<text x="968.71" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,704 samples, 1.01%)</title><rect x="681.0" y="1797" width="11.9" height="15.0" fill="rgb(241,168,43)" rx="2" ry="2" />
<text x="684.04" y="1807.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,412 samples, 0.07%)</title><rect x="260.9" y="1829" width="0.8" height="15.0" fill="rgb(253,200,13)" rx="2" ry="2" />
<text x="263.92" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (457 samples, 0.02%)</title><rect x="865.0" y="1333" width="0.3" height="15.0" fill="rgb(248,227,5)" rx="2" ry="2" />
<text x="868.04" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_456 (290 samples, 0.01%)</title><rect x="1134.3" y="1285" width="0.2" height="15.0" fill="rgb(242,162,19)" rx="2" ry="2" />
<text x="1137.34" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (242 samples, 0.01%)</title><rect x="1168.2" y="1285" width="0.1" height="15.0" fill="rgb(216,68,10)" rx="2" ry="2" />
<text x="1171.17" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (429 samples, 0.02%)</title><rect x="994.1" y="1349" width="0.3" height="15.0" fill="rgb(240,165,36)" rx="2" ry="2" />
<text x="997.15" y="1359.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (2,000 samples, 0.10%)</title><rect x="447.0" y="1877" width="1.1" height="15.0" fill="rgb(233,195,38)" rx="2" ry="2" />
<text x="449.99" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (11,756 samples, 0.57%)</title><rect x="199.4" y="1893" width="6.8" height="15.0" fill="rgb(225,105,18)" rx="2" ry="2" />
<text x="202.39" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (493 samples, 0.02%)</title><rect x="1144.6" y="1461" width="0.3" height="15.0" fill="rgb(252,122,50)" rx="2" ry="2" />
<text x="1147.58" y="1471.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6267 (202 samples, 0.01%)</title><rect x="716.7" y="1477" width="0.2" height="15.0" fill="rgb(233,30,13)" rx="2" ry="2" />
<text x="719.74" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,339 samples, 0.07%)</title><rect x="794.9" y="1253" width="0.8" height="15.0" fill="rgb(229,88,6)" rx="2" ry="2" />
<text x="797.93" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (10,855 samples, 0.53%)</title><rect x="225.6" y="1877" width="6.3" height="15.0" fill="rgb(211,26,41)" rx="2" ry="2" />
<text x="228.64" y="1887.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (297 samples, 0.01%)</title><rect x="912.6" y="1221" width="0.1" height="15.0" fill="rgb(210,181,3)" rx="2" ry="2" />
<text x="915.55" y="1231.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (5,606 samples, 0.27%)</title><rect x="728.5" y="1461" width="3.3" height="15.0" fill="rgb(227,158,9)" rx="2" ry="2" />
<text x="731.54" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (15,303 samples, 0.75%)</title><rect x="777.9" y="1349" width="8.8" height="15.0" fill="rgb(249,108,2)" rx="2" ry="2" />
<text x="780.85" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (365 samples, 0.02%)</title><rect x="802.1" y="1189" width="0.2" height="15.0" fill="rgb(243,152,1)" rx="2" ry="2" />
<text x="805.09" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (546 samples, 0.03%)</title><rect x="1052.1" y="1237" width="0.4" height="15.0" fill="rgb(242,83,52)" rx="2" ry="2" />
<text x="1055.14" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (507 samples, 0.02%)</title><rect x="775.5" y="1461" width="0.2" height="15.0" fill="rgb(218,165,9)" rx="2" ry="2" />
<text x="778.45" y="1471.5" ></text>
</g>
<g >
<title>sweep_slice (240 samples, 0.01%)</title><rect x="700.3" y="1893" width="0.1" height="15.0" fill="rgb(224,220,7)" rx="2" ry="2" />
<text x="703.28" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (8,537 samples, 0.42%)</title><rect x="718.0" y="1509" width="4.9" height="15.0" fill="rgb(213,83,49)" rx="2" ry="2" />
<text x="721.03" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__fun_97795 (256,201 samples, 12.49%)</title><rect x="741.1" y="1701" width="147.4" height="15.0" fill="rgb(221,168,32)" rx="2" ry="2" />
<text x="744.11" y="1711.5" >camlIrmin_pack__Pa..</text>
</g>
<g >
<title>__pthread_cond_wait_common (461 samples, 0.02%)</title><rect x="1166.8" y="1173" width="0.3" height="15.0" fill="rgb(206,22,27)" rx="2" ry="2" />
<text x="1169.84" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (348 samples, 0.02%)</title><rect x="838.6" y="1205" width="0.2" height="15.0" fill="rgb(220,120,1)" rx="2" ry="2" />
<text x="841.63" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="725" width="0.3" height="15.0" fill="rgb(248,29,41)" rx="2" ry="2" />
<text x="1192.37" y="735.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (428 samples, 0.02%)</title><rect x="1014.0" y="1301" width="0.3" height="15.0" fill="rgb(238,39,26)" rx="2" ry="2" />
<text x="1017.04" y="1311.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (393 samples, 0.02%)</title><rect x="401.6" y="1845" width="0.2" height="15.0" fill="rgb(239,72,29)" rx="2" ry="2" />
<text x="404.56" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (277 samples, 0.01%)</title><rect x="979.0" y="1429" width="0.2" height="15.0" fill="rgb(231,135,31)" rx="2" ry="2" />
<text x="982.02" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1461" width="0.3" height="15.0" fill="rgb(247,85,23)" rx="2" ry="2" />
<text x="1192.37" y="1471.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,103 samples, 0.05%)</title><rect x="1018.1" y="1285" width="0.6" height="15.0" fill="rgb(208,112,36)" rx="2" ry="2" />
<text x="1021.08" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (455 samples, 0.02%)</title><rect x="1006.3" y="1253" width="0.3" height="15.0" fill="rgb(219,35,33)" rx="2" ry="2" />
<text x="1009.30" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (29,108 samples, 1.42%)</title><rect x="869.6" y="1509" width="16.7" height="15.0" fill="rgb(241,97,32)" rx="2" ry="2" />
<text x="872.61" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1525" width="0.3" height="15.0" fill="rgb(224,78,48)" rx="2" ry="2" />
<text x="1192.06" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11899 (964 samples, 0.05%)</title><rect x="867.7" y="1477" width="0.6" height="15.0" fill="rgb(219,9,18)" rx="2" ry="2" />
<text x="870.75" y="1487.5" ></text>
</g>
<g >
<title>caml_tuplify3 (323 samples, 0.02%)</title><rect x="708.7" y="1877" width="0.2" height="15.0" fill="rgb(205,228,18)" rx="2" ry="2" />
<text x="711.73" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (324 samples, 0.02%)</title><rect x="1131.6" y="1173" width="0.2" height="15.0" fill="rgb(252,93,32)" rx="2" ry="2" />
<text x="1134.57" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (374 samples, 0.02%)</title><rect x="860.7" y="1429" width="0.2" height="15.0" fill="rgb(210,67,30)" rx="2" ry="2" />
<text x="863.65" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1125" width="0.3" height="15.0" fill="rgb(210,169,31)" rx="2" ry="2" />
<text x="1192.37" y="1135.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_851 (369 samples, 0.02%)</title><rect x="1147.2" y="1317" width="0.2" height="15.0" fill="rgb(219,216,16)" rx="2" ry="2" />
<text x="1150.18" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (250 samples, 0.01%)</title><rect x="1188.7" y="149" width="0.2" height="15.0" fill="rgb(215,126,7)" rx="2" ry="2" />
<text x="1191.71" y="159.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,766 samples, 0.33%)</title><rect x="1012.5" y="1349" width="3.8" height="15.0" fill="rgb(220,169,46)" rx="2" ry="2" />
<text x="1015.46" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7365 (53,244 samples, 2.60%)</title><rect x="741.6" y="1477" width="30.6" height="15.0" fill="rgb(244,219,7)" rx="2" ry="2" />
<text x="744.62" y="1487.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (881 samples, 0.04%)</title><rect x="1162.8" y="1189" width="0.5" height="15.0" fill="rgb(233,135,13)" rx="2" ry="2" />
<text x="1165.82" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_85 (1,216 samples, 0.06%)</title><rect x="421.0" y="1893" width="0.7" height="15.0" fill="rgb(237,138,31)" rx="2" ry="2" />
<text x="424.02" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (688 samples, 0.03%)</title><rect x="1022.0" y="1237" width="0.4" height="15.0" fill="rgb(242,170,22)" rx="2" ry="2" />
<text x="1025.04" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (285 samples, 0.01%)</title><rect x="716.1" y="1605" width="0.2" height="15.0" fill="rgb(241,5,34)" rx="2" ry="2" />
<text x="719.10" y="1615.5" ></text>
</g>
<g >
<title>caml_garbage_collection (353 samples, 0.02%)</title><rect x="759.6" y="1333" width="0.3" height="15.0" fill="rgb(207,156,29)" rx="2" ry="2" />
<text x="762.65" y="1343.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6269 (244 samples, 0.01%)</title><rect x="1189.2" y="101" width="0.1" height="15.0" fill="rgb(245,95,2)" rx="2" ry="2" />
<text x="1192.16" y="111.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="2053" width="0.3" height="15.0" fill="rgb(222,47,39)" rx="2" ry="2" />
<text x="1191.59" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2615 (2,368 samples, 0.12%)</title><rect x="146.5" y="1893" width="1.3" height="15.0" fill="rgb(229,16,25)" rx="2" ry="2" />
<text x="149.47" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (28,936 samples, 1.41%)</title><rect x="869.7" y="1493" width="16.6" height="15.0" fill="rgb(211,32,32)" rx="2" ry="2" />
<text x="872.67" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (312 samples, 0.02%)</title><rect x="938.4" y="1349" width="0.1" height="15.0" fill="rgb(253,117,25)" rx="2" ry="2" />
<text x="941.36" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (595 samples, 0.03%)</title><rect x="747.8" y="1269" width="0.3" height="15.0" fill="rgb(250,159,42)" rx="2" ry="2" />
<text x="750.76" y="1279.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (236 samples, 0.01%)</title><rect x="1153.4" y="1173" width="0.1" height="15.0" fill="rgb(247,39,53)" rx="2" ry="2" />
<text x="1156.40" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (275 samples, 0.01%)</title><rect x="913.7" y="1269" width="0.2" height="15.0" fill="rgb(238,73,54)" rx="2" ry="2" />
<text x="916.75" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (302 samples, 0.01%)</title><rect x="1151.5" y="1173" width="0.2" height="15.0" fill="rgb(229,13,14)" rx="2" ry="2" />
<text x="1154.54" y="1183.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (540 samples, 0.03%)</title><rect x="1132.0" y="1173" width="0.3" height="15.0" fill="rgb(205,42,42)" rx="2" ry="2" />
<text x="1134.99" y="1183.5" ></text>
</g>
<g >
<title>caml_thread_tick (365 samples, 0.02%)</title><rect x="715.9" y="2021" width="0.2" height="15.0" fill="rgb(218,15,11)" rx="2" ry="2" />
<text x="718.88" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (827 samples, 0.04%)</title><rect x="1020.9" y="1221" width="0.5" height="15.0" fill="rgb(209,229,31)" rx="2" ry="2" />
<text x="1023.89" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (594 samples, 0.03%)</title><rect x="1090.4" y="1269" width="0.3" height="15.0" fill="rgb(218,224,48)" rx="2" ry="2" />
<text x="1093.38" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,184 samples, 0.06%)</title><rect x="731.8" y="1461" width="0.6" height="15.0" fill="rgb(234,118,47)" rx="2" ry="2" />
<text x="734.76" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (710 samples, 0.03%)</title><rect x="1119.2" y="1317" width="0.4" height="15.0" fill="rgb(212,31,2)" rx="2" ry="2" />
<text x="1122.23" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (748 samples, 0.04%)</title><rect x="823.9" y="1333" width="0.5" height="15.0" fill="rgb(219,6,21)" rx="2" ry="2" />
<text x="826.95" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (368 samples, 0.02%)</title><rect x="1187.0" y="1397" width="0.2" height="15.0" fill="rgb(232,37,10)" rx="2" ry="2" />
<text x="1190.01" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (861 samples, 0.04%)</title><rect x="862.4" y="1413" width="0.5" height="15.0" fill="rgb(208,206,31)" rx="2" ry="2" />
<text x="865.36" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15565 (106,980 samples, 5.21%)</title><rect x="1077.8" y="1461" width="61.5" height="15.0" fill="rgb(214,13,20)" rx="2" ry="2" />
<text x="1080.79" y="1471.5" >camlIr..</text>
</g>
<g >
<title>__lll_unlock_wake (349 samples, 0.02%)</title><rect x="785.1" y="1221" width="0.2" height="15.0" fill="rgb(221,62,28)" rx="2" ry="2" />
<text x="788.09" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (582 samples, 0.03%)</title><rect x="720.5" y="1413" width="0.3" height="15.0" fill="rgb(207,169,15)" rx="2" ry="2" />
<text x="723.48" y="1423.5" ></text>
</g>
<g >
<title>futex_wake (416 samples, 0.02%)</title><rect x="758.6" y="1317" width="0.2" height="15.0" fill="rgb(247,102,30)" rx="2" ry="2" />
<text x="761.58" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (182 samples, 0.01%)</title><rect x="1065.4" y="1269" width="0.1" height="15.0" fill="rgb(232,15,8)" rx="2" ry="2" />
<text x="1068.44" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (213 samples, 0.01%)</title><rect x="774.6" y="1429" width="0.1" height="15.0" fill="rgb(243,181,41)" rx="2" ry="2" />
<text x="777.57" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (348 samples, 0.02%)</title><rect x="1123.5" y="1381" width="0.2" height="15.0" fill="rgb(247,131,35)" rx="2" ry="2" />
<text x="1126.51" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1445" width="0.2" height="15.0" fill="rgb(253,117,4)" rx="2" ry="2" />
<text x="1191.85" y="1455.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (563 samples, 0.03%)</title><rect x="882.2" y="1349" width="0.3" height="15.0" fill="rgb(231,209,37)" rx="2" ry="2" />
<text x="885.22" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__lazy__from_val_160 (411 samples, 0.02%)</title><rect x="926.3" y="1301" width="0.2" height="15.0" fill="rgb(230,37,10)" rx="2" ry="2" />
<text x="929.28" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (803 samples, 0.04%)</title><rect x="410.8" y="1829" width="0.5" height="15.0" fill="rgb(226,117,30)" rx="2" ry="2" />
<text x="413.82" y="1839.5" ></text>
</g>
<g >
<title>caml_apply2 (562 samples, 0.03%)</title><rect x="905.6" y="1221" width="0.3" height="15.0" fill="rgb(227,170,17)" rx="2" ry="2" />
<text x="908.59" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (989 samples, 0.05%)</title><rect x="231.2" y="1813" width="0.6" height="15.0" fill="rgb(246,0,27)" rx="2" ry="2" />
<text x="234.18" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_34103 (72,264 samples, 3.52%)</title><rect x="1145.8" y="1445" width="41.5" height="15.0" fill="rgb(231,152,11)" rx="2" ry="2" />
<text x="1148.76" y="1455.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (223 samples, 0.01%)</title><rect x="978.4" y="1445" width="0.1" height="15.0" fill="rgb(230,90,8)" rx="2" ry="2" />
<text x="981.37" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (267 samples, 0.01%)</title><rect x="1175.5" y="1157" width="0.2" height="15.0" fill="rgb(206,3,31)" rx="2" ry="2" />
<text x="1178.50" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (175 samples, 0.01%)</title><rect x="1126.3" y="1365" width="0.1" height="15.0" fill="rgb(248,103,8)" rx="2" ry="2" />
<text x="1129.30" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (211 samples, 0.01%)</title><rect x="1153.4" y="1141" width="0.1" height="15.0" fill="rgb(206,86,31)" rx="2" ry="2" />
<text x="1156.42" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13845 (255,583 samples, 12.46%)</title><rect x="741.2" y="1541" width="147.0" height="15.0" fill="rgb(245,173,11)" rx="2" ry="2" />
<text x="744.20" y="1551.5" >camlIrmin_pack__La..</text>
</g>
<g >
<title>__lll_unlock_wake (216 samples, 0.01%)</title><rect x="22.8" y="2037" width="0.1" height="15.0" fill="rgb(252,208,24)" rx="2" ry="2" />
<text x="25.81" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (201 samples, 0.01%)</title><rect x="35.6" y="1925" width="0.1" height="15.0" fill="rgb(224,195,18)" rx="2" ry="2" />
<text x="38.61" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (315 samples, 0.02%)</title><rect x="861.8" y="1429" width="0.2" height="15.0" fill="rgb(219,134,0)" rx="2" ry="2" />
<text x="864.81" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,017 samples, 0.10%)</title><rect x="1142.7" y="1461" width="1.2" height="15.0" fill="rgb(244,111,6)" rx="2" ry="2" />
<text x="1145.69" y="1471.5" ></text>
</g>
<g >
<title>caml_alloc_string (224 samples, 0.01%)</title><rect x="421.5" y="1877" width="0.2" height="15.0" fill="rgb(247,18,38)" rx="2" ry="2" />
<text x="424.54" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,098 samples, 0.10%)</title><rect x="33.8" y="1893" width="1.2" height="15.0" fill="rgb(237,132,23)" rx="2" ry="2" />
<text x="36.76" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1173" width="0.3" height="15.0" fill="rgb(214,92,19)" rx="2" ry="2" />
<text x="1192.37" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (388 samples, 0.02%)</title><rect x="1025.0" y="1285" width="0.3" height="15.0" fill="rgb(247,69,26)" rx="2" ry="2" />
<text x="1028.03" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (514 samples, 0.03%)</title><rect x="768.9" y="1285" width="0.3" height="15.0" fill="rgb(240,119,50)" rx="2" ry="2" />
<text x="771.89" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (237 samples, 0.01%)</title><rect x="1032.3" y="1253" width="0.2" height="15.0" fill="rgb(227,192,19)" rx="2" ry="2" />
<text x="1035.34" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (743 samples, 0.04%)</title><rect x="1143.1" y="1413" width="0.4" height="15.0" fill="rgb(249,120,49)" rx="2" ry="2" />
<text x="1146.08" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="261" width="0.3" height="15.0" fill="rgb(237,19,19)" rx="2" ry="2" />
<text x="1192.69" y="271.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,747 samples, 0.09%)</title><rect x="1152.9" y="1237" width="1.0" height="15.0" fill="rgb(237,27,32)" rx="2" ry="2" />
<text x="1155.89" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (362 samples, 0.02%)</title><rect x="1002.4" y="1269" width="0.2" height="15.0" fill="rgb(206,161,0)" rx="2" ry="2" />
<text x="1005.37" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (1,554 samples, 0.08%)</title><rect x="1095.3" y="1269" width="0.9" height="15.0" fill="rgb(246,190,9)" rx="2" ry="2" />
<text x="1098.35" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (609 samples, 0.03%)</title><rect x="1027.2" y="1365" width="0.3" height="15.0" fill="rgb(253,218,5)" rx="2" ry="2" />
<text x="1030.18" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (1,379 samples, 0.07%)</title><rect x="166.7" y="1861" width="0.8" height="15.0" fill="rgb(212,90,22)" rx="2" ry="2" />
<text x="169.74" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (615 samples, 0.03%)</title><rect x="835.3" y="1333" width="0.4" height="15.0" fill="rgb(224,172,35)" rx="2" ry="2" />
<text x="838.32" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (6,464 samples, 0.32%)</title><rect x="308.8" y="1813" width="3.8" height="15.0" fill="rgb(251,12,34)" rx="2" ry="2" />
<text x="311.83" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (26,134 samples, 1.27%)</title><rect x="807.3" y="1461" width="15.0" height="15.0" fill="rgb(246,95,36)" rx="2" ry="2" />
<text x="810.29" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (175 samples, 0.01%)</title><rect x="777.9" y="1333" width="0.1" height="15.0" fill="rgb(247,157,8)" rx="2" ry="2" />
<text x="780.87" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (238 samples, 0.01%)</title><rect x="733.1" y="1333" width="0.1" height="15.0" fill="rgb(217,103,2)" rx="2" ry="2" />
<text x="736.10" y="1343.5" ></text>
</g>
<g >
<title>main (615 samples, 0.03%)</title><rect x="10.1" y="2021" width="0.3" height="15.0" fill="rgb(222,23,7)" rx="2" ry="2" />
<text x="13.05" y="2031.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (780 samples, 0.04%)</title><rect x="919.8" y="1141" width="0.5" height="15.0" fill="rgb(240,160,50)" rx="2" ry="2" />
<text x="922.84" y="1151.5" ></text>
</g>
<g >
<title>caml_hash (515 samples, 0.03%)</title><rect x="747.8" y="1253" width="0.3" height="15.0" fill="rgb(215,56,37)" rx="2" ry="2" />
<text x="750.80" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (4,029 samples, 0.20%)</title><rect x="852.4" y="1365" width="2.3" height="15.0" fill="rgb(219,206,7)" rx="2" ry="2" />
<text x="855.43" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (395 samples, 0.02%)</title><rect x="864.3" y="1253" width="0.2" height="15.0" fill="rgb(218,172,45)" rx="2" ry="2" />
<text x="867.32" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (524 samples, 0.03%)</title><rect x="882.2" y="1301" width="0.3" height="15.0" fill="rgb(246,96,46)" rx="2" ry="2" />
<text x="885.25" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_string (265 samples, 0.01%)</title><rect x="1087.0" y="1253" width="0.1" height="15.0" fill="rgb(235,91,22)" rx="2" ry="2" />
<text x="1089.99" y="1263.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (218 samples, 0.01%)</title><rect x="785.8" y="1221" width="0.1" height="15.0" fill="rgb(241,220,23)" rx="2" ry="2" />
<text x="788.78" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398 samples, 0.02%)</title><rect x="838.2" y="1221" width="0.2" height="15.0" fill="rgb(209,37,43)" rx="2" ry="2" />
<text x="841.20" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,359 samples, 0.07%)</title><rect x="724.6" y="1525" width="0.7" height="15.0" fill="rgb(221,129,4)" rx="2" ry="2" />
<text x="727.56" y="1535.5" ></text>
</g>
<g >
<title>caml_hash (463 samples, 0.02%)</title><rect x="981.2" y="1381" width="0.3" height="15.0" fill="rgb(212,98,35)" rx="2" ry="2" />
<text x="984.22" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (436 samples, 0.02%)</title><rect x="853.4" y="1269" width="0.2" height="15.0" fill="rgb(233,131,45)" rx="2" ry="2" />
<text x="856.39" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="949" width="0.3" height="15.0" fill="rgb(227,210,36)" rx="2" ry="2" />
<text x="1192.37" y="959.5" ></text>
</g>
<g >
<title>mark_slice_darken (375 samples, 0.02%)</title><rect x="702.7" y="1781" width="0.2" height="15.0" fill="rgb(240,85,46)" rx="2" ry="2" />
<text x="705.72" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (1,908 samples, 0.09%)</title><rect x="755.2" y="1381" width="1.1" height="15.0" fill="rgb(234,125,34)" rx="2" ry="2" />
<text x="758.18" y="1391.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.6 (395 samples, 0.02%)</title><rect x="36.5" y="1989" width="0.2" height="15.0" fill="rgb(244,105,40)" rx="2" ry="2" />
<text x="39.46" y="1999.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (411 samples, 0.02%)</title><rect x="859.1" y="1381" width="0.2" height="15.0" fill="rgb(219,104,27)" rx="2" ry="2" />
<text x="862.10" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,102 samples, 0.20%)</title><rect x="846.7" y="1333" width="2.4" height="15.0" fill="rgb(218,6,40)" rx="2" ry="2" />
<text x="849.72" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (2,051 samples, 0.10%)</title><rect x="732.4" y="1461" width="1.2" height="15.0" fill="rgb(249,194,0)" rx="2" ry="2" />
<text x="735.44" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_335 (480 samples, 0.02%)</title><rect x="791.9" y="1365" width="0.2" height="15.0" fill="rgb(209,137,13)" rx="2" ry="2" />
<text x="794.86" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (209 samples, 0.01%)</title><rect x="797.2" y="1253" width="0.1" height="15.0" fill="rgb(213,38,8)" rx="2" ry="2" />
<text x="800.15" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1605" width="0.2" height="15.0" fill="rgb(244,207,1)" rx="2" ry="2" />
<text x="1191.85" y="1615.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (182 samples, 0.01%)</title><rect x="944.0" y="1285" width="0.1" height="15.0" fill="rgb(238,11,19)" rx="2" ry="2" />
<text x="946.99" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4779 (21,930 samples, 1.07%)</title><rect x="1146.3" y="1397" width="12.6" height="15.0" fill="rgb(218,68,4)" rx="2" ry="2" />
<text x="1149.30" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (179 samples, 0.01%)</title><rect x="812.0" y="1301" width="0.1" height="15.0" fill="rgb(253,84,25)" rx="2" ry="2" />
<text x="814.99" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (185 samples, 0.01%)</title><rect x="335.3" y="1829" width="0.1" height="15.0" fill="rgb(233,214,39)" rx="2" ry="2" />
<text x="338.29" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (362 samples, 0.02%)</title><rect x="750.7" y="1221" width="0.2" height="15.0" fill="rgb(242,183,40)" rx="2" ry="2" />
<text x="753.67" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412 samples, 0.02%)</title><rect x="1071.5" y="1173" width="0.2" height="15.0" fill="rgb(231,35,48)" rx="2" ry="2" />
<text x="1074.47" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="325" width="0.3" height="15.0" fill="rgb(252,33,30)" rx="2" ry="2" />
<text x="1192.06" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (369 samples, 0.02%)</title><rect x="818.1" y="1237" width="0.2" height="15.0" fill="rgb(245,189,48)" rx="2" ry="2" />
<text x="821.06" y="1247.5" ></text>
</g>
<g >
<title>do_compare_val (174 samples, 0.01%)</title><rect x="1158.4" y="1157" width="0.1" height="15.0" fill="rgb(248,87,50)" rx="2" ry="2" />
<text x="1161.44" y="1167.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (5,031 samples, 0.25%)</title><rect x="1149.2" y="1253" width="2.9" height="15.0" fill="rgb(227,153,17)" rx="2" ry="2" />
<text x="1152.25" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1941" width="0.3" height="15.0" fill="rgb(236,223,18)" rx="2" ry="2" />
<text x="1192.37" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1221" width="0.3" height="15.0" fill="rgb(213,225,32)" rx="2" ry="2" />
<text x="1192.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="629" width="0.3" height="15.0" fill="rgb(234,60,38)" rx="2" ry="2" />
<text x="1192.37" y="639.5" ></text>
</g>
<g >
<title>caml_call_gc (546 samples, 0.03%)</title><rect x="1132.0" y="1237" width="0.3" height="15.0" fill="rgb(205,181,22)" rx="2" ry="2" />
<text x="1134.99" y="1247.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (211 samples, 0.01%)</title><rect x="701.0" y="1893" width="0.1" height="15.0" fill="rgb(218,84,13)" rx="2" ry="2" />
<text x="703.96" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (340 samples, 0.02%)</title><rect x="837.6" y="1221" width="0.2" height="15.0" fill="rgb(244,130,30)" rx="2" ry="2" />
<text x="840.56" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,354 samples, 0.21%)</title><rect x="762.7" y="1301" width="2.6" height="15.0" fill="rgb(217,171,46)" rx="2" ry="2" />
<text x="765.75" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,471 samples, 0.07%)</title><rect x="798.6" y="1285" width="0.9" height="15.0" fill="rgb(250,210,38)" rx="2" ry="2" />
<text x="801.61" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (174 samples, 0.01%)</title><rect x="942.9" y="1301" width="0.1" height="15.0" fill="rgb(237,58,44)" rx="2" ry="2" />
<text x="945.87" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (603 samples, 0.03%)</title><rect x="812.5" y="1317" width="0.4" height="15.0" fill="rgb(208,90,39)" rx="2" ry="2" />
<text x="815.54" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (308 samples, 0.02%)</title><rect x="840.6" y="1413" width="0.2" height="15.0" fill="rgb(226,201,21)" rx="2" ry="2" />
<text x="843.58" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (299 samples, 0.01%)</title><rect x="836.1" y="1317" width="0.1" height="15.0" fill="rgb(232,63,22)" rx="2" ry="2" />
<text x="839.07" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_335 (1,122 samples, 0.05%)</title><rect x="1041.3" y="1365" width="0.7" height="15.0" fill="rgb(238,138,43)" rx="2" ry="2" />
<text x="1044.33" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277 samples, 0.01%)</title><rect x="785.1" y="1173" width="0.2" height="15.0" fill="rgb(219,56,49)" rx="2" ry="2" />
<text x="788.13" y="1183.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (205 samples, 0.01%)</title><rect x="751.4" y="1237" width="0.1" height="15.0" fill="rgb(210,38,53)" rx="2" ry="2" />
<text x="754.39" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (67,543 samples, 3.29%)</title><rect x="890.7" y="1381" width="38.8" height="15.0" fill="rgb(240,41,27)" rx="2" ry="2" />
<text x="893.65" y="1391.5" >cam..</text>
</g>
<g >
<title>mark_slice (633 samples, 0.03%)</title><rect x="146.0" y="1829" width="0.3" height="15.0" fill="rgb(228,85,4)" rx="2" ry="2" />
<text x="148.97" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (419 samples, 0.02%)</title><rect x="841.3" y="1333" width="0.2" height="15.0" fill="rgb(205,227,6)" rx="2" ry="2" />
<text x="844.29" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (525 samples, 0.03%)</title><rect x="1093.4" y="1237" width="0.3" height="15.0" fill="rgb(228,191,18)" rx="2" ry="2" />
<text x="1096.36" y="1247.5" ></text>
</g>
<g >
<title>futex_wake (204 samples, 0.01%)</title><rect x="1106.4" y="1269" width="0.1" height="15.0" fill="rgb(207,102,33)" rx="2" ry="2" />
<text x="1109.43" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (199 samples, 0.01%)</title><rect x="748.2" y="1269" width="0.1" height="15.0" fill="rgb(224,158,38)" rx="2" ry="2" />
<text x="751.17" y="1279.5" ></text>
</g>
<g >
<title>caml_thread_yield (803 samples, 0.04%)</title><rect x="912.3" y="1237" width="0.5" height="15.0" fill="rgb(208,50,10)" rx="2" ry="2" />
<text x="915.30" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (2,475 samples, 0.12%)</title><rect x="1143.9" y="1477" width="1.4" height="15.0" fill="rgb(218,177,11)" rx="2" ry="2" />
<text x="1146.87" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (702 samples, 0.03%)</title><rect x="729.1" y="1381" width="0.4" height="15.0" fill="rgb(236,182,4)" rx="2" ry="2" />
<text x="732.08" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (179 samples, 0.01%)</title><rect x="966.6" y="1253" width="0.1" height="15.0" fill="rgb(236,143,18)" rx="2" ry="2" />
<text x="969.63" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (615 samples, 0.03%)</title><rect x="705.2" y="1845" width="0.4" height="15.0" fill="rgb(228,168,2)" rx="2" ry="2" />
<text x="708.25" y="1855.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (234 samples, 0.01%)</title><rect x="700.9" y="1909" width="0.2" height="15.0" fill="rgb(218,216,2)" rx="2" ry="2" />
<text x="703.95" y="1919.5" ></text>
</g>
<g >
<title>caml_apply3 (201 samples, 0.01%)</title><rect x="699.4" y="1941" width="0.1" height="15.0" fill="rgb(205,185,18)" rx="2" ry="2" />
<text x="702.42" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (212 samples, 0.01%)</title><rect x="1068.0" y="1141" width="0.1" height="15.0" fill="rgb(234,155,31)" rx="2" ry="2" />
<text x="1070.96" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (562 samples, 0.03%)</title><rect x="891.5" y="1317" width="0.4" height="15.0" fill="rgb(243,159,41)" rx="2" ry="2" />
<text x="894.54" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (451 samples, 0.02%)</title><rect x="770.0" y="1237" width="0.2" height="15.0" fill="rgb(205,36,12)" rx="2" ry="2" />
<text x="772.97" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (710 samples, 0.03%)</title><rect x="205.0" y="1797" width="0.4" height="15.0" fill="rgb(224,130,39)" rx="2" ry="2" />
<text x="207.97" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (625 samples, 0.03%)</title><rect x="1120.5" y="1349" width="0.3" height="15.0" fill="rgb(235,180,15)" rx="2" ry="2" />
<text x="1123.49" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1749" width="0.3" height="15.0" fill="rgb(233,9,3)" rx="2" ry="2" />
<text x="1192.69" y="1759.5" ></text>
</g>
<g >
<title>sweep_slice (214 samples, 0.01%)</title><rect x="261.6" y="1813" width="0.1" height="15.0" fill="rgb(237,44,50)" rx="2" ry="2" />
<text x="264.61" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (1,010 samples, 0.05%)</title><rect x="992.2" y="1333" width="0.6" height="15.0" fill="rgb(210,79,35)" rx="2" ry="2" />
<text x="995.24" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (430 samples, 0.02%)</title><rect x="721.2" y="1429" width="0.2" height="15.0" fill="rgb(211,102,24)" rx="2" ry="2" />
<text x="724.19" y="1439.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (989 samples, 0.05%)</title><rect x="163.1" y="1829" width="0.6" height="15.0" fill="rgb(220,26,0)" rx="2" ry="2" />
<text x="166.15" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,081 samples, 0.05%)</title><rect x="968.7" y="1189" width="0.6" height="15.0" fill="rgb(220,164,18)" rx="2" ry="2" />
<text x="971.67" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (616 samples, 0.03%)</title><rect x="1081.3" y="1365" width="0.4" height="15.0" fill="rgb(248,174,44)" rx="2" ry="2" />
<text x="1084.32" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,140 samples, 0.06%)</title><rect x="1019.8" y="1237" width="0.7" height="15.0" fill="rgb(237,63,17)" rx="2" ry="2" />
<text x="1022.83" y="1247.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (213 samples, 0.01%)</title><rect x="839.1" y="1269" width="0.1" height="15.0" fill="rgb(215,67,36)" rx="2" ry="2" />
<text x="842.10" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12020 (5,040 samples, 0.25%)</title><rect x="1030.3" y="1349" width="2.9" height="15.0" fill="rgb(240,64,48)" rx="2" ry="2" />
<text x="1033.30" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1493" width="0.3" height="15.0" fill="rgb(220,73,19)" rx="2" ry="2" />
<text x="1192.06" y="1503.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (5,529 samples, 0.27%)</title><rect x="672.5" y="1877" width="3.2" height="15.0" fill="rgb(214,130,47)" rx="2" ry="2" />
<text x="675.48" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1045" width="0.3" height="15.0" fill="rgb(238,96,3)" rx="2" ry="2" />
<text x="1192.69" y="1055.5" ></text>
</g>
<g >
<title>mark_slice_darken (248 samples, 0.01%)</title><rect x="707.6" y="1781" width="0.1" height="15.0" fill="rgb(220,60,0)" rx="2" ry="2" />
<text x="710.57" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (466 samples, 0.02%)</title><rect x="1035.4" y="1317" width="0.3" height="15.0" fill="rgb(247,61,25)" rx="2" ry="2" />
<text x="1038.39" y="1327.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (1,853 samples, 0.09%)</title><rect x="1021.4" y="1269" width="1.0" height="15.0" fill="rgb(251,85,15)" rx="2" ry="2" />
<text x="1024.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_485 (259 samples, 0.01%)</title><rect x="857.7" y="1365" width="0.1" height="15.0" fill="rgb(238,158,36)" rx="2" ry="2" />
<text x="860.69" y="1375.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (50,117 samples, 2.44%)</title><rect x="578.6" y="1877" width="28.8" height="15.0" fill="rgb(215,218,43)" rx="2" ry="2" />
<text x="581.56" y="1887.5" >__..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (87,509 samples, 4.27%)</title><rect x="262.9" y="1909" width="50.3" height="15.0" fill="rgb(223,111,16)" rx="2" ry="2" />
<text x="265.91" y="1919.5" >camlI..</text>
</g>
<g >
<title>caml_hash (342 samples, 0.02%)</title><rect x="1118.0" y="1301" width="0.2" height="15.0" fill="rgb(228,43,27)" rx="2" ry="2" />
<text x="1121.02" y="1311.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (584 samples, 0.03%)</title><rect x="40.7" y="1989" width="0.3" height="15.0" fill="rgb(252,128,48)" rx="2" ry="2" />
<text x="43.69" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fixed_size_885 (856 samples, 0.04%)</title><rect x="151.7" y="1877" width="0.5" height="15.0" fill="rgb(249,190,41)" rx="2" ry="2" />
<text x="154.70" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (323 samples, 0.02%)</title><rect x="791.2" y="1381" width="0.1" height="15.0" fill="rgb(249,213,27)" rx="2" ry="2" />
<text x="794.15" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (3,330 samples, 0.16%)</title><rect x="1085.3" y="1269" width="1.9" height="15.0" fill="rgb(215,16,52)" rx="2" ry="2" />
<text x="1088.26" y="1279.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (306 samples, 0.01%)</title><rect x="1175.2" y="1189" width="0.2" height="15.0" fill="rgb(230,36,18)" rx="2" ry="2" />
<text x="1178.25" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,652 samples, 0.32%)</title><rect x="914.1" y="1301" width="3.8" height="15.0" fill="rgb(246,86,2)" rx="2" ry="2" />
<text x="917.06" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (721 samples, 0.04%)</title><rect x="1109.2" y="1349" width="0.4" height="15.0" fill="rgb(216,127,7)" rx="2" ry="2" />
<text x="1112.19" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (360 samples, 0.02%)</title><rect x="802.8" y="1173" width="0.2" height="15.0" fill="rgb(240,225,37)" rx="2" ry="2" />
<text x="805.79" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1519 (251 samples, 0.01%)</title><rect x="1133.3" y="1285" width="0.1" height="15.0" fill="rgb(218,163,36)" rx="2" ry="2" />
<text x="1136.28" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="453" width="0.3" height="15.0" fill="rgb(206,215,44)" rx="2" ry="2" />
<text x="1192.06" y="463.5" ></text>
</g>
<g >
<title>caml_apply2 (214 samples, 0.01%)</title><rect x="1065.6" y="1301" width="0.1" height="15.0" fill="rgb(231,168,39)" rx="2" ry="2" />
<text x="1068.57" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (919 samples, 0.04%)</title><rect x="1171.8" y="1205" width="0.5" height="15.0" fill="rgb(210,167,50)" rx="2" ry="2" />
<text x="1174.76" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__map_1294 (198 samples, 0.01%)</title><rect x="977.8" y="1461" width="0.1" height="15.0" fill="rgb(236,60,1)" rx="2" ry="2" />
<text x="980.75" y="1471.5" ></text>
</g>
<g >
<title>caml_apply3 (446 samples, 0.02%)</title><rect x="337.5" y="1909" width="0.2" height="15.0" fill="rgb(247,46,31)" rx="2" ry="2" />
<text x="340.46" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1301" width="0.2" height="15.0" fill="rgb(252,50,39)" rx="2" ry="2" />
<text x="1191.85" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (271 samples, 0.01%)</title><rect x="781.7" y="1237" width="0.2" height="15.0" fill="rgb(218,204,22)" rx="2" ry="2" />
<text x="784.75" y="1247.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (503 samples, 0.02%)</title><rect x="36.1" y="2005" width="0.2" height="15.0" fill="rgb(218,68,21)" rx="2" ry="2" />
<text x="39.06" y="2015.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (1,088 samples, 0.05%)</title><rect x="710.9" y="1909" width="0.6" height="15.0" fill="rgb(226,80,29)" rx="2" ry="2" />
<text x="713.90" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,061 samples, 0.05%)</title><rect x="1075.0" y="1397" width="0.6" height="15.0" fill="rgb(230,227,29)" rx="2" ry="2" />
<text x="1077.95" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (4,486 samples, 0.22%)</title><rect x="1149.4" y="1237" width="2.6" height="15.0" fill="rgb(254,142,20)" rx="2" ry="2" />
<text x="1152.40" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (38,173 samples, 1.86%)</title><rect x="424.8" y="1941" width="22.0" height="15.0" fill="rgb(236,215,6)" rx="2" ry="2" />
<text x="427.81" y="1951.5" >c..</text>
</g>
<g >
<title>camlIndex__decode_entry_323 (529 samples, 0.03%)</title><rect x="850.4" y="1365" width="0.3" height="15.0" fill="rgb(243,117,14)" rx="2" ry="2" />
<text x="853.41" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1925" width="0.3" height="15.0" fill="rgb(232,83,7)" rx="2" ry="2" />
<text x="1192.69" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,935 samples, 0.29%)</title><rect x="12.3" y="2053" width="3.5" height="15.0" fill="rgb(247,86,54)" rx="2" ry="2" />
<text x="15.34" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="2053" width="0.3" height="15.0" fill="rgb(216,72,39)" rx="2" ry="2" />
<text x="1192.06" y="2063.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (606 samples, 0.03%)</title><rect x="668.8" y="1829" width="0.3" height="15.0" fill="rgb(226,30,50)" rx="2" ry="2" />
<text x="671.76" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4916 (278 samples, 0.01%)</title><rect x="860.9" y="1429" width="0.2" height="15.0" fill="rgb(246,47,47)" rx="2" ry="2" />
<text x="863.92" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,661 samples, 0.08%)</title><rect x="1061.7" y="1301" width="0.9" height="15.0" fill="rgb(241,180,51)" rx="2" ry="2" />
<text x="1064.69" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (1,330 samples, 0.06%)</title><rect x="1154.5" y="1269" width="0.7" height="15.0" fill="rgb(246,120,6)" rx="2" ry="2" />
<text x="1157.47" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,310 samples, 0.06%)</title><rect x="705.8" y="1813" width="0.7" height="15.0" fill="rgb(228,145,27)" rx="2" ry="2" />
<text x="708.79" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,078 samples, 0.05%)</title><rect x="1018.1" y="1269" width="0.6" height="15.0" fill="rgb(246,121,41)" rx="2" ry="2" />
<text x="1021.08" y="1279.5" ></text>
</g>
<g >
<title>do_compare_val (2,265 samples, 0.11%)</title><rect x="1136.5" y="1253" width="1.3" height="15.0" fill="rgb(211,66,38)" rx="2" ry="2" />
<text x="1139.55" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="613" width="0.3" height="15.0" fill="rgb(215,162,40)" rx="2" ry="2" />
<text x="1191.59" y="623.5" ></text>
</g>
<g >
<title>mark_slice (338 samples, 0.02%)</title><rect x="709.7" y="1781" width="0.1" height="15.0" fill="rgb(218,109,16)" rx="2" ry="2" />
<text x="712.65" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (606 samples, 0.03%)</title><rect x="1148.6" y="1253" width="0.4" height="15.0" fill="rgb(241,187,42)" rx="2" ry="2" />
<text x="1151.61" y="1263.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (524 samples, 0.03%)</title><rect x="882.2" y="1317" width="0.3" height="15.0" fill="rgb(239,71,37)" rx="2" ry="2" />
<text x="885.25" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="901" width="0.2" height="15.0" fill="rgb(212,32,40)" rx="2" ry="2" />
<text x="1191.85" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,019 samples, 0.05%)</title><rect x="943.3" y="1221" width="0.6" height="15.0" fill="rgb(241,110,41)" rx="2" ry="2" />
<text x="946.32" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (486 samples, 0.02%)</title><rect x="940.2" y="1333" width="0.3" height="15.0" fill="rgb(225,19,53)" rx="2" ry="2" />
<text x="943.18" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (7,064 samples, 0.34%)</title><rect x="1048.7" y="1285" width="4.0" height="15.0" fill="rgb(251,4,2)" rx="2" ry="2" />
<text x="1051.66" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (188 samples, 0.01%)</title><rect x="206.2" y="1861" width="0.1" height="15.0" fill="rgb(210,55,44)" rx="2" ry="2" />
<text x="209.15" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Fan__update_208 (309 samples, 0.02%)</title><rect x="414.9" y="1909" width="0.2" height="15.0" fill="rgb(235,225,9)" rx="2" ry="2" />
<text x="417.91" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (388 samples, 0.02%)</title><rect x="1109.6" y="1349" width="0.2" height="15.0" fill="rgb(218,89,25)" rx="2" ry="2" />
<text x="1112.61" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1685" width="0.3" height="15.0" fill="rgb(239,225,25)" rx="2" ry="2" />
<text x="1191.59" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="533" width="0.3" height="15.0" fill="rgb(242,53,32)" rx="2" ry="2" />
<text x="1192.37" y="543.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (55,288 samples, 2.69%)</title><rect x="944.4" y="1365" width="31.8" height="15.0" fill="rgb(251,199,19)" rx="2" ry="2" />
<text x="947.44" y="1375.5" >ca..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1701" width="0.3" height="15.0" fill="rgb(226,172,14)" rx="2" ry="2" />
<text x="1192.69" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="2021" width="0.3" height="15.0" fill="rgb(225,189,30)" rx="2" ry="2" />
<text x="1191.59" y="2031.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (277 samples, 0.01%)</title><rect x="841.8" y="1301" width="0.1" height="15.0" fill="rgb(233,33,42)" rx="2" ry="2" />
<text x="844.77" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (251 samples, 0.01%)</title><rect x="336.4" y="1845" width="0.1" height="15.0" fill="rgb(238,175,33)" rx="2" ry="2" />
<text x="339.37" y="1855.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (195 samples, 0.01%)</title><rect x="934.0" y="1237" width="0.2" height="15.0" fill="rgb(252,72,29)" rx="2" ry="2" />
<text x="937.04" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="709" width="0.3" height="15.0" fill="rgb(240,170,11)" rx="2" ry="2" />
<text x="1192.06" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (186 samples, 0.01%)</title><rect x="1094.0" y="1269" width="0.1" height="15.0" fill="rgb(241,44,35)" rx="2" ry="2" />
<text x="1097.00" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (378 samples, 0.02%)</title><rect x="731.1" y="1397" width="0.2" height="15.0" fill="rgb(245,84,40)" rx="2" ry="2" />
<text x="734.08" y="1407.5" ></text>
</g>
<g >
<title>caml_apply2 (194 samples, 0.01%)</title><rect x="780.9" y="1237" width="0.1" height="15.0" fill="rgb(237,101,50)" rx="2" ry="2" />
<text x="783.90" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,165 samples, 0.06%)</title><rect x="1159.4" y="1269" width="0.7" height="15.0" fill="rgb(245,102,19)" rx="2" ry="2" />
<text x="1162.44" y="1279.5" ></text>
</g>
<g >
<title>caml_obj_tag (185 samples, 0.01%)</title><rect x="1023.9" y="1333" width="0.1" height="15.0" fill="rgb(219,179,0)" rx="2" ry="2" />
<text x="1026.89" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (1,063 samples, 0.05%)</title><rect x="827.8" y="1397" width="0.6" height="15.0" fill="rgb(230,48,24)" rx="2" ry="2" />
<text x="830.81" y="1407.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (490 samples, 0.02%)</title><rect x="769.6" y="1253" width="0.2" height="15.0" fill="rgb(233,109,24)" rx="2" ry="2" />
<text x="772.56" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,289 samples, 0.11%)</title><rect x="850.8" y="1365" width="1.3" height="15.0" fill="rgb(236,224,32)" rx="2" ry="2" />
<text x="853.80" y="1375.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (577 samples, 0.03%)</title><rect x="1106.2" y="1285" width="0.3" height="15.0" fill="rgb(236,99,39)" rx="2" ry="2" />
<text x="1109.21" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (200 samples, 0.01%)</title><rect x="1146.0" y="1237" width="0.1" height="15.0" fill="rgb(221,35,45)" rx="2" ry="2" />
<text x="1149.03" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (797 samples, 0.04%)</title><rect x="223.4" y="1877" width="0.5" height="15.0" fill="rgb(239,171,25)" rx="2" ry="2" />
<text x="226.43" y="1887.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,102 samples, 0.05%)</title><rect x="261.0" y="1797" width="0.6" height="15.0" fill="rgb(214,198,40)" rx="2" ry="2" />
<text x="263.98" y="1807.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (474 samples, 0.02%)</title><rect x="853.4" y="1317" width="0.2" height="15.0" fill="rgb(252,219,44)" rx="2" ry="2" />
<text x="856.37" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (1,193 samples, 0.06%)</title><rect x="260.9" y="1813" width="0.7" height="15.0" fill="rgb(251,30,49)" rx="2" ry="2" />
<text x="263.93" y="1823.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,300 samples, 0.11%)</title><rect x="333.9" y="1845" width="1.3" height="15.0" fill="rgb(252,127,42)" rx="2" ry="2" />
<text x="336.92" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (376 samples, 0.02%)</title><rect x="758.6" y="1269" width="0.2" height="15.0" fill="rgb(213,166,29)" rx="2" ry="2" />
<text x="761.61" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (310 samples, 0.02%)</title><rect x="784.6" y="1189" width="0.1" height="15.0" fill="rgb(232,98,34)" rx="2" ry="2" />
<text x="787.57" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1909" width="0.3" height="15.0" fill="rgb(215,109,25)" rx="2" ry="2" />
<text x="1191.59" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (594 samples, 0.03%)</title><rect x="903.6" y="1237" width="0.3" height="15.0" fill="rgb(208,91,38)" rx="2" ry="2" />
<text x="906.58" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (488 samples, 0.02%)</title><rect x="1034.3" y="1317" width="0.3" height="15.0" fill="rgb(253,47,28)" rx="2" ry="2" />
<text x="1037.29" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (199 samples, 0.01%)</title><rect x="420.5" y="1845" width="0.1" height="15.0" fill="rgb(212,219,41)" rx="2" ry="2" />
<text x="423.47" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (243 samples, 0.01%)</title><rect x="1090.2" y="1269" width="0.2" height="15.0" fill="rgb(234,129,6)" rx="2" ry="2" />
<text x="1093.24" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,170 samples, 0.06%)</title><rect x="970.4" y="1189" width="0.6" height="15.0" fill="rgb(234,53,44)" rx="2" ry="2" />
<text x="973.38" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (1,657 samples, 0.08%)</title><rect x="1156.3" y="1317" width="0.9" height="15.0" fill="rgb(229,33,20)" rx="2" ry="2" />
<text x="1159.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (594 samples, 0.03%)</title><rect x="964.1" y="1269" width="0.4" height="15.0" fill="rgb(220,90,48)" rx="2" ry="2" />
<text x="967.12" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7397 (12,026 samples, 0.59%)</title><rect x="727.6" y="1573" width="6.9" height="15.0" fill="rgb(240,157,14)" rx="2" ry="2" />
<text x="730.58" y="1583.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="917" width="0.3" height="15.0" fill="rgb(209,93,54)" rx="2" ry="2" />
<text x="1192.06" y="927.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (971 samples, 0.05%)</title><rect x="671.9" y="1797" width="0.6" height="15.0" fill="rgb(214,35,20)" rx="2" ry="2" />
<text x="674.92" y="1807.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (212 samples, 0.01%)</title><rect x="765.8" y="1253" width="0.2" height="15.0" fill="rgb(234,227,26)" rx="2" ry="2" />
<text x="768.83" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (437 samples, 0.02%)</title><rect x="1099.3" y="1285" width="0.3" height="15.0" fill="rgb(246,179,5)" rx="2" ry="2" />
<text x="1102.31" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (297 samples, 0.01%)</title><rect x="704.9" y="1797" width="0.2" height="15.0" fill="rgb(217,123,29)" rx="2" ry="2" />
<text x="707.88" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (182 samples, 0.01%)</title><rect x="1100.2" y="1301" width="0.1" height="15.0" fill="rgb(205,114,5)" rx="2" ry="2" />
<text x="1103.17" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (299 samples, 0.01%)</title><rect x="1157.8" y="1205" width="0.2" height="15.0" fill="rgb(228,184,18)" rx="2" ry="2" />
<text x="1160.79" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (1,048 samples, 0.05%)</title><rect x="251.0" y="1877" width="0.6" height="15.0" fill="rgb(205,208,30)" rx="2" ry="2" />
<text x="254.02" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_203 (313 samples, 0.02%)</title><rect x="927.0" y="1301" width="0.2" height="15.0" fill="rgb(227,149,19)" rx="2" ry="2" />
<text x="930.03" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (2,055 samples, 0.10%)</title><rect x="1024.2" y="1365" width="1.2" height="15.0" fill="rgb(244,198,30)" rx="2" ry="2" />
<text x="1027.19" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (556 samples, 0.03%)</title><rect x="1038.2" y="1381" width="0.4" height="15.0" fill="rgb(216,202,54)" rx="2" ry="2" />
<text x="1041.24" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (575 samples, 0.03%)</title><rect x="961.4" y="1253" width="0.3" height="15.0" fill="rgb(240,138,0)" rx="2" ry="2" />
<text x="964.38" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (944 samples, 0.05%)</title><rect x="857.0" y="1365" width="0.5" height="15.0" fill="rgb(238,27,50)" rx="2" ry="2" />
<text x="860.01" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (14,691 samples, 0.72%)</title><rect x="1111.5" y="1413" width="8.5" height="15.0" fill="rgb(230,147,14)" rx="2" ry="2" />
<text x="1114.53" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,163 samples, 0.06%)</title><rect x="671.8" y="1829" width="0.7" height="15.0" fill="rgb(228,109,43)" rx="2" ry="2" />
<text x="674.81" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="437" width="0.2" height="15.0" fill="rgb(217,19,47)" rx="2" ry="2" />
<text x="1191.85" y="447.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,795 samples, 0.23%)</title><rect x="874.5" y="1365" width="2.8" height="15.0" fill="rgb(213,184,14)" rx="2" ry="2" />
<text x="877.54" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (238 samples, 0.01%)</title><rect x="800.6" y="1269" width="0.2" height="15.0" fill="rgb(237,174,12)" rx="2" ry="2" />
<text x="803.64" y="1279.5" ></text>
</g>
<g >
<title>caml_compact_heap (708 samples, 0.03%)</title><rect x="706.6" y="1797" width="0.4" height="15.0" fill="rgb(218,158,46)" rx="2" ry="2" />
<text x="709.57" y="1807.5" ></text>
</g>
<g >
<title>caml_apply2 (663 samples, 0.03%)</title><rect x="1007.1" y="1269" width="0.4" height="15.0" fill="rgb(254,142,39)" rx="2" ry="2" />
<text x="1010.15" y="1279.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (540 samples, 0.03%)</title><rect x="883.3" y="1317" width="0.3" height="15.0" fill="rgb(251,52,48)" rx="2" ry="2" />
<text x="886.27" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (243 samples, 0.01%)</title><rect x="867.4" y="1109" width="0.2" height="15.0" fill="rgb(206,185,16)" rx="2" ry="2" />
<text x="870.43" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1311 (184 samples, 0.01%)</title><rect x="1142.8" y="1445" width="0.1" height="15.0" fill="rgb(233,11,0)" rx="2" ry="2" />
<text x="1145.76" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (438 samples, 0.02%)</title><rect x="922.3" y="1189" width="0.2" height="15.0" fill="rgb(216,92,29)" rx="2" ry="2" />
<text x="925.28" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5215 (1,804 samples, 0.09%)</title><rect x="1030.5" y="1317" width="1.0" height="15.0" fill="rgb(249,139,42)" rx="2" ry="2" />
<text x="1033.46" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (243 samples, 0.01%)</title><rect x="773.3" y="1317" width="0.2" height="15.0" fill="rgb(248,153,40)" rx="2" ry="2" />
<text x="776.33" y="1327.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (510 samples, 0.02%)</title><rect x="802.7" y="1253" width="0.3" height="15.0" fill="rgb(223,148,45)" rx="2" ry="2" />
<text x="805.70" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="501" width="0.3" height="15.0" fill="rgb(240,171,8)" rx="2" ry="2" />
<text x="1192.06" y="511.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1221" width="0.3" height="15.0" fill="rgb(246,146,35)" rx="2" ry="2" />
<text x="1192.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1109" width="0.3" height="15.0" fill="rgb(225,175,2)" rx="2" ry="2" />
<text x="1192.69" y="1119.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (179 samples, 0.01%)</title><rect x="711.6" y="1893" width="0.1" height="15.0" fill="rgb(242,98,1)" rx="2" ry="2" />
<text x="714.57" y="1903.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (226 samples, 0.01%)</title><rect x="917.0" y="1221" width="0.1" height="15.0" fill="rgb(251,197,48)" rx="2" ry="2" />
<text x="919.95" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1973" width="0.3" height="15.0" fill="rgb(233,124,14)" rx="2" ry="2" />
<text x="1191.59" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14907 (1,217 samples, 0.06%)</title><rect x="805.9" y="1429" width="0.7" height="15.0" fill="rgb(253,196,27)" rx="2" ry="2" />
<text x="808.89" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (287 samples, 0.01%)</title><rect x="806.4" y="1317" width="0.2" height="15.0" fill="rgb(222,6,40)" rx="2" ry="2" />
<text x="809.42" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (940 samples, 0.05%)</title><rect x="1024.8" y="1349" width="0.5" height="15.0" fill="rgb(254,27,31)" rx="2" ry="2" />
<text x="1027.77" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (428 samples, 0.02%)</title><rect x="946.0" y="1317" width="0.2" height="15.0" fill="rgb(209,139,51)" rx="2" ry="2" />
<text x="948.99" y="1327.5" ></text>
</g>
<g >
<title>caml_thread_start (1,175,163 samples, 57.28%)</title><rect x="40.0" y="2021" width="675.9" height="15.0" fill="rgb(215,207,33)" rx="2" ry="2" />
<text x="42.97" y="2031.5" >caml_thread_start</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (744 samples, 0.04%)</title><rect x="1125.5" y="1397" width="0.4" height="15.0" fill="rgb(228,124,8)" rx="2" ry="2" />
<text x="1128.46" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (551 samples, 0.03%)</title><rect x="1189.4" y="229" width="0.3" height="15.0" fill="rgb(248,93,16)" rx="2" ry="2" />
<text x="1192.37" y="239.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (304 samples, 0.01%)</title><rect x="261.7" y="1861" width="0.2" height="15.0" fill="rgb(217,2,12)" rx="2" ry="2" />
<text x="264.74" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (517 samples, 0.03%)</title><rect x="746.2" y="1269" width="0.3" height="15.0" fill="rgb(246,95,28)" rx="2" ry="2" />
<text x="749.22" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (939 samples, 0.05%)</title><rect x="1088.8" y="1285" width="0.5" height="15.0" fill="rgb(217,160,41)" rx="2" ry="2" />
<text x="1091.78" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (649 samples, 0.03%)</title><rect x="799.9" y="1301" width="0.3" height="15.0" fill="rgb(250,103,27)" rx="2" ry="2" />
<text x="802.87" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (892 samples, 0.04%)</title><rect x="970.5" y="1157" width="0.5" height="15.0" fill="rgb(227,95,24)" rx="2" ry="2" />
<text x="973.54" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,682 samples, 0.08%)</title><rect x="1161.0" y="1189" width="1.0" height="15.0" fill="rgb(232,210,45)" rx="2" ry="2" />
<text x="1164.01" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,017 samples, 0.05%)</title><rect x="180.6" y="1829" width="0.6" height="15.0" fill="rgb(234,192,39)" rx="2" ry="2" />
<text x="183.64" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (377 samples, 0.02%)</title><rect x="1183.0" y="1253" width="0.2" height="15.0" fill="rgb(236,191,21)" rx="2" ry="2" />
<text x="1185.95" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (4,520 samples, 0.22%)</title><rect x="1041.2" y="1381" width="2.6" height="15.0" fill="rgb(235,11,40)" rx="2" ry="2" />
<text x="1044.22" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (626 samples, 0.03%)</title><rect x="730.4" y="1397" width="0.3" height="15.0" fill="rgb(250,23,12)" rx="2" ry="2" />
<text x="733.36" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (187 samples, 0.01%)</title><rect x="958.2" y="1221" width="0.1" height="15.0" fill="rgb(205,197,38)" rx="2" ry="2" />
<text x="961.22" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,819 samples, 0.14%)</title><rect x="1013.4" y="1317" width="1.7" height="15.0" fill="rgb(228,145,53)" rx="2" ry="2" />
<text x="1016.44" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (3,091 samples, 0.15%)</title><rect x="1004.8" y="1269" width="1.8" height="15.0" fill="rgb(218,209,34)" rx="2" ry="2" />
<text x="1007.78" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (262 samples, 0.01%)</title><rect x="773.3" y="1333" width="0.2" height="15.0" fill="rgb(242,172,49)" rx="2" ry="2" />
<text x="776.33" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="517" width="0.3" height="15.0" fill="rgb(238,22,2)" rx="2" ry="2" />
<text x="1192.06" y="527.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (2,527 samples, 0.12%)</title><rect x="1106.6" y="1269" width="1.5" height="15.0" fill="rgb(232,112,12)" rx="2" ry="2" />
<text x="1109.60" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (907 samples, 0.04%)</title><rect x="1180.6" y="1221" width="0.5" height="15.0" fill="rgb(233,157,12)" rx="2" ry="2" />
<text x="1183.55" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (284 samples, 0.01%)</title><rect x="736.8" y="1445" width="0.2" height="15.0" fill="rgb(251,83,33)" rx="2" ry="2" />
<text x="739.81" y="1455.5" ></text>
</g>
<g >
<title>caml_blit_bytes (282 samples, 0.01%)</title><rect x="1126.9" y="1333" width="0.1" height="15.0" fill="rgb(224,202,6)" rx="2" ry="2" />
<text x="1129.87" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (352 samples, 0.02%)</title><rect x="707.0" y="1765" width="0.2" height="15.0" fill="rgb(226,174,33)" rx="2" ry="2" />
<text x="709.98" y="1775.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (375 samples, 0.02%)</title><rect x="866.6" y="1269" width="0.2" height="15.0" fill="rgb(248,155,42)" rx="2" ry="2" />
<text x="869.56" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (719 samples, 0.04%)</title><rect x="771.3" y="1365" width="0.4" height="15.0" fill="rgb(205,96,27)" rx="2" ry="2" />
<text x="774.33" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (319 samples, 0.02%)</title><rect x="785.4" y="1221" width="0.2" height="15.0" fill="rgb(216,175,28)" rx="2" ry="2" />
<text x="788.39" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (639 samples, 0.03%)</title><rect x="766.6" y="1317" width="0.4" height="15.0" fill="rgb(251,211,37)" rx="2" ry="2" />
<text x="769.60" y="1327.5" ></text>
</g>
<g >
<title>caml_thread_yield (237,440 samples, 11.57%)</title><rect x="561.4" y="1925" width="136.6" height="15.0" fill="rgb(243,200,33)" rx="2" ry="2" />
<text x="564.39" y="1935.5" >caml_thread_yield</text>
</g>
<g >
<title>mark_slice (1,522 samples, 0.07%)</title><rect x="335.5" y="1845" width="0.9" height="15.0" fill="rgb(243,141,52)" rx="2" ry="2" />
<text x="338.50" y="1855.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (11,613 samples, 0.57%)</title><rect x="15.9" y="2037" width="6.7" height="15.0" fill="rgb(221,122,14)" rx="2" ry="2" />
<text x="18.88" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8559 (41,480 samples, 2.02%)</title><rect x="716.3" y="1637" width="23.8" height="15.0" fill="rgb(214,128,38)" rx="2" ry="2" />
<text x="719.28" y="1647.5" >c..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (401 samples, 0.02%)</title><rect x="818.0" y="1269" width="0.3" height="15.0" fill="rgb(235,90,31)" rx="2" ry="2" />
<text x="821.04" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1397" width="0.3" height="15.0" fill="rgb(235,204,2)" rx="2" ry="2" />
<text x="1192.69" y="1407.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1,170 samples, 0.06%)</title><rect x="1019.8" y="1253" width="0.7" height="15.0" fill="rgb(212,110,35)" rx="2" ry="2" />
<text x="1022.81" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5211 (2,254 samples, 0.11%)</title><rect x="725.8" y="1429" width="1.3" height="15.0" fill="rgb(224,127,6)" rx="2" ry="2" />
<text x="728.79" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__find_5803 (303 samples, 0.01%)</title><rect x="1028.6" y="1445" width="0.2" height="15.0" fill="rgb(216,213,9)" rx="2" ry="2" />
<text x="1031.62" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,003 samples, 0.05%)</title><rect x="928.8" y="1349" width="0.6" height="15.0" fill="rgb(235,53,7)" rx="2" ry="2" />
<text x="931.85" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (717 samples, 0.03%)</title><rect x="977.3" y="1461" width="0.5" height="15.0" fill="rgb(227,138,30)" rx="2" ry="2" />
<text x="980.34" y="1471.5" ></text>
</g>
<g >
<title>caml_curry5_4 (369 samples, 0.02%)</title><rect x="1145.0" y="1445" width="0.2" height="15.0" fill="rgb(207,172,27)" rx="2" ry="2" />
<text x="1147.97" y="1455.5" ></text>
</g>
<g >
<title>caml_hash (254 samples, 0.01%)</title><rect x="1075.2" y="1333" width="0.2" height="15.0" fill="rgb(249,31,23)" rx="2" ry="2" />
<text x="1078.25" y="1343.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (249 samples, 0.01%)</title><rect x="1069.9" y="1253" width="0.2" height="15.0" fill="rgb(217,201,0)" rx="2" ry="2" />
<text x="1072.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1605" width="0.3" height="15.0" fill="rgb(235,171,51)" rx="2" ry="2" />
<text x="1192.69" y="1615.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,178 samples, 0.06%)</title><rect x="819.0" y="1317" width="0.7" height="15.0" fill="rgb(254,162,19)" rx="2" ry="2" />
<text x="822.03" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (917 samples, 0.04%)</title><rect x="875.0" y="1349" width="0.5" height="15.0" fill="rgb(235,46,4)" rx="2" ry="2" />
<text x="878.01" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (228 samples, 0.01%)</title><rect x="846.5" y="1285" width="0.1" height="15.0" fill="rgb(235,136,14)" rx="2" ry="2" />
<text x="849.46" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (186 samples, 0.01%)</title><rect x="763.5" y="1253" width="0.1" height="15.0" fill="rgb(223,177,19)" rx="2" ry="2" />
<text x="766.53" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (310 samples, 0.02%)</title><rect x="805.0" y="1397" width="0.1" height="15.0" fill="rgb(252,225,5)" rx="2" ry="2" />
<text x="807.96" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (317 samples, 0.02%)</title><rect x="707.6" y="1813" width="0.1" height="15.0" fill="rgb(236,24,49)" rx="2" ry="2" />
<text x="710.56" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1317" width="0.3" height="15.0" fill="rgb(226,174,35)" rx="2" ry="2" />
<text x="1192.37" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (226 samples, 0.01%)</title><rect x="1189.4" y="197" width="0.1" height="15.0" fill="rgb(227,74,31)" rx="2" ry="2" />
<text x="1192.37" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,859 samples, 0.09%)</title><rect x="1161.0" y="1205" width="1.0" height="15.0" fill="rgb(236,118,6)" rx="2" ry="2" />
<text x="1163.96" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (7,718 samples, 0.38%)</title><rect x="718.4" y="1493" width="4.4" height="15.0" fill="rgb(208,133,41)" rx="2" ry="2" />
<text x="721.41" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (398 samples, 0.02%)</title><rect x="1162.6" y="1189" width="0.2" height="15.0" fill="rgb(236,151,14)" rx="2" ry="2" />
<text x="1165.59" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,877 samples, 2.04%)</title><rect x="716.1" y="1733" width="24.1" height="15.0" fill="rgb(205,179,18)" rx="2" ry="2" />
<text x="719.10" y="1743.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (214 samples, 0.01%)</title><rect x="824.5" y="1285" width="0.2" height="15.0" fill="rgb(214,128,41)" rx="2" ry="2" />
<text x="827.54" y="1295.5" ></text>
</g>
<g >
<title>compare_val (226 samples, 0.01%)</title><rect x="804.0" y="1301" width="0.1" height="15.0" fill="rgb(250,107,3)" rx="2" ry="2" />
<text x="806.96" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (420 samples, 0.02%)</title><rect x="837.5" y="1269" width="0.3" height="15.0" fill="rgb(237,225,47)" rx="2" ry="2" />
<text x="840.51" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (840 samples, 0.04%)</title><rect x="1104.6" y="1205" width="0.5" height="15.0" fill="rgb(221,177,5)" rx="2" ry="2" />
<text x="1107.59" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (1,050 samples, 0.05%)</title><rect x="1119.1" y="1349" width="0.6" height="15.0" fill="rgb(234,154,38)" rx="2" ry="2" />
<text x="1122.11" y="1359.5" ></text>
</g>
<g >
<title>caml_garbage_collection (250 samples, 0.01%)</title><rect x="708.2" y="1845" width="0.1" height="15.0" fill="rgb(224,55,30)" rx="2" ry="2" />
<text x="711.16" y="1855.5" ></text>
</g>
<g >
<title>caml_garbage_collection (320 samples, 0.02%)</title><rect x="707.6" y="1829" width="0.1" height="15.0" fill="rgb(234,49,0)" rx="2" ry="2" />
<text x="710.56" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (1,524 samples, 0.07%)</title><rect x="789.3" y="1349" width="0.9" height="15.0" fill="rgb(252,38,4)" rx="2" ry="2" />
<text x="792.30" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,654 samples, 0.13%)</title><rect x="802.3" y="1301" width="1.5" height="15.0" fill="rgb(210,137,19)" rx="2" ry="2" />
<text x="805.31" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (331 samples, 0.02%)</title><rect x="920.1" y="1125" width="0.2" height="15.0" fill="rgb(250,159,1)" rx="2" ry="2" />
<text x="923.10" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (1,725 samples, 0.08%)</title><rect x="1053.8" y="1269" width="1.0" height="15.0" fill="rgb(212,120,14)" rx="2" ry="2" />
<text x="1056.77" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (799 samples, 0.04%)</title><rect x="1075.1" y="1381" width="0.5" height="15.0" fill="rgb(206,175,48)" rx="2" ry="2" />
<text x="1078.10" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,723 samples, 0.13%)</title><rect x="835.3" y="1349" width="1.6" height="15.0" fill="rgb(207,75,16)" rx="2" ry="2" />
<text x="838.28" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__check_and_copy_to_current_12423 (66,689 samples, 3.25%)</title><rect x="990.1" y="1461" width="38.3" height="15.0" fill="rgb(221,193,17)" rx="2" ry="2" />
<text x="993.06" y="1471.5" >cam..</text>
</g>
<g >
<title>caml_apply2 (555 samples, 0.03%)</title><rect x="1129.2" y="1397" width="0.3" height="15.0" fill="rgb(227,145,38)" rx="2" ry="2" />
<text x="1132.22" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1781" width="0.2" height="15.0" fill="rgb(242,118,47)" rx="2" ry="2" />
<text x="1191.85" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1749" width="0.3" height="15.0" fill="rgb(246,227,7)" rx="2" ry="2" />
<text x="1192.06" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_376 (184 samples, 0.01%)</title><rect x="1115.0" y="1301" width="0.1" height="15.0" fill="rgb(224,199,20)" rx="2" ry="2" />
<text x="1117.99" y="1311.5" ></text>
</g>
<g >
<title>caml_compare (1,039 samples, 0.05%)</title><rect x="866.3" y="1317" width="0.6" height="15.0" fill="rgb(210,197,8)" rx="2" ry="2" />
<text x="869.33" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (279 samples, 0.01%)</title><rect x="785.4" y="1189" width="0.2" height="15.0" fill="rgb(209,191,8)" rx="2" ry="2" />
<text x="788.42" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (473 samples, 0.02%)</title><rect x="859.1" y="1397" width="0.3" height="15.0" fill="rgb(249,21,43)" rx="2" ry="2" />
<text x="862.09" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (210 samples, 0.01%)</title><rect x="796.6" y="1269" width="0.1" height="15.0" fill="rgb(247,16,20)" rx="2" ry="2" />
<text x="799.56" y="1279.5" ></text>
</g>
<g >
<title>caml_pread (521 samples, 0.03%)</title><rect x="852.9" y="1333" width="0.3" height="15.0" fill="rgb(248,82,44)" rx="2" ry="2" />
<text x="855.89" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (405 samples, 0.02%)</title><rect x="818.6" y="1253" width="0.2" height="15.0" fill="rgb(217,187,3)" rx="2" ry="2" />
<text x="821.61" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (182 samples, 0.01%)</title><rect x="1188.6" y="149" width="0.1" height="15.0" fill="rgb(237,16,28)" rx="2" ry="2" />
<text x="1191.60" y="159.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12272 (1,139 samples, 0.06%)</title><rect x="772.8" y="1413" width="0.7" height="15.0" fill="rgb(251,31,39)" rx="2" ry="2" />
<text x="775.83" y="1423.5" ></text>
</g>
<g >
<title>caml_start_program (821,299 samples, 40.03%)</title><rect x="716.1" y="1957" width="472.4" height="15.0" fill="rgb(242,127,34)" rx="2" ry="2" />
<text x="719.10" y="1967.5" >caml_start_program</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,415 samples, 1.63%)</title><rect x="588.2" y="1813" width="19.2" height="15.0" fill="rgb(214,229,30)" rx="2" ry="2" />
<text x="591.16" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1701" width="0.2" height="15.0" fill="rgb(254,135,36)" rx="2" ry="2" />
<text x="1191.85" y="1711.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="949" width="0.3" height="15.0" fill="rgb(238,55,8)" rx="2" ry="2" />
<text x="1191.59" y="959.5" ></text>
</g>
<g >
<title>caml_hash (225 samples, 0.01%)</title><rect x="1074.0" y="1301" width="0.1" height="15.0" fill="rgb(210,181,23)" rx="2" ry="2" />
<text x="1077.01" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,077 samples, 0.05%)</title><rect x="1087.2" y="1269" width="0.6" height="15.0" fill="rgb(217,146,8)" rx="2" ry="2" />
<text x="1090.21" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,283 samples, 0.06%)</title><rect x="1117.8" y="1349" width="0.7" height="15.0" fill="rgb(248,221,23)" rx="2" ry="2" />
<text x="1120.78" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="725" width="0.2" height="15.0" fill="rgb(248,85,18)" rx="2" ry="2" />
<text x="1191.85" y="735.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1061" width="0.3" height="15.0" fill="rgb(224,89,49)" rx="2" ry="2" />
<text x="1192.69" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (1,231 samples, 0.06%)</title><rect x="935.6" y="1301" width="0.8" height="15.0" fill="rgb(254,39,50)" rx="2" ry="2" />
<text x="938.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (837 samples, 0.04%)</title><rect x="902.1" y="1221" width="0.5" height="15.0" fill="rgb(243,212,24)" rx="2" ry="2" />
<text x="905.08" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8476 (208 samples, 0.01%)</title><rect x="739.5" y="1605" width="0.1" height="15.0" fill="rgb(217,40,20)" rx="2" ry="2" />
<text x="742.49" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (182 samples, 0.01%)</title><rect x="935.1" y="1317" width="0.1" height="15.0" fill="rgb(240,47,52)" rx="2" ry="2" />
<text x="938.11" y="1327.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (424 samples, 0.02%)</title><rect x="403.2" y="1877" width="0.2" height="15.0" fill="rgb(237,211,16)" rx="2" ry="2" />
<text x="406.15" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (281 samples, 0.01%)</title><rect x="1167.5" y="1269" width="0.2" height="15.0" fill="rgb(218,34,1)" rx="2" ry="2" />
<text x="1170.49" y="1279.5" ></text>
</g>
<g >
<title>camlCmdliner_term__fun_177 (599 samples, 0.03%)</title><rect x="10.1" y="1861" width="0.3" height="15.0" fill="rgb(253,207,53)" rx="2" ry="2" />
<text x="13.06" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (922 samples, 0.04%)</title><rect x="1052.9" y="1269" width="0.6" height="15.0" fill="rgb(253,49,32)" rx="2" ry="2" />
<text x="1055.93" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (266 samples, 0.01%)</title><rect x="904.5" y="1221" width="0.2" height="15.0" fill="rgb(209,109,43)" rx="2" ry="2" />
<text x="907.53" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2079 (190 samples, 0.01%)</title><rect x="861.3" y="1429" width="0.2" height="15.0" fill="rgb(247,14,36)" rx="2" ry="2" />
<text x="864.34" y="1439.5" ></text>
</g>
<g >
<title>caml_oldify_one (178 samples, 0.01%)</title><rect x="389.4" y="1813" width="0.1" height="15.0" fill="rgb(238,113,1)" rx="2" ry="2" />
<text x="392.39" y="1823.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (559 samples, 0.03%)</title><rect x="1102.5" y="1333" width="0.4" height="15.0" fill="rgb(237,136,54)" rx="2" ry="2" />
<text x="1105.54" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (2,321 samples, 0.11%)</title><rect x="446.8" y="1925" width="1.3" height="15.0" fill="rgb(254,152,24)" rx="2" ry="2" />
<text x="449.81" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (193 samples, 0.01%)</title><rect x="937.2" y="1317" width="0.1" height="15.0" fill="rgb(209,44,21)" rx="2" ry="2" />
<text x="940.23" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (1,033 samples, 0.05%)</title><rect x="1133.2" y="1301" width="0.6" height="15.0" fill="rgb(234,217,4)" rx="2" ry="2" />
<text x="1136.22" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2605 (676 samples, 0.03%)</title><rect x="262.5" y="1909" width="0.4" height="15.0" fill="rgb(208,26,24)" rx="2" ry="2" />
<text x="265.52" y="1919.5" ></text>
</g>
<g >
<title>caml_mutex_lock (178 samples, 0.01%)</title><rect x="821.1" y="1413" width="0.1" height="15.0" fill="rgb(250,94,38)" rx="2" ry="2" />
<text x="824.05" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (179 samples, 0.01%)</title><rect x="733.3" y="1317" width="0.1" height="15.0" fill="rgb(230,38,15)" rx="2" ry="2" />
<text x="736.31" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,219 samples, 0.06%)</title><rect x="1010.5" y="1317" width="0.8" height="15.0" fill="rgb(238,181,11)" rx="2" ry="2" />
<text x="1013.55" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412 samples, 0.02%)</title><rect x="618.5" y="1845" width="0.3" height="15.0" fill="rgb(250,195,27)" rx="2" ry="2" />
<text x="621.55" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,200 samples, 0.06%)</title><rect x="968.6" y="1221" width="0.7" height="15.0" fill="rgb(241,106,0)" rx="2" ry="2" />
<text x="971.60" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (889 samples, 0.04%)</title><rect x="1107.5" y="1221" width="0.5" height="15.0" fill="rgb(252,35,36)" rx="2" ry="2" />
<text x="1110.51" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (190 samples, 0.01%)</title><rect x="1165.4" y="1205" width="0.1" height="15.0" fill="rgb(241,4,30)" rx="2" ry="2" />
<text x="1168.41" y="1215.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (408 samples, 0.02%)</title><rect x="10.2" y="1493" width="0.2" height="15.0" fill="rgb(243,141,51)" rx="2" ry="2" />
<text x="13.16" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,062 samples, 0.05%)</title><rect x="1159.5" y="1253" width="0.6" height="15.0" fill="rgb(215,139,43)" rx="2" ry="2" />
<text x="1162.46" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (400 samples, 0.02%)</title><rect x="1027.8" y="1381" width="0.3" height="15.0" fill="rgb(215,198,21)" rx="2" ry="2" />
<text x="1030.84" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="917" width="0.3" height="15.0" fill="rgb(239,2,47)" rx="2" ry="2" />
<text x="1192.69" y="927.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1733" width="0.3" height="15.0" fill="rgb(245,171,23)" rx="2" ry="2" />
<text x="1192.37" y="1743.5" ></text>
</g>
<g >
<title>caml_pread (907 samples, 0.04%)</title><rect x="28.9" y="2037" width="0.5" height="15.0" fill="rgb(224,158,34)" rx="2" ry="2" />
<text x="31.87" y="2047.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (308 samples, 0.02%)</title><rect x="1166.4" y="1189" width="0.2" height="15.0" fill="rgb(235,220,42)" rx="2" ry="2" />
<text x="1169.44" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="757" width="0.3" height="15.0" fill="rgb(232,116,19)" rx="2" ry="2" />
<text x="1192.69" y="767.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (393 samples, 0.02%)</title><rect x="840.5" y="1429" width="0.3" height="15.0" fill="rgb(213,134,10)" rx="2" ry="2" />
<text x="843.53" y="1439.5" ></text>
</g>
<g >
<title>mark_slice (998 samples, 0.05%)</title><rect x="401.8" y="1829" width="0.6" height="15.0" fill="rgb(232,14,12)" rx="2" ry="2" />
<text x="404.79" y="1839.5" ></text>
</g>
<g >
<title>futex_wake (260 samples, 0.01%)</title><rect x="1184.3" y="1205" width="0.2" height="15.0" fill="rgb(221,131,54)" rx="2" ry="2" />
<text x="1187.33" y="1215.5" ></text>
</g>
<g >
<title>do_compaction (827 samples, 0.04%)</title><rect x="232.2" y="1829" width="0.4" height="15.0" fill="rgb(249,155,13)" rx="2" ry="2" />
<text x="235.16" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (436 samples, 0.02%)</title><rect x="1189.7" y="181" width="0.3" height="15.0" fill="rgb(219,89,37)" rx="2" ry="2" />
<text x="1192.71" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="373" width="0.3" height="15.0" fill="rgb(240,29,5)" rx="2" ry="2" />
<text x="1192.69" y="383.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (319 samples, 0.02%)</title><rect x="846.4" y="1301" width="0.2" height="15.0" fill="rgb(253,164,16)" rx="2" ry="2" />
<text x="849.41" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (795 samples, 0.04%)</title><rect x="1105.8" y="1189" width="0.4" height="15.0" fill="rgb(214,214,5)" rx="2" ry="2" />
<text x="1108.76" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (549 samples, 0.03%)</title><rect x="705.8" y="1733" width="0.3" height="15.0" fill="rgb(251,86,12)" rx="2" ry="2" />
<text x="708.83" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11613 (1,200 samples, 0.06%)</title><rect x="841.3" y="1413" width="0.6" height="15.0" fill="rgb(209,3,27)" rx="2" ry="2" />
<text x="844.26" y="1423.5" ></text>
</g>
<g >
<title>caml_tuplify2 (185 samples, 0.01%)</title><rect x="1007.7" y="1285" width="0.1" height="15.0" fill="rgb(248,41,20)" rx="2" ry="2" />
<text x="1010.69" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_203 (259 samples, 0.01%)</title><rect x="975.2" y="1317" width="0.2" height="15.0" fill="rgb(210,81,33)" rx="2" ry="2" />
<text x="978.24" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (761 samples, 0.04%)</title><rect x="864.1" y="1269" width="0.5" height="15.0" fill="rgb(240,94,51)" rx="2" ry="2" />
<text x="867.13" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1637" width="0.3" height="15.0" fill="rgb(242,73,13)" rx="2" ry="2" />
<text x="1192.37" y="1647.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (437 samples, 0.02%)</title><rect x="503.2" y="1909" width="0.3" height="15.0" fill="rgb(235,189,6)" rx="2" ry="2" />
<text x="506.22" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="485" width="0.3" height="15.0" fill="rgb(239,97,46)" rx="2" ry="2" />
<text x="1192.06" y="495.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (212 samples, 0.01%)</title><rect x="724.2" y="1509" width="0.1" height="15.0" fill="rgb(245,84,50)" rx="2" ry="2" />
<text x="727.20" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="469" width="0.3" height="15.0" fill="rgb(245,41,6)" rx="2" ry="2" />
<text x="1192.69" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (379 samples, 0.02%)</title><rect x="750.1" y="1253" width="0.3" height="15.0" fill="rgb(213,155,48)" rx="2" ry="2" />
<text x="753.15" y="1263.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,431 samples, 0.07%)</title><rect x="1042.6" y="1317" width="0.8" height="15.0" fill="rgb(238,15,32)" rx="2" ry="2" />
<text x="1045.61" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (2,081 samples, 0.10%)</title><rect x="1044.2" y="1365" width="1.2" height="15.0" fill="rgb(214,56,37)" rx="2" ry="2" />
<text x="1047.24" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (54,425 samples, 2.65%)</title><rect x="994.1" y="1381" width="31.3" height="15.0" fill="rgb(219,49,7)" rx="2" ry="2" />
<text x="997.07" y="1391.5" >ca..</text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,862 samples, 0.14%)</title><rect x="835.2" y="1365" width="1.7" height="15.0" fill="rgb(219,187,39)" rx="2" ry="2" />
<text x="838.24" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_379 (297 samples, 0.01%)</title><rect x="705.1" y="1829" width="0.1" height="15.0" fill="rgb(246,61,13)" rx="2" ry="2" />
<text x="708.05" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (1,253 samples, 0.06%)</title><rect x="163.7" y="1877" width="0.7" height="15.0" fill="rgb(215,153,11)" rx="2" ry="2" />
<text x="166.72" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12006 (1,965 samples, 0.10%)</title><rect x="1030.4" y="1333" width="1.1" height="15.0" fill="rgb(252,190,22)" rx="2" ry="2" />
<text x="1033.41" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (618 samples, 0.03%)</title><rect x="895.1" y="1317" width="0.4" height="15.0" fill="rgb(230,161,9)" rx="2" ry="2" />
<text x="898.12" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1173" width="0.3" height="15.0" fill="rgb(251,216,52)" rx="2" ry="2" />
<text x="1192.06" y="1183.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (62,354 samples, 3.04%)</title><rect x="892.1" y="1349" width="35.9" height="15.0" fill="rgb(234,11,17)" rx="2" ry="2" />
<text x="895.12" y="1359.5" >cam..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (189 samples, 0.01%)</title><rect x="1153.1" y="1173" width="0.1" height="15.0" fill="rgb(235,156,50)" rx="2" ry="2" />
<text x="1156.10" y="1183.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (563 samples, 0.03%)</title><rect x="196.2" y="1845" width="0.4" height="15.0" fill="rgb(242,142,26)" rx="2" ry="2" />
<text x="199.25" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7368 (19,088 samples, 0.93%)</title><rect x="741.8" y="1461" width="11.0" height="15.0" fill="rgb(212,22,28)" rx="2" ry="2" />
<text x="744.78" y="1471.5" ></text>
</g>
<g >
<title>caml_start_program (1,173,323 samples, 57.19%)</title><rect x="41.0" y="2005" width="674.9" height="15.0" fill="rgb(238,0,30)" rx="2" ry="2" />
<text x="44.03" y="2015.5" >caml_start_program</text>
</g>
<g >
<title>compare_val (600 samples, 0.03%)</title><rect x="973.5" y="1285" width="0.4" height="15.0" fill="rgb(215,35,19)" rx="2" ry="2" />
<text x="976.54" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (263 samples, 0.01%)</title><rect x="204.8" y="1829" width="0.2" height="15.0" fill="rgb(230,110,18)" rx="2" ry="2" />
<text x="207.81" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (548 samples, 0.03%)</title><rect x="1145.8" y="1333" width="0.4" height="15.0" fill="rgb(205,183,11)" rx="2" ry="2" />
<text x="1148.84" y="1343.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (493 samples, 0.02%)</title><rect x="854.1" y="1285" width="0.3" height="15.0" fill="rgb(210,125,12)" rx="2" ry="2" />
<text x="857.13" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1813" width="0.3" height="15.0" fill="rgb(231,34,43)" rx="2" ry="2" />
<text x="1192.06" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,182 samples, 0.06%)</title><rect x="692.3" y="1765" width="0.6" height="15.0" fill="rgb(241,129,33)" rx="2" ry="2" />
<text x="695.27" y="1775.5" ></text>
</g>
<g >
<title>unix_lseek_64 (828 samples, 0.04%)</title><rect x="792.3" y="1349" width="0.4" height="15.0" fill="rgb(210,181,8)" rx="2" ry="2" />
<text x="795.26" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (302 samples, 0.01%)</title><rect x="1174.8" y="1189" width="0.2" height="15.0" fill="rgb(250,13,38)" rx="2" ry="2" />
<text x="1177.83" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1349" width="0.3" height="15.0" fill="rgb(213,124,22)" rx="2" ry="2" />
<text x="1192.37" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (7,431 samples, 0.36%)</title><rect x="718.5" y="1477" width="4.2" height="15.0" fill="rgb(252,40,32)" rx="2" ry="2" />
<text x="721.47" y="1487.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (487 samples, 0.02%)</title><rect x="1096.0" y="1253" width="0.2" height="15.0" fill="rgb(235,159,54)" rx="2" ry="2" />
<text x="1098.96" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (198 samples, 0.01%)</title><rect x="703.4" y="1797" width="0.2" height="15.0" fill="rgb(245,227,15)" rx="2" ry="2" />
<text x="706.44" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (335 samples, 0.02%)</title><rect x="736.0" y="1413" width="0.2" height="15.0" fill="rgb(239,8,33)" rx="2" ry="2" />
<text x="739.04" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,313 samples, 0.06%)</title><rect x="835.7" y="1333" width="0.7" height="15.0" fill="rgb(232,25,25)" rx="2" ry="2" />
<text x="838.67" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,193 samples, 0.06%)</title><rect x="894.0" y="1269" width="0.7" height="15.0" fill="rgb(210,158,3)" rx="2" ry="2" />
<text x="896.99" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (23,228 samples, 1.13%)</title><rect x="871.2" y="1429" width="13.4" height="15.0" fill="rgb(237,148,5)" rx="2" ry="2" />
<text x="874.22" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="725" width="0.3" height="15.0" fill="rgb(240,197,41)" rx="2" ry="2" />
<text x="1191.59" y="735.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12417 (44,046 samples, 2.15%)</title><rect x="842.4" y="1477" width="25.3" height="15.0" fill="rgb(217,71,31)" rx="2" ry="2" />
<text x="845.42" y="1487.5" >c..</text>
</g>
<g >
<title>caml_empty_minor_heap (540 samples, 0.03%)</title><rect x="711.5" y="1909" width="0.3" height="15.0" fill="rgb(245,220,26)" rx="2" ry="2" />
<text x="714.53" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (852 samples, 0.04%)</title><rect x="923.7" y="1157" width="0.5" height="15.0" fill="rgb(254,210,47)" rx="2" ry="2" />
<text x="926.75" y="1167.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,236 samples, 0.06%)</title><rect x="35.0" y="2005" width="0.7" height="15.0" fill="rgb(205,197,31)" rx="2" ry="2" />
<text x="38.01" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,131 samples, 0.06%)</title><rect x="919.6" y="1205" width="0.7" height="15.0" fill="rgb(227,51,18)" rx="2" ry="2" />
<text x="922.64" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (181 samples, 0.01%)</title><rect x="1121.8" y="1365" width="0.1" height="15.0" fill="rgb(206,39,27)" rx="2" ry="2" />
<text x="1124.80" y="1375.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (378 samples, 0.02%)</title><rect x="324.1" y="1845" width="0.3" height="15.0" fill="rgb(228,197,42)" rx="2" ry="2" />
<text x="327.13" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (2,539 samples, 0.12%)</title><rect x="698.0" y="1941" width="1.4" height="15.0" fill="rgb(205,76,33)" rx="2" ry="2" />
<text x="700.96" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (764 samples, 0.04%)</title><rect x="1164.9" y="1221" width="0.4" height="15.0" fill="rgb(252,180,3)" rx="2" ry="2" />
<text x="1167.90" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (215 samples, 0.01%)</title><rect x="771.6" y="1349" width="0.1" height="15.0" fill="rgb(234,117,12)" rx="2" ry="2" />
<text x="774.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__fun_97817 (447,257 samples, 21.80%)</title><rect x="888.5" y="1701" width="257.2" height="15.0" fill="rgb(249,221,48)" rx="2" ry="2" />
<text x="891.47" y="1711.5" >camlIrmin_pack__Pack_layers__fun_9..</text>
</g>
<g >
<title>camlIndex_unix__aux_483 (186 samples, 0.01%)</title><rect x="1016.0" y="1317" width="0.1" height="15.0" fill="rgb(236,151,10)" rx="2" ry="2" />
<text x="1019.01" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (1,733 samples, 0.08%)</title><rect x="324.1" y="1877" width="1.0" height="15.0" fill="rgb(223,33,7)" rx="2" ry="2" />
<text x="327.13" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="309" width="0.3" height="15.0" fill="rgb(238,37,44)" rx="2" ry="2" />
<text x="1191.59" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (328 samples, 0.02%)</title><rect x="854.2" y="1205" width="0.2" height="15.0" fill="rgb(233,41,54)" rx="2" ry="2" />
<text x="857.21" y="1215.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (225 samples, 0.01%)</title><rect x="933.6" y="1237" width="0.1" height="15.0" fill="rgb(230,158,14)" rx="2" ry="2" />
<text x="936.58" y="1247.5" ></text>
</g>
<g >
<title>camlDune__scheduler__run_and_cleanup_5152 (568 samples, 0.03%)</title><rect x="10.1" y="1813" width="0.3" height="15.0" fill="rgb(244,155,0)" rx="2" ry="2" />
<text x="13.07" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (902 samples, 0.04%)</title><rect x="1042.9" y="1253" width="0.5" height="15.0" fill="rgb(211,115,31)" rx="2" ry="2" />
<text x="1045.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1333" width="0.3" height="15.0" fill="rgb(237,227,43)" rx="2" ry="2" />
<text x="1192.37" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1557" width="0.3" height="15.0" fill="rgb(244,27,51)" rx="2" ry="2" />
<text x="1192.69" y="1567.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (218 samples, 0.01%)</title><rect x="40.9" y="1957" width="0.1" height="15.0" fill="rgb(236,98,0)" rx="2" ry="2" />
<text x="43.90" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,884 samples, 2.04%)</title><rect x="716.1" y="1749" width="24.1" height="15.0" fill="rgb(254,96,26)" rx="2" ry="2" />
<text x="719.10" y="1759.5" >c..</text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (185 samples, 0.01%)</title><rect x="858.3" y="1381" width="0.1" height="15.0" fill="rgb(253,17,42)" rx="2" ry="2" />
<text x="861.34" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (573 samples, 0.03%)</title><rect x="738.9" y="1557" width="0.3" height="15.0" fill="rgb(225,229,3)" rx="2" ry="2" />
<text x="741.85" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (190 samples, 0.01%)</title><rect x="735.8" y="1413" width="0.2" height="15.0" fill="rgb(208,51,25)" rx="2" ry="2" />
<text x="738.85" y="1423.5" ></text>
</g>
<g >
<title>caml_alloc_string (210 samples, 0.01%)</title><rect x="1051.2" y="1237" width="0.1" height="15.0" fill="rgb(237,176,24)" rx="2" ry="2" />
<text x="1054.20" y="1247.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (439 samples, 0.02%)</title><rect x="308.2" y="1813" width="0.3" height="15.0" fill="rgb(207,72,37)" rx="2" ry="2" />
<text x="311.23" y="1823.5" ></text>
</g>
<g >
<title>__libc_pread64 (297 samples, 0.01%)</title><rect x="1166.0" y="1189" width="0.2" height="15.0" fill="rgb(218,198,2)" rx="2" ry="2" />
<text x="1169.04" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (782 samples, 0.04%)</title><rect x="823.9" y="1349" width="0.5" height="15.0" fill="rgb(220,43,49)" rx="2" ry="2" />
<text x="826.93" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217 samples, 0.01%)</title><rect x="824.0" y="1253" width="0.2" height="15.0" fill="rgb(230,21,48)" rx="2" ry="2" />
<text x="827.04" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (521 samples, 0.03%)</title><rect x="751.9" y="1349" width="0.3" height="15.0" fill="rgb(223,5,9)" rx="2" ry="2" />
<text x="754.93" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15414 (618 samples, 0.03%)</title><rect x="977.4" y="1445" width="0.3" height="15.0" fill="rgb(254,52,38)" rx="2" ry="2" />
<text x="980.39" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (205 samples, 0.01%)</title><rect x="884.8" y="1413" width="0.1" height="15.0" fill="rgb(211,26,1)" rx="2" ry="2" />
<text x="887.78" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15579 (311 samples, 0.02%)</title><rect x="868.3" y="1493" width="0.2" height="15.0" fill="rgb(237,154,23)" rx="2" ry="2" />
<text x="871.34" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (287 samples, 0.01%)</title><rect x="880.4" y="1365" width="0.2" height="15.0" fill="rgb(223,97,22)" rx="2" ry="2" />
<text x="883.40" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="853" width="0.3" height="15.0" fill="rgb(231,140,6)" rx="2" ry="2" />
<text x="1191.59" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (641 samples, 0.03%)</title><rect x="668.7" y="1845" width="0.4" height="15.0" fill="rgb(222,147,13)" rx="2" ry="2" />
<text x="671.74" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="2021" width="0.3" height="15.0" fill="rgb(224,6,45)" rx="2" ry="2" />
<text x="1192.06" y="2031.5" ></text>
</g>
<g >
<title>caml_curry5_4 (182 samples, 0.01%)</title><rect x="887.8" y="1477" width="0.1" height="15.0" fill="rgb(212,38,16)" rx="2" ry="2" />
<text x="890.81" y="1487.5" ></text>
</g>
<g >
<title>camlLayered_bench__with_timer_26561 (73,868 samples, 3.60%)</title><rect x="1145.8" y="1557" width="42.4" height="15.0" fill="rgb(248,191,14)" rx="2" ry="2" />
<text x="1148.76" y="1567.5" >caml..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (306 samples, 0.01%)</title><rect x="853.0" y="1221" width="0.2" height="15.0" fill="rgb(217,151,23)" rx="2" ry="2" />
<text x="856.01" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (203 samples, 0.01%)</title><rect x="712.2" y="1877" width="0.1" height="15.0" fill="rgb(215,41,34)" rx="2" ry="2" />
<text x="715.17" y="1887.5" ></text>
</g>
<g >
<title>camlCmdliner__term_eval_412 (821,291 samples, 40.03%)</title><rect x="716.1" y="1893" width="472.4" height="15.0" fill="rgb(234,134,36)" rx="2" ry="2" />
<text x="719.10" y="1903.5" >camlCmdliner__term_eval_412</text>
</g>
<g >
<title>camlIndex__fun_3710 (5,603 samples, 0.27%)</title><rect x="856.1" y="1413" width="3.3" height="15.0" fill="rgb(242,110,43)" rx="2" ry="2" />
<text x="859.14" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (450 samples, 0.02%)</title><rect x="1032.1" y="1221" width="0.2" height="15.0" fill="rgb(238,124,1)" rx="2" ry="2" />
<text x="1035.07" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_335 (492 samples, 0.02%)</title><rect x="827.5" y="1397" width="0.3" height="15.0" fill="rgb(235,4,21)" rx="2" ry="2" />
<text x="830.53" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (962 samples, 0.05%)</title><rect x="722.0" y="1429" width="0.5" height="15.0" fill="rgb(223,222,44)" rx="2" ry="2" />
<text x="724.95" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (309 samples, 0.02%)</title><rect x="821.6" y="1397" width="0.2" height="15.0" fill="rgb(212,116,13)" rx="2" ry="2" />
<text x="824.59" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (854 samples, 0.04%)</title><rect x="412.4" y="1861" width="0.5" height="15.0" fill="rgb(219,86,49)" rx="2" ry="2" />
<text x="415.39" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (216 samples, 0.01%)</title><rect x="22.8" y="2021" width="0.1" height="15.0" fill="rgb(216,58,11)" rx="2" ry="2" />
<text x="25.81" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (443 samples, 0.02%)</title><rect x="1045.6" y="1333" width="0.3" height="15.0" fill="rgb(205,84,6)" rx="2" ry="2" />
<text x="1048.61" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="821" width="0.3" height="15.0" fill="rgb(206,78,29)" rx="2" ry="2" />
<text x="1192.69" y="831.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (4,687 samples, 0.23%)</title><rect x="934.9" y="1349" width="2.7" height="15.0" fill="rgb(208,48,18)" rx="2" ry="2" />
<text x="937.89" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_782 (191 samples, 0.01%)</title><rect x="710.3" y="1861" width="0.1" height="15.0" fill="rgb(235,47,32)" rx="2" ry="2" />
<text x="713.27" y="1871.5" ></text>
</g>
<g >
<title>caml_hash (255 samples, 0.01%)</title><rect x="1027.3" y="1333" width="0.2" height="15.0" fill="rgb(234,23,25)" rx="2" ry="2" />
<text x="1030.30" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (2,097 samples, 0.10%)</title><rect x="986.5" y="1381" width="1.2" height="15.0" fill="rgb(228,27,38)" rx="2" ry="2" />
<text x="989.48" y="1391.5" ></text>
</g>
<g >
<title>caml_thread_yield (1,269 samples, 0.06%)</title><rect x="1175.2" y="1221" width="0.7" height="15.0" fill="rgb(243,5,3)" rx="2" ry="2" />
<text x="1178.21" y="1231.5" ></text>
</g>
<g >
<title>memmove (1,472 samples, 0.07%)</title><rect x="505.0" y="1909" width="0.8" height="15.0" fill="rgb(223,162,19)" rx="2" ry="2" />
<text x="507.97" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (236 samples, 0.01%)</title><rect x="1158.6" y="1205" width="0.1" height="15.0" fill="rgb(213,137,35)" rx="2" ry="2" />
<text x="1161.58" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1173" width="0.3" height="15.0" fill="rgb(211,11,14)" rx="2" ry="2" />
<text x="1192.69" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (1,224 samples, 0.06%)</title><rect x="805.9" y="1445" width="0.7" height="15.0" fill="rgb(207,154,42)" rx="2" ry="2" />
<text x="808.89" y="1455.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,566 samples, 0.08%)</title><rect x="1166.2" y="1221" width="0.9" height="15.0" fill="rgb(209,49,4)" rx="2" ry="2" />
<text x="1169.21" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="389" width="0.3" height="15.0" fill="rgb(233,156,1)" rx="2" ry="2" />
<text x="1192.69" y="399.5" ></text>
</g>
<g >
<title>do_compare_val (460 samples, 0.02%)</title><rect x="973.6" y="1269" width="0.3" height="15.0" fill="rgb(251,31,38)" rx="2" ry="2" />
<text x="976.62" y="1279.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (250 samples, 0.01%)</title><rect x="144.8" y="1861" width="0.2" height="15.0" fill="rgb(235,106,13)" rx="2" ry="2" />
<text x="147.82" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1797" width="0.3" height="15.0" fill="rgb(252,199,41)" rx="2" ry="2" />
<text x="1192.37" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (641 samples, 0.03%)</title><rect x="763.6" y="1285" width="0.4" height="15.0" fill="rgb(234,120,7)" rx="2" ry="2" />
<text x="766.65" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (316 samples, 0.02%)</title><rect x="736.1" y="1397" width="0.1" height="15.0" fill="rgb(208,140,18)" rx="2" ry="2" />
<text x="739.05" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (321 samples, 0.02%)</title><rect x="1157.4" y="1141" width="0.2" height="15.0" fill="rgb(211,156,50)" rx="2" ry="2" />
<text x="1160.44" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (24,208 samples, 1.18%)</title><rect x="898.1" y="1269" width="13.9" height="15.0" fill="rgb(225,185,14)" rx="2" ry="2" />
<text x="901.06" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (176 samples, 0.01%)</title><rect x="851.5" y="1317" width="0.1" height="15.0" fill="rgb(220,127,53)" rx="2" ry="2" />
<text x="854.49" y="1327.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (349 samples, 0.02%)</title><rect x="231.0" y="1829" width="0.2" height="15.0" fill="rgb(238,2,39)" rx="2" ry="2" />
<text x="233.98" y="1839.5" ></text>
</g>
<g >
<title>caml_hash (390 samples, 0.02%)</title><rect x="1136.3" y="1269" width="0.2" height="15.0" fill="rgb(212,52,26)" rx="2" ry="2" />
<text x="1139.28" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (248 samples, 0.01%)</title><rect x="763.1" y="1285" width="0.1" height="15.0" fill="rgb(250,97,47)" rx="2" ry="2" />
<text x="766.07" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (309 samples, 0.02%)</title><rect x="1173.6" y="1221" width="0.1" height="15.0" fill="rgb(243,89,48)" rx="2" ry="2" />
<text x="1176.56" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (987 samples, 0.05%)</title><rect x="34.4" y="1877" width="0.6" height="15.0" fill="rgb(210,135,26)" rx="2" ry="2" />
<text x="37.40" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,315 samples, 0.06%)</title><rect x="797.4" y="1253" width="0.8" height="15.0" fill="rgb(211,97,6)" rx="2" ry="2" />
<text x="800.45" y="1263.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (418 samples, 0.02%)</title><rect x="10.2" y="1685" width="0.2" height="15.0" fill="rgb(242,35,20)" rx="2" ry="2" />
<text x="13.16" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (207 samples, 0.01%)</title><rect x="925.4" y="1269" width="0.2" height="15.0" fill="rgb(239,188,27)" rx="2" ry="2" />
<text x="928.44" y="1279.5" ></text>
</g>
<g >
<title>camlCommon__random_string_6641 (1,044 samples, 0.05%)</title><rect x="1187.6" y="1493" width="0.6" height="15.0" fill="rgb(247,186,23)" rx="2" ry="2" />
<text x="1190.62" y="1503.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6269 (314 samples, 0.02%)</title><rect x="717.1" y="1509" width="0.2" height="15.0" fill="rgb(234,70,20)" rx="2" ry="2" />
<text x="720.11" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (247 samples, 0.01%)</title><rect x="1152.2" y="1221" width="0.1" height="15.0" fill="rgb(226,214,4)" rx="2" ry="2" />
<text x="1155.18" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_small (179 samples, 0.01%)</title><rect x="1042.3" y="1317" width="0.1" height="15.0" fill="rgb(232,69,9)" rx="2" ry="2" />
<text x="1045.26" y="1327.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (1,074 samples, 0.05%)</title><rect x="716.5" y="1525" width="0.6" height="15.0" fill="rgb(208,175,28)" rx="2" ry="2" />
<text x="719.48" y="1535.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (14,093 samples, 0.69%)</title><rect x="1177.5" y="1333" width="8.1" height="15.0" fill="rgb(223,33,17)" rx="2" ry="2" />
<text x="1180.45" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_5763 (1,396 samples, 0.07%)</title><rect x="1040.0" y="1397" width="0.8" height="15.0" fill="rgb(242,162,27)" rx="2" ry="2" />
<text x="1042.99" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="389" width="0.3" height="15.0" fill="rgb(228,43,30)" rx="2" ry="2" />
<text x="1191.59" y="399.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (647 samples, 0.03%)</title><rect x="773.1" y="1381" width="0.4" height="15.0" fill="rgb(223,14,43)" rx="2" ry="2" />
<text x="776.11" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="549" width="0.2" height="15.0" fill="rgb(254,74,30)" rx="2" ry="2" />
<text x="1191.85" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (857 samples, 0.04%)</title><rect x="1176.7" y="1333" width="0.5" height="15.0" fill="rgb(249,110,41)" rx="2" ry="2" />
<text x="1179.67" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (14,139 samples, 0.69%)</title><rect x="1177.4" y="1349" width="8.2" height="15.0" fill="rgb(249,121,7)" rx="2" ry="2" />
<text x="1180.43" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (681 samples, 0.03%)</title><rect x="759.1" y="1381" width="0.4" height="15.0" fill="rgb(254,169,2)" rx="2" ry="2" />
<text x="762.08" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="757" width="0.3" height="15.0" fill="rgb(237,17,29)" rx="2" ry="2" />
<text x="1192.06" y="767.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (370 samples, 0.02%)</title><rect x="709.7" y="1797" width="0.2" height="15.0" fill="rgb(226,37,6)" rx="2" ry="2" />
<text x="712.65" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (274 samples, 0.01%)</title><rect x="618.6" y="1797" width="0.2" height="15.0" fill="rgb(208,185,33)" rx="2" ry="2" />
<text x="621.62" y="1807.5" ></text>
</g>
<g >
<title>caml_garbage_collection (712 samples, 0.03%)</title><rect x="206.2" y="1877" width="0.4" height="15.0" fill="rgb(247,204,25)" rx="2" ry="2" />
<text x="209.15" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,015 samples, 0.05%)</title><rect x="1027.0" y="1397" width="0.6" height="15.0" fill="rgb(222,32,7)" rx="2" ry="2" />
<text x="1030.04" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (296 samples, 0.01%)</title><rect x="751.0" y="1189" width="0.2" height="15.0" fill="rgb(235,226,2)" rx="2" ry="2" />
<text x="753.99" y="1199.5" ></text>
</g>
<g >
<title>unix_lseek_64 (882 samples, 0.04%)</title><rect x="827.9" y="1381" width="0.5" height="15.0" fill="rgb(207,173,12)" rx="2" ry="2" />
<text x="830.91" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (64,603 samples, 3.15%)</title><rect x="991.0" y="1429" width="37.2" height="15.0" fill="rgb(215,66,43)" rx="2" ry="2" />
<text x="994.01" y="1439.5" >cam..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (1,969 samples, 0.10%)</title><rect x="1089.6" y="1285" width="1.2" height="15.0" fill="rgb(240,185,0)" rx="2" ry="2" />
<text x="1092.62" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,312 samples, 0.06%)</title><rect x="100.4" y="1861" width="0.7" height="15.0" fill="rgb(239,189,27)" rx="2" ry="2" />
<text x="103.39" y="1871.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (2,422 samples, 0.12%)</title><rect x="306.8" y="1845" width="1.4" height="15.0" fill="rgb(221,70,10)" rx="2" ry="2" />
<text x="309.82" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (218 samples, 0.01%)</title><rect x="965.8" y="1269" width="0.2" height="15.0" fill="rgb(233,153,27)" rx="2" ry="2" />
<text x="968.84" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__prim_615 (1,324 samples, 0.06%)</title><rect x="455.9" y="1925" width="0.8" height="15.0" fill="rgb(225,155,0)" rx="2" ry="2" />
<text x="458.90" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (1,958 samples, 0.10%)</title><rect x="789.2" y="1365" width="1.2" height="15.0" fill="rgb(233,132,22)" rx="2" ry="2" />
<text x="792.23" y="1375.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (216 samples, 0.01%)</title><rect x="1074.7" y="1365" width="0.1" height="15.0" fill="rgb(215,146,20)" rx="2" ry="2" />
<text x="1077.66" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (382 samples, 0.02%)</title><rect x="911.7" y="1237" width="0.2" height="15.0" fill="rgb(217,117,13)" rx="2" ry="2" />
<text x="914.72" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (306 samples, 0.01%)</title><rect x="945.4" y="1253" width="0.1" height="15.0" fill="rgb(228,105,26)" rx="2" ry="2" />
<text x="948.36" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1957" width="0.3" height="15.0" fill="rgb(250,200,16)" rx="2" ry="2" />
<text x="1191.59" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11974 (596 samples, 0.03%)</title><rect x="725.4" y="1445" width="0.4" height="15.0" fill="rgb(207,162,27)" rx="2" ry="2" />
<text x="728.42" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (285 samples, 0.01%)</title><rect x="1151.2" y="1189" width="0.2" height="15.0" fill="rgb(236,23,11)" rx="2" ry="2" />
<text x="1154.23" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (740 samples, 0.04%)</title><rect x="1131.4" y="1205" width="0.5" height="15.0" fill="rgb(208,198,24)" rx="2" ry="2" />
<text x="1134.45" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="469" width="0.2" height="15.0" fill="rgb(237,105,49)" rx="2" ry="2" />
<text x="1191.85" y="479.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12020 (1,825 samples, 0.09%)</title><rect x="788.0" y="1349" width="1.0" height="15.0" fill="rgb(212,54,2)" rx="2" ry="2" />
<text x="790.96" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,383 samples, 0.07%)</title><rect x="335.6" y="1829" width="0.8" height="15.0" fill="rgb(249,26,54)" rx="2" ry="2" />
<text x="338.58" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (277 samples, 0.01%)</title><rect x="793.3" y="1349" width="0.2" height="15.0" fill="rgb(252,7,6)" rx="2" ry="2" />
<text x="796.34" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (322 samples, 0.02%)</title><rect x="707.0" y="1749" width="0.2" height="15.0" fill="rgb(249,17,48)" rx="2" ry="2" />
<text x="710.00" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (585 samples, 0.03%)</title><rect x="1149.7" y="1173" width="0.3" height="15.0" fill="rgb(232,82,0)" rx="2" ry="2" />
<text x="1152.71" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (5,527 samples, 0.27%)</title><rect x="98.0" y="1909" width="3.1" height="15.0" fill="rgb(222,11,9)" rx="2" ry="2" />
<text x="100.97" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (315 samples, 0.02%)</title><rect x="1037.8" y="1349" width="0.2" height="15.0" fill="rgb(222,144,20)" rx="2" ry="2" />
<text x="1040.84" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (22,532 samples, 1.10%)</title><rect x="759.0" y="1413" width="12.9" height="15.0" fill="rgb(223,130,18)" rx="2" ry="2" />
<text x="761.98" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (3,058 samples, 0.15%)</title><rect x="1042.0" y="1365" width="1.7" height="15.0" fill="rgb(244,56,49)" rx="2" ry="2" />
<text x="1044.97" y="1375.5" ></text>
</g>
<g >
<title>caml_modify (175 samples, 0.01%)</title><rect x="1119.0" y="1349" width="0.1" height="15.0" fill="rgb(249,33,7)" rx="2" ry="2" />
<text x="1121.97" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,064 samples, 0.05%)</title><rect x="1107.4" y="1237" width="0.6" height="15.0" fill="rgb(217,148,15)" rx="2" ry="2" />
<text x="1110.41" y="1247.5" ></text>
</g>
<g >
<title>unix_lseek_64 (730 samples, 0.04%)</title><rect x="754.4" y="1301" width="0.4" height="15.0" fill="rgb(233,120,26)" rx="2" ry="2" />
<text x="757.42" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_1611 (275 samples, 0.01%)</title><rect x="1130.4" y="1285" width="0.2" height="15.0" fill="rgb(241,197,15)" rx="2" ry="2" />
<text x="1133.44" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11980 (2,948 samples, 0.14%)</title><rect x="725.4" y="1461" width="1.7" height="15.0" fill="rgb(224,135,42)" rx="2" ry="2" />
<text x="728.41" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,498 samples, 0.27%)</title><rect x="31.8" y="1941" width="3.2" height="15.0" fill="rgb(236,215,9)" rx="2" ry="2" />
<text x="34.81" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (788 samples, 0.04%)</title><rect x="923.8" y="1125" width="0.4" height="15.0" fill="rgb(250,27,6)" rx="2" ry="2" />
<text x="926.79" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1829" width="0.2" height="15.0" fill="rgb(231,0,49)" rx="2" ry="2" />
<text x="1191.85" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,921 samples, 1.70%)</title><rect x="587.3" y="1829" width="20.1" height="15.0" fill="rgb(240,23,42)" rx="2" ry="2" />
<text x="590.30" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (3,271 samples, 0.16%)</title><rect x="963.8" y="1285" width="1.9" height="15.0" fill="rgb(242,140,44)" rx="2" ry="2" />
<text x="966.79" y="1295.5" ></text>
</g>
<g >
<title>caml_sys_file_exists (177 samples, 0.01%)</title><rect x="701.2" y="1941" width="0.1" height="15.0" fill="rgb(238,188,31)" rx="2" ry="2" />
<text x="704.21" y="1951.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (2,286 samples, 0.11%)</title><rect x="709.0" y="1861" width="1.3" height="15.0" fill="rgb(225,29,41)" rx="2" ry="2" />
<text x="711.95" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (243 samples, 0.01%)</title><rect x="756.7" y="1381" width="0.2" height="15.0" fill="rgb(212,169,4)" rx="2" ry="2" />
<text x="759.72" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1493" width="0.3" height="15.0" fill="rgb(224,76,43)" rx="2" ry="2" />
<text x="1192.69" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (459 samples, 0.02%)</title><rect x="885.8" y="1461" width="0.3" height="15.0" fill="rgb(234,33,29)" rx="2" ry="2" />
<text x="888.81" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (301 samples, 0.01%)</title><rect x="935.7" y="1285" width="0.2" height="15.0" fill="rgb(244,51,21)" rx="2" ry="2" />
<text x="938.74" y="1295.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (189 samples, 0.01%)</title><rect x="722.1" y="1397" width="0.1" height="15.0" fill="rgb(250,136,46)" rx="2" ry="2" />
<text x="725.10" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15579 (735 samples, 0.04%)</title><rect x="1139.3" y="1461" width="0.4" height="15.0" fill="rgb(223,211,45)" rx="2" ry="2" />
<text x="1142.32" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (462 samples, 0.02%)</title><rect x="899.0" y="1221" width="0.2" height="15.0" fill="rgb(254,75,46)" rx="2" ry="2" />
<text x="901.96" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (1,170 samples, 0.06%)</title><rect x="1120.3" y="1397" width="0.7" height="15.0" fill="rgb(212,20,53)" rx="2" ry="2" />
<text x="1123.32" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,448 samples, 0.07%)</title><rect x="721.7" y="1445" width="0.8" height="15.0" fill="rgb(209,180,32)" rx="2" ry="2" />
<text x="724.67" y="1455.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (268 samples, 0.01%)</title><rect x="1175.7" y="1173" width="0.1" height="15.0" fill="rgb(235,132,30)" rx="2" ry="2" />
<text x="1178.68" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (30,457 samples, 1.48%)</title><rect x="787.7" y="1413" width="17.5" height="15.0" fill="rgb(236,172,51)" rx="2" ry="2" />
<text x="790.66" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="933" width="0.2" height="15.0" fill="rgb(212,33,26)" rx="2" ry="2" />
<text x="1191.85" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (991 samples, 0.05%)</title><rect x="1131.3" y="1221" width="0.6" height="15.0" fill="rgb(223,22,50)" rx="2" ry="2" />
<text x="1134.34" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (339 samples, 0.02%)</title><rect x="751.0" y="1221" width="0.2" height="15.0" fill="rgb(213,213,41)" rx="2" ry="2" />
<text x="753.97" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (896 samples, 0.04%)</title><rect x="885.3" y="1461" width="0.5" height="15.0" fill="rgb(245,166,50)" rx="2" ry="2" />
<text x="888.25" y="1471.5" ></text>
</g>
<g >
<title>caml_apply2 (249 samples, 0.01%)</title><rect x="763.5" y="1269" width="0.1" height="15.0" fill="rgb(233,125,6)" rx="2" ry="2" />
<text x="766.49" y="1279.5" ></text>
</g>
<g >
<title>all (2,051,590 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(237,126,6)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,941 samples, 0.09%)</title><rect x="972.0" y="1253" width="1.1" height="15.0" fill="rgb(243,136,33)" rx="2" ry="2" />
<text x="974.99" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (598 samples, 0.03%)</title><rect x="724.0" y="1525" width="0.4" height="15.0" fill="rgb(205,167,48)" rx="2" ry="2" />
<text x="727.03" y="1535.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_144 (264 samples, 0.01%)</title><rect x="839.3" y="1365" width="0.2" height="15.0" fill="rgb(243,101,26)" rx="2" ry="2" />
<text x="842.32" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="2037" width="0.3" height="15.0" fill="rgb(216,173,5)" rx="2" ry="2" />
<text x="1192.37" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (1,845 samples, 0.09%)</title><rect x="1031.8" y="1301" width="1.1" height="15.0" fill="rgb(218,4,4)" rx="2" ry="2" />
<text x="1034.83" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (738 samples, 0.04%)</title><rect x="1137.1" y="1237" width="0.4" height="15.0" fill="rgb(227,70,1)" rx="2" ry="2" />
<text x="1140.10" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,174 samples, 0.06%)</title><rect x="732.9" y="1429" width="0.7" height="15.0" fill="rgb(223,157,28)" rx="2" ry="2" />
<text x="735.91" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2055 (1,067 samples, 0.05%)</title><rect x="390.5" y="1909" width="0.6" height="15.0" fill="rgb(233,205,12)" rx="2" ry="2" />
<text x="393.47" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="357" width="0.3" height="15.0" fill="rgb(216,80,1)" rx="2" ry="2" />
<text x="1192.06" y="367.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_4817 (314 samples, 0.02%)</title><rect x="716.1" y="1637" width="0.2" height="15.0" fill="rgb(248,197,10)" rx="2" ry="2" />
<text x="719.10" y="1647.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (986 samples, 0.05%)</title><rect x="1039.4" y="1365" width="0.6" height="15.0" fill="rgb(205,152,30)" rx="2" ry="2" />
<text x="1042.42" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,849 samples, 0.29%)</title><rect x="31.6" y="1957" width="3.4" height="15.0" fill="rgb(208,21,16)" rx="2" ry="2" />
<text x="34.60" y="1967.5" ></text>
</g>
<g >
<title>mark_slice (310 samples, 0.02%)</title><rect x="545.8" y="1861" width="0.2" height="15.0" fill="rgb(209,75,27)" rx="2" ry="2" />
<text x="548.80" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (286 samples, 0.01%)</title><rect x="944.9" y="1301" width="0.2" height="15.0" fill="rgb(240,6,10)" rx="2" ry="2" />
<text x="947.94" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,626 samples, 0.08%)</title><rect x="1044.4" y="1333" width="0.9" height="15.0" fill="rgb(233,98,31)" rx="2" ry="2" />
<text x="1047.40" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="2005" width="0.3" height="15.0" fill="rgb(227,128,42)" rx="2" ry="2" />
<text x="1192.06" y="2015.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (1,131 samples, 0.06%)</title><rect x="1107.4" y="1253" width="0.7" height="15.0" fill="rgb(214,0,0)" rx="2" ry="2" />
<text x="1110.41" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1653" width="0.3" height="15.0" fill="rgb(221,219,47)" rx="2" ry="2" />
<text x="1192.37" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="741" width="0.3" height="15.0" fill="rgb(231,97,30)" rx="2" ry="2" />
<text x="1191.59" y="751.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (1,791 samples, 0.09%)</title><rect x="1146.4" y="1333" width="1.0" height="15.0" fill="rgb(212,111,1)" rx="2" ry="2" />
<text x="1149.41" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (10,427 samples, 0.51%)</title><rect x="1088.6" y="1301" width="6.0" height="15.0" fill="rgb(206,200,29)" rx="2" ry="2" />
<text x="1091.57" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (193 samples, 0.01%)</title><rect x="821.6" y="1381" width="0.1" height="15.0" fill="rgb(209,83,9)" rx="2" ry="2" />
<text x="824.63" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (11,124 samples, 0.54%)</title><rect x="727.8" y="1509" width="6.4" height="15.0" fill="rgb(245,121,19)" rx="2" ry="2" />
<text x="730.77" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__compare_1165 (257 samples, 0.01%)</title><rect x="1109.0" y="1349" width="0.2" height="15.0" fill="rgb(210,218,25)" rx="2" ry="2" />
<text x="1112.05" y="1359.5" ></text>
</g>
<g >
<title>caml_oldify_one (431 samples, 0.02%)</title><rect x="28.6" y="2021" width="0.3" height="15.0" fill="rgb(252,89,6)" rx="2" ry="2" />
<text x="31.62" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_5763 (1,465 samples, 0.07%)</title><rect x="940.5" y="1381" width="0.9" height="15.0" fill="rgb(228,87,43)" rx="2" ry="2" />
<text x="943.54" y="1391.5" ></text>
</g>
<g >
<title>__libc_start_main (615 samples, 0.03%)</title><rect x="10.1" y="2037" width="0.3" height="15.0" fill="rgb(209,111,18)" rx="2" ry="2" />
<text x="13.05" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (1,764 samples, 0.09%)</title><rect x="1006.6" y="1285" width="1.0" height="15.0" fill="rgb(226,55,36)" rx="2" ry="2" />
<text x="1009.56" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (179 samples, 0.01%)</title><rect x="721.4" y="1429" width="0.1" height="15.0" fill="rgb(244,196,54)" rx="2" ry="2" />
<text x="724.45" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (390 samples, 0.02%)</title><rect x="1025.0" y="1301" width="0.3" height="15.0" fill="rgb(215,149,11)" rx="2" ry="2" />
<text x="1028.03" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (2,004 samples, 0.10%)</title><rect x="1031.8" y="1317" width="1.1" height="15.0" fill="rgb(247,144,24)" rx="2" ry="2" />
<text x="1034.76" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (3,069 samples, 0.15%)</title><rect x="1079.4" y="1349" width="1.7" height="15.0" fill="rgb(240,127,53)" rx="2" ry="2" />
<text x="1082.38" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (278 samples, 0.01%)</title><rect x="1025.1" y="1221" width="0.1" height="15.0" fill="rgb(216,148,23)" rx="2" ry="2" />
<text x="1028.06" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (771 samples, 0.04%)</title><rect x="727.8" y="1461" width="0.5" height="15.0" fill="rgb(210,102,13)" rx="2" ry="2" />
<text x="730.81" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12309 (21,765 samples, 1.06%)</title><rect x="1146.3" y="1381" width="12.5" height="15.0" fill="rgb(251,26,1)" rx="2" ry="2" />
<text x="1149.32" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1519 (620 samples, 0.03%)</title><rect x="417.4" y="1877" width="0.4" height="15.0" fill="rgb(206,216,10)" rx="2" ry="2" />
<text x="420.40" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11748 (175 samples, 0.01%)</title><rect x="805.5" y="1445" width="0.1" height="15.0" fill="rgb(209,73,39)" rx="2" ry="2" />
<text x="808.45" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (280 samples, 0.01%)</title><rect x="989.5" y="1445" width="0.2" height="15.0" fill="rgb(239,124,41)" rx="2" ry="2" />
<text x="992.52" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,176 samples, 0.06%)</title><rect x="1051.4" y="1253" width="0.7" height="15.0" fill="rgb(210,222,30)" rx="2" ry="2" />
<text x="1054.39" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="789" width="0.3" height="15.0" fill="rgb(211,161,37)" rx="2" ry="2" />
<text x="1192.69" y="799.5" ></text>
</g>
<g >
<title>caml_startup (615 samples, 0.03%)</title><rect x="10.1" y="2005" width="0.3" height="15.0" fill="rgb(241,190,1)" rx="2" ry="2" />
<text x="13.05" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="965" width="0.3" height="15.0" fill="rgb(219,162,33)" rx="2" ry="2" />
<text x="1192.69" y="975.5" ></text>
</g>
<g >
<title>caml_hash (266 samples, 0.01%)</title><rect x="836.6" y="1301" width="0.1" height="15.0" fill="rgb(248,180,35)" rx="2" ry="2" />
<text x="839.56" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (196 samples, 0.01%)</title><rect x="850.0" y="1333" width="0.1" height="15.0" fill="rgb(207,204,27)" rx="2" ry="2" />
<text x="852.96" y="1343.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (188 samples, 0.01%)</title><rect x="28.4" y="2037" width="0.1" height="15.0" fill="rgb(221,25,35)" rx="2" ry="2" />
<text x="31.41" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1429" width="0.3" height="15.0" fill="rgb(222,154,36)" rx="2" ry="2" />
<text x="1192.06" y="1439.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (419 samples, 0.02%)</title><rect x="545.3" y="1909" width="0.2" height="15.0" fill="rgb(230,86,1)" rx="2" ry="2" />
<text x="548.28" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (206 samples, 0.01%)</title><rect x="1086.9" y="1253" width="0.1" height="15.0" fill="rgb(209,223,30)" rx="2" ry="2" />
<text x="1089.87" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (4,932 samples, 0.24%)</title><rect x="881.0" y="1397" width="2.9" height="15.0" fill="rgb(231,48,19)" rx="2" ry="2" />
<text x="884.03" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__fun_3710 (13,325 samples, 0.65%)</title><rect x="1112.1" y="1381" width="7.7" height="15.0" fill="rgb(213,168,46)" rx="2" ry="2" />
<text x="1115.09" y="1391.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (467 samples, 0.02%)</title><rect x="1059.6" y="1237" width="0.3" height="15.0" fill="rgb(244,11,23)" rx="2" ry="2" />
<text x="1062.64" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (999 samples, 0.05%)</title><rect x="1070.1" y="1221" width="0.6" height="15.0" fill="rgb(238,193,38)" rx="2" ry="2" />
<text x="1073.10" y="1231.5" ></text>
</g>
<g >
<title>caml_c_call (206 samples, 0.01%)</title><rect x="505.8" y="1925" width="0.1" height="15.0" fill="rgb(223,119,45)" rx="2" ry="2" />
<text x="508.81" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (340 samples, 0.02%)</title><rect x="1154.7" y="1237" width="0.2" height="15.0" fill="rgb(235,156,24)" rx="2" ry="2" />
<text x="1157.69" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_681 (291 samples, 0.01%)</title><rect x="1125.2" y="1397" width="0.1" height="15.0" fill="rgb(209,86,43)" rx="2" ry="2" />
<text x="1128.16" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (308 samples, 0.02%)</title><rect x="1094.2" y="1253" width="0.2" height="15.0" fill="rgb(229,193,39)" rx="2" ry="2" />
<text x="1097.19" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,477 samples, 0.07%)</title><rect x="916.6" y="1269" width="0.8" height="15.0" fill="rgb(219,57,40)" rx="2" ry="2" />
<text x="919.56" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1973" width="0.2" height="15.0" fill="rgb(248,129,33)" rx="2" ry="2" />
<text x="1191.85" y="1983.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,248 samples, 0.06%)</title><rect x="1019.8" y="1269" width="0.7" height="15.0" fill="rgb(205,213,40)" rx="2" ry="2" />
<text x="1022.77" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1797" width="0.3" height="15.0" fill="rgb(205,193,42)" rx="2" ry="2" />
<text x="1191.59" y="1807.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (482 samples, 0.02%)</title><rect x="721.7" y="1429" width="0.3" height="15.0" fill="rgb(219,2,6)" rx="2" ry="2" />
<text x="724.68" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__hash_1311 (240 samples, 0.01%)</title><rect x="979.6" y="1429" width="0.2" height="15.0" fill="rgb(213,3,15)" rx="2" ry="2" />
<text x="982.64" y="1439.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (3,240 samples, 0.16%)</title><rect x="1016.8" y="1317" width="1.9" height="15.0" fill="rgb(236,193,26)" rx="2" ry="2" />
<text x="1019.85" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1397" width="0.2" height="15.0" fill="rgb(206,81,49)" rx="2" ry="2" />
<text x="1191.85" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (257 samples, 0.01%)</title><rect x="1166.1" y="1125" width="0.1" height="15.0" fill="rgb(215,57,39)" rx="2" ry="2" />
<text x="1169.06" y="1135.5" ></text>
</g>
<g >
<title>caml_hash (486 samples, 0.02%)</title><rect x="1172.8" y="1189" width="0.3" height="15.0" fill="rgb(250,115,47)" rx="2" ry="2" />
<text x="1175.83" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (434 samples, 0.02%)</title><rect x="867.9" y="1381" width="0.3" height="15.0" fill="rgb(224,119,34)" rx="2" ry="2" />
<text x="870.93" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (424 samples, 0.02%)</title><rect x="883.3" y="1285" width="0.3" height="15.0" fill="rgb(254,147,0)" rx="2" ry="2" />
<text x="886.32" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (496 samples, 0.02%)</title><rect x="793.0" y="1333" width="0.3" height="15.0" fill="rgb(208,21,0)" rx="2" ry="2" />
<text x="795.97" y="1343.5" ></text>
</g>
<g >
<title>caml_apply5 (2,694 samples, 0.13%)</title><rect x="1157.2" y="1317" width="1.6" height="15.0" fill="rgb(252,214,29)" rx="2" ry="2" />
<text x="1160.21" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="485" width="0.3" height="15.0" fill="rgb(242,119,15)" rx="2" ry="2" />
<text x="1192.69" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,220 samples, 0.06%)</title><rect x="968.6" y="1237" width="0.7" height="15.0" fill="rgb(220,62,11)" rx="2" ry="2" />
<text x="971.59" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (878 samples, 0.04%)</title><rect x="401.9" y="1813" width="0.5" height="15.0" fill="rgb(243,24,54)" rx="2" ry="2" />
<text x="404.86" y="1823.5" ></text>
</g>
<g >
<title>caml_apply2 (452 samples, 0.02%)</title><rect x="1094.1" y="1269" width="0.3" height="15.0" fill="rgb(235,108,44)" rx="2" ry="2" />
<text x="1097.11" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__go_1742 (1,173,305 samples, 57.19%)</title><rect x="41.0" y="1973" width="674.9" height="15.0" fill="rgb(226,181,48)" rx="2" ry="2" />
<text x="44.04" y="1983.5" >camlIndex__go_1742</text>
</g>
<g >
<title>caml_apply2 (326 samples, 0.02%)</title><rect x="977.9" y="1461" width="0.2" height="15.0" fill="rgb(209,110,13)" rx="2" ry="2" />
<text x="980.88" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (410 samples, 0.02%)</title><rect x="903.7" y="1221" width="0.2" height="15.0" fill="rgb(219,127,6)" rx="2" ry="2" />
<text x="906.67" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (912 samples, 0.04%)</title><rect x="1117.8" y="1333" width="0.6" height="15.0" fill="rgb(247,107,11)" rx="2" ry="2" />
<text x="1120.85" y="1343.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (203 samples, 0.01%)</title><rect x="100.3" y="1861" width="0.1" height="15.0" fill="rgb(251,27,30)" rx="2" ry="2" />
<text x="103.28" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (546 samples, 0.03%)</title><rect x="815.5" y="1365" width="0.3" height="15.0" fill="rgb(250,161,49)" rx="2" ry="2" />
<text x="818.49" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1765" width="0.3" height="15.0" fill="rgb(205,206,9)" rx="2" ry="2" />
<text x="1192.69" y="1775.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (532 samples, 0.03%)</title><rect x="878.8" y="1397" width="0.3" height="15.0" fill="rgb(225,128,51)" rx="2" ry="2" />
<text x="881.84" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (239 samples, 0.01%)</title><rect x="941.2" y="1365" width="0.1" height="15.0" fill="rgb(246,123,26)" rx="2" ry="2" />
<text x="944.19" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (10,400 samples, 0.51%)</title><rect x="967.3" y="1301" width="6.0" height="15.0" fill="rgb(228,183,23)" rx="2" ry="2" />
<text x="970.31" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259 samples, 0.01%)</title><rect x="785.4" y="1173" width="0.2" height="15.0" fill="rgb(217,29,23)" rx="2" ry="2" />
<text x="788.43" y="1183.5" ></text>
</g>
<g >
<title>caml_hash (239 samples, 0.01%)</title><rect x="870.7" y="1349" width="0.1" height="15.0" fill="rgb(239,197,8)" rx="2" ry="2" />
<text x="873.69" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_4817 (789 samples, 0.04%)</title><rect x="1145.8" y="1429" width="0.4" height="15.0" fill="rgb(221,14,34)" rx="2" ry="2" />
<text x="1148.76" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (311 samples, 0.02%)</title><rect x="936.7" y="1317" width="0.2" height="15.0" fill="rgb(211,111,21)" rx="2" ry="2" />
<text x="939.71" y="1327.5" ></text>
</g>
<g >
<title>caml_startup (821,302 samples, 40.03%)</title><rect x="716.1" y="2005" width="472.4" height="15.0" fill="rgb(237,126,19)" rx="2" ry="2" />
<text x="719.10" y="2015.5" >caml_startup</text>
</g>
<g >
<title>caml_thread_yield (6,050 samples, 0.29%)</title><rect x="1105.3" y="1301" width="3.5" height="15.0" fill="rgb(241,201,3)" rx="2" ry="2" />
<text x="1108.27" y="1311.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,181 samples, 0.06%)</title><rect x="919.6" y="1237" width="0.7" height="15.0" fill="rgb(231,95,17)" rx="2" ry="2" />
<text x="922.62" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (4,988 samples, 0.24%)</title><rect x="735.0" y="1493" width="2.9" height="15.0" fill="rgb(232,117,39)" rx="2" ry="2" />
<text x="737.98" y="1503.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,623 samples, 0.08%)</title><rect x="1183.8" y="1253" width="1.0" height="15.0" fill="rgb(229,228,11)" rx="2" ry="2" />
<text x="1186.83" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (493 samples, 0.02%)</title><rect x="1145.3" y="1493" width="0.3" height="15.0" fill="rgb(254,85,1)" rx="2" ry="2" />
<text x="1148.31" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (331 samples, 0.02%)</title><rect x="779.7" y="1237" width="0.2" height="15.0" fill="rgb(232,50,11)" rx="2" ry="2" />
<text x="782.67" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1947 (1,008 samples, 0.05%)</title><rect x="342.2" y="1925" width="0.5" height="15.0" fill="rgb(233,94,4)" rx="2" ry="2" />
<text x="345.17" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (462 samples, 0.02%)</title><rect x="708.5" y="1877" width="0.2" height="15.0" fill="rgb(213,89,36)" rx="2" ry="2" />
<text x="711.46" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,373 samples, 0.07%)</title><rect x="830.5" y="1285" width="0.7" height="15.0" fill="rgb(222,42,39)" rx="2" ry="2" />
<text x="833.45" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__lazy__from_val_160 (343 samples, 0.02%)</title><rect x="1023.8" y="1349" width="0.2" height="15.0" fill="rgb(214,167,31)" rx="2" ry="2" />
<text x="1026.80" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (237 samples, 0.01%)</title><rect x="763.9" y="1269" width="0.1" height="15.0" fill="rgb(246,114,27)" rx="2" ry="2" />
<text x="766.87" y="1279.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (229 samples, 0.01%)</title><rect x="824.2" y="1301" width="0.1" height="15.0" fill="rgb(224,145,39)" rx="2" ry="2" />
<text x="827.17" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (567 samples, 0.03%)</title><rect x="1071.4" y="1221" width="0.3" height="15.0" fill="rgb(219,18,12)" rx="2" ry="2" />
<text x="1074.38" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (174 samples, 0.01%)</title><rect x="752.1" y="1333" width="0.1" height="15.0" fill="rgb(241,219,12)" rx="2" ry="2" />
<text x="755.12" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (2,655 samples, 0.13%)</title><rect x="774.3" y="1509" width="1.5" height="15.0" fill="rgb(215,54,48)" rx="2" ry="2" />
<text x="777.26" y="1519.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (682 samples, 0.03%)</title><rect x="838.8" y="1301" width="0.4" height="15.0" fill="rgb(246,15,27)" rx="2" ry="2" />
<text x="841.83" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (230 samples, 0.01%)</title><rect x="1101.1" y="1253" width="0.1" height="15.0" fill="rgb(233,45,48)" rx="2" ry="2" />
<text x="1104.06" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (1,726 samples, 0.08%)</title><rect x="954.5" y="1253" width="0.9" height="15.0" fill="rgb(217,42,16)" rx="2" ry="2" />
<text x="957.45" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (225 samples, 0.01%)</title><rect x="1189.4" y="181" width="0.1" height="15.0" fill="rgb(239,95,20)" rx="2" ry="2" />
<text x="1192.37" y="191.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (964 samples, 0.05%)</title><rect x="774.3" y="1477" width="0.6" height="15.0" fill="rgb(224,224,26)" rx="2" ry="2" />
<text x="777.32" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (487 samples, 0.02%)</title><rect x="1189.1" y="197" width="0.3" height="15.0" fill="rgb(251,118,7)" rx="2" ry="2" />
<text x="1192.08" y="207.5" ></text>
</g>
<g >
<title>caml_thread_yield (2,566 samples, 0.13%)</title><rect x="853.3" y="1333" width="1.4" height="15.0" fill="rgb(231,177,6)" rx="2" ry="2" />
<text x="856.26" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,491 samples, 0.07%)</title><rect x="986.8" y="1349" width="0.8" height="15.0" fill="rgb(241,128,46)" rx="2" ry="2" />
<text x="989.79" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15565 (45,279 samples, 2.21%)</title><rect x="842.3" y="1493" width="26.0" height="15.0" fill="rgb(213,12,17)" rx="2" ry="2" />
<text x="845.30" y="1503.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (398 samples, 0.02%)</title><rect x="904.8" y="1205" width="0.2" height="15.0" fill="rgb(238,168,30)" rx="2" ry="2" />
<text x="907.78" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (777 samples, 0.04%)</title><rect x="913.3" y="1269" width="0.4" height="15.0" fill="rgb(235,90,32)" rx="2" ry="2" />
<text x="916.30" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="1106.4" y="1253" width="0.1" height="15.0" fill="rgb(238,149,4)" rx="2" ry="2" />
<text x="1109.43" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,056 samples, 0.05%)</title><rect x="943.3" y="1237" width="0.6" height="15.0" fill="rgb(216,24,12)" rx="2" ry="2" />
<text x="946.30" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (192 samples, 0.01%)</title><rect x="729.8" y="1397" width="0.1" height="15.0" fill="rgb(226,155,28)" rx="2" ry="2" />
<text x="732.81" y="1407.5" ></text>
</g>
<g >
<title>camlCmdliner__eval_771 (821,291 samples, 40.03%)</title><rect x="716.1" y="1909" width="472.4" height="15.0" fill="rgb(218,109,32)" rx="2" ry="2" />
<text x="719.10" y="1919.5" >camlCmdliner__eval_771</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="997" width="0.3" height="15.0" fill="rgb(207,2,32)" rx="2" ry="2" />
<text x="1192.37" y="1007.5" ></text>
</g>
<g >
<title>camlIndex_unix__sync_inner_2153 (2,403 samples, 0.12%)</title><rect x="446.8" y="1941" width="1.3" height="15.0" fill="rgb(222,190,46)" rx="2" ry="2" />
<text x="449.76" y="1951.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (1,146 samples, 0.06%)</title><rect x="723.0" y="1477" width="0.7" height="15.0" fill="rgb(227,63,44)" rx="2" ry="2" />
<text x="726.03" y="1487.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,080 samples, 0.05%)</title><rect x="412.3" y="1893" width="0.7" height="15.0" fill="rgb(232,220,53)" rx="2" ry="2" />
<text x="415.34" y="1903.5" ></text>
</g>
<g >
<title>caml_call_gc (1,158 samples, 0.06%)</title><rect x="163.1" y="1861" width="0.6" height="15.0" fill="rgb(223,203,54)" rx="2" ry="2" />
<text x="166.05" y="1871.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (6,587 samples, 0.32%)</title><rect x="734.6" y="1573" width="3.8" height="15.0" fill="rgb(217,118,16)" rx="2" ry="2" />
<text x="737.64" y="1583.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (9,850 samples, 0.48%)</title><rect x="1016.8" y="1333" width="5.7" height="15.0" fill="rgb(225,38,48)" rx="2" ry="2" />
<text x="1019.84" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (548 samples, 0.03%)</title><rect x="745.9" y="1269" width="0.3" height="15.0" fill="rgb(245,110,10)" rx="2" ry="2" />
<text x="748.90" y="1279.5" ></text>
</g>
<g >
<title>__libc_pread64 (472 samples, 0.02%)</title><rect x="802.0" y="1269" width="0.3" height="15.0" fill="rgb(241,175,52)" rx="2" ry="2" />
<text x="805.04" y="1279.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (485 samples, 0.02%)</title><rect x="231.9" y="1845" width="0.3" height="15.0" fill="rgb(235,170,34)" rx="2" ry="2" />
<text x="234.88" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (243 samples, 0.01%)</title><rect x="716.1" y="1525" width="0.2" height="15.0" fill="rgb(205,157,45)" rx="2" ry="2" />
<text x="719.12" y="1535.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (363 samples, 0.02%)</title><rect x="750.7" y="1237" width="0.2" height="15.0" fill="rgb(217,91,3)" rx="2" ry="2" />
<text x="753.67" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (578 samples, 0.03%)</title><rect x="884.6" y="1429" width="0.3" height="15.0" fill="rgb(221,218,24)" rx="2" ry="2" />
<text x="887.58" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (997 samples, 0.05%)</title><rect x="1042.9" y="1269" width="0.5" height="15.0" fill="rgb(206,45,0)" rx="2" ry="2" />
<text x="1045.86" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (586 samples, 0.03%)</title><rect x="917.5" y="1285" width="0.3" height="15.0" fill="rgb(218,186,43)" rx="2" ry="2" />
<text x="920.51" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (304 samples, 0.01%)</title><rect x="733.2" y="1397" width="0.2" height="15.0" fill="rgb(250,37,45)" rx="2" ry="2" />
<text x="736.24" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (244 samples, 0.01%)</title><rect x="732.8" y="1381" width="0.1" height="15.0" fill="rgb(230,21,8)" rx="2" ry="2" />
<text x="735.76" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,635 samples, 0.08%)</title><rect x="401.6" y="1861" width="0.9" height="15.0" fill="rgb(250,162,39)" rx="2" ry="2" />
<text x="404.56" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (251 samples, 0.01%)</title><rect x="1088.3" y="1285" width="0.2" height="15.0" fill="rgb(239,29,6)" rx="2" ry="2" />
<text x="1091.35" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_main__run_124 (777,798 samples, 37.91%)</title><rect x="741.1" y="1845" width="447.4" height="15.0" fill="rgb(223,199,37)" rx="2" ry="2" />
<text x="744.11" y="1855.5" >camlLwt_main__run_124</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5827 (16,253 samples, 0.79%)</title><rect x="717.9" y="1541" width="9.4" height="15.0" fill="rgb(230,195,50)" rx="2" ry="2" />
<text x="720.95" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (498 samples, 0.02%)</title><rect x="859.6" y="1429" width="0.3" height="15.0" fill="rgb(243,217,46)" rx="2" ry="2" />
<text x="862.60" y="1439.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,000 samples, 0.05%)</title><rect x="702.4" y="1813" width="0.6" height="15.0" fill="rgb(243,49,10)" rx="2" ry="2" />
<text x="705.41" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (962 samples, 0.05%)</title><rect x="721.1" y="1461" width="0.5" height="15.0" fill="rgb(234,137,47)" rx="2" ry="2" />
<text x="724.05" y="1471.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (11,613 samples, 0.57%)</title><rect x="15.9" y="2021" width="6.7" height="15.0" fill="rgb(243,210,44)" rx="2" ry="2" />
<text x="18.88" y="2031.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (278 samples, 0.01%)</title><rect x="966.3" y="1237" width="0.2" height="15.0" fill="rgb(205,184,2)" rx="2" ry="2" />
<text x="969.33" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (4,073 samples, 0.20%)</title><rect x="768.4" y="1333" width="2.3" height="15.0" fill="rgb(208,119,35)" rx="2" ry="2" />
<text x="771.38" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (276 samples, 0.01%)</title><rect x="1024.9" y="1333" width="0.1" height="15.0" fill="rgb(211,144,46)" rx="2" ry="2" />
<text x="1027.86" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (1,189 samples, 0.06%)</title><rect x="1119.1" y="1365" width="0.7" height="15.0" fill="rgb(245,66,46)" rx="2" ry="2" />
<text x="1122.07" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,647 samples, 0.08%)</title><rect x="444.5" y="1893" width="0.9" height="15.0" fill="rgb(220,168,34)" rx="2" ry="2" />
<text x="447.50" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (455 samples, 0.02%)</title><rect x="972.8" y="1141" width="0.3" height="15.0" fill="rgb(241,68,31)" rx="2" ry="2" />
<text x="975.85" y="1151.5" ></text>
</g>
<g >
<title>dune (757 samples, 0.04%)</title><rect x="10.0" y="2069" width="0.4" height="15.0" fill="rgb(205,218,2)" rx="2" ry="2" />
<text x="13.00" y="2079.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (298 samples, 0.01%)</title><rect x="1080.0" y="1333" width="0.1" height="15.0" fill="rgb(253,31,24)" rx="2" ry="2" />
<text x="1082.97" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__fun_2963 (212 samples, 0.01%)</title><rect x="890.3" y="1413" width="0.1" height="15.0" fill="rgb(221,77,33)" rx="2" ry="2" />
<text x="893.27" y="1423.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,160 samples, 0.06%)</title><rect x="1069.0" y="1253" width="0.7" height="15.0" fill="rgb(242,196,38)" rx="2" ry="2" />
<text x="1072.02" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="805" width="0.2" height="15.0" fill="rgb(245,172,41)" rx="2" ry="2" />
<text x="1191.85" y="815.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1205" width="0.3" height="15.0" fill="rgb(214,199,48)" rx="2" ry="2" />
<text x="1192.37" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (417 samples, 0.02%)</title><rect x="815.2" y="1349" width="0.2" height="15.0" fill="rgb(229,29,49)" rx="2" ry="2" />
<text x="818.17" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (418 samples, 0.02%)</title><rect x="768.9" y="1205" width="0.3" height="15.0" fill="rgb(230,207,50)" rx="2" ry="2" />
<text x="771.94" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1500 (177 samples, 0.01%)</title><rect x="861.2" y="1429" width="0.1" height="15.0" fill="rgb(224,206,39)" rx="2" ry="2" />
<text x="864.23" y="1439.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (304 samples, 0.01%)</title><rect x="261.7" y="1845" width="0.2" height="15.0" fill="rgb(248,104,4)" rx="2" ry="2" />
<text x="264.74" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (1,966 samples, 0.10%)</title><rect x="787.9" y="1365" width="1.1" height="15.0" fill="rgb(219,11,54)" rx="2" ry="2" />
<text x="790.92" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (232 samples, 0.01%)</title><rect x="755.1" y="1381" width="0.1" height="15.0" fill="rgb(231,16,13)" rx="2" ry="2" />
<text x="758.05" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (202 samples, 0.01%)</title><rect x="880.7" y="1397" width="0.1" height="15.0" fill="rgb(221,39,53)" rx="2" ry="2" />
<text x="883.71" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (226 samples, 0.01%)</title><rect x="1158.6" y="1189" width="0.1" height="15.0" fill="rgb(243,202,23)" rx="2" ry="2" />
<text x="1161.59" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1861" width="0.3" height="15.0" fill="rgb(241,131,16)" rx="2" ry="2" />
<text x="1192.69" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (282 samples, 0.01%)</title><rect x="862.5" y="1397" width="0.1" height="15.0" fill="rgb(206,17,49)" rx="2" ry="2" />
<text x="865.48" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (474 samples, 0.02%)</title><rect x="1177.5" y="1317" width="0.3" height="15.0" fill="rgb(254,40,30)" rx="2" ry="2" />
<text x="1180.49" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (52,195 samples, 2.54%)</title><rect x="945.8" y="1349" width="30.0" height="15.0" fill="rgb(236,132,49)" rx="2" ry="2" />
<text x="948.81" y="1359.5" >ca..</text>
</g>
<g >
<title>camlStdlib__hashtbl__add_459 (368 samples, 0.02%)</title><rect x="865.4" y="1333" width="0.2" height="15.0" fill="rgb(241,152,41)" rx="2" ry="2" />
<text x="868.40" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (254 samples, 0.01%)</title><rect x="791.2" y="1365" width="0.1" height="15.0" fill="rgb(228,36,24)" rx="2" ry="2" />
<text x="794.19" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (845 samples, 0.04%)</title><rect x="1069.2" y="1189" width="0.5" height="15.0" fill="rgb(234,91,43)" rx="2" ry="2" />
<text x="1072.20" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (11,800 samples, 0.58%)</title><rect x="727.7" y="1557" width="6.8" height="15.0" fill="rgb(233,215,1)" rx="2" ry="2" />
<text x="730.71" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (698 samples, 0.03%)</title><rect x="841.5" y="1365" width="0.4" height="15.0" fill="rgb(236,136,1)" rx="2" ry="2" />
<text x="844.55" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (18,138 samples, 0.88%)</title><rect x="776.8" y="1429" width="10.4" height="15.0" fill="rgb(215,136,49)" rx="2" ry="2" />
<text x="779.76" y="1439.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (380 samples, 0.02%)</title><rect x="699.5" y="1893" width="0.3" height="15.0" fill="rgb(219,218,31)" rx="2" ry="2" />
<text x="702.54" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (590 samples, 0.03%)</title><rect x="1157.3" y="1205" width="0.4" height="15.0" fill="rgb(252,1,41)" rx="2" ry="2" />
<text x="1160.33" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__pre_hash_12260 (254 samples, 0.01%)</title><rect x="716.1" y="1557" width="0.2" height="15.0" fill="rgb(216,95,29)" rx="2" ry="2" />
<text x="719.12" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (275 samples, 0.01%)</title><rect x="424.6" y="1909" width="0.2" height="15.0" fill="rgb(254,65,14)" rx="2" ry="2" />
<text x="427.59" y="1919.5" ></text>
</g>
<g >
<title>__GI___pthread_getspecific (516 samples, 0.03%)</title><rect x="572.2" y="1909" width="0.3" height="15.0" fill="rgb(240,117,52)" rx="2" ry="2" />
<text x="575.20" y="1919.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (437 samples, 0.02%)</title><rect x="707.0" y="1781" width="0.2" height="15.0" fill="rgb(209,197,15)" rx="2" ry="2" />
<text x="709.98" y="1791.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (2,418 samples, 0.12%)</title><rect x="306.8" y="1829" width="1.4" height="15.0" fill="rgb(222,224,43)" rx="2" ry="2" />
<text x="309.82" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="677" width="0.3" height="15.0" fill="rgb(237,178,30)" rx="2" ry="2" />
<text x="1192.37" y="687.5" ></text>
</g>
<g >
<title>caml_blit_bytes (447 samples, 0.02%)</title><rect x="701.5" y="1877" width="0.2" height="15.0" fill="rgb(220,81,52)" rx="2" ry="2" />
<text x="704.48" y="1887.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_26641 (43,341 samples, 2.11%)</title><rect x="716.1" y="1781" width="24.9" height="15.0" fill="rgb(242,73,46)" rx="2" ry="2" />
<text x="719.10" y="1791.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_379 (244 samples, 0.01%)</title><rect x="1129.0" y="1365" width="0.2" height="15.0" fill="rgb(237,206,40)" rx="2" ry="2" />
<text x="1132.04" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (616 samples, 0.03%)</title><rect x="1060.4" y="1269" width="0.3" height="15.0" fill="rgb(252,201,30)" rx="2" ry="2" />
<text x="1063.37" y="1279.5" ></text>
</g>
<g >
<title>caml_thread_scan_roots (290 samples, 0.01%)</title><rect x="308.0" y="1813" width="0.2" height="15.0" fill="rgb(245,10,16)" rx="2" ry="2" />
<text x="311.05" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (80,302 samples, 3.91%)</title><rect x="1029.5" y="1413" width="46.2" height="15.0" fill="rgb(254,14,47)" rx="2" ry="2" />
<text x="1032.47" y="1423.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (418 samples, 0.02%)</title><rect x="937.8" y="1333" width="0.3" height="15.0" fill="rgb(206,103,28)" rx="2" ry="2" />
<text x="940.85" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (179 samples, 0.01%)</title><rect x="803.7" y="1205" width="0.1" height="15.0" fill="rgb(251,120,35)" rx="2" ry="2" />
<text x="806.68" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (227 samples, 0.01%)</title><rect x="754.5" y="1253" width="0.1" height="15.0" fill="rgb(251,150,23)" rx="2" ry="2" />
<text x="757.46" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5768 (5,082 samples, 0.25%)</title><rect x="941.4" y="1381" width="2.9" height="15.0" fill="rgb(237,128,47)" rx="2" ry="2" />
<text x="944.38" y="1391.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (418 samples, 0.02%)</title><rect x="10.2" y="1589" width="0.2" height="15.0" fill="rgb(254,34,17)" rx="2" ry="2" />
<text x="13.16" y="1599.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (226 samples, 0.01%)</title><rect x="867.9" y="1365" width="0.2" height="15.0" fill="rgb(224,109,33)" rx="2" ry="2" />
<text x="870.94" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (1,517 samples, 0.07%)</title><rect x="100.3" y="1893" width="0.8" height="15.0" fill="rgb(217,57,52)" rx="2" ry="2" />
<text x="103.27" y="1903.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,297 samples, 0.06%)</title><rect x="970.3" y="1237" width="0.7" height="15.0" fill="rgb(205,45,16)" rx="2" ry="2" />
<text x="973.30" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1349" width="0.3" height="15.0" fill="rgb(208,129,1)" rx="2" ry="2" />
<text x="1192.06" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (364 samples, 0.02%)</title><rect x="1010.3" y="1285" width="0.2" height="15.0" fill="rgb(212,211,15)" rx="2" ry="2" />
<text x="1013.31" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1221" width="0.3" height="15.0" fill="rgb(254,192,31)" rx="2" ry="2" />
<text x="1192.37" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (579 samples, 0.03%)</title><rect x="938.5" y="1349" width="0.4" height="15.0" fill="rgb(228,109,2)" rx="2" ry="2" />
<text x="941.54" y="1359.5" ></text>
</g>
<g >
<title>caml_pread (412 samples, 0.02%)</title><rect x="784.5" y="1269" width="0.3" height="15.0" fill="rgb(250,180,19)" rx="2" ry="2" />
<text x="787.51" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1093" width="0.3" height="15.0" fill="rgb(232,78,39)" rx="2" ry="2" />
<text x="1192.69" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (417 samples, 0.02%)</title><rect x="1037.0" y="1349" width="0.3" height="15.0" fill="rgb(233,198,47)" rx="2" ry="2" />
<text x="1040.03" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (193 samples, 0.01%)</title><rect x="849.8" y="1317" width="0.1" height="15.0" fill="rgb(211,25,51)" rx="2" ry="2" />
<text x="852.82" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,300 samples, 0.06%)</title><rect x="817.5" y="1349" width="0.8" height="15.0" fill="rgb(215,30,14)" rx="2" ry="2" />
<text x="820.53" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7368 (69,606 samples, 3.39%)</title><rect x="889.7" y="1429" width="40.0" height="15.0" fill="rgb(222,137,5)" rx="2" ry="2" />
<text x="892.68" y="1439.5" >cam..</text>
</g>
<g >
<title>caml_call_gc (210 samples, 0.01%)</title><rect x="417.2" y="1861" width="0.1" height="15.0" fill="rgb(231,86,21)" rx="2" ry="2" />
<text x="420.17" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (445 samples, 0.02%)</title><rect x="1119.3" y="1301" width="0.3" height="15.0" fill="rgb(208,119,1)" rx="2" ry="2" />
<text x="1122.31" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__encode_4883 (1,190 samples, 0.06%)</title><rect x="702.4" y="1877" width="0.7" height="15.0" fill="rgb(247,179,31)" rx="2" ry="2" />
<text x="705.40" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1877" width="0.3" height="15.0" fill="rgb(237,129,36)" rx="2" ry="2" />
<text x="1192.69" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,625 samples, 0.08%)</title><rect x="913.0" y="1285" width="0.9" height="15.0" fill="rgb(206,72,3)" rx="2" ry="2" />
<text x="915.99" y="1295.5" ></text>
</g>
<g >
<title>camlCmdliner__eval_choice_inner_1756 (600 samples, 0.03%)</title><rect x="10.1" y="1909" width="0.3" height="15.0" fill="rgb(220,43,40)" rx="2" ry="2" />
<text x="13.06" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_core__fields_aux_245 (214 samples, 0.01%)</title><rect x="1122.3" y="1397" width="0.2" height="15.0" fill="rgb(218,222,32)" rx="2" ry="2" />
<text x="1125.33" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (385 samples, 0.02%)</title><rect x="936.4" y="1301" width="0.2" height="15.0" fill="rgb(223,85,50)" rx="2" ry="2" />
<text x="939.35" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="821" width="0.3" height="15.0" fill="rgb(224,174,52)" rx="2" ry="2" />
<text x="1191.59" y="831.5" ></text>
</g>
<g >
<title>caml_oldify_one (188 samples, 0.01%)</title><rect x="28.4" y="2021" width="0.1" height="15.0" fill="rgb(227,27,12)" rx="2" ry="2" />
<text x="31.41" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (4,545 samples, 0.22%)</title><rect x="981.9" y="1445" width="2.6" height="15.0" fill="rgb(236,135,5)" rx="2" ry="2" />
<text x="984.90" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__triple_469 (332 samples, 0.02%)</title><rect x="1116.0" y="1333" width="0.2" height="15.0" fill="rgb(253,141,35)" rx="2" ry="2" />
<text x="1118.98" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (350 samples, 0.02%)</title><rect x="232.7" y="1797" width="0.2" height="15.0" fill="rgb(246,76,20)" rx="2" ry="2" />
<text x="235.65" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (607 samples, 0.03%)</title><rect x="718.1" y="1477" width="0.3" height="15.0" fill="rgb(245,179,29)" rx="2" ry="2" />
<text x="721.05" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (219 samples, 0.01%)</title><rect x="882.7" y="1317" width="0.1" height="15.0" fill="rgb(208,92,35)" rx="2" ry="2" />
<text x="885.66" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_85 (549 samples, 0.03%)</title><rect x="707.4" y="1861" width="0.3" height="15.0" fill="rgb(239,115,42)" rx="2" ry="2" />
<text x="710.43" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (660 samples, 0.03%)</title><rect x="1101.8" y="1301" width="0.4" height="15.0" fill="rgb(243,27,0)" rx="2" ry="2" />
<text x="1104.82" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (187 samples, 0.01%)</title><rect x="1153.1" y="1157" width="0.1" height="15.0" fill="rgb(230,55,54)" rx="2" ry="2" />
<text x="1156.11" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (591 samples, 0.03%)</title><rect x="100.4" y="1797" width="0.4" height="15.0" fill="rgb(224,54,14)" rx="2" ry="2" />
<text x="103.42" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (237 samples, 0.01%)</title><rect x="946.0" y="1301" width="0.2" height="15.0" fill="rgb(223,201,2)" rx="2" ry="2" />
<text x="949.02" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4916 (342 samples, 0.02%)</title><rect x="1133.0" y="1301" width="0.2" height="15.0" fill="rgb(253,137,27)" rx="2" ry="2" />
<text x="1135.97" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (2,052 samples, 0.10%)</title><rect x="1038.8" y="1397" width="1.2" height="15.0" fill="rgb(249,213,0)" rx="2" ry="2" />
<text x="1041.81" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (188 samples, 0.01%)</title><rect x="1152.2" y="1205" width="0.1" height="15.0" fill="rgb(226,186,24)" rx="2" ry="2" />
<text x="1155.20" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (491 samples, 0.02%)</title><rect x="196.2" y="1813" width="0.3" height="15.0" fill="rgb(231,16,42)" rx="2" ry="2" />
<text x="199.25" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (20,932 samples, 1.02%)</title><rect x="828.5" y="1429" width="12.0" height="15.0" fill="rgb(205,200,7)" rx="2" ry="2" />
<text x="831.45" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (375 samples, 0.02%)</title><rect x="709.6" y="1813" width="0.3" height="15.0" fill="rgb(229,84,2)" rx="2" ry="2" />
<text x="712.65" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3817 (262,863 samples, 12.81%)</title><rect x="989.9" y="1477" width="151.2" height="15.0" fill="rgb(236,65,13)" rx="2" ry="2" />
<text x="992.86" y="1487.5" >camlIrmin__Object_g..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (209 samples, 0.01%)</title><rect x="992.8" y="1333" width="0.1" height="15.0" fill="rgb(228,199,47)" rx="2" ry="2" />
<text x="995.82" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1157" width="0.2" height="15.0" fill="rgb(251,173,2)" rx="2" ry="2" />
<text x="1191.85" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (976 samples, 0.05%)</title><rect x="145.9" y="1877" width="0.5" height="15.0" fill="rgb(242,165,28)" rx="2" ry="2" />
<text x="148.85" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,151 samples, 0.06%)</title><rect x="921.3" y="1173" width="0.6" height="15.0" fill="rgb(244,37,12)" rx="2" ry="2" />
<text x="924.25" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (3,420 samples, 0.17%)</title><rect x="745.6" y="1285" width="1.9" height="15.0" fill="rgb(207,199,19)" rx="2" ry="2" />
<text x="748.58" y="1295.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,061 samples, 0.05%)</title><rect x="1104.5" y="1285" width="0.6" height="15.0" fill="rgb(230,119,17)" rx="2" ry="2" />
<text x="1107.47" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (305 samples, 0.01%)</title><rect x="725.5" y="1365" width="0.2" height="15.0" fill="rgb(240,227,33)" rx="2" ry="2" />
<text x="728.53" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (2,071 samples, 0.10%)</title><rect x="1154.4" y="1301" width="1.2" height="15.0" fill="rgb(245,183,39)" rx="2" ry="2" />
<text x="1157.42" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (320 samples, 0.02%)</title><rect x="1122.9" y="1349" width="0.2" height="15.0" fill="rgb(216,106,14)" rx="2" ry="2" />
<text x="1125.87" y="1359.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (408 samples, 0.02%)</title><rect x="10.2" y="1461" width="0.2" height="15.0" fill="rgb(207,96,3)" rx="2" ry="2" />
<text x="13.16" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (403 samples, 0.02%)</title><rect x="1037.5" y="1365" width="0.3" height="15.0" fill="rgb(235,95,48)" rx="2" ry="2" />
<text x="1040.53" y="1375.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,286 samples, 0.06%)</title><rect x="705.8" y="1797" width="0.7" height="15.0" fill="rgb(208,134,24)" rx="2" ry="2" />
<text x="708.80" y="1807.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (11,598 samples, 0.57%)</title><rect x="809.2" y="1381" width="6.7" height="15.0" fill="rgb(251,55,26)" rx="2" ry="2" />
<text x="812.18" y="1391.5" ></text>
</g>
<g >
<title>caml_alloc_string (5,766 samples, 0.28%)</title><rect x="142.4" y="1877" width="3.3" height="15.0" fill="rgb(221,52,5)" rx="2" ry="2" />
<text x="145.43" y="1887.5" ></text>
</g>
<g >
<title>futex_wake (666 samples, 0.03%)</title><rect x="668.7" y="1861" width="0.4" height="15.0" fill="rgb(209,45,6)" rx="2" ry="2" />
<text x="671.73" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (400 samples, 0.02%)</title><rect x="805.9" y="1301" width="0.3" height="15.0" fill="rgb(223,170,48)" rx="2" ry="2" />
<text x="808.94" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (300 samples, 0.01%)</title><rect x="864.4" y="1237" width="0.1" height="15.0" fill="rgb(237,92,34)" rx="2" ry="2" />
<text x="867.35" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5768 (1,936 samples, 0.09%)</title><rect x="757.9" y="1413" width="1.1" height="15.0" fill="rgb(219,69,2)" rx="2" ry="2" />
<text x="760.86" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (8,817 samples, 0.43%)</title><rect x="1149.1" y="1269" width="5.0" height="15.0" fill="rgb(242,35,10)" rx="2" ry="2" />
<text x="1152.07" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (185 samples, 0.01%)</title><rect x="848.9" y="1301" width="0.1" height="15.0" fill="rgb(223,217,31)" rx="2" ry="2" />
<text x="851.88" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (431 samples, 0.02%)</title><rect x="838.6" y="1269" width="0.2" height="15.0" fill="rgb(227,32,28)" rx="2" ry="2" />
<text x="841.58" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (11,595 samples, 0.57%)</title><rect x="702.2" y="1893" width="6.7" height="15.0" fill="rgb(231,157,23)" rx="2" ry="2" />
<text x="705.24" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (262 samples, 0.01%)</title><rect x="1155.8" y="1301" width="0.2" height="15.0" fill="rgb(215,79,46)" rx="2" ry="2" />
<text x="1158.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1528 (238 samples, 0.01%)</title><rect x="1114.3" y="1317" width="0.1" height="15.0" fill="rgb(231,181,3)" rx="2" ry="2" />
<text x="1117.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1253" width="0.3" height="15.0" fill="rgb(206,9,42)" rx="2" ry="2" />
<text x="1192.06" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (54,298 samples, 2.65%)</title><rect x="895.5" y="1317" width="31.2" height="15.0" fill="rgb(243,84,33)" rx="2" ry="2" />
<text x="898.47" y="1327.5" >ca..</text>
</g>
<g >
<title>caml_modify (248 samples, 0.01%)</title><rect x="979.3" y="1461" width="0.2" height="15.0" fill="rgb(224,69,8)" rx="2" ry="2" />
<text x="982.34" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (305 samples, 0.01%)</title><rect x="704.7" y="1781" width="0.1" height="15.0" fill="rgb(216,121,29)" rx="2" ry="2" />
<text x="707.65" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (342 samples, 0.02%)</title><rect x="711.3" y="1845" width="0.2" height="15.0" fill="rgb(244,128,6)" rx="2" ry="2" />
<text x="714.33" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (193 samples, 0.01%)</title><rect x="869.2" y="1509" width="0.1" height="15.0" fill="rgb(219,172,26)" rx="2" ry="2" />
<text x="872.22" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1749" width="0.3" height="15.0" fill="rgb(218,184,42)" rx="2" ry="2" />
<text x="1191.59" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="389" width="0.3" height="15.0" fill="rgb(212,223,46)" rx="2" ry="2" />
<text x="1192.06" y="399.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (414 samples, 0.02%)</title><rect x="166.7" y="1813" width="0.3" height="15.0" fill="rgb(225,28,3)" rx="2" ry="2" />
<text x="169.74" y="1823.5" ></text>
</g>
<g >
<title>caml_apply2 (13,450 samples, 0.66%)</title><rect x="327.5" y="1893" width="7.7" height="15.0" fill="rgb(223,83,7)" rx="2" ry="2" />
<text x="330.51" y="1903.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (254 samples, 0.01%)</title><rect x="1166.9" y="1157" width="0.1" height="15.0" fill="rgb(247,117,54)" rx="2" ry="2" />
<text x="1169.85" y="1167.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (7,298 samples, 0.36%)</title><rect x="1160.4" y="1253" width="4.2" height="15.0" fill="rgb(234,49,34)" rx="2" ry="2" />
<text x="1163.44" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,050 samples, 0.05%)</title><rect x="410.8" y="1861" width="0.6" height="15.0" fill="rgb(208,100,34)" rx="2" ry="2" />
<text x="413.78" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12006 (532 samples, 0.03%)</title><rect x="788.0" y="1333" width="0.3" height="15.0" fill="rgb(244,37,51)" rx="2" ry="2" />
<text x="791.01" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (641 samples, 0.03%)</title><rect x="777.5" y="1333" width="0.3" height="15.0" fill="rgb(206,114,4)" rx="2" ry="2" />
<text x="780.48" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (478 samples, 0.02%)</title><rect x="701.5" y="1893" width="0.2" height="15.0" fill="rgb(238,50,42)" rx="2" ry="2" />
<text x="704.46" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (550 samples, 0.03%)</title><rect x="963.0" y="1253" width="0.3" height="15.0" fill="rgb(242,0,20)" rx="2" ry="2" />
<text x="965.98" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (213 samples, 0.01%)</title><rect x="843.4" y="1333" width="0.1" height="15.0" fill="rgb(238,81,10)" rx="2" ry="2" />
<text x="846.41" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,307 samples, 0.06%)</title><rect x="767.0" y="1317" width="0.7" height="15.0" fill="rgb(248,86,32)" rx="2" ry="2" />
<text x="769.97" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (207 samples, 0.01%)</title><rect x="1153.4" y="1125" width="0.1" height="15.0" fill="rgb(238,157,47)" rx="2" ry="2" />
<text x="1156.42" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (519 samples, 0.03%)</title><rect x="928.5" y="1349" width="0.3" height="15.0" fill="rgb(225,213,20)" rx="2" ry="2" />
<text x="931.48" y="1359.5" ></text>
</g>
<g >
<title>caml_c_call (8,357 samples, 0.41%)</title><rect x="23.6" y="2037" width="4.8" height="15.0" fill="rgb(247,41,38)" rx="2" ry="2" />
<text x="26.60" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (175 samples, 0.01%)</title><rect x="1173.2" y="1205" width="0.1" height="15.0" fill="rgb(213,115,43)" rx="2" ry="2" />
<text x="1176.16" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1445" width="0.3" height="15.0" fill="rgb(249,168,9)" rx="2" ry="2" />
<text x="1192.06" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (741 samples, 0.04%)</title><rect x="814.3" y="1317" width="0.5" height="15.0" fill="rgb(250,113,21)" rx="2" ry="2" />
<text x="817.32" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (5,975 samples, 0.29%)</title><rect x="1160.9" y="1221" width="3.4" height="15.0" fill="rgb(206,15,42)" rx="2" ry="2" />
<text x="1163.88" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (1,364 samples, 0.07%)</title><rect x="261.7" y="1893" width="0.8" height="15.0" fill="rgb(218,206,2)" rx="2" ry="2" />
<text x="264.74" y="1903.5" ></text>
</g>
<g >
<title>__libc_pread64 (390 samples, 0.02%)</title><rect x="22.6" y="2037" width="0.2" height="15.0" fill="rgb(251,185,34)" rx="2" ry="2" />
<text x="25.56" y="2047.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (458 samples, 0.02%)</title><rect x="867.9" y="1397" width="0.3" height="15.0" fill="rgb(216,130,9)" rx="2" ry="2" />
<text x="870.93" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (866 samples, 0.04%)</title><rect x="1064.8" y="1285" width="0.5" height="15.0" fill="rgb(252,110,54)" rx="2" ry="2" />
<text x="1067.81" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (305 samples, 0.01%)</title><rect x="759.3" y="1333" width="0.1" height="15.0" fill="rgb(234,12,22)" rx="2" ry="2" />
<text x="762.26" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="597" width="0.2" height="15.0" fill="rgb(225,161,39)" rx="2" ry="2" />
<text x="1191.85" y="607.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (440 samples, 0.02%)</title><rect x="853.4" y="1285" width="0.2" height="15.0" fill="rgb(253,28,2)" rx="2" ry="2" />
<text x="856.39" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (20,826 samples, 1.02%)</title><rect x="828.5" y="1413" width="12.0" height="15.0" fill="rgb(239,212,8)" rx="2" ry="2" />
<text x="831.50" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (11,530 samples, 0.56%)</title><rect x="918.4" y="1285" width="6.6" height="15.0" fill="rgb(211,69,33)" rx="2" ry="2" />
<text x="921.37" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (175 samples, 0.01%)</title><rect x="1102.3" y="1301" width="0.1" height="15.0" fill="rgb(251,138,53)" rx="2" ry="2" />
<text x="1105.29" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,303 samples, 0.06%)</title><rect x="1149.6" y="1205" width="0.7" height="15.0" fill="rgb(205,219,12)" rx="2" ry="2" />
<text x="1152.58" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (392 samples, 0.02%)</title><rect x="933.3" y="1189" width="0.3" height="15.0" fill="rgb(229,215,34)" rx="2" ry="2" />
<text x="936.35" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (174 samples, 0.01%)</title><rect x="703.4" y="1781" width="0.1" height="15.0" fill="rgb(231,84,18)" rx="2" ry="2" />
<text x="706.44" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__fun_728 (644 samples, 0.03%)</title><rect x="705.2" y="1861" width="0.4" height="15.0" fill="rgb(205,2,32)" rx="2" ry="2" />
<text x="708.23" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (85,753 samples, 4.18%)</title><rect x="456.7" y="1941" width="49.3" height="15.0" fill="rgb(237,50,26)" rx="2" ry="2" />
<text x="459.66" y="1951.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (207 samples, 0.01%)</title><rect x="832.6" y="1285" width="0.1" height="15.0" fill="rgb(231,56,6)" rx="2" ry="2" />
<text x="835.61" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (363 samples, 0.02%)</title><rect x="1044.6" y="1317" width="0.2" height="15.0" fill="rgb(235,113,10)" rx="2" ry="2" />
<text x="1047.61" y="1327.5" ></text>
</g>
<g >
<title>caml_tuplify2 (219 samples, 0.01%)</title><rect x="959.4" y="1253" width="0.1" height="15.0" fill="rgb(238,17,2)" rx="2" ry="2" />
<text x="962.36" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (181 samples, 0.01%)</title><rect x="816.5" y="1333" width="0.1" height="15.0" fill="rgb(212,210,46)" rx="2" ry="2" />
<text x="819.49" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1253" width="0.2" height="15.0" fill="rgb(212,16,54)" rx="2" ry="2" />
<text x="1191.85" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (193 samples, 0.01%)</title><rect x="724.4" y="1509" width="0.2" height="15.0" fill="rgb(231,35,50)" rx="2" ry="2" />
<text x="727.44" y="1519.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (439 samples, 0.02%)</title><rect x="308.2" y="1829" width="0.3" height="15.0" fill="rgb(223,103,39)" rx="2" ry="2" />
<text x="311.23" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,100 samples, 0.05%)</title><rect x="1120.3" y="1381" width="0.7" height="15.0" fill="rgb(231,196,33)" rx="2" ry="2" />
<text x="1123.35" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (3,791 samples, 0.18%)</title><rect x="1094.6" y="1301" width="2.2" height="15.0" fill="rgb(219,49,19)" rx="2" ry="2" />
<text x="1097.63" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__fun_3640 (15,855 samples, 0.77%)</title><rect x="701.4" y="1941" width="9.1" height="15.0" fill="rgb(213,52,49)" rx="2" ry="2" />
<text x="704.36" y="1951.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (389 samples, 0.02%)</title><rect x="750.7" y="1253" width="0.2" height="15.0" fill="rgb(227,106,51)" rx="2" ry="2" />
<text x="753.66" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (6,545 samples, 0.32%)</title><rect x="753.3" y="1413" width="3.8" height="15.0" fill="rgb(243,42,5)" rx="2" ry="2" />
<text x="756.34" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1669" width="0.3" height="15.0" fill="rgb(239,200,49)" rx="2" ry="2" />
<text x="1192.37" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1285" width="0.3" height="15.0" fill="rgb(247,36,32)" rx="2" ry="2" />
<text x="1192.69" y="1295.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_851 (247 samples, 0.01%)</title><rect x="1189.2" y="117" width="0.1" height="15.0" fill="rgb(226,36,2)" rx="2" ry="2" />
<text x="1192.16" y="127.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="757" width="0.2" height="15.0" fill="rgb(212,45,10)" rx="2" ry="2" />
<text x="1191.85" y="767.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="661" width="0.3" height="15.0" fill="rgb(212,51,17)" rx="2" ry="2" />
<text x="1192.06" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (271 samples, 0.01%)</title><rect x="1175.3" y="1141" width="0.1" height="15.0" fill="rgb(221,32,47)" rx="2" ry="2" />
<text x="1178.27" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (249 samples, 0.01%)</title><rect x="836.2" y="1317" width="0.2" height="15.0" fill="rgb(233,169,26)" rx="2" ry="2" />
<text x="839.24" y="1327.5" ></text>
</g>
<g >
<title>__condvar_acquire_lock (239 samples, 0.01%)</title><rect x="35.0" y="1989" width="0.2" height="15.0" fill="rgb(240,222,52)" rx="2" ry="2" />
<text x="38.05" y="1999.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (383 samples, 0.02%)</title><rect x="805.9" y="1285" width="0.3" height="15.0" fill="rgb(215,143,13)" rx="2" ry="2" />
<text x="808.95" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,910 samples, 0.09%)</title><rect x="748.5" y="1333" width="1.1" height="15.0" fill="rgb(212,26,11)" rx="2" ry="2" />
<text x="751.53" y="1343.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (251 samples, 0.01%)</title><rect x="922.1" y="1221" width="0.1" height="15.0" fill="rgb(214,24,31)" rx="2" ry="2" />
<text x="925.05" y="1231.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (440 samples, 0.02%)</title><rect x="882.9" y="1317" width="0.3" height="15.0" fill="rgb(221,91,39)" rx="2" ry="2" />
<text x="885.92" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="821" width="0.3" height="15.0" fill="rgb(242,11,2)" rx="2" ry="2" />
<text x="1192.37" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (452 samples, 0.02%)</title><rect x="802.0" y="1237" width="0.3" height="15.0" fill="rgb(229,53,5)" rx="2" ry="2" />
<text x="805.04" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (223 samples, 0.01%)</title><rect x="867.4" y="1093" width="0.2" height="15.0" fill="rgb(217,129,2)" rx="2" ry="2" />
<text x="870.44" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (823 samples, 0.04%)</title><rect x="1140.1" y="1461" width="0.4" height="15.0" fill="rgb(246,158,31)" rx="2" ry="2" />
<text x="1143.06" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (642 samples, 0.03%)</title><rect x="1064.1" y="1285" width="0.3" height="15.0" fill="rgb(211,223,22)" rx="2" ry="2" />
<text x="1067.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1140 (296 samples, 0.01%)</title><rect x="415.8" y="1909" width="0.1" height="15.0" fill="rgb(239,53,13)" rx="2" ry="2" />
<text x="418.76" y="1919.5" ></text>
</g>
<g >
<title>caml_apply2 (192 samples, 0.01%)</title><rect x="812.8" y="1301" width="0.1" height="15.0" fill="rgb(205,184,30)" rx="2" ry="2" />
<text x="815.78" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (4,335 samples, 0.21%)</title><rect x="801.4" y="1333" width="2.5" height="15.0" fill="rgb(244,128,13)" rx="2" ry="2" />
<text x="804.41" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (701 samples, 0.03%)</title><rect x="1116.5" y="1333" width="0.4" height="15.0" fill="rgb(207,45,0)" rx="2" ry="2" />
<text x="1119.52" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (304 samples, 0.01%)</title><rect x="1155.6" y="1301" width="0.2" height="15.0" fill="rgb(224,156,51)" rx="2" ry="2" />
<text x="1158.65" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (956 samples, 0.05%)</title><rect x="1018.2" y="1237" width="0.5" height="15.0" fill="rgb(228,72,20)" rx="2" ry="2" />
<text x="1021.15" y="1247.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (278 samples, 0.01%)</title><rect x="733.4" y="1397" width="0.2" height="15.0" fill="rgb(230,138,41)" rx="2" ry="2" />
<text x="736.41" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (629 samples, 0.03%)</title><rect x="709.9" y="1813" width="0.4" height="15.0" fill="rgb(248,1,8)" rx="2" ry="2" />
<text x="712.91" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (207 samples, 0.01%)</title><rect x="733.3" y="1365" width="0.1" height="15.0" fill="rgb(219,206,26)" rx="2" ry="2" />
<text x="736.29" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (271 samples, 0.01%)</title><rect x="805.0" y="1381" width="0.1" height="15.0" fill="rgb(218,173,45)" rx="2" ry="2" />
<text x="807.99" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (807 samples, 0.04%)</title><rect x="1069.2" y="1173" width="0.5" height="15.0" fill="rgb(232,214,5)" rx="2" ry="2" />
<text x="1072.22" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (347 samples, 0.02%)</title><rect x="925.6" y="1285" width="0.2" height="15.0" fill="rgb(209,11,35)" rx="2" ry="2" />
<text x="928.57" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14216 (351 samples, 0.02%)</title><rect x="929.7" y="1429" width="0.2" height="15.0" fill="rgb(233,186,17)" rx="2" ry="2" />
<text x="932.71" y="1439.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (187 samples, 0.01%)</title><rect x="722.1" y="1381" width="0.1" height="15.0" fill="rgb(238,95,24)" rx="2" ry="2" />
<text x="725.10" y="1391.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (335 samples, 0.02%)</title><rect x="940.8" y="1365" width="0.2" height="15.0" fill="rgb(222,150,18)" rx="2" ry="2" />
<text x="943.77" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_log_index_1606 (192 samples, 0.01%)</title><rect x="975.8" y="1349" width="0.1" height="15.0" fill="rgb(229,106,15)" rx="2" ry="2" />
<text x="978.83" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (209 samples, 0.01%)</title><rect x="789.1" y="1365" width="0.1" height="15.0" fill="rgb(246,112,20)" rx="2" ry="2" />
<text x="792.11" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (1,103 samples, 0.05%)</title><rect x="978.8" y="1477" width="0.7" height="15.0" fill="rgb(239,168,31)" rx="2" ry="2" />
<text x="981.84" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12294 (53,445 samples, 2.61%)</title><rect x="741.6" y="1493" width="30.7" height="15.0" fill="rgb(230,170,39)" rx="2" ry="2" />
<text x="744.58" y="1503.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (456 samples, 0.02%)</title><rect x="895.2" y="1301" width="0.2" height="15.0" fill="rgb(240,28,28)" rx="2" ry="2" />
<text x="898.18" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (3,449 samples, 0.17%)</title><rect x="905.9" y="1237" width="2.0" height="15.0" fill="rgb(253,209,26)" rx="2" ry="2" />
<text x="908.95" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (7,413 samples, 0.36%)</title><rect x="1061.5" y="1333" width="4.3" height="15.0" fill="rgb(250,173,39)" rx="2" ry="2" />
<text x="1064.49" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (243 samples, 0.01%)</title><rect x="1162.1" y="1189" width="0.1" height="15.0" fill="rgb(251,109,8)" rx="2" ry="2" />
<text x="1165.09" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (176 samples, 0.01%)</title><rect x="1150.4" y="1189" width="0.1" height="15.0" fill="rgb(231,98,32)" rx="2" ry="2" />
<text x="1153.37" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (2,675 samples, 0.13%)</title><rect x="1165.6" y="1253" width="1.6" height="15.0" fill="rgb(206,17,49)" rx="2" ry="2" />
<text x="1168.64" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (407 samples, 0.02%)</title><rect x="628.0" y="1861" width="0.2" height="15.0" fill="rgb(223,83,47)" rx="2" ry="2" />
<text x="630.97" y="1871.5" ></text>
</g>
<g >
<title>caml_thread_yield (1,245 samples, 0.06%)</title><rect x="1166.4" y="1205" width="0.7" height="15.0" fill="rgb(246,144,11)" rx="2" ry="2" />
<text x="1169.40" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (13,062 samples, 0.64%)</title><rect x="403.9" y="1925" width="7.5" height="15.0" fill="rgb(229,190,53)" rx="2" ry="2" />
<text x="406.87" y="1935.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (176 samples, 0.01%)</title><rect x="699.6" y="1877" width="0.1" height="15.0" fill="rgb(214,175,44)" rx="2" ry="2" />
<text x="702.57" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1173" width="0.2" height="15.0" fill="rgb(222,216,43)" rx="2" ry="2" />
<text x="1191.85" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (610 samples, 0.03%)</title><rect x="1122.8" y="1381" width="0.3" height="15.0" fill="rgb(251,215,37)" rx="2" ry="2" />
<text x="1125.77" y="1391.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (308 samples, 0.02%)</title><rect x="1166.4" y="1173" width="0.2" height="15.0" fill="rgb(233,206,37)" rx="2" ry="2" />
<text x="1169.44" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (544 samples, 0.03%)</title><rect x="1054.4" y="1253" width="0.3" height="15.0" fill="rgb(241,129,33)" rx="2" ry="2" />
<text x="1057.42" y="1263.5" ></text>
</g>
<g >
<title>caml_make_vect (1,481 samples, 0.07%)</title><rect x="711.5" y="1941" width="0.9" height="15.0" fill="rgb(243,85,45)" rx="2" ry="2" />
<text x="714.53" y="1951.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (323 samples, 0.02%)</title><rect x="715.2" y="1861" width="0.2" height="15.0" fill="rgb(247,215,4)" rx="2" ry="2" />
<text x="718.23" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5827 (105,146 samples, 5.13%)</title><rect x="1078.3" y="1429" width="60.5" height="15.0" fill="rgb(219,64,34)" rx="2" ry="2" />
<text x="1081.28" y="1439.5" >camlIr..</text>
</g>
<g >
<title>caml_darken (730 samples, 0.04%)</title><rect x="713.6" y="1909" width="0.4" height="15.0" fill="rgb(219,33,54)" rx="2" ry="2" />
<text x="716.57" y="1919.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1,206 samples, 0.06%)</title><rect x="921.2" y="1205" width="0.7" height="15.0" fill="rgb(235,144,29)" rx="2" ry="2" />
<text x="924.22" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (365 samples, 0.02%)</title><rect x="1013.1" y="1285" width="0.2" height="15.0" fill="rgb(223,17,27)" rx="2" ry="2" />
<text x="1016.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1077" width="0.2" height="15.0" fill="rgb(248,107,33)" rx="2" ry="2" />
<text x="1191.85" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (255 samples, 0.01%)</title><rect x="940.3" y="1317" width="0.1" height="15.0" fill="rgb(230,24,21)" rx="2" ry="2" />
<text x="943.26" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (266 samples, 0.01%)</title><rect x="891.6" y="1285" width="0.2" height="15.0" fill="rgb(206,102,17)" rx="2" ry="2" />
<text x="894.64" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (247 samples, 0.01%)</title><rect x="1141.4" y="1477" width="0.2" height="15.0" fill="rgb(209,97,28)" rx="2" ry="2" />
<text x="1144.41" y="1487.5" ></text>
</g>
<g >
<title>caml_startup_common (615 samples, 0.03%)</title><rect x="10.1" y="1973" width="0.3" height="15.0" fill="rgb(215,135,34)" rx="2" ry="2" />
<text x="13.05" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1237" width="0.2" height="15.0" fill="rgb(211,58,15)" rx="2" ry="2" />
<text x="1191.85" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (290 samples, 0.01%)</title><rect x="708.5" y="1861" width="0.2" height="15.0" fill="rgb(231,106,49)" rx="2" ry="2" />
<text x="711.51" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (325 samples, 0.02%)</title><rect x="867.4" y="1173" width="0.2" height="15.0" fill="rgb(253,195,47)" rx="2" ry="2" />
<text x="870.38" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4577 (327 samples, 0.02%)</title><rect x="888.5" y="1493" width="0.2" height="15.0" fill="rgb(208,40,12)" rx="2" ry="2" />
<text x="891.47" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (298 samples, 0.01%)</title><rect x="1164.7" y="1205" width="0.2" height="15.0" fill="rgb(207,172,38)" rx="2" ry="2" />
<text x="1167.71" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (370 samples, 0.02%)</title><rect x="883.3" y="1253" width="0.3" height="15.0" fill="rgb(207,134,20)" rx="2" ry="2" />
<text x="886.35" y="1263.5" ></text>
</g>
<g >
<title>caml_apply2 (1,629 samples, 0.08%)</title><rect x="336.5" y="1909" width="1.0" height="15.0" fill="rgb(222,100,34)" rx="2" ry="2" />
<text x="339.52" y="1919.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,111 samples, 0.05%)</title><rect x="1097.2" y="1317" width="0.6" height="15.0" fill="rgb(243,2,40)" rx="2" ry="2" />
<text x="1100.16" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (199 samples, 0.01%)</title><rect x="704.1" y="1797" width="0.2" height="15.0" fill="rgb(249,163,31)" rx="2" ry="2" />
<text x="707.14" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="661" width="0.3" height="15.0" fill="rgb(219,208,23)" rx="2" ry="2" />
<text x="1191.59" y="671.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4601 (57,070 samples, 2.78%)</title><rect x="741.4" y="1525" width="32.8" height="15.0" fill="rgb(228,74,38)" rx="2" ry="2" />
<text x="744.41" y="1535.5" >ca..</text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1189" width="0.3" height="15.0" fill="rgb(216,15,34)" rx="2" ry="2" />
<text x="1192.37" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (476 samples, 0.02%)</title><rect x="756.4" y="1381" width="0.3" height="15.0" fill="rgb(242,25,39)" rx="2" ry="2" />
<text x="759.38" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (123,238 samples, 6.01%)</title><rect x="101.1" y="1909" width="70.9" height="15.0" fill="rgb(240,181,24)" rx="2" ry="2" />
<text x="104.15" y="1919.5" >camlIrmi..</text>
</g>
<g >
<title>camlFiber__exec_in_479 (418 samples, 0.02%)</title><rect x="10.2" y="1605" width="0.2" height="15.0" fill="rgb(206,138,6)" rx="2" ry="2" />
<text x="13.16" y="1615.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (472 samples, 0.02%)</title><rect x="1175.7" y="1189" width="0.2" height="15.0" fill="rgb(221,154,52)" rx="2" ry="2" />
<text x="1178.66" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="885" width="0.3" height="15.0" fill="rgb(226,215,42)" rx="2" ry="2" />
<text x="1192.37" y="895.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (424 samples, 0.02%)</title><rect x="403.2" y="1861" width="0.2" height="15.0" fill="rgb(211,119,50)" rx="2" ry="2" />
<text x="406.15" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (361 samples, 0.02%)</title><rect x="772.9" y="1301" width="0.2" height="15.0" fill="rgb(246,133,52)" rx="2" ry="2" />
<text x="775.88" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (833 samples, 0.04%)</title><rect x="891.5" y="1333" width="0.4" height="15.0" fill="rgb(249,125,36)" rx="2" ry="2" />
<text x="894.47" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (1,933 samples, 0.09%)</title><rect x="972.0" y="1237" width="1.1" height="15.0" fill="rgb(239,97,34)" rx="2" ry="2" />
<text x="975.00" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (8,997 samples, 0.44%)</title><rect x="844.9" y="1349" width="5.2" height="15.0" fill="rgb(212,202,4)" rx="2" ry="2" />
<text x="847.92" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (3,869 samples, 0.19%)</title><rect x="718.7" y="1445" width="2.2" height="15.0" fill="rgb(212,141,47)" rx="2" ry="2" />
<text x="721.71" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (184 samples, 0.01%)</title><rect x="721.8" y="1381" width="0.2" height="15.0" fill="rgb(220,80,35)" rx="2" ry="2" />
<text x="724.85" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (271 samples, 0.01%)</title><rect x="719.7" y="1397" width="0.1" height="15.0" fill="rgb(224,226,6)" rx="2" ry="2" />
<text x="722.69" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (378 samples, 0.02%)</title><rect x="1089.4" y="1269" width="0.2" height="15.0" fill="rgb(220,85,41)" rx="2" ry="2" />
<text x="1092.39" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (285 samples, 0.01%)</title><rect x="858.1" y="1365" width="0.2" height="15.0" fill="rgb(208,171,36)" rx="2" ry="2" />
<text x="861.09" y="1375.5" ></text>
</g>
<g >
<title>caml_hash (183 samples, 0.01%)</title><rect x="808.3" y="1317" width="0.1" height="15.0" fill="rgb(220,160,47)" rx="2" ry="2" />
<text x="811.29" y="1327.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (1,201 samples, 0.06%)</title><rect x="1108.1" y="1285" width="0.6" height="15.0" fill="rgb(224,108,35)" rx="2" ry="2" />
<text x="1111.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (309 samples, 0.02%)</title><rect x="1159.8" y="1221" width="0.2" height="15.0" fill="rgb(242,109,13)" rx="2" ry="2" />
<text x="1162.84" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (1,122 samples, 0.05%)</title><rect x="338.1" y="1909" width="0.7" height="15.0" fill="rgb(230,160,33)" rx="2" ry="2" />
<text x="341.15" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (371 samples, 0.02%)</title><rect x="770.0" y="1189" width="0.2" height="15.0" fill="rgb(239,214,33)" rx="2" ry="2" />
<text x="773.02" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (439 samples, 0.02%)</title><rect x="748.6" y="1301" width="0.2" height="15.0" fill="rgb(220,68,46)" rx="2" ry="2" />
<text x="751.59" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (245 samples, 0.01%)</title><rect x="724.1" y="1493" width="0.1" height="15.0" fill="rgb(217,157,18)" rx="2" ry="2" />
<text x="727.06" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1621" width="0.3" height="15.0" fill="rgb(233,229,17)" rx="2" ry="2" />
<text x="1192.37" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (1,579 samples, 0.08%)</title><rect x="1090.8" y="1285" width="0.9" height="15.0" fill="rgb(222,18,17)" rx="2" ry="2" />
<text x="1093.75" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_379 (627 samples, 0.03%)</title><rect x="419.1" y="1861" width="0.4" height="15.0" fill="rgb(249,229,5)" rx="2" ry="2" />
<text x="422.09" y="1871.5" ></text>
</g>
<g >
<title>__libc_pread64 (247 samples, 0.01%)</title><rect x="732.8" y="1397" width="0.1" height="15.0" fill="rgb(238,74,8)" rx="2" ry="2" />
<text x="735.76" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (212 samples, 0.01%)</title><rect x="1096.2" y="1285" width="0.2" height="15.0" fill="rgb(234,142,40)" rx="2" ry="2" />
<text x="1099.24" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1109" width="0.3" height="15.0" fill="rgb(237,87,25)" rx="2" ry="2" />
<text x="1192.37" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (458 samples, 0.02%)</title><rect x="1176.3" y="1285" width="0.2" height="15.0" fill="rgb(212,161,22)" rx="2" ry="2" />
<text x="1179.28" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (266 samples, 0.01%)</title><rect x="704.9" y="1765" width="0.1" height="15.0" fill="rgb(208,228,6)" rx="2" ry="2" />
<text x="707.88" y="1775.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (295 samples, 0.01%)</title><rect x="912.6" y="1205" width="0.1" height="15.0" fill="rgb(218,151,52)" rx="2" ry="2" />
<text x="915.55" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (183 samples, 0.01%)</title><rect x="799.1" y="1237" width="0.1" height="15.0" fill="rgb(209,55,23)" rx="2" ry="2" />
<text x="802.13" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (179 samples, 0.01%)</title><rect x="1013.9" y="1285" width="0.1" height="15.0" fill="rgb(222,200,34)" rx="2" ry="2" />
<text x="1016.91" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (338 samples, 0.02%)</title><rect x="785.1" y="1189" width="0.2" height="15.0" fill="rgb(218,122,30)" rx="2" ry="2" />
<text x="788.09" y="1199.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (205 samples, 0.01%)</title><rect x="36.6" y="1973" width="0.1" height="15.0" fill="rgb(222,65,6)" rx="2" ry="2" />
<text x="39.57" y="1983.5" ></text>
</g>
<g >
<title>caml_c_call (350 samples, 0.02%)</title><rect x="548.6" y="1925" width="0.2" height="15.0" fill="rgb(218,226,30)" rx="2" ry="2" />
<text x="551.60" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (267 samples, 0.01%)</title><rect x="1168.8" y="1253" width="0.2" height="15.0" fill="rgb(229,165,30)" rx="2" ry="2" />
<text x="1171.81" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (288 samples, 0.01%)</title><rect x="1155.7" y="1285" width="0.1" height="15.0" fill="rgb(222,213,8)" rx="2" ry="2" />
<text x="1158.66" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,329 samples, 0.06%)</title><rect x="812.9" y="1317" width="0.8" height="15.0" fill="rgb(208,181,32)" rx="2" ry="2" />
<text x="815.91" y="1327.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (250 samples, 0.01%)</title><rect x="144.8" y="1845" width="0.2" height="15.0" fill="rgb(217,36,15)" rx="2" ry="2" />
<text x="147.82" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (639 samples, 0.03%)</title><rect x="759.1" y="1365" width="0.4" height="15.0" fill="rgb(224,125,1)" rx="2" ry="2" />
<text x="762.10" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (30,638 samples, 1.49%)</title><rect x="787.6" y="1445" width="17.6" height="15.0" fill="rgb(225,149,51)" rx="2" ry="2" />
<text x="790.61" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (51,705 samples, 2.52%)</title><rect x="994.5" y="1365" width="29.7" height="15.0" fill="rgb(251,227,5)" rx="2" ry="2" />
<text x="997.45" y="1375.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (557 samples, 0.03%)</title><rect x="1061.9" y="1269" width="0.3" height="15.0" fill="rgb(224,156,22)" rx="2" ry="2" />
<text x="1064.85" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (459 samples, 0.02%)</title><rect x="802.7" y="1205" width="0.3" height="15.0" fill="rgb(216,147,42)" rx="2" ry="2" />
<text x="805.73" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,673 samples, 0.08%)</title><rect x="719.5" y="1413" width="1.0" height="15.0" fill="rgb(253,210,6)" rx="2" ry="2" />
<text x="722.51" y="1423.5" ></text>
</g>
<g >
<title>caml_apply2 (615 samples, 0.03%)</title><rect x="1145.8" y="1365" width="0.4" height="15.0" fill="rgb(254,191,3)" rx="2" ry="2" />
<text x="1148.84" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (544 samples, 0.03%)</title><rect x="1101.2" y="1301" width="0.3" height="15.0" fill="rgb(247,80,22)" rx="2" ry="2" />
<text x="1104.19" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (261 samples, 0.01%)</title><rect x="815.6" y="1349" width="0.1" height="15.0" fill="rgb(220,163,2)" rx="2" ry="2" />
<text x="818.60" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,315 samples, 1.77%)</title><rect x="631.3" y="1845" width="20.8" height="15.0" fill="rgb(215,229,51)" rx="2" ry="2" />
<text x="634.25" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="949" width="0.3" height="15.0" fill="rgb(219,136,51)" rx="2" ry="2" />
<text x="1192.06" y="959.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (308 samples, 0.02%)</title><rect x="751.0" y="1205" width="0.2" height="15.0" fill="rgb(220,144,53)" rx="2" ry="2" />
<text x="753.98" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (404 samples, 0.02%)</title><rect x="770.0" y="1221" width="0.2" height="15.0" fill="rgb(229,203,34)" rx="2" ry="2" />
<text x="773.00" y="1231.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (223 samples, 0.01%)</title><rect x="923.5" y="1205" width="0.1" height="15.0" fill="rgb(237,42,51)" rx="2" ry="2" />
<text x="926.46" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="565" width="0.3" height="15.0" fill="rgb(233,40,49)" rx="2" ry="2" />
<text x="1192.69" y="575.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (183 samples, 0.01%)</title><rect x="1112.7" y="1333" width="0.1" height="15.0" fill="rgb(240,216,24)" rx="2" ry="2" />
<text x="1115.65" y="1343.5" ></text>
</g>
<g >
<title>__GI___pthread_setspecific (199 samples, 0.01%)</title><rect x="40.4" y="2005" width="0.1" height="15.0" fill="rgb(220,161,5)" rx="2" ry="2" />
<text x="43.36" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (3,728 samples, 0.18%)</title><rect x="899.2" y="1221" width="2.2" height="15.0" fill="rgb(243,99,36)" rx="2" ry="2" />
<text x="902.22" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (680 samples, 0.03%)</title><rect x="828.6" y="1397" width="0.4" height="15.0" fill="rgb(227,191,45)" rx="2" ry="2" />
<text x="831.56" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="629" width="0.2" height="15.0" fill="rgb(219,35,19)" rx="2" ry="2" />
<text x="1191.85" y="639.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (198 samples, 0.01%)</title><rect x="1048.7" y="1269" width="0.1" height="15.0" fill="rgb(210,4,43)" rx="2" ry="2" />
<text x="1051.72" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (290 samples, 0.01%)</title><rect x="979.8" y="1429" width="0.1" height="15.0" fill="rgb(245,199,41)" rx="2" ry="2" />
<text x="982.78" y="1439.5" ></text>
</g>
<g >
<title>futex_wait_simple (426 samples, 0.02%)</title><rect x="618.5" y="1877" width="0.3" height="15.0" fill="rgb(240,134,46)" rx="2" ry="2" />
<text x="621.54" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (284 samples, 0.01%)</title><rect x="1166.5" y="1141" width="0.1" height="15.0" fill="rgb(218,63,14)" rx="2" ry="2" />
<text x="1169.45" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (966 samples, 0.05%)</title><rect x="145.9" y="1861" width="0.5" height="15.0" fill="rgb(218,207,21)" rx="2" ry="2" />
<text x="148.85" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (2,290 samples, 0.11%)</title><rect x="865.6" y="1333" width="1.3" height="15.0" fill="rgb(244,38,45)" rx="2" ry="2" />
<text x="868.61" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (237 samples, 0.01%)</title><rect x="1155.8" y="1285" width="0.2" height="15.0" fill="rgb(211,30,33)" rx="2" ry="2" />
<text x="1158.85" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (4,075 samples, 0.20%)</title><rect x="172.0" y="1909" width="2.4" height="15.0" fill="rgb(224,13,42)" rx="2" ry="2" />
<text x="175.03" y="1919.5" ></text>
</g>
<g >
<title>caml_hash (241 samples, 0.01%)</title><rect x="940.3" y="1301" width="0.1" height="15.0" fill="rgb(205,111,31)" rx="2" ry="2" />
<text x="943.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (225 samples, 0.01%)</title><rect x="729.5" y="1381" width="0.1" height="15.0" fill="rgb(211,36,15)" rx="2" ry="2" />
<text x="732.49" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1829" width="0.3" height="15.0" fill="rgb(246,145,36)" rx="2" ry="2" />
<text x="1191.59" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,856 samples, 0.14%)</title><rect x="1171.0" y="1221" width="1.6" height="15.0" fill="rgb(226,199,50)" rx="2" ry="2" />
<text x="1173.97" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (660 samples, 0.03%)</title><rect x="964.8" y="1269" width="0.4" height="15.0" fill="rgb(248,126,51)" rx="2" ry="2" />
<text x="967.78" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,735 samples, 0.08%)</title><rect x="503.5" y="1909" width="1.0" height="15.0" fill="rgb(251,66,24)" rx="2" ry="2" />
<text x="506.47" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (261 samples, 0.01%)</title><rect x="938.2" y="1333" width="0.1" height="15.0" fill="rgb(249,45,14)" rx="2" ry="2" />
<text x="941.19" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (434 samples, 0.02%)</title><rect x="852.9" y="1285" width="0.3" height="15.0" fill="rgb(254,13,14)" rx="2" ry="2" />
<text x="855.93" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (214 samples, 0.01%)</title><rect x="1158.6" y="1157" width="0.1" height="15.0" fill="rgb(239,15,47)" rx="2" ry="2" />
<text x="1161.59" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,843 samples, 0.09%)</title><rect x="444.4" y="1909" width="1.0" height="15.0" fill="rgb(224,43,42)" rx="2" ry="2" />
<text x="447.38" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (848 samples, 0.04%)</title><rect x="885.3" y="1445" width="0.5" height="15.0" fill="rgb(211,76,43)" rx="2" ry="2" />
<text x="888.27" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (747 samples, 0.04%)</title><rect x="765.5" y="1285" width="0.5" height="15.0" fill="rgb(235,99,30)" rx="2" ry="2" />
<text x="768.52" y="1295.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (381 samples, 0.02%)</title><rect x="1025.0" y="1269" width="0.3" height="15.0" fill="rgb(228,129,19)" rx="2" ry="2" />
<text x="1028.03" y="1279.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (524 samples, 0.03%)</title><rect x="769.5" y="1285" width="0.3" height="15.0" fill="rgb(210,81,26)" rx="2" ry="2" />
<text x="772.54" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (2,043 samples, 0.10%)</title><rect x="807.4" y="1413" width="1.2" height="15.0" fill="rgb(211,145,44)" rx="2" ry="2" />
<text x="810.44" y="1423.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (729 samples, 0.04%)</title><rect x="444.5" y="1877" width="0.4" height="15.0" fill="rgb(209,153,19)" rx="2" ry="2" />
<text x="447.50" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (261 samples, 0.01%)</title><rect x="908.2" y="1221" width="0.2" height="15.0" fill="rgb(246,103,51)" rx="2" ry="2" />
<text x="911.22" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (315 samples, 0.02%)</title><rect x="819.5" y="1221" width="0.2" height="15.0" fill="rgb(244,136,21)" rx="2" ry="2" />
<text x="822.51" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="389" width="0.3" height="15.0" fill="rgb(242,76,5)" rx="2" ry="2" />
<text x="1192.37" y="399.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (717 samples, 0.03%)</title><rect x="849.3" y="1317" width="0.4" height="15.0" fill="rgb(245,157,5)" rx="2" ry="2" />
<text x="852.33" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (903 samples, 0.04%)</title><rect x="966.0" y="1269" width="0.5" height="15.0" fill="rgb(229,103,11)" rx="2" ry="2" />
<text x="968.97" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,155 samples, 0.06%)</title><rect x="879.6" y="1381" width="0.7" height="15.0" fill="rgb(231,111,42)" rx="2" ry="2" />
<text x="882.63" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (756 samples, 0.04%)</title><rect x="1058.0" y="1253" width="0.4" height="15.0" fill="rgb(238,185,7)" rx="2" ry="2" />
<text x="1061.00" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_4745 (247 samples, 0.01%)</title><rect x="1187.4" y="1525" width="0.1" height="15.0" fill="rgb(249,29,23)" rx="2" ry="2" />
<text x="1190.38" y="1535.5" ></text>
</g>
<g >
<title>camlIndex_unix__v_1189 (807 samples, 0.04%)</title><rect x="700.9" y="1957" width="0.5" height="15.0" fill="rgb(228,160,0)" rx="2" ry="2" />
<text x="703.90" y="1967.5" ></text>
</g>
<g >
<title>caml_string_equal (221 samples, 0.01%)</title><rect x="1079.8" y="1317" width="0.2" height="15.0" fill="rgb(253,154,53)" rx="2" ry="2" />
<text x="1082.85" y="1327.5" ></text>
</g>
<g >
<title>futex_wake (41,616 samples, 2.03%)</title><rect x="628.2" y="1893" width="23.9" height="15.0" fill="rgb(222,213,16)" rx="2" ry="2" />
<text x="631.20" y="1903.5" >f..</text>
</g>
<g >
<title>camlLwt__fun_2826 (356 samples, 0.02%)</title><rect x="805.4" y="1477" width="0.2" height="15.0" fill="rgb(217,54,30)" rx="2" ry="2" />
<text x="808.35" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="437" width="0.3" height="15.0" fill="rgb(239,21,12)" rx="2" ry="2" />
<text x="1192.37" y="447.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (5,428 samples, 0.26%)</title><rect x="880.8" y="1413" width="3.2" height="15.0" fill="rgb(232,103,13)" rx="2" ry="2" />
<text x="883.83" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,653 samples, 0.13%)</title><rect x="810.1" y="1317" width="1.5" height="15.0" fill="rgb(229,15,36)" rx="2" ry="2" />
<text x="813.08" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,257 samples, 21.80%)</title><rect x="888.5" y="1605" width="257.2" height="15.0" fill="rgb(239,122,43)" rx="2" ry="2" />
<text x="891.47" y="1615.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>[[kernel.kallsyms]] (611 samples, 0.03%)</title><rect x="933.2" y="1221" width="0.4" height="15.0" fill="rgb(228,4,34)" rx="2" ry="2" />
<text x="936.22" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__random__intaux_268 (890 samples, 0.04%)</title><rect x="1187.7" y="1445" width="0.5" height="15.0" fill="rgb(210,99,25)" rx="2" ry="2" />
<text x="1190.67" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305 samples, 0.01%)</title><rect x="802.1" y="1173" width="0.2" height="15.0" fill="rgb(243,74,32)" rx="2" ry="2" />
<text x="805.13" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (209 samples, 0.01%)</title><rect x="1040.6" y="1381" width="0.2" height="15.0" fill="rgb(239,117,1)" rx="2" ry="2" />
<text x="1043.63" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1733" width="0.3" height="15.0" fill="rgb(212,26,35)" rx="2" ry="2" />
<text x="1192.06" y="1743.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (347 samples, 0.02%)</title><rect x="828.1" y="1269" width="0.2" height="15.0" fill="rgb(244,89,27)" rx="2" ry="2" />
<text x="831.11" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (515 samples, 0.03%)</title><rect x="883.3" y="1301" width="0.3" height="15.0" fill="rgb(223,69,51)" rx="2" ry="2" />
<text x="886.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (218 samples, 0.01%)</title><rect x="862.1" y="1413" width="0.1" height="15.0" fill="rgb(210,221,26)" rx="2" ry="2" />
<text x="865.11" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (458 samples, 0.02%)</title><rect x="1167.9" y="1285" width="0.2" height="15.0" fill="rgb(217,59,4)" rx="2" ry="2" />
<text x="1170.87" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="245" width="0.2" height="15.0" fill="rgb(210,5,10)" rx="2" ry="2" />
<text x="1191.85" y="255.5" ></text>
</g>
<g >
<title>mark_slice_darken (414 samples, 0.02%)</title><rect x="1132.0" y="1141" width="0.3" height="15.0" fill="rgb(230,100,11)" rx="2" ry="2" />
<text x="1135.02" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11917 (15,013 samples, 0.73%)</title><rect x="1129.7" y="1397" width="8.7" height="15.0" fill="rgb(241,214,2)" rx="2" ry="2" />
<text x="1132.75" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (603 samples, 0.03%)</title><rect x="978.9" y="1445" width="0.4" height="15.0" fill="rgb(234,136,42)" rx="2" ry="2" />
<text x="981.92" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (4,608 samples, 0.22%)</title><rect x="728.9" y="1429" width="2.6" height="15.0" fill="rgb(230,3,51)" rx="2" ry="2" />
<text x="731.86" y="1439.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (530 samples, 0.03%)</title><rect x="1009.2" y="1253" width="0.3" height="15.0" fill="rgb(220,136,27)" rx="2" ry="2" />
<text x="1012.20" y="1263.5" ></text>
</g>
<g >
<title>__libc_pread64 (453 samples, 0.02%)</title><rect x="852.9" y="1317" width="0.3" height="15.0" fill="rgb(243,200,44)" rx="2" ry="2" />
<text x="855.93" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (216 samples, 0.01%)</title><rect x="1184.4" y="1141" width="0.1" height="15.0" fill="rgb(228,115,7)" rx="2" ry="2" />
<text x="1187.35" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (403 samples, 0.02%)</title><rect x="1054.5" y="1237" width="0.2" height="15.0" fill="rgb(210,158,8)" rx="2" ry="2" />
<text x="1057.50" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (259 samples, 0.01%)</title><rect x="724.0" y="1509" width="0.2" height="15.0" fill="rgb(245,134,14)" rx="2" ry="2" />
<text x="727.05" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (606 samples, 0.03%)</title><rect x="815.9" y="1349" width="0.4" height="15.0" fill="rgb(205,219,10)" rx="2" ry="2" />
<text x="818.92" y="1359.5" ></text>
</g>
<g >
<title>caml_curry4_2 (283 samples, 0.01%)</title><rect x="422.9" y="1893" width="0.2" height="15.0" fill="rgb(221,89,49)" rx="2" ry="2" />
<text x="425.92" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (345 samples, 0.02%)</title><rect x="1127.6" y="1365" width="0.2" height="15.0" fill="rgb(229,155,49)" rx="2" ry="2" />
<text x="1130.61" y="1375.5" ></text>
</g>
<g >
<title>compare_val (1,030 samples, 0.05%)</title><rect x="866.3" y="1301" width="0.6" height="15.0" fill="rgb(229,154,23)" rx="2" ry="2" />
<text x="869.33" y="1311.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (446 samples, 0.02%)</title><rect x="389.3" y="1845" width="0.3" height="15.0" fill="rgb(237,52,50)" rx="2" ry="2" />
<text x="392.33" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (250 samples, 0.01%)</title><rect x="834.9" y="1317" width="0.1" height="15.0" fill="rgb(224,158,1)" rx="2" ry="2" />
<text x="837.90" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (802 samples, 0.04%)</title><rect x="167.0" y="1813" width="0.4" height="15.0" fill="rgb(225,140,23)" rx="2" ry="2" />
<text x="169.98" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="901" width="0.3" height="15.0" fill="rgb(210,34,4)" rx="2" ry="2" />
<text x="1192.69" y="911.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (321 samples, 0.02%)</title><rect x="878.6" y="1365" width="0.2" height="15.0" fill="rgb(235,111,6)" rx="2" ry="2" />
<text x="881.58" y="1375.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (70,857 samples, 3.45%)</title><rect x="652.3" y="1893" width="40.8" height="15.0" fill="rgb(233,162,28)" rx="2" ry="2" />
<text x="655.33" y="1903.5" >__p..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="789" width="0.2" height="15.0" fill="rgb(228,187,21)" rx="2" ry="2" />
<text x="1191.85" y="799.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (269 samples, 0.01%)</title><rect x="1035.5" y="1301" width="0.2" height="15.0" fill="rgb(218,127,38)" rx="2" ry="2" />
<text x="1038.50" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (216 samples, 0.01%)</title><rect x="990.3" y="1445" width="0.2" height="15.0" fill="rgb(239,21,7)" rx="2" ry="2" />
<text x="993.35" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (6,534 samples, 0.32%)</title><rect x="734.7" y="1557" width="3.7" height="15.0" fill="rgb(234,115,13)" rx="2" ry="2" />
<text x="737.66" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,565 samples, 0.13%)</title><rect x="845.2" y="1317" width="1.4" height="15.0" fill="rgb(254,215,25)" rx="2" ry="2" />
<text x="848.15" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (4,009 samples, 0.20%)</title><rect x="801.5" y="1317" width="2.3" height="15.0" fill="rgb(221,114,25)" rx="2" ry="2" />
<text x="804.54" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (218 samples, 0.01%)</title><rect x="1117.5" y="1365" width="0.1" height="15.0" fill="rgb(240,69,11)" rx="2" ry="2" />
<text x="1120.48" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (1,691 samples, 0.08%)</title><rect x="758.0" y="1397" width="1.0" height="15.0" fill="rgb(224,118,43)" rx="2" ry="2" />
<text x="761.00" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (203 samples, 0.01%)</title><rect x="824.8" y="1397" width="0.1" height="15.0" fill="rgb(211,55,17)" rx="2" ry="2" />
<text x="827.78" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (777,798 samples, 37.91%)</title><rect x="741.1" y="1781" width="447.4" height="15.0" fill="rgb(232,108,54)" rx="2" ry="2" />
<text x="744.11" y="1791.5" >camlLwt__run_in_resolution_loop_899</text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_mem_7404 (291 samples, 0.01%)</title><rect x="717.5" y="1525" width="0.2" height="15.0" fill="rgb(209,55,39)" rx="2" ry="2" />
<text x="720.51" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_485 (1,013 samples, 0.05%)</title><rect x="420.0" y="1893" width="0.6" height="15.0" fill="rgb(243,155,20)" rx="2" ry="2" />
<text x="423.00" y="1903.5" ></text>
</g>
<g >
<title>caml_hash (333 samples, 0.02%)</title><rect x="767.9" y="1285" width="0.2" height="15.0" fill="rgb(235,169,20)" rx="2" ry="2" />
<text x="770.87" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (425 samples, 0.02%)</title><rect x="762.8" y="1285" width="0.3" height="15.0" fill="rgb(218,206,8)" rx="2" ry="2" />
<text x="765.82" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (499 samples, 0.02%)</title><rect x="915.9" y="1237" width="0.3" height="15.0" fill="rgb(226,160,3)" rx="2" ry="2" />
<text x="918.87" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,435 samples, 0.07%)</title><rect x="220.4" y="1813" width="0.9" height="15.0" fill="rgb(220,64,13)" rx="2" ry="2" />
<text x="223.45" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (287 samples, 0.01%)</title><rect x="1175.3" y="1157" width="0.1" height="15.0" fill="rgb(221,218,32)" rx="2" ry="2" />
<text x="1178.26" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (177 samples, 0.01%)</title><rect x="756.1" y="1365" width="0.1" height="15.0" fill="rgb(212,1,41)" rx="2" ry="2" />
<text x="759.14" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (684 samples, 0.03%)</title><rect x="821.4" y="1413" width="0.4" height="15.0" fill="rgb(207,50,54)" rx="2" ry="2" />
<text x="824.38" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (3,544 samples, 0.17%)</title><rect x="718.8" y="1429" width="2.1" height="15.0" fill="rgb(246,206,15)" rx="2" ry="2" />
<text x="721.83" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11991 (2,539 samples, 0.12%)</title><rect x="1157.3" y="1285" width="1.4" height="15.0" fill="rgb(240,151,22)" rx="2" ry="2" />
<text x="1160.26" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__merge_from_log_1630 (20,495 samples, 1.00%)</title><rect x="413.0" y="1941" width="11.8" height="15.0" fill="rgb(232,89,6)" rx="2" ry="2" />
<text x="415.99" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (244 samples, 0.01%)</title><rect x="800.8" y="1285" width="0.1" height="15.0" fill="rgb(217,61,6)" rx="2" ry="2" />
<text x="803.77" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (576 samples, 0.03%)</title><rect x="1003.3" y="1269" width="0.3" height="15.0" fill="rgb(231,189,19)" rx="2" ry="2" />
<text x="1006.27" y="1279.5" ></text>
</g>
<g >
<title>__lseek64 (266 samples, 0.01%)</title><rect x="754.4" y="1285" width="0.2" height="15.0" fill="rgb(219,36,28)" rx="2" ry="2" />
<text x="757.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,085 samples, 0.05%)</title><rect x="735.7" y="1429" width="0.7" height="15.0" fill="rgb(253,229,38)" rx="2" ry="2" />
<text x="738.73" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (784 samples, 0.04%)</title><rect x="1020.9" y="1205" width="0.5" height="15.0" fill="rgb(243,2,0)" rx="2" ry="2" />
<text x="1023.91" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (253 samples, 0.01%)</title><rect x="1177.0" y="1301" width="0.2" height="15.0" fill="rgb(249,122,29)" rx="2" ry="2" />
<text x="1180.01" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (21,569 samples, 1.05%)</title><rect x="808.6" y="1413" width="12.4" height="15.0" fill="rgb(218,167,23)" rx="2" ry="2" />
<text x="811.62" y="1423.5" ></text>
</g>
<g >
<title>__libc_pread64 (197 samples, 0.01%)</title><rect x="973.1" y="1237" width="0.1" height="15.0" fill="rgb(249,13,42)" rx="2" ry="2" />
<text x="976.11" y="1247.5" ></text>
</g>
<g >
<title>__GI___clone (1,181,069 samples, 57.57%)</title><rect x="36.8" y="2053" width="679.3" height="15.0" fill="rgb(242,50,31)" rx="2" ry="2" />
<text x="39.78" y="2063.5" >__GI___clone</text>
</g>
<g >
<title>[[kernel.kallsyms]] (358 samples, 0.02%)</title><rect x="628.0" y="1845" width="0.2" height="15.0" fill="rgb(210,98,53)" rx="2" ry="2" />
<text x="631.00" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1925" width="0.3" height="15.0" fill="rgb(234,2,34)" rx="2" ry="2" />
<text x="1191.59" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (753 samples, 0.04%)</title><rect x="788.4" y="1301" width="0.5" height="15.0" fill="rgb(241,81,15)" rx="2" ry="2" />
<text x="791.45" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (190 samples, 0.01%)</title><rect x="1064.3" y="1269" width="0.1" height="15.0" fill="rgb(224,183,50)" rx="2" ry="2" />
<text x="1067.30" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (364 samples, 0.02%)</title><rect x="769.6" y="1189" width="0.2" height="15.0" fill="rgb(252,223,9)" rx="2" ry="2" />
<text x="772.64" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__lazy__from_val_160 (242 samples, 0.01%)</title><rect x="1072.9" y="1333" width="0.2" height="15.0" fill="rgb(242,226,2)" rx="2" ry="2" />
<text x="1075.93" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (7,151 samples, 0.35%)</title><rect x="778.7" y="1285" width="4.1" height="15.0" fill="rgb(225,28,53)" rx="2" ry="2" />
<text x="781.70" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,230 samples, 0.06%)</title><rect x="671.8" y="1845" width="0.7" height="15.0" fill="rgb(207,197,1)" rx="2" ry="2" />
<text x="674.77" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (253 samples, 0.01%)</title><rect x="854.9" y="1381" width="0.2" height="15.0" fill="rgb(237,35,23)" rx="2" ry="2" />
<text x="857.92" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_5763 (540 samples, 0.03%)</title><rect x="827.1" y="1429" width="0.3" height="15.0" fill="rgb(250,44,40)" rx="2" ry="2" />
<text x="830.08" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (263 samples, 0.01%)</title><rect x="861.1" y="1429" width="0.1" height="15.0" fill="rgb(212,153,24)" rx="2" ry="2" />
<text x="864.08" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (398 samples, 0.02%)</title><rect x="818.0" y="1253" width="0.3" height="15.0" fill="rgb(253,194,9)" rx="2" ry="2" />
<text x="821.04" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (174 samples, 0.01%)</title><rect x="403.8" y="1861" width="0.1" height="15.0" fill="rgb(230,228,54)" rx="2" ry="2" />
<text x="406.77" y="1871.5" ></text>
</g>
<g >
<title>mark_slice (380 samples, 0.02%)</title><rect x="1093.4" y="1205" width="0.2" height="15.0" fill="rgb(223,105,48)" rx="2" ry="2" />
<text x="1096.41" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="981" width="0.2" height="15.0" fill="rgb(229,192,53)" rx="2" ry="2" />
<text x="1191.85" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_454 (215 samples, 0.01%)</title><rect x="1076.8" y="1429" width="0.2" height="15.0" fill="rgb(252,4,46)" rx="2" ry="2" />
<text x="1079.84" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (10,298 samples, 0.50%)</title><rect x="1052.7" y="1285" width="5.9" height="15.0" fill="rgb(232,213,51)" rx="2" ry="2" />
<text x="1055.73" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (643 samples, 0.03%)</title><rect x="792.9" y="1365" width="0.4" height="15.0" fill="rgb(248,214,47)" rx="2" ry="2" />
<text x="795.91" y="1375.5" ></text>
</g>
<g >
<title>caml_thread_yield (2,035 samples, 0.10%)</title><rect x="838.1" y="1317" width="1.1" height="15.0" fill="rgb(244,8,27)" rx="2" ry="2" />
<text x="841.06" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (325 samples, 0.02%)</title><rect x="420.8" y="1893" width="0.2" height="15.0" fill="rgb(234,131,9)" rx="2" ry="2" />
<text x="423.83" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (10,082 samples, 0.49%)</title><rect x="1148.6" y="1301" width="5.8" height="15.0" fill="rgb(222,84,46)" rx="2" ry="2" />
<text x="1151.57" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (176 samples, 0.01%)</title><rect x="824.1" y="1237" width="0.1" height="15.0" fill="rgb(254,108,49)" rx="2" ry="2" />
<text x="827.06" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (327 samples, 0.02%)</title><rect x="738.9" y="1525" width="0.2" height="15.0" fill="rgb(232,4,20)" rx="2" ry="2" />
<text x="741.88" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="2053" width="0.3" height="15.0" fill="rgb(223,64,23)" rx="2" ry="2" />
<text x="1192.69" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (4,311 samples, 0.21%)</title><rect x="221.4" y="1893" width="2.5" height="15.0" fill="rgb(234,109,10)" rx="2" ry="2" />
<text x="224.41" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (963 samples, 0.05%)</title><rect x="943.4" y="1205" width="0.5" height="15.0" fill="rgb(253,164,4)" rx="2" ry="2" />
<text x="946.36" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (279 samples, 0.01%)</title><rect x="704.7" y="1749" width="0.1" height="15.0" fill="rgb(252,10,29)" rx="2" ry="2" />
<text x="707.66" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (231 samples, 0.01%)</title><rect x="742.6" y="1349" width="0.1" height="15.0" fill="rgb(239,229,22)" rx="2" ry="2" />
<text x="745.55" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (441 samples, 0.02%)</title><rect x="1188.6" y="197" width="0.3" height="15.0" fill="rgb(217,19,20)" rx="2" ry="2" />
<text x="1191.60" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (225 samples, 0.01%)</title><rect x="798.7" y="1269" width="0.1" height="15.0" fill="rgb(254,40,33)" rx="2" ry="2" />
<text x="801.71" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,067 samples, 0.05%)</title><rect x="1080.3" y="1317" width="0.7" height="15.0" fill="rgb(244,144,15)" rx="2" ry="2" />
<text x="1083.34" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1701" width="0.3" height="15.0" fill="rgb(223,115,11)" rx="2" ry="2" />
<text x="1192.37" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (552 samples, 0.03%)</title><rect x="731.9" y="1429" width="0.4" height="15.0" fill="rgb(206,228,52)" rx="2" ry="2" />
<text x="734.93" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (1,602 samples, 0.08%)</title><rect x="955.4" y="1253" width="1.0" height="15.0" fill="rgb(248,104,30)" rx="2" ry="2" />
<text x="958.45" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (403 samples, 0.02%)</title><rect x="772.9" y="1349" width="0.2" height="15.0" fill="rgb(220,96,51)" rx="2" ry="2" />
<text x="775.87" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (178 samples, 0.01%)</title><rect x="815.1" y="1317" width="0.1" height="15.0" fill="rgb(205,128,23)" rx="2" ry="2" />
<text x="818.06" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (207 samples, 0.01%)</title><rect x="325.0" y="1829" width="0.1" height="15.0" fill="rgb(217,185,34)" rx="2" ry="2" />
<text x="328.01" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (337 samples, 0.02%)</title><rect x="1067.9" y="1157" width="0.2" height="15.0" fill="rgb(221,229,17)" rx="2" ry="2" />
<text x="1070.89" y="1167.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (448 samples, 0.02%)</title><rect x="389.3" y="1861" width="0.3" height="15.0" fill="rgb(221,102,4)" rx="2" ry="2" />
<text x="392.33" y="1871.5" ></text>
</g>
<g >
<title>do_compare_val (421 samples, 0.02%)</title><rect x="1072.1" y="1285" width="0.3" height="15.0" fill="rgb(234,11,21)" rx="2" ry="2" />
<text x="1075.11" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (49,636 samples, 2.42%)</title><rect x="946.3" y="1333" width="28.5" height="15.0" fill="rgb(254,105,28)" rx="2" ry="2" />
<text x="949.28" y="1343.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,164 samples, 0.06%)</title><rect x="993.1" y="1317" width="0.6" height="15.0" fill="rgb(250,229,39)" rx="2" ry="2" />
<text x="996.08" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14013 (16,343 samples, 0.80%)</title><rect x="717.9" y="1557" width="9.4" height="15.0" fill="rgb(218,92,25)" rx="2" ry="2" />
<text x="720.91" y="1567.5" ></text>
</g>
<g >
<title>caml_hash (228 samples, 0.01%)</title><rect x="1039.7" y="1317" width="0.1" height="15.0" fill="rgb(207,22,9)" rx="2" ry="2" />
<text x="1042.67" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (178 samples, 0.01%)</title><rect x="702.3" y="1877" width="0.1" height="15.0" fill="rgb(237,170,37)" rx="2" ry="2" />
<text x="705.30" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (23,529 samples, 1.15%)</title><rect x="1047.6" y="1317" width="13.6" height="15.0" fill="rgb(247,165,47)" rx="2" ry="2" />
<text x="1050.64" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_close_5852 (367 samples, 0.02%)</title><rect x="1188.3" y="1637" width="0.2" height="15.0" fill="rgb(243,128,52)" rx="2" ry="2" />
<text x="1191.26" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (17,913 samples, 0.87%)</title><rect x="776.8" y="1397" width="10.3" height="15.0" fill="rgb(248,100,35)" rx="2" ry="2" />
<text x="779.83" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (976 samples, 0.05%)</title><rect x="1020.8" y="1253" width="0.6" height="15.0" fill="rgb(231,199,35)" rx="2" ry="2" />
<text x="1023.80" y="1263.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (298 samples, 0.01%)</title><rect x="717.1" y="1477" width="0.2" height="15.0" fill="rgb(234,75,15)" rx="2" ry="2" />
<text x="720.12" y="1487.5" ></text>
</g>
<g >
<title>memmove (261 samples, 0.01%)</title><rect x="1126.9" y="1317" width="0.1" height="15.0" fill="rgb(249,58,49)" rx="2" ry="2" />
<text x="1129.89" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_485 (653 samples, 0.03%)</title><rect x="1115.6" y="1333" width="0.4" height="15.0" fill="rgb(250,65,21)" rx="2" ry="2" />
<text x="1118.61" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (497 samples, 0.02%)</title><rect x="34.7" y="1829" width="0.3" height="15.0" fill="rgb(226,181,47)" rx="2" ry="2" />
<text x="37.68" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (3,247 samples, 0.16%)</title><rect x="906.1" y="1221" width="1.8" height="15.0" fill="rgb(233,205,25)" rx="2" ry="2" />
<text x="909.07" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (3,358 samples, 0.16%)</title><rect x="1049.4" y="1253" width="2.0" height="15.0" fill="rgb(235,208,2)" rx="2" ry="2" />
<text x="1052.42" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (538 samples, 0.03%)</title><rect x="34.7" y="1845" width="0.3" height="15.0" fill="rgb(206,141,33)" rx="2" ry="2" />
<text x="37.66" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (208 samples, 0.01%)</title><rect x="765.0" y="1253" width="0.2" height="15.0" fill="rgb(212,220,9)" rx="2" ry="2" />
<text x="768.04" y="1263.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (229 samples, 0.01%)</title><rect x="261.9" y="1845" width="0.1" height="15.0" fill="rgb(245,52,1)" rx="2" ry="2" />
<text x="264.91" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,575 samples, 0.08%)</title><rect x="765.3" y="1301" width="0.9" height="15.0" fill="rgb(237,185,4)" rx="2" ry="2" />
<text x="768.28" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (265 samples, 0.01%)</title><rect x="1185.9" y="1317" width="0.2" height="15.0" fill="rgb(220,55,39)" rx="2" ry="2" />
<text x="1188.91" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (1,821 samples, 0.09%)</title><rect x="805.7" y="1493" width="1.1" height="15.0" fill="rgb(240,210,43)" rx="2" ry="2" />
<text x="808.72" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (331 samples, 0.02%)</title><rect x="738.9" y="1541" width="0.2" height="15.0" fill="rgb(225,114,48)" rx="2" ry="2" />
<text x="741.87" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,178 samples, 0.06%)</title><rect x="943.2" y="1253" width="0.7" height="15.0" fill="rgb(236,139,24)" rx="2" ry="2" />
<text x="946.23" y="1263.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (10,057 samples, 0.49%)</title><rect x="829.5" y="1365" width="5.7" height="15.0" fill="rgb(254,50,49)" rx="2" ry="2" />
<text x="832.45" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12006 (1,364 samples, 0.07%)</title><rect x="753.5" y="1349" width="0.8" height="15.0" fill="rgb(213,191,8)" rx="2" ry="2" />
<text x="756.49" y="1359.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (213 samples, 0.01%)</title><rect x="1065.0" y="1253" width="0.2" height="15.0" fill="rgb(227,178,24)" rx="2" ry="2" />
<text x="1068.03" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1269" width="0.3" height="15.0" fill="rgb(215,95,2)" rx="2" ry="2" />
<text x="1192.06" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,040 samples, 0.05%)</title><rect x="416.7" y="1893" width="0.6" height="15.0" fill="rgb(212,68,40)" rx="2" ry="2" />
<text x="419.69" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (469 samples, 0.02%)</title><rect x="956.1" y="1221" width="0.3" height="15.0" fill="rgb(208,149,40)" rx="2" ry="2" />
<text x="959.09" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (272 samples, 0.01%)</title><rect x="725.9" y="1413" width="0.1" height="15.0" fill="rgb(248,209,17)" rx="2" ry="2" />
<text x="728.87" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (659 samples, 0.03%)</title><rect x="262.0" y="1845" width="0.4" height="15.0" fill="rgb(214,124,19)" rx="2" ry="2" />
<text x="265.05" y="1855.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (897 samples, 0.04%)</title><rect x="40.5" y="2005" width="0.5" height="15.0" fill="rgb(227,51,40)" rx="2" ry="2" />
<text x="43.51" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,792 samples, 0.09%)</title><rect x="960.1" y="1253" width="1.1" height="15.0" fill="rgb(208,171,18)" rx="2" ry="2" />
<text x="963.12" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14951 (182 samples, 0.01%)</title><rect x="1147.5" y="1333" width="0.1" height="15.0" fill="rgb(251,177,36)" rx="2" ry="2" />
<text x="1150.48" y="1343.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,248 samples, 0.06%)</title><rect x="1019.8" y="1285" width="0.7" height="15.0" fill="rgb(243,217,49)" rx="2" ry="2" />
<text x="1022.77" y="1295.5" ></text>
</g>
<g >
<title>caml_modify (2,358 samples, 0.11%)</title><rect x="86.9" y="1909" width="1.3" height="15.0" fill="rgb(213,227,28)" rx="2" ry="2" />
<text x="89.86" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1925" width="0.3" height="15.0" fill="rgb(209,64,20)" rx="2" ry="2" />
<text x="1192.37" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (241 samples, 0.01%)</title><rect x="777.7" y="1285" width="0.1" height="15.0" fill="rgb(230,185,4)" rx="2" ry="2" />
<text x="780.66" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="629" width="0.3" height="15.0" fill="rgb(238,178,26)" rx="2" ry="2" />
<text x="1191.59" y="639.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,211 samples, 0.06%)</title><rect x="389.6" y="1829" width="0.7" height="15.0" fill="rgb(217,64,27)" rx="2" ry="2" />
<text x="392.64" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (2,694 samples, 0.13%)</title><rect x="714.1" y="1909" width="1.6" height="15.0" fill="rgb(246,105,18)" rx="2" ry="2" />
<text x="717.13" y="1919.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (917 samples, 0.04%)</title><rect x="912.2" y="1253" width="0.6" height="15.0" fill="rgb(246,175,6)" rx="2" ry="2" />
<text x="915.24" y="1263.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,297 samples, 0.06%)</title><rect x="970.3" y="1253" width="0.7" height="15.0" fill="rgb(247,181,22)" rx="2" ry="2" />
<text x="973.30" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (321 samples, 0.02%)</title><rect x="1096.9" y="1285" width="0.2" height="15.0" fill="rgb(206,61,19)" rx="2" ry="2" />
<text x="1099.92" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (471 samples, 0.02%)</title><rect x="1172.3" y="1205" width="0.3" height="15.0" fill="rgb(231,160,3)" rx="2" ry="2" />
<text x="1175.29" y="1215.5" ></text>
</g>
<g >
<title>memmove (5,751 samples, 0.28%)</title><rect x="441.1" y="1893" width="3.3" height="15.0" fill="rgb(226,146,32)" rx="2" ry="2" />
<text x="444.05" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (188 samples, 0.01%)</title><rect x="1156.1" y="1301" width="0.1" height="15.0" fill="rgb(242,59,48)" rx="2" ry="2" />
<text x="1159.14" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (247 samples, 0.01%)</title><rect x="814.8" y="1317" width="0.2" height="15.0" fill="rgb(210,191,35)" rx="2" ry="2" />
<text x="817.85" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (191 samples, 0.01%)</title><rect x="1155.5" y="1269" width="0.1" height="15.0" fill="rgb(228,199,37)" rx="2" ry="2" />
<text x="1158.47" y="1279.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (265 samples, 0.01%)</title><rect x="785.6" y="1221" width="0.2" height="15.0" fill="rgb(225,107,10)" rx="2" ry="2" />
<text x="788.60" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="501" width="0.3" height="15.0" fill="rgb(235,78,33)" rx="2" ry="2" />
<text x="1192.37" y="511.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,540 samples, 0.08%)</title><rect x="1069.8" y="1269" width="0.9" height="15.0" fill="rgb(240,166,37)" rx="2" ry="2" />
<text x="1072.79" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__mem_7394 (31,499 samples, 1.54%)</title><rect x="1159.1" y="1381" width="18.1" height="15.0" fill="rgb(211,181,6)" rx="2" ry="2" />
<text x="1162.09" y="1391.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (1,737 samples, 0.08%)</title><rect x="547.6" y="1893" width="1.0" height="15.0" fill="rgb(208,91,28)" rx="2" ry="2" />
<text x="550.60" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__fun_3634 (3,033 samples, 0.15%)</title><rect x="714.1" y="1925" width="1.7" height="15.0" fill="rgb(218,66,11)" rx="2" ry="2" />
<text x="717.07" y="1935.5" ></text>
</g>
<g >
<title>caml_tuplify2 (1,952 samples, 0.10%)</title><rect x="170.9" y="1893" width="1.1" height="15.0" fill="rgb(213,129,29)" rx="2" ry="2" />
<text x="173.91" y="1903.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (688 samples, 0.03%)</title><rect x="1022.0" y="1253" width="0.4" height="15.0" fill="rgb(247,70,30)" rx="2" ry="2" />
<text x="1025.04" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1189" width="0.3" height="15.0" fill="rgb(209,13,49)" rx="2" ry="2" />
<text x="1192.06" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (419 samples, 0.02%)</title><rect x="1163.3" y="1189" width="0.3" height="15.0" fill="rgb(206,96,22)" rx="2" ry="2" />
<text x="1166.33" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,878 samples, 0.14%)</title><rect x="33.3" y="1909" width="1.7" height="15.0" fill="rgb(234,57,42)" rx="2" ry="2" />
<text x="36.31" y="1919.5" ></text>
</g>
<g >
<title>caml_hash (206 samples, 0.01%)</title><rect x="774.6" y="1413" width="0.1" height="15.0" fill="rgb(211,82,38)" rx="2" ry="2" />
<text x="777.57" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (232 samples, 0.01%)</title><rect x="933.4" y="1173" width="0.2" height="15.0" fill="rgb(225,102,12)" rx="2" ry="2" />
<text x="936.44" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (456 samples, 0.02%)</title><rect x="859.6" y="1413" width="0.3" height="15.0" fill="rgb(240,219,1)" rx="2" ry="2" />
<text x="862.62" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (3,498 samples, 0.17%)</title><rect x="998.2" y="1269" width="2.0" height="15.0" fill="rgb(205,61,35)" rx="2" ry="2" />
<text x="1001.17" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1957" width="0.3" height="15.0" fill="rgb(219,112,17)" rx="2" ry="2" />
<text x="1192.37" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (475 samples, 0.02%)</title><rect x="766.7" y="1301" width="0.2" height="15.0" fill="rgb(209,2,45)" rx="2" ry="2" />
<text x="769.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (3,220 samples, 0.16%)</title><rect x="1091.8" y="1269" width="1.9" height="15.0" fill="rgb(232,138,2)" rx="2" ry="2" />
<text x="1094.81" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_556 (2,853 samples, 0.14%)</title><rect x="179.7" y="1909" width="1.6" height="15.0" fill="rgb(215,3,12)" rx="2" ry="2" />
<text x="182.70" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (476 samples, 0.02%)</title><rect x="974.1" y="1317" width="0.3" height="15.0" fill="rgb(246,157,4)" rx="2" ry="2" />
<text x="977.09" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (1,990 samples, 0.10%)</title><rect x="933.0" y="1301" width="1.2" height="15.0" fill="rgb(225,79,34)" rx="2" ry="2" />
<text x="936.03" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (205 samples, 0.01%)</title><rect x="766.1" y="1269" width="0.1" height="15.0" fill="rgb(231,183,27)" rx="2" ry="2" />
<text x="769.05" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (427 samples, 0.02%)</title><rect x="828.1" y="1317" width="0.2" height="15.0" fill="rgb(216,99,9)" rx="2" ry="2" />
<text x="831.06" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (605 samples, 0.03%)</title><rect x="403.4" y="1845" width="0.4" height="15.0" fill="rgb(209,87,35)" rx="2" ry="2" />
<text x="406.42" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (338 samples, 0.02%)</title><rect x="738.1" y="1509" width="0.2" height="15.0" fill="rgb(243,63,8)" rx="2" ry="2" />
<text x="741.09" y="1519.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (319 samples, 0.02%)</title><rect x="10.2" y="1285" width="0.1" height="15.0" fill="rgb(247,98,30)" rx="2" ry="2" />
<text x="13.16" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1381" width="0.3" height="15.0" fill="rgb(253,214,25)" rx="2" ry="2" />
<text x="1192.69" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11899 (755 samples, 0.04%)</title><rect x="1138.8" y="1445" width="0.4" height="15.0" fill="rgb(247,117,27)" rx="2" ry="2" />
<text x="1141.82" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (197 samples, 0.01%)</title><rect x="721.1" y="1429" width="0.1" height="15.0" fill="rgb(222,29,25)" rx="2" ry="2" />
<text x="724.08" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (80,395 samples, 3.92%)</title><rect x="930.7" y="1413" width="46.3" height="15.0" fill="rgb(241,131,37)" rx="2" ry="2" />
<text x="933.75" y="1423.5" >caml..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (370 samples, 0.02%)</title><rect x="758.6" y="1253" width="0.2" height="15.0" fill="rgb(235,222,29)" rx="2" ry="2" />
<text x="761.61" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,257 samples, 21.80%)</title><rect x="888.5" y="1621" width="257.2" height="15.0" fill="rgb(216,26,12)" rx="2" ry="2" />
<text x="891.47" y="1631.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>caml_gc_dispatch (196 samples, 0.01%)</title><rect x="444.4" y="1893" width="0.1" height="15.0" fill="rgb(235,165,12)" rx="2" ry="2" />
<text x="447.38" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1813" width="0.3" height="15.0" fill="rgb(225,194,45)" rx="2" ry="2" />
<text x="1192.37" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (226 samples, 0.01%)</title><rect x="1175.5" y="1125" width="0.2" height="15.0" fill="rgb(241,4,14)" rx="2" ry="2" />
<text x="1178.53" y="1135.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (350 samples, 0.02%)</title><rect x="1097.2" y="1301" width="0.2" height="15.0" fill="rgb(254,175,7)" rx="2" ry="2" />
<text x="1100.16" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1573" width="0.3" height="15.0" fill="rgb(241,129,23)" rx="2" ry="2" />
<text x="1192.06" y="1583.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (285 samples, 0.01%)</title><rect x="824.0" y="1269" width="0.2" height="15.0" fill="rgb(253,229,46)" rx="2" ry="2" />
<text x="827.00" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1045" width="0.3" height="15.0" fill="rgb(242,101,21)" rx="2" ry="2" />
<text x="1192.06" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (180 samples, 0.01%)</title><rect x="877.1" y="1317" width="0.1" height="15.0" fill="rgb(239,221,37)" rx="2" ry="2" />
<text x="880.10" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (312 samples, 0.02%)</title><rect x="886.4" y="1493" width="0.2" height="15.0" fill="rgb(207,54,27)" rx="2" ry="2" />
<text x="889.38" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__encode_4883 (202 samples, 0.01%)</title><rect x="1112.8" y="1349" width="0.1" height="15.0" fill="rgb(213,51,18)" rx="2" ry="2" />
<text x="1115.78" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11980 (5,960 samples, 0.29%)</title><rect x="863.8" y="1381" width="3.4" height="15.0" fill="rgb(235,217,11)" rx="2" ry="2" />
<text x="866.79" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (190 samples, 0.01%)</title><rect x="1034.0" y="1333" width="0.1" height="15.0" fill="rgb(210,97,15)" rx="2" ry="2" />
<text x="1037.00" y="1343.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (289 samples, 0.01%)</title><rect x="1166.5" y="1157" width="0.1" height="15.0" fill="rgb(221,170,13)" rx="2" ry="2" />
<text x="1169.45" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (16,465 samples, 0.80%)</title><rect x="597.9" y="1797" width="9.5" height="15.0" fill="rgb(213,208,35)" rx="2" ry="2" />
<text x="600.91" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (197 samples, 0.01%)</title><rect x="725.0" y="1477" width="0.1" height="15.0" fill="rgb(217,0,15)" rx="2" ry="2" />
<text x="727.97" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="981" width="0.3" height="15.0" fill="rgb(213,122,42)" rx="2" ry="2" />
<text x="1192.37" y="991.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (703,532 samples, 34.29%)</title><rect x="741.1" y="1765" width="404.7" height="15.0" fill="rgb(235,42,33)" rx="2" ry="2" />
<text x="744.11" y="1775.5" >camlLwt__iter_callback_list_848</text>
</g>
<g >
<title>caml_page_table_lookup (491 samples, 0.02%)</title><rect x="960.9" y="1221" width="0.3" height="15.0" fill="rgb(235,113,53)" rx="2" ry="2" />
<text x="963.87" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (828 samples, 0.04%)</title><rect x="1105.7" y="1205" width="0.5" height="15.0" fill="rgb(213,9,1)" rx="2" ry="2" />
<text x="1108.74" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (49,952 samples, 2.43%)</title><rect x="1081.7" y="1365" width="28.7" height="15.0" fill="rgb(230,214,15)" rx="2" ry="2" />
<text x="1084.68" y="1375.5" >ca..</text>
</g>
<g >
<title>caml_blit_bytes (178 samples, 0.01%)</title><rect x="417.6" y="1845" width="0.2" height="15.0" fill="rgb(217,152,46)" rx="2" ry="2" />
<text x="420.65" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (566 samples, 0.03%)</title><rect x="1100.9" y="1285" width="0.3" height="15.0" fill="rgb(229,47,49)" rx="2" ry="2" />
<text x="1103.87" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (190 samples, 0.01%)</title><rect x="994.2" y="1317" width="0.1" height="15.0" fill="rgb(226,181,53)" rx="2" ry="2" />
<text x="997.20" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (24,997 samples, 1.22%)</title><rect x="1083.5" y="1333" width="14.3" height="15.0" fill="rgb(237,173,26)" rx="2" ry="2" />
<text x="1086.46" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (1,566 samples, 0.08%)</title><rect x="960.3" y="1237" width="0.9" height="15.0" fill="rgb(219,93,50)" rx="2" ry="2" />
<text x="963.25" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (467 samples, 0.02%)</title><rect x="416.2" y="1877" width="0.2" height="15.0" fill="rgb(222,8,19)" rx="2" ry="2" />
<text x="419.16" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (406 samples, 0.02%)</title><rect x="1117.2" y="1349" width="0.2" height="15.0" fill="rgb(213,128,37)" rx="2" ry="2" />
<text x="1120.16" y="1359.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,161 samples, 0.06%)</title><rect x="1069.0" y="1269" width="0.7" height="15.0" fill="rgb(246,5,5)" rx="2" ry="2" />
<text x="1072.02" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (362 samples, 0.02%)</title><rect x="831.8" y="1301" width="0.2" height="15.0" fill="rgb(246,89,5)" rx="2" ry="2" />
<text x="834.82" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_one (613 samples, 0.03%)</title><rect x="307.7" y="1813" width="0.3" height="15.0" fill="rgb(222,101,31)" rx="2" ry="2" />
<text x="310.70" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (184 samples, 0.01%)</title><rect x="1158.6" y="1077" width="0.1" height="15.0" fill="rgb(252,40,29)" rx="2" ry="2" />
<text x="1161.61" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (482 samples, 0.02%)</title><rect x="749.3" y="1301" width="0.3" height="15.0" fill="rgb(225,203,41)" rx="2" ry="2" />
<text x="752.30" y="1311.5" ></text>
</g>
<g >
<title>do_compare_val (477 samples, 0.02%)</title><rect x="726.6" y="1365" width="0.3" height="15.0" fill="rgb(225,160,29)" rx="2" ry="2" />
<text x="729.58" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (204 samples, 0.01%)</title><rect x="145.9" y="1829" width="0.1" height="15.0" fill="rgb(241,2,34)" rx="2" ry="2" />
<text x="148.85" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2553 (2,229 samples, 0.11%)</title><rect x="217.3" y="1893" width="1.3" height="15.0" fill="rgb(208,170,27)" rx="2" ry="2" />
<text x="220.33" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1685" width="0.3" height="15.0" fill="rgb(222,90,51)" rx="2" ry="2" />
<text x="1192.37" y="1695.5" ></text>
</g>
<g >
<title>mark_slice_darken (619 samples, 0.03%)</title><rect x="232.9" y="1829" width="0.4" height="15.0" fill="rgb(251,207,31)" rx="2" ry="2" />
<text x="235.95" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (183 samples, 0.01%)</title><rect x="727.1" y="1365" width="0.1" height="15.0" fill="rgb(240,180,36)" rx="2" ry="2" />
<text x="730.14" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (298 samples, 0.01%)</title><rect x="1183.7" y="1205" width="0.1" height="15.0" fill="rgb(249,91,10)" rx="2" ry="2" />
<text x="1186.65" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (286 samples, 0.01%)</title><rect x="773.3" y="1349" width="0.2" height="15.0" fill="rgb(216,81,2)" rx="2" ry="2" />
<text x="776.31" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_459 (322 samples, 0.02%)</title><rect x="1158.0" y="1205" width="0.2" height="15.0" fill="rgb(224,56,44)" rx="2" ry="2" />
<text x="1161.03" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (3,336 samples, 0.16%)</title><rect x="1066.2" y="1301" width="1.9" height="15.0" fill="rgb(219,186,15)" rx="2" ry="2" />
<text x="1069.17" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (208 samples, 0.01%)</title><rect x="1137.9" y="1285" width="0.2" height="15.0" fill="rgb(250,75,5)" rx="2" ry="2" />
<text x="1140.93" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_144 (697 samples, 0.03%)</title><rect x="973.5" y="1317" width="0.4" height="15.0" fill="rgb(206,88,45)" rx="2" ry="2" />
<text x="976.49" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (211 samples, 0.01%)</title><rect x="826.9" y="1381" width="0.1" height="15.0" fill="rgb(205,203,49)" rx="2" ry="2" />
<text x="829.92" y="1391.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (673 samples, 0.03%)</title><rect x="705.8" y="1781" width="0.4" height="15.0" fill="rgb(253,136,33)" rx="2" ry="2" />
<text x="708.80" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (255 samples, 0.01%)</title><rect x="1057.8" y="1253" width="0.1" height="15.0" fill="rgb(221,102,18)" rx="2" ry="2" />
<text x="1060.76" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (421 samples, 0.02%)</title><rect x="925.8" y="1301" width="0.3" height="15.0" fill="rgb(227,159,53)" rx="2" ry="2" />
<text x="928.85" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (288 samples, 0.01%)</title><rect x="728.1" y="1445" width="0.1" height="15.0" fill="rgb(230,83,3)" rx="2" ry="2" />
<text x="731.07" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (8,799 samples, 0.43%)</title><rect x="29.9" y="2005" width="5.1" height="15.0" fill="rgb(208,82,4)" rx="2" ry="2" />
<text x="32.91" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="533" width="0.3" height="15.0" fill="rgb(233,161,13)" rx="2" ry="2" />
<text x="1192.06" y="543.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1637" width="0.3" height="15.0" fill="rgb(235,229,30)" rx="2" ry="2" />
<text x="1191.59" y="1647.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (393 samples, 0.02%)</title><rect x="1188.2" y="1717" width="0.3" height="15.0" fill="rgb(240,88,52)" rx="2" ry="2" />
<text x="1191.25" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (2,410 samples, 0.12%)</title><rect x="935.2" y="1317" width="1.4" height="15.0" fill="rgb(251,103,9)" rx="2" ry="2" />
<text x="938.22" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (186 samples, 0.01%)</title><rect x="879.9" y="1365" width="0.1" height="15.0" fill="rgb(245,224,38)" rx="2" ry="2" />
<text x="882.87" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (216 samples, 0.01%)</title><rect x="727.1" y="1429" width="0.1" height="15.0" fill="rgb(205,125,27)" rx="2" ry="2" />
<text x="730.12" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (10,958 samples, 0.53%)</title><rect x="1123.3" y="1413" width="6.3" height="15.0" fill="rgb(215,164,14)" rx="2" ry="2" />
<text x="1126.32" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,997 samples, 0.10%)</title><rect x="778.9" y="1253" width="1.1" height="15.0" fill="rgb(233,216,35)" rx="2" ry="2" />
<text x="781.87" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4144 (51,372 samples, 2.50%)</title><rect x="776.2" y="1493" width="29.5" height="15.0" fill="rgb(226,127,27)" rx="2" ry="2" />
<text x="779.17" y="1503.5" >ca..</text>
</g>
<g >
<title>camlIndex__mem_1616 (24,275 samples, 1.18%)</title><rect x="807.3" y="1445" width="14.0" height="15.0" fill="rgb(223,146,40)" rx="2" ry="2" />
<text x="810.32" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (196 samples, 0.01%)</title><rect x="825.8" y="1381" width="0.1" height="15.0" fill="rgb(249,135,2)" rx="2" ry="2" />
<text x="828.79" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (56,775 samples, 2.77%)</title><rect x="1078.9" y="1413" width="32.6" height="15.0" fill="rgb(215,43,7)" rx="2" ry="2" />
<text x="1081.88" y="1423.5" >ca..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11922 (4,327 samples, 0.21%)</title><rect x="864.7" y="1365" width="2.5" height="15.0" fill="rgb(205,223,36)" rx="2" ry="2" />
<text x="867.73" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4580 (220 samples, 0.01%)</title><rect x="741.3" y="1525" width="0.1" height="15.0" fill="rgb(227,179,2)" rx="2" ry="2" />
<text x="744.29" y="1535.5" ></text>
</g>
<g >
<title>caml_apply2 (277 samples, 0.01%)</title><rect x="1036.0" y="1333" width="0.2" height="15.0" fill="rgb(248,68,10)" rx="2" ry="2" />
<text x="1039.04" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (287 samples, 0.01%)</title><rect x="618.6" y="1813" width="0.2" height="15.0" fill="rgb(214,34,36)" rx="2" ry="2" />
<text x="621.62" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (175 samples, 0.01%)</title><rect x="962.9" y="1269" width="0.1" height="15.0" fill="rgb(217,60,15)" rx="2" ry="2" />
<text x="965.85" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (230 samples, 0.01%)</title><rect x="895.2" y="1269" width="0.2" height="15.0" fill="rgb(209,132,29)" rx="2" ry="2" />
<text x="898.23" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (4,611 samples, 0.22%)</title><rect x="991.4" y="1381" width="2.7" height="15.0" fill="rgb(244,203,34)" rx="2" ry="2" />
<text x="994.42" y="1391.5" ></text>
</g>
<g >
<title>caml_hash (199 samples, 0.01%)</title><rect x="783.8" y="1253" width="0.1" height="15.0" fill="rgb(239,193,1)" rx="2" ry="2" />
<text x="786.80" y="1263.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (318 samples, 0.02%)</title><rect x="1147.2" y="1269" width="0.2" height="15.0" fill="rgb(208,110,2)" rx="2" ry="2" />
<text x="1150.20" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (174 samples, 0.01%)</title><rect x="830.4" y="1285" width="0.1" height="15.0" fill="rgb(245,209,1)" rx="2" ry="2" />
<text x="833.35" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (432 samples, 0.02%)</title><rect x="972.9" y="1125" width="0.2" height="15.0" fill="rgb(223,69,4)" rx="2" ry="2" />
<text x="975.86" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (8,571 samples, 0.42%)</title><rect x="718.0" y="1525" width="4.9" height="15.0" fill="rgb(235,107,37)" rx="2" ry="2" />
<text x="721.01" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (940 samples, 0.05%)</title><rect x="971.5" y="1173" width="0.5" height="15.0" fill="rgb(209,126,6)" rx="2" ry="2" />
<text x="974.45" y="1183.5" ></text>
</g>
<g >
<title>__GI__setjmp (541 samples, 0.03%)</title><rect x="39.6" y="2021" width="0.3" height="15.0" fill="rgb(250,170,38)" rx="2" ry="2" />
<text x="42.63" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11613 (238 samples, 0.01%)</title><rect x="716.1" y="1493" width="0.2" height="15.0" fill="rgb(224,191,51)" rx="2" ry="2" />
<text x="719.12" y="1503.5" ></text>
</g>
<g >
<title>caml_apply2 (518 samples, 0.03%)</title><rect x="1096.8" y="1301" width="0.3" height="15.0" fill="rgb(226,9,9)" rx="2" ry="2" />
<text x="1099.81" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (291 samples, 0.01%)</title><rect x="828.8" y="1349" width="0.1" height="15.0" fill="rgb(228,99,44)" rx="2" ry="2" />
<text x="831.75" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1861" width="0.3" height="15.0" fill="rgb(227,78,14)" rx="2" ry="2" />
<text x="1192.06" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (451 samples, 0.02%)</title><rect x="818.0" y="1301" width="0.3" height="15.0" fill="rgb(247,99,53)" rx="2" ry="2" />
<text x="821.01" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (248 samples, 0.01%)</title><rect x="785.4" y="1157" width="0.2" height="15.0" fill="rgb(233,198,5)" rx="2" ry="2" />
<text x="788.43" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7383 (441 samples, 0.02%)</title><rect x="772.9" y="1381" width="0.2" height="15.0" fill="rgb(231,197,28)" rx="2" ry="2" />
<text x="775.86" y="1391.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1,051 samples, 0.05%)</title><rect x="1105.6" y="1253" width="0.6" height="15.0" fill="rgb(241,72,35)" rx="2" ry="2" />
<text x="1108.61" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (625 samples, 0.03%)</title><rect x="833.6" y="1301" width="0.4" height="15.0" fill="rgb(216,186,45)" rx="2" ry="2" />
<text x="836.61" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (291 samples, 0.01%)</title><rect x="1079.8" y="1333" width="0.2" height="15.0" fill="rgb(240,213,41)" rx="2" ry="2" />
<text x="1082.81" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (255,738 samples, 12.47%)</title><rect x="741.1" y="1605" width="147.1" height="15.0" fill="rgb(222,179,29)" rx="2" ry="2" />
<text x="744.11" y="1615.5" >camlStdlib__list__..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (184 samples, 0.01%)</title><rect x="1148.8" y="1221" width="0.1" height="15.0" fill="rgb(209,173,50)" rx="2" ry="2" />
<text x="1151.82" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (65,050 samples, 3.17%)</title><rect x="990.9" y="1445" width="37.4" height="15.0" fill="rgb(218,56,17)" rx="2" ry="2" />
<text x="993.86" y="1455.5" >cam..</text>
</g>
<g >
<title>mark_slice_darken (1,091 samples, 0.05%)</title><rect x="145.0" y="1829" width="0.7" height="15.0" fill="rgb(220,148,3)" rx="2" ry="2" />
<text x="148.03" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (658 samples, 0.03%)</title><rect x="1015.3" y="1301" width="0.4" height="15.0" fill="rgb(254,34,35)" rx="2" ry="2" />
<text x="1018.31" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (504 samples, 0.02%)</title><rect x="738.6" y="1541" width="0.3" height="15.0" fill="rgb(205,183,12)" rx="2" ry="2" />
<text x="741.56" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1365" width="0.3" height="15.0" fill="rgb(236,160,5)" rx="2" ry="2" />
<text x="1192.06" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (222 samples, 0.01%)</title><rect x="878.9" y="1381" width="0.2" height="15.0" fill="rgb(219,201,36)" rx="2" ry="2" />
<text x="881.95" y="1391.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (183 samples, 0.01%)</title><rect x="10.2" y="1221" width="0.1" height="15.0" fill="rgb(224,131,34)" rx="2" ry="2" />
<text x="13.24" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (2,343 samples, 0.11%)</title><rect x="196.0" y="1893" width="1.4" height="15.0" fill="rgb(231,155,38)" rx="2" ry="2" />
<text x="199.02" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="277" width="0.3" height="15.0" fill="rgb(207,148,16)" rx="2" ry="2" />
<text x="1192.69" y="287.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1653" width="0.3" height="15.0" fill="rgb(228,130,22)" rx="2" ry="2" />
<text x="1192.69" y="1663.5" ></text>
</g>
<g >
<title>camlStdlib__array__stable_sort_261 (3,109 samples, 0.15%)</title><rect x="710.6" y="1957" width="1.8" height="15.0" fill="rgb(211,62,44)" rx="2" ry="2" />
<text x="713.59" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (256 samples, 0.01%)</title><rect x="1179.8" y="1221" width="0.2" height="15.0" fill="rgb(217,110,50)" rx="2" ry="2" />
<text x="1182.80" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (345 samples, 0.02%)</title><rect x="826.9" y="1397" width="0.2" height="15.0" fill="rgb(254,72,40)" rx="2" ry="2" />
<text x="829.88" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (352 samples, 0.02%)</title><rect x="784.5" y="1221" width="0.2" height="15.0" fill="rgb(224,20,35)" rx="2" ry="2" />
<text x="787.55" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="517" width="0.3" height="15.0" fill="rgb(246,133,50)" rx="2" ry="2" />
<text x="1192.37" y="527.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (31,428 samples, 1.53%)</title><rect x="822.8" y="1477" width="18.0" height="15.0" fill="rgb(220,80,48)" rx="2" ry="2" />
<text x="825.76" y="1487.5" ></text>
</g>
<g >
<title>mark_slice (870 samples, 0.04%)</title><rect x="410.8" y="1845" width="0.5" height="15.0" fill="rgb(236,209,28)" rx="2" ry="2" />
<text x="413.78" y="1855.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (422 samples, 0.02%)</title><rect x="960.6" y="1221" width="0.3" height="15.0" fill="rgb(218,8,45)" rx="2" ry="2" />
<text x="963.63" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (209 samples, 0.01%)</title><rect x="1158.6" y="1141" width="0.1" height="15.0" fill="rgb(238,212,31)" rx="2" ry="2" />
<text x="1161.59" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (4,306 samples, 0.21%)</title><rect x="892.4" y="1301" width="2.5" height="15.0" fill="rgb(222,189,16)" rx="2" ry="2" />
<text x="895.41" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (659 samples, 0.03%)</title><rect x="875.5" y="1349" width="0.4" height="15.0" fill="rgb(239,38,44)" rx="2" ry="2" />
<text x="878.53" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="997" width="0.3" height="15.0" fill="rgb(254,23,18)" rx="2" ry="2" />
<text x="1192.69" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1941" width="0.3" height="15.0" fill="rgb(251,6,7)" rx="2" ry="2" />
<text x="1192.06" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_856 (4,868 samples, 0.24%)</title><rect x="218.6" y="1893" width="2.8" height="15.0" fill="rgb(253,81,27)" rx="2" ry="2" />
<text x="221.61" y="1903.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (190 samples, 0.01%)</title><rect x="1015.6" y="1269" width="0.1" height="15.0" fill="rgb(246,89,26)" rx="2" ry="2" />
<text x="1018.58" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (262 samples, 0.01%)</title><rect x="1152.6" y="1221" width="0.2" height="15.0" fill="rgb(207,220,26)" rx="2" ry="2" />
<text x="1155.60" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,370 samples, 0.07%)</title><rect x="847.9" y="1317" width="0.8" height="15.0" fill="rgb(248,128,45)" rx="2" ry="2" />
<text x="850.93" y="1327.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (5,670 samples, 0.28%)</title><rect x="441.1" y="1877" width="3.2" height="15.0" fill="rgb(236,12,38)" rx="2" ry="2" />
<text x="444.07" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (22,419 samples, 1.09%)</title><rect x="759.0" y="1397" width="12.9" height="15.0" fill="rgb(219,114,19)" rx="2" ry="2" />
<text x="762.04" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7380 (230 samples, 0.01%)</title><rect x="716.1" y="1461" width="0.2" height="15.0" fill="rgb(217,228,49)" rx="2" ry="2" />
<text x="719.12" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (215 samples, 0.01%)</title><rect x="1140.4" y="1413" width="0.1" height="15.0" fill="rgb(210,177,5)" rx="2" ry="2" />
<text x="1143.41" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (453 samples, 0.02%)</title><rect x="1090.5" y="1253" width="0.2" height="15.0" fill="rgb(222,217,1)" rx="2" ry="2" />
<text x="1093.46" y="1263.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (223 samples, 0.01%)</title><rect x="927.7" y="1317" width="0.2" height="15.0" fill="rgb(236,98,43)" rx="2" ry="2" />
<text x="930.73" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (319 samples, 0.02%)</title><rect x="987.3" y="1301" width="0.1" height="15.0" fill="rgb(244,117,40)" rx="2" ry="2" />
<text x="990.25" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_211 (315 samples, 0.02%)</title><rect x="1144.2" y="1445" width="0.2" height="15.0" fill="rgb(216,229,53)" rx="2" ry="2" />
<text x="1147.22" y="1455.5" ></text>
</g>
<g >
<title>camlLayered_bench__add_tree_19604 (1,050 samples, 0.05%)</title><rect x="1187.6" y="1525" width="0.6" height="15.0" fill="rgb(230,45,48)" rx="2" ry="2" />
<text x="1190.62" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (969 samples, 0.05%)</title><rect x="718.9" y="1397" width="0.6" height="15.0" fill="rgb(238,174,32)" rx="2" ry="2" />
<text x="721.91" y="1407.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (472 samples, 0.02%)</title><rect x="1184.5" y="1221" width="0.3" height="15.0" fill="rgb(242,20,6)" rx="2" ry="2" />
<text x="1187.48" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1525" width="0.3" height="15.0" fill="rgb(226,194,4)" rx="2" ry="2" />
<text x="1191.59" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11613 (542 samples, 0.03%)</title><rect x="1145.8" y="1285" width="0.3" height="15.0" fill="rgb(218,162,25)" rx="2" ry="2" />
<text x="1148.84" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (7,516 samples, 0.37%)</title><rect x="962.6" y="1317" width="4.4" height="15.0" fill="rgb(241,225,20)" rx="2" ry="2" />
<text x="965.63" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (950 samples, 0.05%)</title><rect x="923.7" y="1173" width="0.5" height="15.0" fill="rgb(218,175,53)" rx="2" ry="2" />
<text x="926.69" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,684 samples, 0.13%)</title><rect x="545.5" y="1909" width="1.6" height="15.0" fill="rgb(216,122,6)" rx="2" ry="2" />
<text x="548.52" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5663 (1,183 samples, 0.06%)</title><rect x="788.3" y="1333" width="0.7" height="15.0" fill="rgb(230,20,49)" rx="2" ry="2" />
<text x="791.32" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,552 samples, 0.08%)</title><rect x="410.5" y="1877" width="0.9" height="15.0" fill="rgb(246,34,28)" rx="2" ry="2" />
<text x="413.49" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (675 samples, 0.03%)</title><rect x="757.1" y="1413" width="0.4" height="15.0" fill="rgb(214,119,5)" rx="2" ry="2" />
<text x="760.10" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,693 samples, 0.08%)</title><rect x="1059.2" y="1269" width="1.0" height="15.0" fill="rgb(231,179,10)" rx="2" ry="2" />
<text x="1062.19" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (56,324 samples, 2.75%)</title><rect x="1079.1" y="1397" width="32.4" height="15.0" fill="rgb(218,34,14)" rx="2" ry="2" />
<text x="1082.08" y="1407.5" >ca..</text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (216 samples, 0.01%)</title><rect x="999.8" y="1253" width="0.2" height="15.0" fill="rgb(210,13,20)" rx="2" ry="2" />
<text x="1002.84" y="1263.5" ></text>
</g>
<g >
<title>__lseek64 (315 samples, 0.02%)</title><rect x="788.5" y="1269" width="0.2" height="15.0" fill="rgb(220,191,36)" rx="2" ry="2" />
<text x="791.48" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (324 samples, 0.02%)</title><rect x="1189.5" y="165" width="0.2" height="15.0" fill="rgb(239,121,8)" rx="2" ry="2" />
<text x="1192.50" y="175.5" ></text>
</g>
<g >
<title>caml_garbage_collection (197 samples, 0.01%)</title><rect x="1063.9" y="1237" width="0.2" height="15.0" fill="rgb(215,42,22)" rx="2" ry="2" />
<text x="1066.95" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (626 samples, 0.03%)</title><rect x="972.8" y="1205" width="0.3" height="15.0" fill="rgb(205,64,31)" rx="2" ry="2" />
<text x="975.75" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (358 samples, 0.02%)</title><rect x="1023.1" y="1333" width="0.2" height="15.0" fill="rgb(239,221,12)" rx="2" ry="2" />
<text x="1026.09" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (519 samples, 0.03%)</title><rect x="894.2" y="1237" width="0.3" height="15.0" fill="rgb(231,83,17)" rx="2" ry="2" />
<text x="897.20" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (298 samples, 0.01%)</title><rect x="841.8" y="1317" width="0.1" height="15.0" fill="rgb(236,8,20)" rx="2" ry="2" />
<text x="844.77" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (808 samples, 0.04%)</title><rect x="754.4" y="1333" width="0.4" height="15.0" fill="rgb(230,41,6)" rx="2" ry="2" />
<text x="757.38" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1877" width="0.3" height="15.0" fill="rgb(245,167,4)" rx="2" ry="2" />
<text x="1191.59" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="341" width="0.3" height="15.0" fill="rgb(211,11,17)" rx="2" ry="2" />
<text x="1192.06" y="351.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="901" width="0.3" height="15.0" fill="rgb(219,188,9)" rx="2" ry="2" />
<text x="1191.59" y="911.5" ></text>
</g>
<g >
<title>caml_alloc_shr (188 samples, 0.01%)</title><rect x="28.4" y="2005" width="0.1" height="15.0" fill="rgb(254,149,9)" rx="2" ry="2" />
<text x="31.41" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7380 (488 samples, 0.02%)</title><rect x="1145.9" y="1253" width="0.2" height="15.0" fill="rgb(218,106,13)" rx="2" ry="2" />
<text x="1148.87" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (674 samples, 0.03%)</title><rect x="916.8" y="1237" width="0.4" height="15.0" fill="rgb(216,159,13)" rx="2" ry="2" />
<text x="919.82" y="1247.5" ></text>
</g>
<g >
<title>caml_string_equal (412 samples, 0.02%)</title><rect x="807.8" y="1349" width="0.3" height="15.0" fill="rgb(241,122,2)" rx="2" ry="2" />
<text x="810.83" y="1359.5" ></text>
</g>
<g >
<title>caml_curry13_12 (255 samples, 0.01%)</title><rect x="863.1" y="1397" width="0.1" height="15.0" fill="rgb(207,214,35)" rx="2" ry="2" />
<text x="866.05" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_5827 (17,929 samples, 0.87%)</title><rect x="1148.5" y="1333" width="10.3" height="15.0" fill="rgb(243,172,50)" rx="2" ry="2" />
<text x="1151.46" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="693" width="0.2" height="15.0" fill="rgb(222,34,8)" rx="2" ry="2" />
<text x="1191.85" y="703.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (450 samples, 0.02%)</title><rect x="841.3" y="1349" width="0.2" height="15.0" fill="rgb(236,52,49)" rx="2" ry="2" />
<text x="844.28" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (180 samples, 0.01%)</title><rect x="1152.0" y="1237" width="0.1" height="15.0" fill="rgb(212,69,41)" rx="2" ry="2" />
<text x="1155.02" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (26,681 samples, 1.30%)</title><rect x="869.8" y="1461" width="15.3" height="15.0" fill="rgb(248,21,16)" rx="2" ry="2" />
<text x="872.80" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="533" width="0.2" height="15.0" fill="rgb(233,72,21)" rx="2" ry="2" />
<text x="1191.85" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__prim_488 (233 samples, 0.01%)</title><rect x="419.9" y="1893" width="0.1" height="15.0" fill="rgb(219,214,5)" rx="2" ry="2" />
<text x="422.87" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (7,133 samples, 0.35%)</title><rect x="101.6" y="1893" width="4.1" height="15.0" fill="rgb(223,193,13)" rx="2" ry="2" />
<text x="104.60" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__check_and_copy_to_lower_12411 (26,901 samples, 1.31%)</title><rect x="806.9" y="1493" width="15.5" height="15.0" fill="rgb(229,187,18)" rx="2" ry="2" />
<text x="809.95" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (606 samples, 0.03%)</title><rect x="929.0" y="1333" width="0.3" height="15.0" fill="rgb(231,118,7)" rx="2" ry="2" />
<text x="931.96" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (895 samples, 0.04%)</title><rect x="825.0" y="1365" width="0.6" height="15.0" fill="rgb(242,203,14)" rx="2" ry="2" />
<text x="828.05" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,854 samples, 0.09%)</title><rect x="732.5" y="1445" width="1.1" height="15.0" fill="rgb(229,182,8)" rx="2" ry="2" />
<text x="735.52" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (489 samples, 0.02%)</title><rect x="1152.3" y="1221" width="0.3" height="15.0" fill="rgb(225,160,52)" rx="2" ry="2" />
<text x="1155.32" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (14,233 samples, 0.69%)</title><rect x="931.2" y="1381" width="8.2" height="15.0" fill="rgb(251,26,37)" rx="2" ry="2" />
<text x="934.22" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (478 samples, 0.02%)</title><rect x="1189.1" y="165" width="0.3" height="15.0" fill="rgb(247,133,37)" rx="2" ry="2" />
<text x="1192.08" y="175.5" ></text>
</g>
<g >
<title>mark_slice_darken (381 samples, 0.02%)</title><rect x="206.3" y="1829" width="0.2" height="15.0" fill="rgb(253,19,13)" rx="2" ry="2" />
<text x="209.29" y="1839.5" ></text>
</g>
<g >
<title>caml_hash (1,688 samples, 0.08%)</title><rect x="910.0" y="1221" width="0.9" height="15.0" fill="rgb(207,153,31)" rx="2" ry="2" />
<text x="912.96" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (249 samples, 0.01%)</title><rect x="747.3" y="1253" width="0.2" height="15.0" fill="rgb(251,226,12)" rx="2" ry="2" />
<text x="750.33" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (19,957 samples, 0.97%)</title><rect x="843.9" y="1397" width="11.5" height="15.0" fill="rgb(213,221,8)" rx="2" ry="2" />
<text x="846.91" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (214 samples, 0.01%)</title><rect x="1175.5" y="1109" width="0.2" height="15.0" fill="rgb(214,94,33)" rx="2" ry="2" />
<text x="1178.53" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (232 samples, 0.01%)</title><rect x="704.3" y="1829" width="0.1" height="15.0" fill="rgb(215,179,22)" rx="2" ry="2" />
<text x="707.28" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (218 samples, 0.01%)</title><rect x="732.8" y="1349" width="0.1" height="15.0" fill="rgb(208,60,18)" rx="2" ry="2" />
<text x="735.78" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (7,524 samples, 0.37%)</title><rect x="949.1" y="1269" width="4.3" height="15.0" fill="rgb(240,103,13)" rx="2" ry="2" />
<text x="952.08" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5832 (3,991 samples, 0.19%)</title><rect x="1130.3" y="1317" width="2.3" height="15.0" fill="rgb(225,142,19)" rx="2" ry="2" />
<text x="1133.28" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (223 samples, 0.01%)</title><rect x="966.6" y="1269" width="0.1" height="15.0" fill="rgb(238,60,20)" rx="2" ry="2" />
<text x="969.60" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (194 samples, 0.01%)</title><rect x="618.7" y="1765" width="0.1" height="15.0" fill="rgb(238,76,32)" rx="2" ry="2" />
<text x="621.67" y="1775.5" ></text>
</g>
<g >
<title>main (821,302 samples, 40.03%)</title><rect x="716.1" y="2021" width="472.4" height="15.0" fill="rgb(237,40,38)" rx="2" ry="2" />
<text x="719.10" y="2031.5" >main</text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,956 samples, 0.14%)</title><rect x="818.3" y="1349" width="1.7" height="15.0" fill="rgb(208,169,48)" rx="2" ry="2" />
<text x="821.28" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (6,306 samples, 0.31%)</title><rect x="1169.8" y="1237" width="3.6" height="15.0" fill="rgb(215,8,36)" rx="2" ry="2" />
<text x="1172.76" y="1247.5" ></text>
</g>
<g >
<title>unix_lseek_64 (902 samples, 0.04%)</title><rect x="758.4" y="1365" width="0.5" height="15.0" fill="rgb(215,12,11)" rx="2" ry="2" />
<text x="761.42" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13845 (447,253 samples, 21.80%)</title><rect x="888.5" y="1509" width="257.2" height="15.0" fill="rgb(227,91,35)" rx="2" ry="2" />
<text x="891.47" y="1519.5" >camlIrmin_pack__Layered__fun_13845</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1141" width="0.3" height="15.0" fill="rgb(230,219,5)" rx="2" ry="2" />
<text x="1192.69" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (489 samples, 0.02%)</title><rect x="769.6" y="1237" width="0.2" height="15.0" fill="rgb(243,89,8)" rx="2" ry="2" />
<text x="772.56" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (263 samples, 0.01%)</title><rect x="1006.4" y="1189" width="0.1" height="15.0" fill="rgb(232,1,23)" rx="2" ry="2" />
<text x="1009.38" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (518 samples, 0.03%)</title><rect x="1036.3" y="1349" width="0.3" height="15.0" fill="rgb(224,27,20)" rx="2" ry="2" />
<text x="1039.30" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (429 samples, 0.02%)</title><rect x="837.5" y="1285" width="0.3" height="15.0" fill="rgb(248,95,32)" rx="2" ry="2" />
<text x="840.50" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (245 samples, 0.01%)</title><rect x="898.5" y="1237" width="0.1" height="15.0" fill="rgb(213,186,35)" rx="2" ry="2" />
<text x="901.48" y="1247.5" ></text>
</g>
<g >
<title>futex_wake (1,012 samples, 0.05%)</title><rect x="1070.1" y="1253" width="0.6" height="15.0" fill="rgb(219,190,39)" rx="2" ry="2" />
<text x="1073.09" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (179 samples, 0.01%)</title><rect x="863.4" y="1413" width="0.1" height="15.0" fill="rgb(225,51,18)" rx="2" ry="2" />
<text x="866.41" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (210 samples, 0.01%)</title><rect x="1166.5" y="1109" width="0.1" height="15.0" fill="rgb(243,21,49)" rx="2" ry="2" />
<text x="1169.50" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,095 samples, 0.05%)</title><rect x="1099.3" y="1301" width="0.6" height="15.0" fill="rgb(225,144,31)" rx="2" ry="2" />
<text x="1102.27" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (241 samples, 0.01%)</title><rect x="877.9" y="1317" width="0.2" height="15.0" fill="rgb(223,55,50)" rx="2" ry="2" />
<text x="880.93" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (376 samples, 0.02%)</title><rect x="796.3" y="1269" width="0.3" height="15.0" fill="rgb(254,28,45)" rx="2" ry="2" />
<text x="799.35" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (940 samples, 0.05%)</title><rect x="412.3" y="1877" width="0.6" height="15.0" fill="rgb(234,92,43)" rx="2" ry="2" />
<text x="415.34" y="1887.5" ></text>
</g>
<g >
<title>_pthread_cleanup_pop (197 samples, 0.01%)</title><rect x="675.7" y="1877" width="0.1" height="15.0" fill="rgb(245,1,43)" rx="2" ry="2" />
<text x="678.66" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1845" width="0.2" height="15.0" fill="rgb(238,83,38)" rx="2" ry="2" />
<text x="1191.85" y="1855.5" ></text>
</g>
<g >
<title>futex_wake (434 samples, 0.02%)</title><rect x="838.6" y="1285" width="0.2" height="15.0" fill="rgb(254,172,33)" rx="2" ry="2" />
<text x="841.58" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,257 samples, 21.80%)</title><rect x="888.5" y="1573" width="257.2" height="15.0" fill="rgb(222,176,25)" rx="2" ry="2" />
<text x="891.47" y="1583.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1221" width="0.3" height="15.0" fill="rgb(248,125,17)" rx="2" ry="2" />
<text x="1191.59" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (405 samples, 0.02%)</title><rect x="908.6" y="1205" width="0.3" height="15.0" fill="rgb(235,204,7)" rx="2" ry="2" />
<text x="911.62" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_mem_7404 (665 samples, 0.03%)</title><rect x="1147.7" y="1317" width="0.4" height="15.0" fill="rgb(230,170,15)" rx="2" ry="2" />
<text x="1150.67" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12031 (2,007 samples, 0.10%)</title><rect x="787.9" y="1381" width="1.1" height="15.0" fill="rgb(225,12,29)" rx="2" ry="2" />
<text x="790.89" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (6,921 samples, 0.34%)</title><rect x="969.3" y="1285" width="4.0" height="15.0" fill="rgb(253,203,34)" rx="2" ry="2" />
<text x="972.29" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="581" width="0.3" height="15.0" fill="rgb(220,56,31)" rx="2" ry="2" />
<text x="1192.06" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,049 samples, 0.10%)</title><rect x="729.8" y="1413" width="1.1" height="15.0" fill="rgb(221,151,44)" rx="2" ry="2" />
<text x="732.76" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (301 samples, 0.01%)</title><rect x="910.9" y="1237" width="0.2" height="15.0" fill="rgb(233,195,37)" rx="2" ry="2" />
<text x="913.93" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1733" width="0.3" height="15.0" fill="rgb(248,16,48)" rx="2" ry="2" />
<text x="1192.69" y="1743.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (567 samples, 0.03%)</title><rect x="1071.4" y="1237" width="0.3" height="15.0" fill="rgb(228,167,36)" rx="2" ry="2" />
<text x="1074.38" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__do_bucket_578 (3,119 samples, 0.15%)</title><rect x="714.0" y="1941" width="1.8" height="15.0" fill="rgb(235,124,34)" rx="2" ry="2" />
<text x="717.02" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (5,698 samples, 0.28%)</title><rect x="787.8" y="1397" width="3.3" height="15.0" fill="rgb(224,198,29)" rx="2" ry="2" />
<text x="790.84" y="1407.5" ></text>
</g>
<g >
<title>futex_wake (1,110 samples, 0.05%)</title><rect x="971.4" y="1237" width="0.6" height="15.0" fill="rgb(231,48,4)" rx="2" ry="2" />
<text x="974.36" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="613" width="0.2" height="15.0" fill="rgb(214,101,25)" rx="2" ry="2" />
<text x="1191.85" y="623.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1205" width="0.3" height="15.0" fill="rgb(233,70,54)" rx="2" ry="2" />
<text x="1192.06" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,257 samples, 0.06%)</title><rect x="403.1" y="1893" width="0.8" height="15.0" fill="rgb(235,105,6)" rx="2" ry="2" />
<text x="406.15" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (51,779 samples, 2.52%)</title><rect x="1081.3" y="1381" width="29.8" height="15.0" fill="rgb(236,134,21)" rx="2" ry="2" />
<text x="1084.28" y="1391.5" >ca..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (766 samples, 0.04%)</title><rect x="735.3" y="1429" width="0.4" height="15.0" fill="rgb(230,140,10)" rx="2" ry="2" />
<text x="738.29" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,613 samples, 0.57%)</title><rect x="15.9" y="1989" width="6.7" height="15.0" fill="rgb(213,90,10)" rx="2" ry="2" />
<text x="18.88" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (428 samples, 0.02%)</title><rect x="807.8" y="1365" width="0.3" height="15.0" fill="rgb(241,201,44)" rx="2" ry="2" />
<text x="810.83" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (265 samples, 0.01%)</title><rect x="975.5" y="1301" width="0.2" height="15.0" fill="rgb(222,27,16)" rx="2" ry="2" />
<text x="978.53" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11974 (634 samples, 0.03%)</title><rect x="1157.3" y="1237" width="0.4" height="15.0" fill="rgb(225,59,29)" rx="2" ry="2" />
<text x="1160.31" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (771 samples, 0.04%)</title><rect x="847.1" y="1317" width="0.5" height="15.0" fill="rgb(235,178,37)" rx="2" ry="2" />
<text x="850.14" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (216 samples, 0.01%)</title><rect x="1156.8" y="1269" width="0.1" height="15.0" fill="rgb(252,52,46)" rx="2" ry="2" />
<text x="1159.80" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (318 samples, 0.02%)</title><rect x="821.9" y="1397" width="0.2" height="15.0" fill="rgb(248,85,11)" rx="2" ry="2" />
<text x="824.87" y="1407.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,175 samples, 0.06%)</title><rect x="1067.4" y="1269" width="0.7" height="15.0" fill="rgb(230,221,19)" rx="2" ry="2" />
<text x="1070.41" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="805" width="0.3" height="15.0" fill="rgb(207,50,48)" rx="2" ry="2" />
<text x="1192.69" y="815.5" ></text>
</g>
<g >
<title>caml_apply2 (202 samples, 0.01%)</title><rect x="863.4" y="1429" width="0.1" height="15.0" fill="rgb(229,164,53)" rx="2" ry="2" />
<text x="866.39" y="1439.5" ></text>
</g>
<g >
<title>caml_alloc_string (267 samples, 0.01%)</title><rect x="951.8" y="1221" width="0.2" height="15.0" fill="rgb(238,18,53)" rx="2" ry="2" />
<text x="954.81" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,264 samples, 0.06%)</title><rect x="837.0" y="1333" width="0.8" height="15.0" fill="rgb(229,63,36)" rx="2" ry="2" />
<text x="840.03" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_456 (569 samples, 0.03%)</title><rect x="1136.2" y="1285" width="0.3" height="15.0" fill="rgb(234,58,31)" rx="2" ry="2" />
<text x="1139.18" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (539 samples, 0.03%)</title><rect x="718.1" y="1461" width="0.3" height="15.0" fill="rgb(244,17,35)" rx="2" ry="2" />
<text x="721.07" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (254 samples, 0.01%)</title><rect x="1183.7" y="1157" width="0.1" height="15.0" fill="rgb(225,119,40)" rx="2" ry="2" />
<text x="1186.68" y="1167.5" ></text>
</g>
<g >
<title>caml_pread (1,337 samples, 0.07%)</title><rect x="1017.9" y="1301" width="0.8" height="15.0" fill="rgb(240,91,45)" rx="2" ry="2" />
<text x="1020.94" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (619 samples, 0.03%)</title><rect x="716.7" y="1493" width="0.4" height="15.0" fill="rgb(236,85,5)" rx="2" ry="2" />
<text x="719.72" y="1503.5" ></text>
</g>
<g >
<title>caml_apply2 (714 samples, 0.03%)</title><rect x="707.7" y="1861" width="0.5" height="15.0" fill="rgb(212,64,54)" rx="2" ry="2" />
<text x="710.74" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (383 samples, 0.02%)</title><rect x="802.8" y="1189" width="0.2" height="15.0" fill="rgb(205,15,30)" rx="2" ry="2" />
<text x="805.78" y="1199.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (174 samples, 0.01%)</title><rect x="834.5" y="1269" width="0.1" height="15.0" fill="rgb(205,81,25)" rx="2" ry="2" />
<text x="837.48" y="1279.5" ></text>
</g>
<g >
<title>camlCmdliner__run_389 (821,291 samples, 40.03%)</title><rect x="716.1" y="1877" width="472.4" height="15.0" fill="rgb(219,94,10)" rx="2" ry="2" />
<text x="719.10" y="1887.5" >camlCmdliner__run_389</text>
</g>
<g >
<title>camlLwt__try_bind_1412 (15,694 samples, 0.76%)</title><rect x="1159.3" y="1349" width="9.0" height="15.0" fill="rgb(236,209,1)" rx="2" ry="2" />
<text x="1162.31" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (737 samples, 0.04%)</title><rect x="163.9" y="1813" width="0.4" height="15.0" fill="rgb(240,113,4)" rx="2" ry="2" />
<text x="166.93" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (174 samples, 0.01%)</title><rect x="1063.5" y="1269" width="0.1" height="15.0" fill="rgb(208,229,19)" rx="2" ry="2" />
<text x="1066.46" y="1279.5" ></text>
</g>
<g >
<title>__lseek64 (256 samples, 0.01%)</title><rect x="1042.5" y="1333" width="0.1" height="15.0" fill="rgb(229,221,37)" rx="2" ry="2" />
<text x="1045.45" y="1343.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (372 samples, 0.02%)</title><rect x="785.1" y="1253" width="0.2" height="15.0" fill="rgb(243,90,45)" rx="2" ry="2" />
<text x="788.07" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (253 samples, 0.01%)</title><rect x="885.6" y="1413" width="0.1" height="15.0" fill="rgb(236,26,22)" rx="2" ry="2" />
<text x="888.58" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (207 samples, 0.01%)</title><rect x="1147.7" y="1269" width="0.1" height="15.0" fill="rgb(226,10,51)" rx="2" ry="2" />
<text x="1150.68" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (372 samples, 0.02%)</title><rect x="788.1" y="1301" width="0.2" height="15.0" fill="rgb(226,138,15)" rx="2" ry="2" />
<text x="791.06" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (356 samples, 0.02%)</title><rect x="769.0" y="1189" width="0.2" height="15.0" fill="rgb(226,189,1)" rx="2" ry="2" />
<text x="771.97" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (526 samples, 0.03%)</title><rect x="668.8" y="1813" width="0.3" height="15.0" fill="rgb(253,191,34)" rx="2" ry="2" />
<text x="671.81" y="1823.5" ></text>
</g>
<g >
<title>mark_slice (181 samples, 0.01%)</title><rect x="1140.4" y="1397" width="0.1" height="15.0" fill="rgb(214,204,39)" rx="2" ry="2" />
<text x="1143.41" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1493" width="0.3" height="15.0" fill="rgb(233,223,21)" rx="2" ry="2" />
<text x="1192.37" y="1503.5" ></text>
</g>
<g >
<title>caml_apply2 (223 samples, 0.01%)</title><rect x="847.5" y="1301" width="0.1" height="15.0" fill="rgb(232,228,14)" rx="2" ry="2" />
<text x="850.45" y="1311.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (186 samples, 0.01%)</title><rect x="1188.6" y="165" width="0.1" height="15.0" fill="rgb(243,2,46)" rx="2" ry="2" />
<text x="1191.60" y="175.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (13,797 samples, 0.67%)</title><rect x="377.3" y="1877" width="8.0" height="15.0" fill="rgb(216,195,21)" rx="2" ry="2" />
<text x="380.35" y="1887.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (540 samples, 0.03%)</title><rect x="711.5" y="1925" width="0.3" height="15.0" fill="rgb(231,185,12)" rx="2" ry="2" />
<text x="714.53" y="1935.5" ></text>
</g>
<g >
<title>futex_wake (252 samples, 0.01%)</title><rect x="35.6" y="1989" width="0.1" height="15.0" fill="rgb(244,119,21)" rx="2" ry="2" />
<text x="38.58" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (588 samples, 0.03%)</title><rect x="1091.0" y="1269" width="0.4" height="15.0" fill="rgb(231,165,41)" rx="2" ry="2" />
<text x="1094.01" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (206 samples, 0.01%)</title><rect x="840.6" y="1397" width="0.1" height="15.0" fill="rgb(225,22,1)" rx="2" ry="2" />
<text x="843.61" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (425 samples, 0.02%)</title><rect x="853.4" y="1253" width="0.2" height="15.0" fill="rgb(247,173,18)" rx="2" ry="2" />
<text x="856.40" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,004 samples, 0.20%)</title><rect x="673.4" y="1813" width="2.3" height="15.0" fill="rgb(223,199,20)" rx="2" ry="2" />
<text x="676.36" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1605" width="0.3" height="15.0" fill="rgb(221,218,20)" rx="2" ry="2" />
<text x="1191.59" y="1615.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (416 samples, 0.02%)</title><rect x="850.1" y="1349" width="0.2" height="15.0" fill="rgb(238,180,34)" rx="2" ry="2" />
<text x="853.10" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (407 samples, 0.02%)</title><rect x="969.1" y="1141" width="0.2" height="15.0" fill="rgb(247,191,47)" rx="2" ry="2" />
<text x="972.05" y="1151.5" ></text>
</g>
<g >
<title>do_compaction (480 samples, 0.02%)</title><rect x="545.5" y="1877" width="0.3" height="15.0" fill="rgb(244,30,14)" rx="2" ry="2" />
<text x="548.52" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (458 samples, 0.02%)</title><rect x="1012.8" y="1285" width="0.2" height="15.0" fill="rgb(217,32,38)" rx="2" ry="2" />
<text x="1015.78" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (373 samples, 0.02%)</title><rect x="308.2" y="1797" width="0.2" height="15.0" fill="rgb(244,110,31)" rx="2" ry="2" />
<text x="311.23" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="597" width="0.3" height="15.0" fill="rgb(253,78,40)" rx="2" ry="2" />
<text x="1192.69" y="607.5" ></text>
</g>
<g >
<title>__condvar_release_lock (376 samples, 0.02%)</title><rect x="35.4" y="1989" width="0.2" height="15.0" fill="rgb(248,91,42)" rx="2" ry="2" />
<text x="38.36" y="1999.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,700 samples, 0.13%)</title><rect x="799.8" y="1317" width="1.6" height="15.0" fill="rgb(239,103,44)" rx="2" ry="2" />
<text x="802.83" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7397 (16,017 samples, 0.78%)</title><rect x="1159.1" y="1365" width="9.2" height="15.0" fill="rgb(221,84,16)" rx="2" ry="2" />
<text x="1162.13" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (1,521 samples, 0.07%)</title><rect x="926.7" y="1317" width="0.9" height="15.0" fill="rgb(207,175,52)" rx="2" ry="2" />
<text x="929.70" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (393 samples, 0.02%)</title><rect x="38.2" y="2021" width="0.2" height="15.0" fill="rgb(223,195,52)" rx="2" ry="2" />
<text x="41.17" y="2031.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (260 samples, 0.01%)</title><rect x="1126.9" y="1301" width="0.1" height="15.0" fill="rgb(206,143,39)" rx="2" ry="2" />
<text x="1129.89" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,789 samples, 1.01%)</title><rect x="681.0" y="1829" width="11.9" height="15.0" fill="rgb(222,115,23)" rx="2" ry="2" />
<text x="683.99" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (695 samples, 0.03%)</title><rect x="238.6" y="1877" width="0.4" height="15.0" fill="rgb(245,51,7)" rx="2" ry="2" />
<text x="241.63" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (481 samples, 0.02%)</title><rect x="1080.5" y="1285" width="0.3" height="15.0" fill="rgb(215,78,20)" rx="2" ry="2" />
<text x="1083.53" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (613 samples, 0.03%)</title><rect x="705.2" y="1813" width="0.4" height="15.0" fill="rgb(236,192,24)" rx="2" ry="2" />
<text x="708.25" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5768 (5,372 samples, 0.26%)</title><rect x="1040.8" y="1397" width="3.1" height="15.0" fill="rgb(251,215,45)" rx="2" ry="2" />
<text x="1043.79" y="1407.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (444 samples, 0.02%)</title><rect x="1008.9" y="1253" width="0.3" height="15.0" fill="rgb(206,168,44)" rx="2" ry="2" />
<text x="1011.94" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="261" width="0.3" height="15.0" fill="rgb(212,111,41)" rx="2" ry="2" />
<text x="1192.06" y="271.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (434 samples, 0.02%)</title><rect x="1093.4" y="1221" width="0.3" height="15.0" fill="rgb(208,137,31)" rx="2" ry="2" />
<text x="1096.41" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (26,857 samples, 1.31%)</title><rect x="869.7" y="1477" width="15.5" height="15.0" fill="rgb(244,69,32)" rx="2" ry="2" />
<text x="872.72" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1525" width="0.3" height="15.0" fill="rgb(213,136,31)" rx="2" ry="2" />
<text x="1192.69" y="1535.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (202 samples, 0.01%)</title><rect x="100.3" y="1845" width="0.1" height="15.0" fill="rgb(209,116,34)" rx="2" ry="2" />
<text x="103.28" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,613 samples, 0.13%)</title><rect x="794.7" y="1269" width="1.5" height="15.0" fill="rgb(238,9,10)" rx="2" ry="2" />
<text x="797.70" y="1279.5" ></text>
</g>
<g >
<title>__libc_pread64 (187 samples, 0.01%)</title><rect x="721.8" y="1397" width="0.2" height="15.0" fill="rgb(241,147,24)" rx="2" ry="2" />
<text x="724.85" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="2021" width="0.2" height="15.0" fill="rgb(205,220,11)" rx="2" ry="2" />
<text x="1191.85" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (2,743 samples, 0.13%)</title><rect x="1034.1" y="1333" width="1.6" height="15.0" fill="rgb(247,112,29)" rx="2" ry="2" />
<text x="1037.11" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (197 samples, 0.01%)</title><rect x="799.3" y="1269" width="0.1" height="15.0" fill="rgb(218,90,19)" rx="2" ry="2" />
<text x="802.32" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="293" width="0.3" height="15.0" fill="rgb(239,222,37)" rx="2" ry="2" />
<text x="1192.37" y="303.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,975 samples, 0.10%)</title><rect x="714.3" y="1893" width="1.1" height="15.0" fill="rgb(230,139,23)" rx="2" ry="2" />
<text x="717.28" y="1903.5" ></text>
</g>
<g >
<title>caml_hash (189 samples, 0.01%)</title><rect x="1081.4" y="1317" width="0.1" height="15.0" fill="rgb(249,162,29)" rx="2" ry="2" />
<text x="1084.44" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (784 samples, 0.04%)</title><rect x="1146.7" y="1285" width="0.5" height="15.0" fill="rgb(211,90,38)" rx="2" ry="2" />
<text x="1149.72" y="1295.5" ></text>
</g>
<g >
<title>caml_blit_bytes (243 samples, 0.01%)</title><rect x="1133.9" y="1285" width="0.2" height="15.0" fill="rgb(249,160,24)" rx="2" ry="2" />
<text x="1136.92" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (292 samples, 0.01%)</title><rect x="867.4" y="1141" width="0.2" height="15.0" fill="rgb(233,135,5)" rx="2" ry="2" />
<text x="870.40" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7365 (50,309 samples, 2.45%)</title><rect x="776.3" y="1461" width="29.0" height="15.0" fill="rgb(249,195,26)" rx="2" ry="2" />
<text x="779.31" y="1471.5" >ca..</text>
</g>
<g >
<title>camlIndex__append_entry_fanout_1626 (482 samples, 0.02%)</title><rect x="414.8" y="1925" width="0.3" height="15.0" fill="rgb(248,23,48)" rx="2" ry="2" />
<text x="417.82" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (410 samples, 0.02%)</title><rect x="1053.5" y="1253" width="0.3" height="15.0" fill="rgb(232,74,2)" rx="2" ry="2" />
<text x="1056.52" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (528 samples, 0.03%)</title><rect x="1089.3" y="1285" width="0.3" height="15.0" fill="rgb(232,13,50)" rx="2" ry="2" />
<text x="1092.32" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (196 samples, 0.01%)</title><rect x="793.4" y="1333" width="0.1" height="15.0" fill="rgb(207,117,34)" rx="2" ry="2" />
<text x="796.36" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,429 samples, 0.07%)</title><rect x="1099.2" y="1317" width="0.8" height="15.0" fill="rgb(223,97,6)" rx="2" ry="2" />
<text x="1102.17" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (213 samples, 0.01%)</title><rect x="720.6" y="1381" width="0.1" height="15.0" fill="rgb(225,185,6)" rx="2" ry="2" />
<text x="723.60" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12006 (1,246 samples, 0.06%)</title><rect x="823.1" y="1365" width="0.8" height="15.0" fill="rgb(235,20,28)" rx="2" ry="2" />
<text x="826.14" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (14,011 samples, 0.68%)</title><rect x="253.7" y="1877" width="8.0" height="15.0" fill="rgb(217,203,54)" rx="2" ry="2" />
<text x="256.68" y="1887.5" ></text>
</g>
<g >
<title>__lseek64 (885 samples, 0.04%)</title><rect x="22.9" y="2037" width="0.5" height="15.0" fill="rgb(234,69,17)" rx="2" ry="2" />
<text x="25.93" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (248 samples, 0.01%)</title><rect x="847.7" y="1301" width="0.1" height="15.0" fill="rgb(219,202,13)" rx="2" ry="2" />
<text x="850.68" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,011 samples, 0.05%)</title><rect x="1070.1" y="1237" width="0.6" height="15.0" fill="rgb(229,196,12)" rx="2" ry="2" />
<text x="1073.09" y="1247.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (682 samples, 0.03%)</title><rect x="838.8" y="1285" width="0.4" height="15.0" fill="rgb(238,1,39)" rx="2" ry="2" />
<text x="841.83" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1509" width="0.3" height="15.0" fill="rgb(236,156,3)" rx="2" ry="2" />
<text x="1192.69" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (185 samples, 0.01%)</title><rect x="887.6" y="1493" width="0.1" height="15.0" fill="rgb(213,125,47)" rx="2" ry="2" />
<text x="890.64" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (418 samples, 0.02%)</title><rect x="1023.4" y="1349" width="0.2" height="15.0" fill="rgb(250,9,40)" rx="2" ry="2" />
<text x="1026.38" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__fun_728 (320 samples, 0.02%)</title><rect x="419.5" y="1893" width="0.2" height="15.0" fill="rgb(254,221,15)" rx="2" ry="2" />
<text x="422.52" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1500 (381 samples, 0.02%)</title><rect x="1124.2" y="1397" width="0.2" height="15.0" fill="rgb(244,185,47)" rx="2" ry="2" />
<text x="1127.16" y="1407.5" ></text>
</g>
<g >
<title>camlCmdliner__term_eval_601 (600 samples, 0.03%)</title><rect x="10.1" y="1893" width="0.3" height="15.0" fill="rgb(223,93,22)" rx="2" ry="2" />
<text x="13.06" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (616 samples, 0.03%)</title><rect x="1100.8" y="1301" width="0.4" height="15.0" fill="rgb(246,213,35)" rx="2" ry="2" />
<text x="1103.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (1,757 samples, 0.09%)</title><rect x="1026.0" y="1397" width="1.0" height="15.0" fill="rgb(218,36,19)" rx="2" ry="2" />
<text x="1028.99" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (314 samples, 0.02%)</title><rect x="1045.0" y="1285" width="0.2" height="15.0" fill="rgb(240,150,9)" rx="2" ry="2" />
<text x="1048.01" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (378 samples, 0.02%)</title><rect x="1164.7" y="1221" width="0.2" height="15.0" fill="rgb(240,109,46)" rx="2" ry="2" />
<text x="1167.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (390 samples, 0.02%)</title><rect x="874.2" y="1333" width="0.2" height="15.0" fill="rgb(253,195,36)" rx="2" ry="2" />
<text x="877.15" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (261 samples, 0.01%)</title><rect x="1166.1" y="1141" width="0.1" height="15.0" fill="rgb(250,35,40)" rx="2" ry="2" />
<text x="1169.06" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (237 samples, 0.01%)</title><rect x="780.2" y="1253" width="0.1" height="15.0" fill="rgb(225,91,29)" rx="2" ry="2" />
<text x="783.16" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (625 samples, 0.03%)</title><rect x="1150.9" y="1189" width="0.3" height="15.0" fill="rgb(245,186,34)" rx="2" ry="2" />
<text x="1153.87" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (234 samples, 0.01%)</title><rect x="812.0" y="1317" width="0.1" height="15.0" fill="rgb(237,152,3)" rx="2" ry="2" />
<text x="814.96" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (456 samples, 0.02%)</title><rect x="1181.6" y="1205" width="0.3" height="15.0" fill="rgb(223,26,3)" rx="2" ry="2" />
<text x="1184.60" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (178 samples, 0.01%)</title><rect x="1051.1" y="1237" width="0.1" height="15.0" fill="rgb(253,228,48)" rx="2" ry="2" />
<text x="1054.10" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (1,287 samples, 0.06%)</title><rect x="389.6" y="1845" width="0.7" height="15.0" fill="rgb(223,79,50)" rx="2" ry="2" />
<text x="392.59" y="1855.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (248 samples, 0.01%)</title><rect x="338.1" y="1861" width="0.2" height="15.0" fill="rgb(240,64,27)" rx="2" ry="2" />
<text x="341.15" y="1871.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (218 samples, 0.01%)</title><rect x="412.2" y="1877" width="0.1" height="15.0" fill="rgb(250,180,49)" rx="2" ry="2" />
<text x="415.21" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="309" width="0.3" height="15.0" fill="rgb(222,113,34)" rx="2" ry="2" />
<text x="1192.69" y="319.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (304 samples, 0.01%)</title><rect x="808.6" y="1397" width="0.2" height="15.0" fill="rgb(239,99,22)" rx="2" ry="2" />
<text x="811.63" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="565" width="0.3" height="15.0" fill="rgb(245,154,12)" rx="2" ry="2" />
<text x="1192.37" y="575.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1301" width="0.3" height="15.0" fill="rgb(249,105,28)" rx="2" ry="2" />
<text x="1191.59" y="1311.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (580 samples, 0.03%)</title><rect x="1032.3" y="1269" width="0.4" height="15.0" fill="rgb(247,47,45)" rx="2" ry="2" />
<text x="1035.33" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (481 samples, 0.02%)</title><rect x="799.9" y="1285" width="0.3" height="15.0" fill="rgb(217,80,39)" rx="2" ry="2" />
<text x="802.92" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (449 samples, 0.02%)</title><rect x="1055.4" y="1237" width="0.2" height="15.0" fill="rgb(221,12,24)" rx="2" ry="2" />
<text x="1058.37" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (194 samples, 0.01%)</title><rect x="1057.4" y="1205" width="0.2" height="15.0" fill="rgb(219,36,40)" rx="2" ry="2" />
<text x="1060.44" y="1215.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (339 samples, 0.02%)</title><rect x="36.1" y="1989" width="0.2" height="15.0" fill="rgb(251,127,21)" rx="2" ry="2" />
<text x="39.15" y="1999.5" ></text>
</g>
<g >
<title>camlDigestif__fun_6269 (325 samples, 0.02%)</title><rect x="1147.2" y="1301" width="0.2" height="15.0" fill="rgb(239,176,54)" rx="2" ry="2" />
<text x="1150.20" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (10,039 samples, 0.49%)</title><rect x="760.6" y="1333" width="5.8" height="15.0" fill="rgb(229,106,52)" rx="2" ry="2" />
<text x="763.59" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_string (227 samples, 0.01%)</title><rect x="704.1" y="1813" width="0.2" height="15.0" fill="rgb(205,83,29)" rx="2" ry="2" />
<text x="707.12" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="677" width="0.2" height="15.0" fill="rgb(213,206,9)" rx="2" ry="2" />
<text x="1191.85" y="687.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_203 (341 samples, 0.02%)</title><rect x="1073.7" y="1333" width="0.2" height="15.0" fill="rgb(248,199,14)" rx="2" ry="2" />
<text x="1076.68" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__fun_3645 (2,586 samples, 0.13%)</title><rect x="708.9" y="1893" width="1.5" height="15.0" fill="rgb(223,93,0)" rx="2" ry="2" />
<text x="711.91" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (361 samples, 0.02%)</title><rect x="1091.4" y="1253" width="0.2" height="15.0" fill="rgb(207,204,26)" rx="2" ry="2" />
<text x="1094.43" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,034 samples, 0.05%)</title><rect x="1105.6" y="1237" width="0.6" height="15.0" fill="rgb(246,177,6)" rx="2" ry="2" />
<text x="1108.62" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (3,413 samples, 0.17%)</title><rect x="872.6" y="1365" width="1.9" height="15.0" fill="rgb(224,182,5)" rx="2" ry="2" />
<text x="875.58" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (290 samples, 0.01%)</title><rect x="927.3" y="1285" width="0.2" height="15.0" fill="rgb(253,215,42)" rx="2" ry="2" />
<text x="930.32" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (754 samples, 0.04%)</title><rect x="770.2" y="1269" width="0.5" height="15.0" fill="rgb(253,89,46)" rx="2" ry="2" />
<text x="773.23" y="1279.5" ></text>
</g>
<g >
<title>memmove (2,000 samples, 0.10%)</title><rect x="447.0" y="1893" width="1.1" height="15.0" fill="rgb(233,183,22)" rx="2" ry="2" />
<text x="449.99" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="501" width="0.3" height="15.0" fill="rgb(254,33,4)" rx="2" ry="2" />
<text x="1192.69" y="511.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (456 samples, 0.02%)</title><rect x="913.0" y="1253" width="0.3" height="15.0" fill="rgb(218,68,41)" rx="2" ry="2" />
<text x="916.03" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (226 samples, 0.01%)</title><rect x="1125.3" y="1397" width="0.2" height="15.0" fill="rgb(243,150,13)" rx="2" ry="2" />
<text x="1128.33" y="1407.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (191 samples, 0.01%)</title><rect x="1111.4" y="1381" width="0.1" height="15.0" fill="rgb(219,137,7)" rx="2" ry="2" />
<text x="1114.36" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (19,062 samples, 0.93%)</title><rect x="793.5" y="1349" width="11.0" height="15.0" fill="rgb(252,132,50)" rx="2" ry="2" />
<text x="796.50" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (27,870 samples, 1.36%)</title><rect x="181.3" y="1909" width="16.1" height="15.0" fill="rgb(254,159,34)" rx="2" ry="2" />
<text x="184.34" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (318 samples, 0.02%)</title><rect x="806.4" y="1349" width="0.2" height="15.0" fill="rgb(252,196,35)" rx="2" ry="2" />
<text x="809.40" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (246 samples, 0.01%)</title><rect x="708.2" y="1829" width="0.1" height="15.0" fill="rgb(217,94,1)" rx="2" ry="2" />
<text x="711.16" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (234 samples, 0.01%)</title><rect x="978.6" y="1461" width="0.2" height="15.0" fill="rgb(239,163,23)" rx="2" ry="2" />
<text x="981.63" y="1471.5" ></text>
</g>
<g >
<title>caml_apply2 (181 samples, 0.01%)</title><rect x="1014.9" y="1285" width="0.1" height="15.0" fill="rgb(245,30,6)" rx="2" ry="2" />
<text x="1017.87" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (224 samples, 0.01%)</title><rect x="1147.7" y="1285" width="0.1" height="15.0" fill="rgb(246,149,34)" rx="2" ry="2" />
<text x="1150.67" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (208 samples, 0.01%)</title><rect x="738.6" y="1509" width="0.1" height="15.0" fill="rgb(206,53,45)" rx="2" ry="2" />
<text x="741.59" y="1519.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (1,754 samples, 0.09%)</title><rect x="772.6" y="1509" width="1.0" height="15.0" fill="rgb(237,188,46)" rx="2" ry="2" />
<text x="775.63" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (184 samples, 0.01%)</title><rect x="831.5" y="1269" width="0.1" height="15.0" fill="rgb(221,200,48)" rx="2" ry="2" />
<text x="834.53" y="1279.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_471 (2,556 samples, 0.12%)</title><rect x="98.8" y="1893" width="1.5" height="15.0" fill="rgb(227,147,27)" rx="2" ry="2" />
<text x="101.80" y="1903.5" ></text>
</g>
<g >
<title>caml_garbage_collection (11,165 samples, 0.54%)</title><rect x="306.8" y="1861" width="6.4" height="15.0" fill="rgb(240,97,18)" rx="2" ry="2" />
<text x="309.82" y="1871.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (319 samples, 0.02%)</title><rect x="1147.2" y="1285" width="0.2" height="15.0" fill="rgb(247,11,0)" rx="2" ry="2" />
<text x="1150.20" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (174 samples, 0.01%)</title><rect x="799.3" y="1253" width="0.1" height="15.0" fill="rgb(241,229,15)" rx="2" ry="2" />
<text x="802.33" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (238 samples, 0.01%)</title><rect x="738.6" y="1525" width="0.1" height="15.0" fill="rgb(213,127,14)" rx="2" ry="2" />
<text x="741.58" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5215 (1,164 samples, 0.06%)</title><rect x="823.2" y="1349" width="0.6" height="15.0" fill="rgb(231,24,35)" rx="2" ry="2" />
<text x="826.16" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="882.7" y="1301" width="0.1" height="15.0" fill="rgb(243,13,22)" rx="2" ry="2" />
<text x="885.67" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (300 samples, 0.01%)</title><rect x="750.7" y="1189" width="0.2" height="15.0" fill="rgb(247,220,13)" rx="2" ry="2" />
<text x="753.71" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (905 samples, 0.04%)</title><rect x="1020.0" y="1205" width="0.5" height="15.0" fill="rgb(235,160,23)" rx="2" ry="2" />
<text x="1022.96" y="1215.5" ></text>
</g>
<g >
<title>caml_thread_yield (917 samples, 0.04%)</title><rect x="733.1" y="1413" width="0.5" height="15.0" fill="rgb(245,85,54)" rx="2" ry="2" />
<text x="736.05" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (192 samples, 0.01%)</title><rect x="1052.5" y="1269" width="0.1" height="15.0" fill="rgb(209,203,51)" rx="2" ry="2" />
<text x="1055.54" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (319 samples, 0.02%)</title><rect x="1093.4" y="1189" width="0.2" height="15.0" fill="rgb(253,29,17)" rx="2" ry="2" />
<text x="1096.45" y="1199.5" ></text>
</g>
<g >
<title>_start (821,304 samples, 40.03%)</title><rect x="716.1" y="2053" width="472.4" height="15.0" fill="rgb(234,94,17)" rx="2" ry="2" />
<text x="719.10" y="2063.5" >_start</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1909" width="0.3" height="15.0" fill="rgb(247,223,38)" rx="2" ry="2" />
<text x="1192.69" y="1919.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,410 samples, 0.07%)</title><rect x="706.6" y="1829" width="0.8" height="15.0" fill="rgb(248,225,30)" rx="2" ry="2" />
<text x="709.57" y="1839.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (384 samples, 0.02%)</title><rect x="917.6" y="1269" width="0.2" height="15.0" fill="rgb(227,229,27)" rx="2" ry="2" />
<text x="920.63" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (333 samples, 0.02%)</title><rect x="1137.9" y="1301" width="0.2" height="15.0" fill="rgb(240,145,10)" rx="2" ry="2" />
<text x="1140.93" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (185 samples, 0.01%)</title><rect x="781.8" y="1221" width="0.1" height="15.0" fill="rgb(239,94,38)" rx="2" ry="2" />
<text x="784.80" y="1231.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (1,861 samples, 0.09%)</title><rect x="1042.6" y="1333" width="1.1" height="15.0" fill="rgb(234,18,12)" rx="2" ry="2" />
<text x="1045.60" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,164 samples, 0.11%)</title><rect x="232.2" y="1861" width="1.2" height="15.0" fill="rgb(207,171,20)" rx="2" ry="2" />
<text x="235.16" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (26,094 samples, 1.27%)</title><rect x="996.3" y="1333" width="15.0" height="15.0" fill="rgb(242,143,19)" rx="2" ry="2" />
<text x="999.28" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (466 samples, 0.02%)</title><rect x="1132.0" y="1157" width="0.3" height="15.0" fill="rgb(236,8,12)" rx="2" ry="2" />
<text x="1134.99" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="2053" width="0.2" height="15.0" fill="rgb(252,5,27)" rx="2" ry="2" />
<text x="1191.85" y="2063.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (245 samples, 0.01%)</title><rect x="803.6" y="1237" width="0.2" height="15.0" fill="rgb(250,180,34)" rx="2" ry="2" />
<text x="806.64" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (878 samples, 0.04%)</title><rect x="1027.6" y="1397" width="0.5" height="15.0" fill="rgb(209,87,33)" rx="2" ry="2" />
<text x="1030.63" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (285 samples, 0.01%)</title><rect x="716.1" y="1621" width="0.2" height="15.0" fill="rgb(223,82,23)" rx="2" ry="2" />
<text x="719.10" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,126 samples, 0.05%)</title><rect x="746.5" y="1269" width="0.7" height="15.0" fill="rgb(227,126,32)" rx="2" ry="2" />
<text x="749.52" y="1279.5" ></text>
</g>
<g >
<title>caml_string_equal (305 samples, 0.01%)</title><rect x="775.2" y="1445" width="0.2" height="15.0" fill="rgb(241,163,34)" rx="2" ry="2" />
<text x="778.24" y="1455.5" ></text>
</g>
<g >
<title>caml_string_equal (939 samples, 0.05%)</title><rect x="983.0" y="1413" width="0.5" height="15.0" fill="rgb(236,10,14)" rx="2" ry="2" />
<text x="985.98" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (414 samples, 0.02%)</title><rect x="881.6" y="1285" width="0.3" height="15.0" fill="rgb(208,24,40)" rx="2" ry="2" />
<text x="884.63" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,396 samples, 0.12%)</title><rect x="735.3" y="1445" width="1.3" height="15.0" fill="rgb(229,212,1)" rx="2" ry="2" />
<text x="738.26" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="293" width="0.3" height="15.0" fill="rgb(237,39,46)" rx="2" ry="2" />
<text x="1191.59" y="303.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (502 samples, 0.02%)</title><rect x="867.9" y="1413" width="0.3" height="15.0" fill="rgb(226,45,6)" rx="2" ry="2" />
<text x="870.91" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (203 samples, 0.01%)</title><rect x="1158.6" y="1125" width="0.1" height="15.0" fill="rgb(232,79,0)" rx="2" ry="2" />
<text x="1161.60" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (4,085 samples, 0.20%)</title><rect x="1033.9" y="1349" width="2.3" height="15.0" fill="rgb(234,209,10)" rx="2" ry="2" />
<text x="1036.88" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1045" width="0.3" height="15.0" fill="rgb(217,56,5)" rx="2" ry="2" />
<text x="1191.59" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (255 samples, 0.01%)</title><rect x="723.2" y="1445" width="0.2" height="15.0" fill="rgb(232,16,9)" rx="2" ry="2" />
<text x="726.21" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (535 samples, 0.03%)</title><rect x="651.8" y="1781" width="0.3" height="15.0" fill="rgb(219,90,49)" rx="2" ry="2" />
<text x="654.83" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1445" width="0.3" height="15.0" fill="rgb(241,45,20)" rx="2" ry="2" />
<text x="1192.69" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (704 samples, 0.03%)</title><rect x="952.7" y="1237" width="0.4" height="15.0" fill="rgb(253,30,21)" rx="2" ry="2" />
<text x="955.70" y="1247.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (2,982 samples, 0.15%)</title><rect x="922.6" y="1221" width="1.7" height="15.0" fill="rgb(214,3,1)" rx="2" ry="2" />
<text x="925.56" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (400 samples, 0.02%)</title><rect x="854.2" y="1253" width="0.2" height="15.0" fill="rgb(211,172,12)" rx="2" ry="2" />
<text x="857.17" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (893 samples, 0.04%)</title><rect x="976.3" y="1381" width="0.5" height="15.0" fill="rgb(219,167,27)" rx="2" ry="2" />
<text x="979.32" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (282 samples, 0.01%)</title><rect x="784.6" y="1173" width="0.1" height="15.0" fill="rgb(221,151,6)" rx="2" ry="2" />
<text x="787.59" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (432 samples, 0.02%)</title><rect x="709.9" y="1717" width="0.3" height="15.0" fill="rgb(251,137,27)" rx="2" ry="2" />
<text x="712.93" y="1727.5" ></text>
</g>
<g >
<title>compare_val (521 samples, 0.03%)</title><rect x="1072.1" y="1301" width="0.3" height="15.0" fill="rgb(213,55,15)" rx="2" ry="2" />
<text x="1075.05" y="1311.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,122 samples, 0.05%)</title><rect x="1105.6" y="1269" width="0.6" height="15.0" fill="rgb(237,160,43)" rx="2" ry="2" />
<text x="1108.57" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (60,417 samples, 2.94%)</title><rect x="991.1" y="1413" width="34.8" height="15.0" fill="rgb(225,48,6)" rx="2" ry="2" />
<text x="994.10" y="1423.5" >ca..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (275 samples, 0.01%)</title><rect x="1166.5" y="1125" width="0.1" height="15.0" fill="rgb(207,180,47)" rx="2" ry="2" />
<text x="1169.46" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (231 samples, 0.01%)</title><rect x="707.2" y="1797" width="0.2" height="15.0" fill="rgb(253,49,45)" rx="2" ry="2" />
<text x="710.23" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="2037" width="0.2" height="15.0" fill="rgb(252,43,52)" rx="2" ry="2" />
<text x="1191.85" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8527 (445 samples, 0.02%)</title><rect x="1186.7" y="1397" width="0.2" height="15.0" fill="rgb(208,77,10)" rx="2" ry="2" />
<text x="1189.69" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (554 samples, 0.03%)</title><rect x="719.0" y="1381" width="0.3" height="15.0" fill="rgb(226,217,10)" rx="2" ry="2" />
<text x="721.98" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (849 samples, 0.04%)</title><rect x="703.6" y="1797" width="0.5" height="15.0" fill="rgb(213,115,24)" rx="2" ry="2" />
<text x="706.60" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11613 (1,141 samples, 0.06%)</title><rect x="772.8" y="1429" width="0.7" height="15.0" fill="rgb(238,135,50)" rx="2" ry="2" />
<text x="775.83" y="1439.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (196 samples, 0.01%)</title><rect x="403.2" y="1845" width="0.1" height="15.0" fill="rgb(218,211,35)" rx="2" ry="2" />
<text x="406.20" y="1855.5" ></text>
</g>
<g >
<title>caml_hash (330 samples, 0.02%)</title><rect x="731.1" y="1381" width="0.2" height="15.0" fill="rgb(251,46,16)" rx="2" ry="2" />
<text x="734.11" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1573" width="0.3" height="15.0" fill="rgb(240,175,12)" rx="2" ry="2" />
<text x="1192.69" y="1583.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (4,290 samples, 0.21%)</title><rect x="817.5" y="1365" width="2.5" height="15.0" fill="rgb(254,215,29)" rx="2" ry="2" />
<text x="820.53" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,296 samples, 3.52%)</title><rect x="1145.8" y="1461" width="41.5" height="15.0" fill="rgb(217,83,6)" rx="2" ry="2" />
<text x="1148.76" y="1471.5" >cam..</text>
</g>
<g >
<title>mark_slice (779 samples, 0.04%)</title><rect x="444.9" y="1877" width="0.5" height="15.0" fill="rgb(244,201,12)" rx="2" ry="2" />
<text x="447.92" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (712 samples, 0.03%)</title><rect x="976.4" y="1365" width="0.4" height="15.0" fill="rgb(208,223,46)" rx="2" ry="2" />
<text x="979.41" y="1375.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (249 samples, 0.01%)</title><rect x="966.2" y="1237" width="0.1" height="15.0" fill="rgb(252,153,3)" rx="2" ry="2" />
<text x="969.19" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (626 samples, 0.03%)</title><rect x="709.9" y="1781" width="0.4" height="15.0" fill="rgb(206,41,33)" rx="2" ry="2" />
<text x="712.91" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1125" width="0.3" height="15.0" fill="rgb(223,18,22)" rx="2" ry="2" />
<text x="1192.69" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1637" width="0.2" height="15.0" fill="rgb(206,27,53)" rx="2" ry="2" />
<text x="1191.85" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1765" width="0.2" height="15.0" fill="rgb(245,74,23)" rx="2" ry="2" />
<text x="1191.85" y="1775.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (390 samples, 0.02%)</title><rect x="1147.8" y="1285" width="0.2" height="15.0" fill="rgb(249,192,33)" rx="2" ry="2" />
<text x="1150.80" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (200 samples, 0.01%)</title><rect x="420.5" y="1861" width="0.1" height="15.0" fill="rgb(227,60,53)" rx="2" ry="2" />
<text x="423.47" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1893" width="0.2" height="15.0" fill="rgb(209,140,9)" rx="2" ry="2" />
<text x="1191.85" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1429" width="0.3" height="15.0" fill="rgb(223,228,38)" rx="2" ry="2" />
<text x="1191.59" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1301" width="0.3" height="15.0" fill="rgb(231,23,53)" rx="2" ry="2" />
<text x="1192.69" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (80,519 samples, 3.92%)</title><rect x="1029.4" y="1429" width="46.3" height="15.0" fill="rgb(215,159,33)" rx="2" ry="2" />
<text x="1032.43" y="1439.5" >caml..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,889 samples, 0.14%)</title><rect x="1179.7" y="1237" width="1.7" height="15.0" fill="rgb(246,124,25)" rx="2" ry="2" />
<text x="1182.74" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5211 (1,479 samples, 0.07%)</title><rect x="1157.7" y="1221" width="0.8" height="15.0" fill="rgb(232,9,28)" rx="2" ry="2" />
<text x="1160.70" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (238 samples, 0.01%)</title><rect x="1098.5" y="1301" width="0.2" height="15.0" fill="rgb(225,139,32)" rx="2" ry="2" />
<text x="1101.52" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__fun_2772 (200 samples, 0.01%)</title><rect x="1140.5" y="1461" width="0.2" height="15.0" fill="rgb(249,55,15)" rx="2" ry="2" />
<text x="1143.54" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (3,896 samples, 0.19%)</title><rect x="856.2" y="1397" width="2.3" height="15.0" fill="rgb(217,201,9)" rx="2" ry="2" />
<text x="859.24" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (200 samples, 0.01%)</title><rect x="868.0" y="1333" width="0.1" height="15.0" fill="rgb(213,17,32)" rx="2" ry="2" />
<text x="870.95" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (584 samples, 0.03%)</title><rect x="964.8" y="1253" width="0.4" height="15.0" fill="rgb(236,116,16)" rx="2" ry="2" />
<text x="967.83" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (1,131 samples, 0.06%)</title><rect x="324.4" y="1829" width="0.6" height="15.0" fill="rgb(245,62,3)" rx="2" ry="2" />
<text x="327.36" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (414 samples, 0.02%)</title><rect x="1071.5" y="1205" width="0.2" height="15.0" fill="rgb(250,79,44)" rx="2" ry="2" />
<text x="1074.47" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8476 (382 samples, 0.02%)</title><rect x="1186.5" y="1397" width="0.2" height="15.0" fill="rgb(207,61,37)" rx="2" ry="2" />
<text x="1189.47" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1381" width="0.3" height="15.0" fill="rgb(223,42,0)" rx="2" ry="2" />
<text x="1192.37" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (9,495 samples, 0.46%)</title><rect x="1103.3" y="1333" width="5.5" height="15.0" fill="rgb(207,61,27)" rx="2" ry="2" />
<text x="1106.32" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (380 samples, 0.02%)</title><rect x="867.3" y="1221" width="0.3" height="15.0" fill="rgb(206,209,6)" rx="2" ry="2" />
<text x="870.35" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (1,942 samples, 0.09%)</title><rect x="939.4" y="1381" width="1.1" height="15.0" fill="rgb(220,122,11)" rx="2" ry="2" />
<text x="942.42" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,528 samples, 0.12%)</title><rect x="879.3" y="1397" width="1.4" height="15.0" fill="rgb(219,40,10)" rx="2" ry="2" />
<text x="882.25" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (1,920 samples, 0.09%)</title><rect x="903.9" y="1237" width="1.1" height="15.0" fill="rgb(217,45,51)" rx="2" ry="2" />
<text x="906.92" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (885 samples, 0.04%)</title><rect x="22.9" y="2021" width="0.5" height="15.0" fill="rgb(205,154,52)" rx="2" ry="2" />
<text x="25.93" y="2031.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,815 samples, 0.09%)</title><rect x="783.0" y="1301" width="1.0" height="15.0" fill="rgb(247,192,54)" rx="2" ry="2" />
<text x="785.98" y="1311.5" ></text>
</g>
<g >
<title>caml_string_equal (370 samples, 0.02%)</title><rect x="870.2" y="1381" width="0.2" height="15.0" fill="rgb(251,154,26)" rx="2" ry="2" />
<text x="873.23" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4608 (7,551 samples, 0.37%)</title><rect x="980.2" y="1461" width="4.3" height="15.0" fill="rgb(254,214,47)" rx="2" ry="2" />
<text x="983.17" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (490 samples, 0.02%)</title><rect x="915.3" y="1253" width="0.3" height="15.0" fill="rgb(224,143,44)" rx="2" ry="2" />
<text x="918.30" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1973" width="0.3" height="15.0" fill="rgb(222,33,26)" rx="2" ry="2" />
<text x="1192.37" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (393 samples, 0.02%)</title><rect x="819.5" y="1253" width="0.2" height="15.0" fill="rgb(221,82,11)" rx="2" ry="2" />
<text x="822.47" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__fun_742 (181 samples, 0.01%)</title><rect x="1115.4" y="1333" width="0.1" height="15.0" fill="rgb(230,118,15)" rx="2" ry="2" />
<text x="1118.37" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="2005" width="0.3" height="15.0" fill="rgb(245,156,24)" rx="2" ry="2" />
<text x="1192.37" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (5,378 samples, 0.26%)</title><rect x="164.4" y="1893" width="3.1" height="15.0" fill="rgb(243,192,14)" rx="2" ry="2" />
<text x="167.44" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (314 samples, 0.02%)</title><rect x="803.2" y="1189" width="0.1" height="15.0" fill="rgb(208,42,6)" rx="2" ry="2" />
<text x="806.17" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (293 samples, 0.01%)</title><rect x="777.2" y="1349" width="0.1" height="15.0" fill="rgb(217,58,5)" rx="2" ry="2" />
<text x="780.17" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1317" width="0.3" height="15.0" fill="rgb(208,54,12)" rx="2" ry="2" />
<text x="1192.69" y="1327.5" ></text>
</g>
<g >
<title>__condvar_load_g1_start_relaxed (269 samples, 0.01%)</title><rect x="669.3" y="1877" width="0.1" height="15.0" fill="rgb(223,115,43)" rx="2" ry="2" />
<text x="672.30" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (375 samples, 0.02%)</title><rect x="885.9" y="1445" width="0.2" height="15.0" fill="rgb(235,24,52)" rx="2" ry="2" />
<text x="888.85" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (2,223 samples, 0.11%)</title><rect x="335.2" y="1893" width="1.3" height="15.0" fill="rgb(226,202,3)" rx="2" ry="2" />
<text x="338.24" y="1903.5" ></text>
</g>
<g >
<title>sweep_slice (1,199 samples, 0.06%)</title><rect x="312.6" y="1829" width="0.6" height="15.0" fill="rgb(207,154,25)" rx="2" ry="2" />
<text x="315.55" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (1,001 samples, 0.05%)</title><rect x="702.4" y="1845" width="0.6" height="15.0" fill="rgb(252,20,31)" rx="2" ry="2" />
<text x="705.41" y="1855.5" ></text>
</g>
<g >
<title>caml_pread (180 samples, 0.01%)</title><rect x="737.3" y="1429" width="0.1" height="15.0" fill="rgb(250,128,42)" rx="2" ry="2" />
<text x="740.27" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (667 samples, 0.03%)</title><rect x="1004.2" y="1269" width="0.4" height="15.0" fill="rgb(206,146,52)" rx="2" ry="2" />
<text x="1007.22" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (184 samples, 0.01%)</title><rect x="1105.0" y="1157" width="0.1" height="15.0" fill="rgb(239,24,19)" rx="2" ry="2" />
<text x="1107.97" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (313 samples, 0.02%)</title><rect x="772.3" y="1493" width="0.2" height="15.0" fill="rgb(224,57,29)" rx="2" ry="2" />
<text x="775.32" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (286 samples, 0.01%)</title><rect x="1166.0" y="1157" width="0.2" height="15.0" fill="rgb(252,219,48)" rx="2" ry="2" />
<text x="1169.05" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (377 samples, 0.02%)</title><rect x="232.6" y="1813" width="0.3" height="15.0" fill="rgb(208,55,0)" rx="2" ry="2" />
<text x="235.64" y="1823.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (214 samples, 0.01%)</title><rect x="853.6" y="1317" width="0.2" height="15.0" fill="rgb(227,73,30)" rx="2" ry="2" />
<text x="856.64" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (266 samples, 0.01%)</title><rect x="773.1" y="1365" width="0.2" height="15.0" fill="rgb(243,116,19)" rx="2" ry="2" />
<text x="776.12" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,540 samples, 0.08%)</title><rect x="1080.1" y="1333" width="0.9" height="15.0" fill="rgb(208,67,46)" rx="2" ry="2" />
<text x="1083.15" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11980 (2,225 samples, 0.11%)</title><rect x="1157.3" y="1253" width="1.3" height="15.0" fill="rgb(215,200,49)" rx="2" ry="2" />
<text x="1160.29" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (264 samples, 0.01%)</title><rect x="1024.9" y="1317" width="0.1" height="15.0" fill="rgb(236,211,40)" rx="2" ry="2" />
<text x="1027.87" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (60,068 samples, 2.93%)</title><rect x="991.3" y="1397" width="34.5" height="15.0" fill="rgb(212,206,16)" rx="2" ry="2" />
<text x="994.27" y="1407.5" >ca..</text>
</g>
<g >
<title>caml_sys_file_exists (324 samples, 0.02%)</title><rect x="700.9" y="1925" width="0.2" height="15.0" fill="rgb(240,2,48)" rx="2" ry="2" />
<text x="703.92" y="1935.5" ></text>
</g>
<g >
<title>camlLayered_bench__fun_29694 (1,514 samples, 0.07%)</title><rect x="1187.4" y="1541" width="0.8" height="15.0" fill="rgb(207,111,24)" rx="2" ry="2" />
<text x="1190.38" y="1551.5" ></text>
</g>
<g >
<title>_start (633 samples, 0.03%)</title><rect x="10.1" y="2053" width="0.3" height="15.0" fill="rgb(225,78,46)" rx="2" ry="2" />
<text x="13.05" y="2063.5" ></text>
</g>
<g >
<title>__libc_pread64 (498 samples, 0.02%)</title><rect x="881.6" y="1349" width="0.3" height="15.0" fill="rgb(208,25,7)" rx="2" ry="2" />
<text x="884.59" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,389 samples, 0.07%)</title><rect x="1121.1" y="1381" width="0.8" height="15.0" fill="rgb(251,117,40)" rx="2" ry="2" />
<text x="1124.13" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4608 (2,593 samples, 0.13%)</title><rect x="774.3" y="1493" width="1.5" height="15.0" fill="rgb(219,49,5)" rx="2" ry="2" />
<text x="777.27" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (286 samples, 0.01%)</title><rect x="704.1" y="1829" width="0.2" height="15.0" fill="rgb(235,174,7)" rx="2" ry="2" />
<text x="707.10" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (3,158 samples, 0.15%)</title><rect x="1055.7" y="1253" width="1.9" height="15.0" fill="rgb(240,119,22)" rx="2" ry="2" />
<text x="1058.74" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (785 samples, 0.04%)</title><rect x="742.3" y="1397" width="0.4" height="15.0" fill="rgb(244,178,0)" rx="2" ry="2" />
<text x="745.26" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,712 samples, 0.08%)</title><rect x="962.8" y="1285" width="1.0" height="15.0" fill="rgb(205,77,39)" rx="2" ry="2" />
<text x="965.81" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (464 samples, 0.02%)</title><rect x="1166.8" y="1189" width="0.3" height="15.0" fill="rgb(220,150,0)" rx="2" ry="2" />
<text x="1169.83" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (230 samples, 0.01%)</title><rect x="804.6" y="1333" width="0.1" height="15.0" fill="rgb(238,180,37)" rx="2" ry="2" />
<text x="807.58" y="1343.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (28,505 samples, 1.39%)</title><rect x="1082.6" y="1349" width="16.4" height="15.0" fill="rgb(251,42,48)" rx="2" ry="2" />
<text x="1085.58" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1717" width="0.3" height="15.0" fill="rgb(225,188,13)" rx="2" ry="2" />
<text x="1192.06" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15238 (337 samples, 0.02%)</title><rect x="717.5" y="1541" width="0.2" height="15.0" fill="rgb(241,148,27)" rx="2" ry="2" />
<text x="720.51" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1989" width="0.3" height="15.0" fill="rgb(249,93,41)" rx="2" ry="2" />
<text x="1192.06" y="1999.5" ></text>
</g>
<g >
<title>caml_pread (1,398 samples, 0.07%)</title><rect x="919.5" y="1253" width="0.8" height="15.0" fill="rgb(218,40,16)" rx="2" ry="2" />
<text x="922.50" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (188 samples, 0.01%)</title><rect x="746.3" y="1253" width="0.1" height="15.0" fill="rgb(219,34,22)" rx="2" ry="2" />
<text x="749.30" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (439 samples, 0.02%)</title><rect x="1177.5" y="1301" width="0.3" height="15.0" fill="rgb(212,0,35)" rx="2" ry="2" />
<text x="1180.50" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (20,721 samples, 1.01%)</title><rect x="843.7" y="1413" width="11.9" height="15.0" fill="rgb(211,14,29)" rx="2" ry="2" />
<text x="846.72" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (260 samples, 0.01%)</title><rect x="997.5" y="1285" width="0.1" height="15.0" fill="rgb(216,43,28)" rx="2" ry="2" />
<text x="1000.46" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (4,509 samples, 0.22%)</title><rect x="852.2" y="1381" width="2.6" height="15.0" fill="rgb(213,176,15)" rx="2" ry="2" />
<text x="855.24" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (349 samples, 0.02%)</title><rect x="1126.8" y="1349" width="0.2" height="15.0" fill="rgb(213,105,9)" rx="2" ry="2" />
<text x="1129.84" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (292 samples, 0.01%)</title><rect x="1166.0" y="1173" width="0.2" height="15.0" fill="rgb(210,203,30)" rx="2" ry="2" />
<text x="1169.04" y="1183.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (512 samples, 0.02%)</title><rect x="838.1" y="1285" width="0.3" height="15.0" fill="rgb(213,187,52)" rx="2" ry="2" />
<text x="841.14" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,585 samples, 0.13%)</title><rect x="735.2" y="1461" width="1.5" height="15.0" fill="rgb(252,95,46)" rx="2" ry="2" />
<text x="738.17" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1685" width="0.3" height="15.0" fill="rgb(219,190,2)" rx="2" ry="2" />
<text x="1192.06" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (178 samples, 0.01%)</title><rect x="756.4" y="1365" width="0.1" height="15.0" fill="rgb(247,135,17)" rx="2" ry="2" />
<text x="759.42" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,368 samples, 0.07%)</title><rect x="166.7" y="1845" width="0.8" height="15.0" fill="rgb(227,158,49)" rx="2" ry="2" />
<text x="169.74" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,522 samples, 0.07%)</title><rect x="1098.0" y="1333" width="0.9" height="15.0" fill="rgb(221,80,4)" rx="2" ry="2" />
<text x="1100.99" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (322 samples, 0.02%)</title><rect x="772.0" y="1413" width="0.2" height="15.0" fill="rgb(207,73,28)" rx="2" ry="2" />
<text x="774.97" y="1423.5" ></text>
</g>
<g >
<title>mark_slice_darken (459 samples, 0.02%)</title><rect x="706.2" y="1765" width="0.3" height="15.0" fill="rgb(213,166,25)" rx="2" ry="2" />
<text x="709.21" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_541 (258 samples, 0.01%)</title><rect x="1146.5" y="1301" width="0.1" height="15.0" fill="rgb(250,39,24)" rx="2" ry="2" />
<text x="1149.47" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,691 samples, 0.13%)</title><rect x="753.4" y="1381" width="1.6" height="15.0" fill="rgb(245,57,32)" rx="2" ry="2" />
<text x="756.41" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (1,149 samples, 0.06%)</title><rect x="1122.6" y="1413" width="0.7" height="15.0" fill="rgb(244,8,3)" rx="2" ry="2" />
<text x="1125.63" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (424 samples, 0.02%)</title><rect x="838.6" y="1253" width="0.2" height="15.0" fill="rgb(231,121,17)" rx="2" ry="2" />
<text x="841.59" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1445" width="0.3" height="15.0" fill="rgb(253,23,0)" rx="2" ry="2" />
<text x="1192.37" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (206 samples, 0.01%)</title><rect x="703.4" y="1829" width="0.2" height="15.0" fill="rgb(224,92,43)" rx="2" ry="2" />
<text x="706.44" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (459 samples, 0.02%)</title><rect x="972.8" y="1173" width="0.3" height="15.0" fill="rgb(243,146,16)" rx="2" ry="2" />
<text x="975.85" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1925" width="0.3" height="15.0" fill="rgb(253,121,5)" rx="2" ry="2" />
<text x="1192.06" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="421" width="0.3" height="15.0" fill="rgb(251,79,34)" rx="2" ry="2" />
<text x="1192.69" y="431.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (3,495 samples, 0.17%)</title><rect x="1120.2" y="1413" width="2.0" height="15.0" fill="rgb(205,154,17)" rx="2" ry="2" />
<text x="1123.18" y="1423.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (178 samples, 0.01%)</title><rect x="1188.4" y="1541" width="0.1" height="15.0" fill="rgb(227,206,5)" rx="2" ry="2" />
<text x="1191.36" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="2005" width="0.2" height="15.0" fill="rgb(217,55,42)" rx="2" ry="2" />
<text x="1191.85" y="2015.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_26674 (43,341 samples, 2.11%)</title><rect x="716.1" y="1797" width="24.9" height="15.0" fill="rgb(217,47,24)" rx="2" ry="2" />
<text x="719.10" y="1807.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (592 samples, 0.03%)</title><rect x="1144.1" y="1461" width="0.4" height="15.0" fill="rgb(246,5,23)" rx="2" ry="2" />
<text x="1147.14" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,858 samples, 2.04%)</title><rect x="716.1" y="1701" width="24.1" height="15.0" fill="rgb(245,39,23)" rx="2" ry="2" />
<text x="719.10" y="1711.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (251 samples, 0.01%)</title><rect x="1189.7" y="165" width="0.2" height="15.0" fill="rgb(241,104,10)" rx="2" ry="2" />
<text x="1192.71" y="175.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,371 samples, 0.07%)</title><rect x="882.8" y="1349" width="0.8" height="15.0" fill="rgb(231,39,44)" rx="2" ry="2" />
<text x="885.79" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (228 samples, 0.01%)</title><rect x="1166.7" y="1109" width="0.1" height="15.0" fill="rgb(215,214,25)" rx="2" ry="2" />
<text x="1169.70" y="1119.5" ></text>
</g>
<g >
<title>caml_apply2 (207 samples, 0.01%)</title><rect x="799.5" y="1285" width="0.1" height="15.0" fill="rgb(224,62,31)" rx="2" ry="2" />
<text x="802.46" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="581" width="0.2" height="15.0" fill="rgb(246,30,40)" rx="2" ry="2" />
<text x="1191.85" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (1,008 samples, 0.05%)</title><rect x="755.3" y="1349" width="0.6" height="15.0" fill="rgb(231,43,43)" rx="2" ry="2" />
<text x="758.33" y="1359.5" ></text>
</g>
<g >
<title>compare_val (224 samples, 0.01%)</title><rect x="770.8" y="1317" width="0.1" height="15.0" fill="rgb(247,105,42)" rx="2" ry="2" />
<text x="773.82" y="1327.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (339 samples, 0.02%)</title><rect x="759.7" y="1301" width="0.1" height="15.0" fill="rgb(239,126,9)" rx="2" ry="2" />
<text x="762.65" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (190 samples, 0.01%)</title><rect x="1189.5" y="117" width="0.1" height="15.0" fill="rgb(235,19,50)" rx="2" ry="2" />
<text x="1192.50" y="127.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="629" width="0.3" height="15.0" fill="rgb(253,193,3)" rx="2" ry="2" />
<text x="1192.69" y="639.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (248 samples, 0.01%)</title><rect x="1097.6" y="1269" width="0.1" height="15.0" fill="rgb(214,6,34)" rx="2" ry="2" />
<text x="1100.60" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1528 (246 samples, 0.01%)</title><rect x="704.3" y="1845" width="0.1" height="15.0" fill="rgb(208,200,46)" rx="2" ry="2" />
<text x="707.27" y="1855.5" ></text>
</g>
<g >
<title>caml_hash (1,595 samples, 0.08%)</title><rect x="1008.6" y="1269" width="0.9" height="15.0" fill="rgb(221,214,53)" rx="2" ry="2" />
<text x="1011.59" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (263 samples, 0.01%)</title><rect x="817.0" y="1333" width="0.1" height="15.0" fill="rgb(212,48,30)" rx="2" ry="2" />
<text x="819.95" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,836 samples, 0.09%)</title><rect x="869.9" y="1413" width="1.1" height="15.0" fill="rgb(210,133,30)" rx="2" ry="2" />
<text x="872.94" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="965" width="0.2" height="15.0" fill="rgb(208,163,2)" rx="2" ry="2" />
<text x="1191.85" y="975.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (190 samples, 0.01%)</title><rect x="1011.0" y="1269" width="0.1" height="15.0" fill="rgb(219,12,26)" rx="2" ry="2" />
<text x="1014.01" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (3,877 samples, 0.19%)</title><rect x="959.6" y="1269" width="2.2" height="15.0" fill="rgb(221,169,2)" rx="2" ry="2" />
<text x="962.55" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,481 samples, 2.02%)</title><rect x="628.3" y="1877" width="23.8" height="15.0" fill="rgb(232,27,9)" rx="2" ry="2" />
<text x="631.28" y="1887.5" >[..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (236 samples, 0.01%)</title><rect x="860.7" y="1413" width="0.1" height="15.0" fill="rgb(241,9,34)" rx="2" ry="2" />
<text x="863.67" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__map_614 (2,646 samples, 0.13%)</title><rect x="448.5" y="1941" width="1.5" height="15.0" fill="rgb(206,45,14)" rx="2" ry="2" />
<text x="451.51" y="1951.5" ></text>
</g>
<g >
<title>camlLwt__callback_1304 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1669" width="42.4" height="15.0" fill="rgb(222,150,25)" rx="2" ry="2" />
<text x="1148.76" y="1679.5" >caml..</text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (453 samples, 0.02%)</title><rect x="818.6" y="1301" width="0.2" height="15.0" fill="rgb(233,5,28)" rx="2" ry="2" />
<text x="821.58" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (3,295 samples, 0.16%)</title><rect x="755.0" y="1397" width="1.9" height="15.0" fill="rgb(239,191,22)" rx="2" ry="2" />
<text x="757.99" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (178 samples, 0.01%)</title><rect x="1040.5" y="1381" width="0.1" height="15.0" fill="rgb(212,47,27)" rx="2" ry="2" />
<text x="1043.53" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (635 samples, 0.03%)</title><rect x="742.8" y="1365" width="0.4" height="15.0" fill="rgb(225,10,35)" rx="2" ry="2" />
<text x="745.82" y="1375.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (243 samples, 0.01%)</title><rect x="1189.7" y="133" width="0.1" height="15.0" fill="rgb(242,129,23)" rx="2" ry="2" />
<text x="1192.71" y="143.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (318 samples, 0.02%)</title><rect x="774.0" y="1493" width="0.2" height="15.0" fill="rgb(210,24,46)" rx="2" ry="2" />
<text x="777.02" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_144 (264 samples, 0.01%)</title><rect x="770.8" y="1349" width="0.1" height="15.0" fill="rgb(212,199,3)" rx="2" ry="2" />
<text x="773.79" y="1359.5" ></text>
</g>
<g >
<title>caml_hash (200 samples, 0.01%)</title><rect x="1045.7" y="1301" width="0.1" height="15.0" fill="rgb(241,123,17)" rx="2" ry="2" />
<text x="1048.66" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (294 samples, 0.01%)</title><rect x="1124.2" y="1381" width="0.2" height="15.0" fill="rgb(212,212,13)" rx="2" ry="2" />
<text x="1127.21" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1205" width="0.2" height="15.0" fill="rgb(252,52,0)" rx="2" ry="2" />
<text x="1191.85" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,689 samples, 0.52%)</title><rect x="601.2" y="1765" width="6.2" height="15.0" fill="rgb(246,98,19)" rx="2" ry="2" />
<text x="604.23" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (624 samples, 0.03%)</title><rect x="1113.6" y="1333" width="0.4" height="15.0" fill="rgb(244,155,18)" rx="2" ry="2" />
<text x="1116.61" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,072 samples, 0.05%)</title><rect x="779.0" y="1237" width="0.7" height="15.0" fill="rgb(240,39,19)" rx="2" ry="2" />
<text x="782.04" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (547 samples, 0.03%)</title><rect x="725.4" y="1413" width="0.4" height="15.0" fill="rgb(213,12,30)" rx="2" ry="2" />
<text x="728.45" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1541" width="0.3" height="15.0" fill="rgb(238,162,7)" rx="2" ry="2" />
<text x="1192.06" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (7,039 samples, 0.34%)</title><rect x="898.6" y="1237" width="4.1" height="15.0" fill="rgb(223,106,37)" rx="2" ry="2" />
<text x="901.62" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (19,722 samples, 0.96%)</title><rect x="829.0" y="1397" width="11.3" height="15.0" fill="rgb(210,222,47)" rx="2" ry="2" />
<text x="831.95" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (441 samples, 0.02%)</title><rect x="1188.6" y="245" width="0.3" height="15.0" fill="rgb(247,168,3)" rx="2" ry="2" />
<text x="1191.60" y="255.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (551 samples, 0.03%)</title><rect x="851.8" y="1349" width="0.3" height="15.0" fill="rgb(234,56,31)" rx="2" ry="2" />
<text x="854.76" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (214 samples, 0.01%)</title><rect x="779.9" y="1237" width="0.1" height="15.0" fill="rgb(224,69,43)" rx="2" ry="2" />
<text x="782.86" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="933" width="0.3" height="15.0" fill="rgb(230,102,40)" rx="2" ry="2" />
<text x="1192.69" y="943.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (485 samples, 0.02%)</title><rect x="750.9" y="1269" width="0.3" height="15.0" fill="rgb(248,163,10)" rx="2" ry="2" />
<text x="753.88" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_335 (529 samples, 0.03%)</title><rect x="758.0" y="1381" width="0.3" height="15.0" fill="rgb(234,102,19)" rx="2" ry="2" />
<text x="761.02" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1877" width="0.3" height="15.0" fill="rgb(238,103,10)" rx="2" ry="2" />
<text x="1192.37" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (314 samples, 0.02%)</title><rect x="858.6" y="1365" width="0.2" height="15.0" fill="rgb(206,125,22)" rx="2" ry="2" />
<text x="861.62" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4144 (154,722 samples, 7.54%)</title><rect x="889.1" y="1477" width="89.0" height="15.0" fill="rgb(236,215,4)" rx="2" ry="2" />
<text x="892.09" y="1487.5" >camlIrmin_..</text>
</g>
<g >
<title>camlIndex_unix__aux_483 (557 samples, 0.03%)</title><rect x="1152.9" y="1221" width="0.3" height="15.0" fill="rgb(220,59,37)" rx="2" ry="2" />
<text x="1155.90" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (209 samples, 0.01%)</title><rect x="788.5" y="1221" width="0.2" height="15.0" fill="rgb(252,170,32)" rx="2" ry="2" />
<text x="791.54" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (241 samples, 0.01%)</title><rect x="733.1" y="1349" width="0.1" height="15.0" fill="rgb(216,114,28)" rx="2" ry="2" />
<text x="736.10" y="1359.5" ></text>
</g>
<g >
<title>caml_string_equal (393 samples, 0.02%)</title><rect x="1027.8" y="1365" width="0.3" height="15.0" fill="rgb(248,85,13)" rx="2" ry="2" />
<text x="1030.85" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_782 (318 samples, 0.02%)</title><rect x="858.9" y="1381" width="0.1" height="15.0" fill="rgb(223,11,27)" rx="2" ry="2" />
<text x="861.86" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1989" width="0.2" height="15.0" fill="rgb(212,11,42)" rx="2" ry="2" />
<text x="1191.85" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="501" width="0.3" height="15.0" fill="rgb(241,196,10)" rx="2" ry="2" />
<text x="1191.59" y="511.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (50,223 samples, 2.45%)</title><rect x="1045.4" y="1365" width="28.9" height="15.0" fill="rgb(252,158,10)" rx="2" ry="2" />
<text x="1048.44" y="1375.5" >ca..</text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (1,276 samples, 0.06%)</title><rect x="710.8" y="1925" width="0.7" height="15.0" fill="rgb(235,49,9)" rx="2" ry="2" />
<text x="713.79" y="1935.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,330 samples, 0.06%)</title><rect x="801.5" y="1301" width="0.8" height="15.0" fill="rgb(253,147,29)" rx="2" ry="2" />
<text x="804.54" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (5,029 samples, 0.25%)</title><rect x="672.8" y="1845" width="2.9" height="15.0" fill="rgb(245,207,50)" rx="2" ry="2" />
<text x="675.77" y="1855.5" ></text>
</g>
<g >
<title>camlFiber__fork_and_join_unit_792 (418 samples, 0.02%)</title><rect x="10.2" y="1669" width="0.2" height="15.0" fill="rgb(230,1,48)" rx="2" ry="2" />
<text x="13.16" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="533" width="0.3" height="15.0" fill="rgb(211,12,25)" rx="2" ry="2" />
<text x="1191.59" y="543.5" ></text>
</g>
<g >
<title>caml_apply3 (1,258 samples, 0.06%)</title><rect x="174.4" y="1909" width="0.7" height="15.0" fill="rgb(236,172,30)" rx="2" ry="2" />
<text x="177.37" y="1919.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (6,554 samples, 0.32%)</title><rect x="572.5" y="1909" width="3.8" height="15.0" fill="rgb(230,200,51)" rx="2" ry="2" />
<text x="575.50" y="1919.5" ></text>
</g>
<g >
<title>caml_garbage_collection (307 samples, 0.01%)</title><rect x="704.6" y="1797" width="0.2" height="15.0" fill="rgb(215,220,54)" rx="2" ry="2" />
<text x="707.65" y="1807.5" ></text>
</g>
<g >
<title>__condvar_get_private (214 samples, 0.01%)</title><rect x="618.8" y="1893" width="0.1" height="15.0" fill="rgb(215,32,11)" rx="2" ry="2" />
<text x="621.78" y="1903.5" ></text>
</g>
<g >
<title>caml_hash (599 samples, 0.03%)</title><rect x="1015.3" y="1285" width="0.4" height="15.0" fill="rgb(229,57,25)" rx="2" ry="2" />
<text x="1018.34" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="821" width="0.3" height="15.0" fill="rgb(239,171,2)" rx="2" ry="2" />
<text x="1192.06" y="831.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (430 samples, 0.02%)</title><rect x="180.4" y="1861" width="0.2" height="15.0" fill="rgb(217,25,15)" rx="2" ry="2" />
<text x="183.36" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (339 samples, 0.02%)</title><rect x="1131.6" y="1189" width="0.2" height="15.0" fill="rgb(209,95,33)" rx="2" ry="2" />
<text x="1134.56" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (644 samples, 0.03%)</title><rect x="672.1" y="1765" width="0.4" height="15.0" fill="rgb(224,40,39)" rx="2" ry="2" />
<text x="675.11" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (251 samples, 0.01%)</title><rect x="811.4" y="1285" width="0.2" height="15.0" fill="rgb(206,114,47)" rx="2" ry="2" />
<text x="814.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (538 samples, 0.03%)</title><rect x="952.8" y="1221" width="0.3" height="15.0" fill="rgb(232,38,5)" rx="2" ry="2" />
<text x="955.80" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="1166.7" y="1157" width="0.1" height="15.0" fill="rgb(223,64,11)" rx="2" ry="2" />
<text x="1169.68" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1861" width="0.2" height="15.0" fill="rgb(218,59,19)" rx="2" ry="2" />
<text x="1191.85" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="517" width="0.3" height="15.0" fill="rgb(239,196,29)" rx="2" ry="2" />
<text x="1191.59" y="527.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (5,891 samples, 0.29%)</title><rect x="734.7" y="1541" width="3.4" height="15.0" fill="rgb(232,39,22)" rx="2" ry="2" />
<text x="737.67" y="1551.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (193 samples, 0.01%)</title><rect x="817.2" y="1365" width="0.1" height="15.0" fill="rgb(241,109,34)" rx="2" ry="2" />
<text x="820.23" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (961 samples, 0.05%)</title><rect x="1120.4" y="1365" width="0.6" height="15.0" fill="rgb(252,95,48)" rx="2" ry="2" />
<text x="1123.42" y="1375.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (280 samples, 0.01%)</title><rect x="944.0" y="1301" width="0.2" height="15.0" fill="rgb(245,102,25)" rx="2" ry="2" />
<text x="946.99" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4144 (54,118 samples, 2.64%)</title><rect x="741.5" y="1509" width="31.1" height="15.0" fill="rgb(251,180,26)" rx="2" ry="2" />
<text x="744.51" y="1519.5" >ca..</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (569 samples, 0.03%)</title><rect x="894.2" y="1253" width="0.3" height="15.0" fill="rgb(231,19,46)" rx="2" ry="2" />
<text x="897.17" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,056 samples, 0.05%)</title><rect x="914.3" y="1253" width="0.6" height="15.0" fill="rgb(250,214,13)" rx="2" ry="2" />
<text x="917.34" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="869" width="0.3" height="15.0" fill="rgb(214,101,1)" rx="2" ry="2" />
<text x="1191.59" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (692 samples, 0.03%)</title><rect x="735.3" y="1413" width="0.4" height="15.0" fill="rgb(250,159,48)" rx="2" ry="2" />
<text x="738.31" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (1,361 samples, 0.07%)</title><rect x="863.9" y="1333" width="0.8" height="15.0" fill="rgb(210,162,0)" rx="2" ry="2" />
<text x="866.91" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (1,210 samples, 0.06%)</title><rect x="841.3" y="1445" width="0.7" height="15.0" fill="rgb(218,12,39)" rx="2" ry="2" />
<text x="844.26" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="965" width="0.3" height="15.0" fill="rgb(249,217,5)" rx="2" ry="2" />
<text x="1192.37" y="975.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (200 samples, 0.01%)</title><rect x="1168.8" y="1237" width="0.2" height="15.0" fill="rgb(213,199,45)" rx="2" ry="2" />
<text x="1171.84" y="1247.5" ></text>
</g>
<g >
<title>add_to_ref_table (242 samples, 0.01%)</title><rect x="88.0" y="1893" width="0.1" height="15.0" fill="rgb(228,86,17)" rx="2" ry="2" />
<text x="90.97" y="1903.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,982 samples, 0.10%)</title><rect x="389.3" y="1877" width="1.2" height="15.0" fill="rgb(219,86,12)" rx="2" ry="2" />
<text x="392.33" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1861" width="0.3" height="15.0" fill="rgb(219,70,22)" rx="2" ry="2" />
<text x="1192.37" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (735 samples, 0.04%)</title><rect x="1107.6" y="1173" width="0.4" height="15.0" fill="rgb(229,141,29)" rx="2" ry="2" />
<text x="1110.60" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (1,149 samples, 0.06%)</title><rect x="196.6" y="1845" width="0.6" height="15.0" fill="rgb(250,215,48)" rx="2" ry="2" />
<text x="199.57" y="1855.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (408 samples, 0.02%)</title><rect x="10.2" y="1477" width="0.2" height="15.0" fill="rgb(212,116,42)" rx="2" ry="2" />
<text x="13.16" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (221 samples, 0.01%)</title><rect x="851.6" y="1333" width="0.1" height="15.0" fill="rgb(219,189,31)" rx="2" ry="2" />
<text x="854.59" y="1343.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (481 samples, 0.02%)</title><rect x="802.7" y="1237" width="0.3" height="15.0" fill="rgb(222,198,9)" rx="2" ry="2" />
<text x="805.72" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (358 samples, 0.02%)</title><rect x="854.2" y="1221" width="0.2" height="15.0" fill="rgb(225,225,45)" rx="2" ry="2" />
<text x="857.20" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12272 (1,198 samples, 0.06%)</title><rect x="841.3" y="1397" width="0.6" height="15.0" fill="rgb(225,126,13)" rx="2" ry="2" />
<text x="844.26" y="1407.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (253 samples, 0.01%)</title><rect x="722.4" y="1397" width="0.1" height="15.0" fill="rgb(217,33,31)" rx="2" ry="2" />
<text x="725.36" y="1407.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (181 samples, 0.01%)</title><rect x="754.7" y="1285" width="0.1" height="15.0" fill="rgb(226,171,28)" rx="2" ry="2" />
<text x="757.73" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (657 samples, 0.03%)</title><rect x="205.0" y="1781" width="0.4" height="15.0" fill="rgb(220,77,13)" rx="2" ry="2" />
<text x="208.00" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (227 samples, 0.01%)</title><rect x="1184.3" y="1157" width="0.2" height="15.0" fill="rgb(239,9,53)" rx="2" ry="2" />
<text x="1187.35" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (275 samples, 0.01%)</title><rect x="863.0" y="1413" width="0.2" height="15.0" fill="rgb(244,42,46)" rx="2" ry="2" />
<text x="866.04" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (223 samples, 0.01%)</title><rect x="989.2" y="1429" width="0.2" height="15.0" fill="rgb(232,176,37)" rx="2" ry="2" />
<text x="992.25" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_680 (920 samples, 0.04%)</title><rect x="703.6" y="1845" width="0.5" height="15.0" fill="rgb(236,183,25)" rx="2" ry="2" />
<text x="706.56" y="1855.5" ></text>
</g>
<g >
<title>caml_hash (223 samples, 0.01%)</title><rect x="749.4" y="1269" width="0.1" height="15.0" fill="rgb(220,132,35)" rx="2" ry="2" />
<text x="752.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12429 (105,646 samples, 5.15%)</title><rect x="1078.1" y="1445" width="60.7" height="15.0" fill="rgb(234,145,21)" rx="2" ry="2" />
<text x="1081.05" y="1455.5" >camlIr..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="501" width="0.2" height="15.0" fill="rgb(232,172,43)" rx="2" ry="2" />
<text x="1191.85" y="511.5" ></text>
</g>
<g >
<title>mark_slice (657 samples, 0.03%)</title><rect x="403.4" y="1861" width="0.4" height="15.0" fill="rgb(234,63,25)" rx="2" ry="2" />
<text x="406.39" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (2,393 samples, 0.12%)</title><rect x="744.2" y="1285" width="1.4" height="15.0" fill="rgb(222,79,10)" rx="2" ry="2" />
<text x="747.20" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (195 samples, 0.01%)</title><rect x="1166.1" y="1093" width="0.1" height="15.0" fill="rgb(242,148,25)" rx="2" ry="2" />
<text x="1169.10" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (407 samples, 0.02%)</title><rect x="935.4" y="1301" width="0.2" height="15.0" fill="rgb(211,106,14)" rx="2" ry="2" />
<text x="938.38" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1157" width="0.3" height="15.0" fill="rgb(211,11,48)" rx="2" ry="2" />
<text x="1192.37" y="1167.5" ></text>
</g>
<g >
<title>caml_mutex_lock (243 samples, 0.01%)</title><rect x="976.0" y="1349" width="0.1" height="15.0" fill="rgb(227,30,45)" rx="2" ry="2" />
<text x="978.96" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="597" width="0.3" height="15.0" fill="rgb(253,120,3)" rx="2" ry="2" />
<text x="1191.59" y="607.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (217 samples, 0.01%)</title><rect x="1185.7" y="1301" width="0.2" height="15.0" fill="rgb(244,222,12)" rx="2" ry="2" />
<text x="1188.74" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (198 samples, 0.01%)</title><rect x="871.1" y="1413" width="0.1" height="15.0" fill="rgb(227,91,10)" rx="2" ry="2" />
<text x="874.09" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (5,071 samples, 0.25%)</title><rect x="728.7" y="1445" width="2.9" height="15.0" fill="rgb(246,143,7)" rx="2" ry="2" />
<text x="731.69" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11991 (6,771 samples, 0.33%)</title><rect x="863.7" y="1413" width="3.9" height="15.0" fill="rgb(206,206,39)" rx="2" ry="2" />
<text x="866.68" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (1,110 samples, 0.05%)</title><rect x="738.5" y="1573" width="0.7" height="15.0" fill="rgb(244,132,50)" rx="2" ry="2" />
<text x="741.55" y="1583.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (968 samples, 0.05%)</title><rect x="858.5" y="1397" width="0.6" height="15.0" fill="rgb(254,188,0)" rx="2" ry="2" />
<text x="861.53" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (377 samples, 0.02%)</title><rect x="930.0" y="1429" width="0.2" height="15.0" fill="rgb(253,39,4)" rx="2" ry="2" />
<text x="933.00" y="1439.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,253 samples, 0.06%)</title><rect x="163.7" y="1861" width="0.7" height="15.0" fill="rgb(207,74,1)" rx="2" ry="2" />
<text x="166.72" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (197 samples, 0.01%)</title><rect x="1123.9" y="1349" width="0.1" height="15.0" fill="rgb(236,24,6)" rx="2" ry="2" />
<text x="1126.92" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (187 samples, 0.01%)</title><rect x="852.1" y="1365" width="0.1" height="15.0" fill="rgb(246,177,31)" rx="2" ry="2" />
<text x="855.12" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5663 (1,123 samples, 0.05%)</title><rect x="754.3" y="1349" width="0.6" height="15.0" fill="rgb(248,55,9)" rx="2" ry="2" />
<text x="757.28" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (210 samples, 0.01%)</title><rect x="1045.7" y="1317" width="0.1" height="15.0" fill="rgb(219,62,9)" rx="2" ry="2" />
<text x="1048.65" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (263 samples, 0.01%)</title><rect x="785.1" y="1157" width="0.2" height="15.0" fill="rgb(250,226,20)" rx="2" ry="2" />
<text x="788.14" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="2021" width="0.3" height="15.0" fill="rgb(225,108,23)" rx="2" ry="2" />
<text x="1192.37" y="2031.5" ></text>
</g>
<g >
<title>caml_hash (265 samples, 0.01%)</title><rect x="976.6" y="1317" width="0.1" height="15.0" fill="rgb(208,189,37)" rx="2" ry="2" />
<text x="979.56" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="981" width="0.3" height="15.0" fill="rgb(246,207,30)" rx="2" ry="2" />
<text x="1192.06" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (998 samples, 0.05%)</title><rect x="1163.7" y="1205" width="0.5" height="15.0" fill="rgb(217,137,48)" rx="2" ry="2" />
<text x="1166.65" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_one (180 samples, 0.01%)</title><rect x="711.7" y="1893" width="0.1" height="15.0" fill="rgb(227,209,30)" rx="2" ry="2" />
<text x="714.67" y="1903.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (8,607 samples, 0.42%)</title><rect x="743.6" y="1333" width="4.9" height="15.0" fill="rgb(208,106,26)" rx="2" ry="2" />
<text x="746.58" y="1343.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (187 samples, 0.01%)</title><rect x="814.5" y="1285" width="0.1" height="15.0" fill="rgb(226,228,21)" rx="2" ry="2" />
<text x="817.53" y="1295.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (409 samples, 0.02%)</title><rect x="10.2" y="1509" width="0.2" height="15.0" fill="rgb(233,129,4)" rx="2" ry="2" />
<text x="13.16" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_current_7620 (339 samples, 0.02%)</title><rect x="1077.5" y="1397" width="0.2" height="15.0" fill="rgb(205,148,45)" rx="2" ry="2" />
<text x="1080.52" y="1407.5" ></text>
</g>
<g >
<title>caml_mutex_lock (238 samples, 0.01%)</title><rect x="1025.5" y="1381" width="0.2" height="15.0" fill="rgb(254,37,16)" rx="2" ry="2" />
<text x="1028.54" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (325 samples, 0.02%)</title><rect x="1104.9" y="1173" width="0.2" height="15.0" fill="rgb(242,188,45)" rx="2" ry="2" />
<text x="1107.89" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (367 samples, 0.02%)</title><rect x="735.4" y="1397" width="0.2" height="15.0" fill="rgb(227,20,51)" rx="2" ry="2" />
<text x="738.38" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (556 samples, 0.03%)</title><rect x="1009.8" y="1269" width="0.3" height="15.0" fill="rgb(213,142,17)" rx="2" ry="2" />
<text x="1012.80" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (279 samples, 0.01%)</title><rect x="751.0" y="1173" width="0.2" height="15.0" fill="rgb(234,42,32)" rx="2" ry="2" />
<text x="754.00" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (286 samples, 0.01%)</title><rect x="867.0" y="1333" width="0.1" height="15.0" fill="rgb(213,211,46)" rx="2" ry="2" />
<text x="869.97" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="837" width="0.3" height="15.0" fill="rgb(223,79,45)" rx="2" ry="2" />
<text x="1192.37" y="847.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (433 samples, 0.02%)</title><rect x="1096.5" y="1269" width="0.2" height="15.0" fill="rgb(209,133,18)" rx="2" ry="2" />
<text x="1099.49" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (211 samples, 0.01%)</title><rect x="908.4" y="1221" width="0.1" height="15.0" fill="rgb(234,167,34)" rx="2" ry="2" />
<text x="911.37" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="421" width="0.3" height="15.0" fill="rgb(252,44,38)" rx="2" ry="2" />
<text x="1192.06" y="431.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="773" width="0.2" height="15.0" fill="rgb(246,61,51)" rx="2" ry="2" />
<text x="1191.85" y="783.5" ></text>
</g>
<g >
<title>caml_fill_bytes (209 samples, 0.01%)</title><rect x="1129.4" y="1349" width="0.1" height="15.0" fill="rgb(245,66,10)" rx="2" ry="2" />
<text x="1132.41" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (33,201 samples, 1.62%)</title><rect x="753.1" y="1461" width="19.1" height="15.0" fill="rgb(227,165,4)" rx="2" ry="2" />
<text x="756.12" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (488 samples, 0.02%)</title><rect x="961.4" y="1237" width="0.3" height="15.0" fill="rgb(218,182,0)" rx="2" ry="2" />
<text x="964.43" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (673 samples, 0.03%)</title><rect x="703.6" y="1765" width="0.4" height="15.0" fill="rgb(215,208,14)" rx="2" ry="2" />
<text x="706.63" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395 samples, 0.02%)</title><rect x="803.1" y="1237" width="0.2" height="15.0" fill="rgb(208,76,43)" rx="2" ry="2" />
<text x="806.12" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (235 samples, 0.01%)</title><rect x="814.2" y="1317" width="0.1" height="15.0" fill="rgb(228,186,19)" rx="2" ry="2" />
<text x="817.18" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,355 samples, 0.07%)</title><rect x="145.0" y="1861" width="0.7" height="15.0" fill="rgb(209,124,50)" rx="2" ry="2" />
<text x="147.97" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288 samples, 0.01%)</title><rect x="1183.7" y="1189" width="0.1" height="15.0" fill="rgb(212,169,20)" rx="2" ry="2" />
<text x="1186.66" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,744 samples, 0.09%)</title><rect x="1164.6" y="1253" width="1.0" height="15.0" fill="rgb(222,28,46)" rx="2" ry="2" />
<text x="1167.63" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="869" width="0.3" height="15.0" fill="rgb(208,78,41)" rx="2" ry="2" />
<text x="1192.06" y="879.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (676 samples, 0.03%)</title><rect x="826.7" y="1413" width="0.4" height="15.0" fill="rgb(251,49,45)" rx="2" ry="2" />
<text x="829.69" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (734 samples, 0.04%)</title><rect x="1023.0" y="1349" width="0.4" height="15.0" fill="rgb(213,24,22)" rx="2" ry="2" />
<text x="1025.96" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (236 samples, 0.01%)</title><rect x="1183.7" y="1141" width="0.1" height="15.0" fill="rgb(244,92,54)" rx="2" ry="2" />
<text x="1186.69" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="757" width="0.3" height="15.0" fill="rgb(246,56,11)" rx="2" ry="2" />
<text x="1192.37" y="767.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (283 samples, 0.01%)</title><rect x="734.2" y="1493" width="0.1" height="15.0" fill="rgb(249,61,11)" rx="2" ry="2" />
<text x="737.18" y="1503.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (8,739 samples, 0.43%)</title><rect x="308.2" y="1845" width="5.0" height="15.0" fill="rgb(212,88,38)" rx="2" ry="2" />
<text x="311.22" y="1855.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (1,043 samples, 0.05%)</title><rect x="922.8" y="1205" width="0.6" height="15.0" fill="rgb(249,23,42)" rx="2" ry="2" />
<text x="925.78" y="1215.5" ></text>
</g>
<g >
<title>caml_thread_yield (2,808 samples, 0.14%)</title><rect x="818.4" y="1333" width="1.6" height="15.0" fill="rgb(213,217,19)" rx="2" ry="2" />
<text x="821.36" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_11980 (14,172 samples, 0.69%)</title><rect x="1130.1" y="1349" width="8.2" height="15.0" fill="rgb(253,16,12)" rx="2" ry="2" />
<text x="1133.13" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (487 samples, 0.02%)</title><rect x="1189.1" y="229" width="0.3" height="15.0" fill="rgb(209,211,34)" rx="2" ry="2" />
<text x="1192.08" y="239.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (228 samples, 0.01%)</title><rect x="770.5" y="1237" width="0.2" height="15.0" fill="rgb(238,94,44)" rx="2" ry="2" />
<text x="773.53" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (445 samples, 0.02%)</title><rect x="705.3" y="1781" width="0.2" height="15.0" fill="rgb(213,221,9)" rx="2" ry="2" />
<text x="708.27" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (243 samples, 0.01%)</title><rect x="716.1" y="1541" width="0.2" height="15.0" fill="rgb(206,49,15)" rx="2" ry="2" />
<text x="719.12" y="1551.5" ></text>
</g>
<g >
<title>mark_slice (294 samples, 0.01%)</title><rect x="704.7" y="1765" width="0.1" height="15.0" fill="rgb(253,60,32)" rx="2" ry="2" />
<text x="707.65" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (250 samples, 0.01%)</title><rect x="1011.6" y="1285" width="0.1" height="15.0" fill="rgb(238,228,29)" rx="2" ry="2" />
<text x="1014.58" y="1295.5" ></text>
</g>
<g >
<title>camlFiber__fork_1020 (424 samples, 0.02%)</title><rect x="10.2" y="1749" width="0.2" height="15.0" fill="rgb(214,63,2)" rx="2" ry="2" />
<text x="13.16" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (175 samples, 0.01%)</title><rect x="1183.0" y="1237" width="0.1" height="15.0" fill="rgb(241,124,15)" rx="2" ry="2" />
<text x="1186.02" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="1140.4" y="1445" width="0.1" height="15.0" fill="rgb(239,111,8)" rx="2" ry="2" />
<text x="1143.39" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="517" width="0.3" height="15.0" fill="rgb(254,102,42)" rx="2" ry="2" />
<text x="1192.69" y="527.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (176 samples, 0.01%)</title><rect x="1034.9" y="1301" width="0.1" height="15.0" fill="rgb(228,172,50)" rx="2" ry="2" />
<text x="1037.88" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (778 samples, 0.04%)</title><rect x="748.8" y="1301" width="0.5" height="15.0" fill="rgb(226,35,8)" rx="2" ry="2" />
<text x="751.84" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,226 samples, 0.06%)</title><rect x="753.5" y="1317" width="0.7" height="15.0" fill="rgb(245,77,37)" rx="2" ry="2" />
<text x="756.52" y="1327.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (251 samples, 0.01%)</title><rect x="754.6" y="1285" width="0.1" height="15.0" fill="rgb(226,192,10)" rx="2" ry="2" />
<text x="757.59" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (419 samples, 0.02%)</title><rect x="545.3" y="1893" width="0.2" height="15.0" fill="rgb(245,47,28)" rx="2" ry="2" />
<text x="548.28" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (676 samples, 0.03%)</title><rect x="1018.3" y="1189" width="0.4" height="15.0" fill="rgb(219,77,22)" rx="2" ry="2" />
<text x="1021.31" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (501 samples, 0.02%)</title><rect x="1055.0" y="1253" width="0.3" height="15.0" fill="rgb(227,197,45)" rx="2" ry="2" />
<text x="1058.00" y="1263.5" ></text>
</g>
<g >
<title>caml_pread (350 samples, 0.02%)</title><rect x="1166.0" y="1205" width="0.2" height="15.0" fill="rgb(243,83,9)" rx="2" ry="2" />
<text x="1169.01" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (197 samples, 0.01%)</title><rect x="879.3" y="1349" width="0.2" height="15.0" fill="rgb(211,135,4)" rx="2" ry="2" />
<text x="882.35" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,858 samples, 2.04%)</title><rect x="716.1" y="1717" width="24.1" height="15.0" fill="rgb(241,17,52)" rx="2" ry="2" />
<text x="719.10" y="1727.5" >c..</text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (216 samples, 0.01%)</title><rect x="1154.1" y="1269" width="0.2" height="15.0" fill="rgb(247,81,15)" rx="2" ry="2" />
<text x="1157.14" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,760 samples, 0.09%)</title><rect x="1169.9" y="1205" width="1.0" height="15.0" fill="rgb(208,101,46)" rx="2" ry="2" />
<text x="1172.90" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1701" width="0.3" height="15.0" fill="rgb(211,43,35)" rx="2" ry="2" />
<text x="1191.59" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (242 samples, 0.01%)</title><rect x="872.8" y="1333" width="0.1" height="15.0" fill="rgb(249,159,41)" rx="2" ry="2" />
<text x="875.80" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (464 samples, 0.02%)</title><rect x="1058.9" y="1269" width="0.3" height="15.0" fill="rgb(239,100,47)" rx="2" ry="2" />
<text x="1061.90" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1349" width="0.3" height="15.0" fill="rgb(236,216,34)" rx="2" ry="2" />
<text x="1191.59" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4916 (417 samples, 0.02%)</title><rect x="1126.8" y="1365" width="0.2" height="15.0" fill="rgb(207,146,39)" rx="2" ry="2" />
<text x="1129.80" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12031 (5,410 samples, 0.26%)</title><rect x="1030.1" y="1381" width="3.1" height="15.0" fill="rgb(242,151,38)" rx="2" ry="2" />
<text x="1033.12" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (254 samples, 0.01%)</title><rect x="716.1" y="1573" width="0.2" height="15.0" fill="rgb(238,30,48)" rx="2" ry="2" />
<text x="719.12" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8318 (193 samples, 0.01%)</title><rect x="1187.1" y="1381" width="0.1" height="15.0" fill="rgb(234,63,12)" rx="2" ry="2" />
<text x="1190.11" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (178 samples, 0.01%)</title><rect x="839.6" y="1365" width="0.1" height="15.0" fill="rgb(223,73,17)" rx="2" ry="2" />
<text x="842.56" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (320 samples, 0.02%)</title><rect x="1025.0" y="1237" width="0.2" height="15.0" fill="rgb(229,12,30)" rx="2" ry="2" />
<text x="1028.03" y="1247.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,122 samples, 0.05%)</title><rect x="1105.6" y="1285" width="0.6" height="15.0" fill="rgb(250,45,53)" rx="2" ry="2" />
<text x="1108.57" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (137,096 samples, 6.68%)</title><rect x="97.2" y="1925" width="78.9" height="15.0" fill="rgb(228,63,43)" rx="2" ry="2" />
<text x="100.21" y="1935.5" >camlIrmin..</text>
</g>
<g >
<title>camlIrmin__Object_graph__treat_3817 (108,216 samples, 5.27%)</title><rect x="806.8" y="1509" width="62.3" height="15.0" fill="rgb(234,41,44)" rx="2" ry="2" />
<text x="809.84" y="1519.5" >camlIr..</text>
</g>
<g >
<title>__condvar_dec_grefs (409 samples, 0.02%)</title><rect x="853.8" y="1285" width="0.3" height="15.0" fill="rgb(240,143,41)" rx="2" ry="2" />
<text x="856.84" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (181 samples, 0.01%)</title><rect x="1014.5" y="1253" width="0.1" height="15.0" fill="rgb(245,87,43)" rx="2" ry="2" />
<text x="1017.53" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (389 samples, 0.02%)</title><rect x="1071.5" y="1141" width="0.2" height="15.0" fill="rgb(249,203,25)" rx="2" ry="2" />
<text x="1074.48" y="1151.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (2,391 samples, 0.12%)</title><rect x="35.0" y="2021" width="1.3" height="15.0" fill="rgb(242,154,18)" rx="2" ry="2" />
<text x="37.97" y="2031.5" ></text>
</g>
<g >
<title>camlLayered_bench__run_26822 (43,493 samples, 2.12%)</title><rect x="716.1" y="1829" width="25.0" height="15.0" fill="rgb(245,146,52)" rx="2" ry="2" />
<text x="719.10" y="1839.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1237" width="0.3" height="15.0" fill="rgb(212,90,23)" rx="2" ry="2" />
<text x="1192.37" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (874 samples, 0.04%)</title><rect x="864.1" y="1285" width="0.5" height="15.0" fill="rgb(220,229,0)" rx="2" ry="2" />
<text x="867.08" y="1295.5" ></text>
</g>
<g >
<title>compare_val (2,311 samples, 0.11%)</title><rect x="1136.5" y="1269" width="1.3" height="15.0" fill="rgb(225,19,2)" rx="2" ry="2" />
<text x="1139.52" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (250 samples, 0.01%)</title><rect x="1158.6" y="1237" width="0.1" height="15.0" fill="rgb(245,57,43)" rx="2" ry="2" />
<text x="1161.57" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (318 samples, 0.02%)</title><rect x="783.0" y="1269" width="0.2" height="15.0" fill="rgb(206,76,0)" rx="2" ry="2" />
<text x="786.04" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (281 samples, 0.01%)</title><rect x="958.5" y="1237" width="0.2" height="15.0" fill="rgb(236,132,21)" rx="2" ry="2" />
<text x="961.55" y="1247.5" ></text>
</g>
<g >
<title>caml_string_equal (360 samples, 0.02%)</title><rect x="1044.6" y="1301" width="0.2" height="15.0" fill="rgb(254,63,45)" rx="2" ry="2" />
<text x="1047.61" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (15,588 samples, 0.76%)</title><rect x="1159.3" y="1333" width="9.0" height="15.0" fill="rgb(224,157,20)" rx="2" ry="2" />
<text x="1162.34" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (704 samples, 0.03%)</title><rect x="806.2" y="1365" width="0.4" height="15.0" fill="rgb(210,111,34)" rx="2" ry="2" />
<text x="809.19" y="1375.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (487 samples, 0.02%)</title><rect x="910.4" y="1205" width="0.2" height="15.0" fill="rgb(254,34,40)" rx="2" ry="2" />
<text x="913.36" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (2,063 samples, 0.10%)</title><rect x="869.9" y="1445" width="1.2" height="15.0" fill="rgb(207,226,32)" rx="2" ry="2" />
<text x="872.87" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5832 (590 samples, 0.03%)</title><rect x="725.4" y="1429" width="0.4" height="15.0" fill="rgb(211,213,21)" rx="2" ry="2" />
<text x="728.43" y="1439.5" ></text>
</g>
<g >
<title>caml_thread_yield (772 samples, 0.04%)</title><rect x="722.1" y="1413" width="0.4" height="15.0" fill="rgb(241,6,40)" rx="2" ry="2" />
<text x="725.06" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1605" width="42.4" height="15.0" fill="rgb(245,105,31)" rx="2" ry="2" />
<text x="1148.76" y="1615.5" >caml..</text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11917 (3,307 samples, 0.16%)</title><rect x="725.4" y="1509" width="1.9" height="15.0" fill="rgb(240,153,39)" rx="2" ry="2" />
<text x="728.35" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1413" width="0.2" height="15.0" fill="rgb(244,93,27)" rx="2" ry="2" />
<text x="1191.85" y="1423.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (3,027 samples, 0.15%)</title><rect x="1103.3" y="1317" width="1.8" height="15.0" fill="rgb(254,86,50)" rx="2" ry="2" />
<text x="1106.34" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (209 samples, 0.01%)</title><rect x="771.0" y="1349" width="0.1" height="15.0" fill="rgb(232,79,7)" rx="2" ry="2" />
<text x="774.03" y="1359.5" ></text>
</g>
<g >
<title>caml_c_call (522 samples, 0.03%)</title><rect x="561.1" y="1925" width="0.3" height="15.0" fill="rgb(207,8,45)" rx="2" ry="2" />
<text x="564.09" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (182 samples, 0.01%)</title><rect x="1189.9" y="133" width="0.1" height="15.0" fill="rgb(217,79,3)" rx="2" ry="2" />
<text x="1192.85" y="143.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (176 samples, 0.01%)</title><rect x="806.0" y="1237" width="0.1" height="15.0" fill="rgb(208,72,52)" rx="2" ry="2" />
<text x="808.97" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,035 samples, 0.20%)</title><rect x="796.3" y="1285" width="2.3" height="15.0" fill="rgb(238,68,37)" rx="2" ry="2" />
<text x="799.27" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (53,821 samples, 2.62%)</title><rect x="1043.9" y="1397" width="30.9" height="15.0" fill="rgb(227,61,49)" rx="2" ry="2" />
<text x="1046.88" y="1407.5" >ca..</text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (26,915 samples, 1.31%)</title><rect x="897.3" y="1285" width="15.5" height="15.0" fill="rgb(228,178,29)" rx="2" ry="2" />
<text x="900.33" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="645" width="0.3" height="15.0" fill="rgb(220,62,40)" rx="2" ry="2" />
<text x="1191.59" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="1175.3" y="1109" width="0.1" height="15.0" fill="rgb(209,193,4)" rx="2" ry="2" />
<text x="1178.31" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,648 samples, 0.08%)</title><rect x="1026.0" y="1381" width="1.0" height="15.0" fill="rgb(254,54,25)" rx="2" ry="2" />
<text x="1029.04" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__fun_3710 (1,701 samples, 0.08%)</title><rect x="723.0" y="1493" width="1.0" height="15.0" fill="rgb(241,164,12)" rx="2" ry="2" />
<text x="726.01" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (394 samples, 0.02%)</title><rect x="870.2" y="1397" width="0.2" height="15.0" fill="rgb(244,15,32)" rx="2" ry="2" />
<text x="873.22" y="1407.5" ></text>
</g>
<g >
<title>futex_wake (465 samples, 0.02%)</title><rect x="922.3" y="1221" width="0.2" height="15.0" fill="rgb(222,155,24)" rx="2" ry="2" />
<text x="925.26" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (272 samples, 0.01%)</title><rect x="707.6" y="1797" width="0.1" height="15.0" fill="rgb(249,159,24)" rx="2" ry="2" />
<text x="710.56" y="1807.5" ></text>
</g>
<g >
<title>mark_slice (492 samples, 0.02%)</title><rect x="705.2" y="1797" width="0.3" height="15.0" fill="rgb(239,99,33)" rx="2" ry="2" />
<text x="708.25" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (337 samples, 0.02%)</title><rect x="1122.9" y="1365" width="0.2" height="15.0" fill="rgb(241,137,22)" rx="2" ry="2" />
<text x="1125.86" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (417 samples, 0.02%)</title><rect x="961.9" y="1253" width="0.2" height="15.0" fill="rgb(239,153,6)" rx="2" ry="2" />
<text x="964.89" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="549" width="0.3" height="15.0" fill="rgb(224,66,3)" rx="2" ry="2" />
<text x="1192.37" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,129 samples, 0.06%)</title><rect x="1149.6" y="1189" width="0.7" height="15.0" fill="rgb(247,75,48)" rx="2" ry="2" />
<text x="1152.62" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1669" width="0.3" height="15.0" fill="rgb(229,64,5)" rx="2" ry="2" />
<text x="1192.06" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14907 (1,144 samples, 0.06%)</title><rect x="772.8" y="1445" width="0.7" height="15.0" fill="rgb(219,204,47)" rx="2" ry="2" />
<text x="775.83" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (11,726 samples, 0.57%)</title><rect x="727.7" y="1541" width="6.8" height="15.0" fill="rgb(219,212,8)" rx="2" ry="2" />
<text x="730.73" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (285 samples, 0.01%)</title><rect x="1009.5" y="1285" width="0.2" height="15.0" fill="rgb(228,101,37)" rx="2" ry="2" />
<text x="1012.51" y="1295.5" ></text>
</g>
<g >
<title>camlThread__fun_286 (1,173,312 samples, 57.19%)</title><rect x="41.0" y="1989" width="674.9" height="15.0" fill="rgb(248,152,33)" rx="2" ry="2" />
<text x="44.03" y="1999.5" >camlThread__fun_286</text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (33,087 samples, 1.61%)</title><rect x="753.2" y="1445" width="19.0" height="15.0" fill="rgb(209,126,0)" rx="2" ry="2" />
<text x="756.17" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (531 samples, 0.03%)</title><rect x="1168.7" y="1269" width="0.3" height="15.0" fill="rgb(221,183,9)" rx="2" ry="2" />
<text x="1171.67" y="1279.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (608 samples, 0.03%)</title><rect x="758.5" y="1333" width="0.3" height="15.0" fill="rgb(230,165,42)" rx="2" ry="2" />
<text x="761.47" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (629 samples, 0.03%)</title><rect x="838.5" y="1301" width="0.3" height="15.0" fill="rgb(236,45,47)" rx="2" ry="2" />
<text x="841.47" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (14,493 samples, 0.71%)</title><rect x="1130.0" y="1365" width="8.3" height="15.0" fill="rgb(211,213,44)" rx="2" ry="2" />
<text x="1132.99" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (209 samples, 0.01%)</title><rect x="1181.2" y="1205" width="0.1" height="15.0" fill="rgb(209,130,11)" rx="2" ry="2" />
<text x="1184.22" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (539 samples, 0.03%)</title><rect x="959.8" y="1253" width="0.3" height="15.0" fill="rgb(214,203,46)" rx="2" ry="2" />
<text x="962.79" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (244 samples, 0.01%)</title><rect x="1062.8" y="1285" width="0.1" height="15.0" fill="rgb(239,169,38)" rx="2" ry="2" />
<text x="1065.76" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (465 samples, 0.02%)</title><rect x="1159.8" y="1237" width="0.3" height="15.0" fill="rgb(229,148,34)" rx="2" ry="2" />
<text x="1162.78" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1413" width="0.3" height="15.0" fill="rgb(207,148,35)" rx="2" ry="2" />
<text x="1192.06" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,011 samples, 0.20%)</title><rect x="831.7" y="1317" width="2.4" height="15.0" fill="rgb(220,205,21)" rx="2" ry="2" />
<text x="834.75" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (935 samples, 0.05%)</title><rect x="919.7" y="1157" width="0.6" height="15.0" fill="rgb(252,115,1)" rx="2" ry="2" />
<text x="922.75" y="1167.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (423 samples, 0.02%)</title><rect x="818.6" y="1269" width="0.2" height="15.0" fill="rgb(206,85,31)" rx="2" ry="2" />
<text x="821.60" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (374 samples, 0.02%)</title><rect x="750.2" y="1237" width="0.2" height="15.0" fill="rgb(224,144,1)" rx="2" ry="2" />
<text x="753.15" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1589" width="0.3" height="15.0" fill="rgb(251,222,17)" rx="2" ry="2" />
<text x="1192.69" y="1599.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (379 samples, 0.02%)</title><rect x="1166.6" y="1189" width="0.2" height="15.0" fill="rgb(247,107,12)" rx="2" ry="2" />
<text x="1169.62" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (385 samples, 0.02%)</title><rect x="881.6" y="1269" width="0.3" height="15.0" fill="rgb(253,73,35)" rx="2" ry="2" />
<text x="884.65" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1621" width="0.3" height="15.0" fill="rgb(213,221,48)" rx="2" ry="2" />
<text x="1192.69" y="1631.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (418 samples, 0.02%)</title><rect x="10.2" y="1653" width="0.2" height="15.0" fill="rgb(223,4,50)" rx="2" ry="2" />
<text x="13.16" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (10,573 samples, 0.52%)</title><rect x="953.4" y="1269" width="6.1" height="15.0" fill="rgb(254,49,3)" rx="2" ry="2" />
<text x="956.41" y="1279.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (2,629 samples, 0.13%)</title><rect x="1106.5" y="1285" width="1.6" height="15.0" fill="rgb(234,145,28)" rx="2" ry="2" />
<text x="1109.55" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (471 samples, 0.02%)</title><rect x="1184.5" y="1205" width="0.3" height="15.0" fill="rgb(249,19,37)" rx="2" ry="2" />
<text x="1187.48" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (10,549 samples, 0.51%)</title><rect x="872.4" y="1381" width="6.1" height="15.0" fill="rgb(205,171,15)" rx="2" ry="2" />
<text x="875.44" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (402 samples, 0.02%)</title><rect x="702.7" y="1797" width="0.2" height="15.0" fill="rgb(240,107,18)" rx="2" ry="2" />
<text x="705.70" y="1807.5" ></text>
</g>
<g >
<title>caml_hash (1,487 samples, 0.07%)</title><rect x="1059.3" y="1253" width="0.9" height="15.0" fill="rgb(228,58,12)" rx="2" ry="2" />
<text x="1062.31" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (433 samples, 0.02%)</title><rect x="1003.4" y="1253" width="0.2" height="15.0" fill="rgb(228,122,2)" rx="2" ry="2" />
<text x="1006.35" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (630 samples, 0.03%)</title><rect x="836.4" y="1333" width="0.4" height="15.0" fill="rgb(209,144,0)" rx="2" ry="2" />
<text x="839.44" y="1343.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (54,092 samples, 2.64%)</title><rect x="576.3" y="1909" width="31.1" height="15.0" fill="rgb(246,172,9)" rx="2" ry="2" />
<text x="579.27" y="1919.5" >__..</text>
</g>
<g >
<title>caml_leave_blocking_section (443 samples, 0.02%)</title><rect x="933.9" y="1253" width="0.3" height="15.0" fill="rgb(246,62,1)" rx="2" ry="2" />
<text x="936.90" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__tuple_486 (401 samples, 0.02%)</title><rect x="1115.8" y="1317" width="0.2" height="15.0" fill="rgb(238,3,32)" rx="2" ry="2" />
<text x="1118.75" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (448 samples, 0.02%)</title><rect x="819.4" y="1269" width="0.3" height="15.0" fill="rgb(246,92,3)" rx="2" ry="2" />
<text x="822.43" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (564,391 samples, 27.51%)</title><rect x="88.3" y="1941" width="324.7" height="15.0" fill="rgb(221,13,31)" rx="2" ry="2" />
<text x="91.34" y="1951.5" >camlIndex__decode_entry_323</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (1,395 samples, 0.07%)</title><rect x="825.0" y="1381" width="0.8" height="15.0" fill="rgb(237,3,54)" rx="2" ry="2" />
<text x="827.96" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,997 samples, 0.10%)</title><rect x="869.9" y="1429" width="1.1" height="15.0" fill="rgb(247,62,37)" rx="2" ry="2" />
<text x="872.90" y="1439.5" ></text>
</g>
<g >
<title>caml_alloc_string (335 samples, 0.02%)</title><rect x="901.1" y="1205" width="0.2" height="15.0" fill="rgb(244,76,27)" rx="2" ry="2" />
<text x="904.14" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (907 samples, 0.04%)</title><rect x="699.8" y="1893" width="0.5" height="15.0" fill="rgb(232,217,4)" rx="2" ry="2" />
<text x="702.76" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__mem_7394 (18,936 samples, 0.92%)</title><rect x="727.6" y="1589" width="10.9" height="15.0" fill="rgb(249,57,29)" rx="2" ry="2" />
<text x="730.56" y="1599.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (198 samples, 0.01%)</title><rect x="389.4" y="1829" width="0.1" height="15.0" fill="rgb(215,104,35)" rx="2" ry="2" />
<text x="392.38" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_203 (303 samples, 0.01%)</title><rect x="1024.6" y="1349" width="0.1" height="15.0" fill="rgb(242,168,2)" rx="2" ry="2" />
<text x="1027.57" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,956 samples, 0.10%)</title><rect x="1044.3" y="1349" width="1.1" height="15.0" fill="rgb(239,6,53)" rx="2" ry="2" />
<text x="1047.30" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (239 samples, 0.01%)</title><rect x="727.1" y="1461" width="0.1" height="15.0" fill="rgb(232,209,16)" rx="2" ry="2" />
<text x="730.11" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (430 samples, 0.02%)</title><rect x="206.3" y="1845" width="0.2" height="15.0" fill="rgb(244,139,35)" rx="2" ry="2" />
<text x="209.26" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__to_bin_11731 (185 samples, 0.01%)</title><rect x="1139.0" y="1429" width="0.1" height="15.0" fill="rgb(224,198,32)" rx="2" ry="2" />
<text x="1141.97" y="1439.5" ></text>
</g>
<g >
<title>mark_slice_darken (986 samples, 0.05%)</title><rect x="205.5" y="1813" width="0.6" height="15.0" fill="rgb(227,210,54)" rx="2" ry="2" />
<text x="208.48" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_456 (237 samples, 0.01%)</title><rect x="866.2" y="1317" width="0.1" height="15.0" fill="rgb(213,12,31)" rx="2" ry="2" />
<text x="869.19" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (845 samples, 0.04%)</title><rect x="699.8" y="1877" width="0.5" height="15.0" fill="rgb(231,12,12)" rx="2" ry="2" />
<text x="702.80" y="1887.5" ></text>
</g>
<g >
<title>__condvar_confirm_wakeup (4,050 samples, 0.20%)</title><rect x="655.3" y="1877" width="2.3" height="15.0" fill="rgb(208,84,13)" rx="2" ry="2" />
<text x="658.26" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (13,113 samples, 0.64%)</title><rect x="1169.0" y="1301" width="7.5" height="15.0" fill="rgb(205,86,41)" rx="2" ry="2" />
<text x="1172.01" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (11,191 samples, 0.55%)</title><rect x="306.8" y="1877" width="6.4" height="15.0" fill="rgb(254,151,6)" rx="2" ry="2" />
<text x="309.81" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (314 samples, 0.02%)</title><rect x="883.4" y="1221" width="0.2" height="15.0" fill="rgb(234,130,47)" rx="2" ry="2" />
<text x="886.38" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (232 samples, 0.01%)</title><rect x="793.1" y="1301" width="0.1" height="15.0" fill="rgb(207,125,15)" rx="2" ry="2" />
<text x="796.09" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="933" width="0.3" height="15.0" fill="rgb(208,147,1)" rx="2" ry="2" />
<text x="1192.37" y="943.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (4,154 samples, 0.20%)</title><rect x="1149.5" y="1221" width="2.4" height="15.0" fill="rgb(221,111,18)" rx="2" ry="2" />
<text x="1152.52" y="1231.5" ></text>
</g>
<g >
<title>futex_wake (1,194 samples, 0.06%)</title><rect x="943.2" y="1285" width="0.7" height="15.0" fill="rgb(206,96,49)" rx="2" ry="2" />
<text x="946.22" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (275 samples, 0.01%)</title><rect x="976.6" y="1333" width="0.1" height="15.0" fill="rgb(245,74,45)" rx="2" ry="2" />
<text x="979.55" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__triple_469 (429 samples, 0.02%)</title><rect x="420.6" y="1893" width="0.2" height="15.0" fill="rgb(238,183,32)" rx="2" ry="2" />
<text x="423.59" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (178 samples, 0.01%)</title><rect x="738.3" y="1509" width="0.1" height="15.0" fill="rgb(225,119,18)" rx="2" ry="2" />
<text x="741.31" y="1519.5" ></text>
</g>
<g >
<title>caml_apply2 (1,464 samples, 0.07%)</title><rect x="421.7" y="1893" width="0.9" height="15.0" fill="rgb(231,28,54)" rx="2" ry="2" />
<text x="424.72" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (998 samples, 0.05%)</title><rect x="1067.5" y="1205" width="0.6" height="15.0" fill="rgb(235,43,9)" rx="2" ry="2" />
<text x="1070.51" y="1215.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (797 samples, 0.04%)</title><rect x="205.0" y="1813" width="0.4" height="15.0" fill="rgb(233,48,52)" rx="2" ry="2" />
<text x="207.97" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (279 samples, 0.01%)</title><rect x="1127.2" y="1349" width="0.2" height="15.0" fill="rgb(221,122,3)" rx="2" ry="2" />
<text x="1130.20" y="1359.5" ></text>
</g>
<g >
<title>do_compaction (184 samples, 0.01%)</title><rect x="1188.3" y="1525" width="0.1" height="15.0" fill="rgb(243,77,52)" rx="2" ry="2" />
<text x="1191.26" y="1535.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (460 samples, 0.02%)</title><rect x="972.8" y="1189" width="0.3" height="15.0" fill="rgb(246,98,43)" rx="2" ry="2" />
<text x="975.85" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11748 (352 samples, 0.02%)</title><rect x="1076.1" y="1445" width="0.2" height="15.0" fill="rgb(223,158,6)" rx="2" ry="2" />
<text x="1079.10" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (882 samples, 0.04%)</title><rect x="1146.7" y="1301" width="0.5" height="15.0" fill="rgb(224,48,24)" rx="2" ry="2" />
<text x="1149.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="421" width="0.3" height="15.0" fill="rgb(230,169,8)" rx="2" ry="2" />
<text x="1191.59" y="431.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (183 samples, 0.01%)</title><rect x="545.3" y="1877" width="0.1" height="15.0" fill="rgb(247,202,54)" rx="2" ry="2" />
<text x="548.32" y="1887.5" ></text>
</g>
<g >
<title>mark_slice_darken (609 samples, 0.03%)</title><rect x="262.1" y="1829" width="0.3" height="15.0" fill="rgb(208,196,36)" rx="2" ry="2" />
<text x="265.08" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,516 samples, 1.00%)</title><rect x="681.1" y="1781" width="11.8" height="15.0" fill="rgb(220,88,7)" rx="2" ry="2" />
<text x="684.15" y="1791.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,312 samples, 0.06%)</title><rect x="852.4" y="1349" width="0.8" height="15.0" fill="rgb(207,95,41)" rx="2" ry="2" />
<text x="855.43" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (252 samples, 0.01%)</title><rect x="35.6" y="1973" width="0.1" height="15.0" fill="rgb(241,98,42)" rx="2" ry="2" />
<text x="38.58" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,201 samples, 0.06%)</title><rect x="952.0" y="1237" width="0.7" height="15.0" fill="rgb(205,54,15)" rx="2" ry="2" />
<text x="955.01" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,713 samples, 0.08%)</title><rect x="180.4" y="1877" width="0.9" height="15.0" fill="rgb(243,123,6)" rx="2" ry="2" />
<text x="183.36" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4378 (1,510 samples, 0.07%)</title><rect x="983.6" y="1413" width="0.9" height="15.0" fill="rgb(227,45,8)" rx="2" ry="2" />
<text x="986.59" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_379 (204 samples, 0.01%)</title><rect x="1115.1" y="1301" width="0.1" height="15.0" fill="rgb(252,60,20)" rx="2" ry="2" />
<text x="1118.09" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (528 samples, 0.03%)</title><rect x="927.2" y="1301" width="0.3" height="15.0" fill="rgb(218,114,29)" rx="2" ry="2" />
<text x="930.23" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (716 samples, 0.03%)</title><rect x="402.5" y="1909" width="0.4" height="15.0" fill="rgb(207,12,44)" rx="2" ry="2" />
<text x="405.51" y="1919.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (187 samples, 0.01%)</title><rect x="890.0" y="1413" width="0.1" height="15.0" fill="rgb(205,92,20)" rx="2" ry="2" />
<text x="893.00" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="357" width="0.3" height="15.0" fill="rgb(233,178,35)" rx="2" ry="2" />
<text x="1191.59" y="367.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1797" width="0.3" height="15.0" fill="rgb(218,14,38)" rx="2" ry="2" />
<text x="1192.69" y="1807.5" ></text>
</g>
<g >
<title>caml_call_gc (526 samples, 0.03%)</title><rect x="1093.4" y="1253" width="0.3" height="15.0" fill="rgb(205,12,25)" rx="2" ry="2" />
<text x="1096.36" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (472 samples, 0.02%)</title><rect x="816.0" y="1333" width="0.2" height="15.0" fill="rgb(208,179,28)" rx="2" ry="2" />
<text x="818.96" y="1343.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (397 samples, 0.02%)</title><rect x="1032.7" y="1269" width="0.2" height="15.0" fill="rgb(235,121,46)" rx="2" ry="2" />
<text x="1035.66" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1739 (1,231 samples, 0.06%)</title><rect x="358.3" y="1909" width="0.7" height="15.0" fill="rgb(238,226,44)" rx="2" ry="2" />
<text x="361.30" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (533 samples, 0.03%)</title><rect x="1014.3" y="1285" width="0.3" height="15.0" fill="rgb(247,28,35)" rx="2" ry="2" />
<text x="1017.33" y="1295.5" ></text>
</g>
<g >
<title>caml_thread_yield (3,245 samples, 0.16%)</title><rect x="882.0" y="1365" width="1.9" height="15.0" fill="rgb(241,28,20)" rx="2" ry="2" />
<text x="884.99" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1829" width="0.3" height="15.0" fill="rgb(251,117,6)" rx="2" ry="2" />
<text x="1192.37" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (179 samples, 0.01%)</title><rect x="1188.7" y="117" width="0.1" height="15.0" fill="rgb(242,152,40)" rx="2" ry="2" />
<text x="1191.71" y="127.5" ></text>
</g>
<g >
<title>__libc_pread64 (390 samples, 0.02%)</title><rect x="750.1" y="1269" width="0.3" height="15.0" fill="rgb(235,124,40)" rx="2" ry="2" />
<text x="753.15" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (273 samples, 0.01%)</title><rect x="773.7" y="1477" width="0.2" height="15.0" fill="rgb(205,43,9)" rx="2" ry="2" />
<text x="776.75" y="1487.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (426 samples, 0.02%)</title><rect x="818.6" y="1285" width="0.2" height="15.0" fill="rgb(240,162,28)" rx="2" ry="2" />
<text x="821.60" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="469" width="0.3" height="15.0" fill="rgb(251,144,36)" rx="2" ry="2" />
<text x="1192.06" y="479.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (259 samples, 0.01%)</title><rect x="871.1" y="1429" width="0.1" height="15.0" fill="rgb(228,112,48)" rx="2" ry="2" />
<text x="874.07" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (196 samples, 0.01%)</title><rect x="1035.2" y="1301" width="0.1" height="15.0" fill="rgb(234,60,30)" rx="2" ry="2" />
<text x="1038.23" y="1311.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (272 samples, 0.01%)</title><rect x="163.7" y="1845" width="0.2" height="15.0" fill="rgb(225,10,30)" rx="2" ry="2" />
<text x="166.72" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="709" width="0.3" height="15.0" fill="rgb(246,150,25)" rx="2" ry="2" />
<text x="1192.69" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (251 samples, 0.01%)</title><rect x="1120.6" y="1333" width="0.1" height="15.0" fill="rgb(247,191,42)" rx="2" ry="2" />
<text x="1123.60" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,278 samples, 0.06%)</title><rect x="963.0" y="1269" width="0.7" height="15.0" fill="rgb(213,44,10)" rx="2" ry="2" />
<text x="965.95" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (358 samples, 0.02%)</title><rect x="238.8" y="1813" width="0.2" height="15.0" fill="rgb(211,139,19)" rx="2" ry="2" />
<text x="241.77" y="1823.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (437 samples, 0.02%)</title><rect x="912.0" y="1253" width="0.2" height="15.0" fill="rgb(224,211,18)" rx="2" ry="2" />
<text x="914.99" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (528 samples, 0.03%)</title><rect x="1110.7" y="1349" width="0.3" height="15.0" fill="rgb(207,158,5)" rx="2" ry="2" />
<text x="1113.72" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (929 samples, 0.05%)</title><rect x="1104.5" y="1237" width="0.6" height="15.0" fill="rgb(229,64,43)" rx="2" ry="2" />
<text x="1107.54" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (691 samples, 0.03%)</title><rect x="1104.7" y="1189" width="0.4" height="15.0" fill="rgb(232,47,13)" rx="2" ry="2" />
<text x="1107.68" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (175 samples, 0.01%)</title><rect x="763.9" y="1253" width="0.1" height="15.0" fill="rgb(235,148,17)" rx="2" ry="2" />
<text x="766.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (262 samples, 0.01%)</title><rect x="1124.8" y="1381" width="0.1" height="15.0" fill="rgb(245,8,45)" rx="2" ry="2" />
<text x="1127.80" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,949 samples, 0.09%)</title><rect x="1169.8" y="1221" width="1.2" height="15.0" fill="rgb(252,192,53)" rx="2" ry="2" />
<text x="1172.85" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (215 samples, 0.01%)</title><rect x="774.1" y="1477" width="0.1" height="15.0" fill="rgb(240,59,54)" rx="2" ry="2" />
<text x="777.07" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1653" width="0.2" height="15.0" fill="rgb(222,201,33)" rx="2" ry="2" />
<text x="1191.85" y="1663.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (487 samples, 0.02%)</title><rect x="933.3" y="1205" width="0.3" height="15.0" fill="rgb(217,48,24)" rx="2" ry="2" />
<text x="936.29" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (391 samples, 0.02%)</title><rect x="734.7" y="1509" width="0.2" height="15.0" fill="rgb(242,109,52)" rx="2" ry="2" />
<text x="737.71" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_847 (2,409 samples, 0.12%)</title><rect x="237.6" y="1893" width="1.4" height="15.0" fill="rgb(225,127,35)" rx="2" ry="2" />
<text x="240.65" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (197 samples, 0.01%)</title><rect x="886.2" y="1445" width="0.1" height="15.0" fill="rgb(209,47,22)" rx="2" ry="2" />
<text x="889.17" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,099 samples, 0.05%)</title><rect x="968.7" y="1205" width="0.6" height="15.0" fill="rgb(216,93,46)" rx="2" ry="2" />
<text x="971.66" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (827 samples, 0.04%)</title><rect x="1156.7" y="1301" width="0.5" height="15.0" fill="rgb(245,181,6)" rx="2" ry="2" />
<text x="1159.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="373" width="0.3" height="15.0" fill="rgb(238,187,43)" rx="2" ry="2" />
<text x="1192.06" y="383.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (322 samples, 0.02%)</title><rect x="1153.7" y="1173" width="0.2" height="15.0" fill="rgb(253,125,47)" rx="2" ry="2" />
<text x="1156.70" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (181 samples, 0.01%)</title><rect x="1014.5" y="1269" width="0.1" height="15.0" fill="rgb(209,197,52)" rx="2" ry="2" />
<text x="1017.53" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_144 (667 samples, 0.03%)</title><rect x="1072.0" y="1333" width="0.4" height="15.0" fill="rgb(215,161,51)" rx="2" ry="2" />
<text x="1074.97" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1573" width="0.3" height="15.0" fill="rgb(207,163,5)" rx="2" ry="2" />
<text x="1192.37" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="357" width="0.2" height="15.0" fill="rgb(254,16,34)" rx="2" ry="2" />
<text x="1191.85" y="367.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (9,192 samples, 0.45%)</title><rect x="1149.0" y="1285" width="5.3" height="15.0" fill="rgb(237,80,22)" rx="2" ry="2" />
<text x="1151.98" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (185 samples, 0.01%)</title><rect x="1155.9" y="1269" width="0.1" height="15.0" fill="rgb(252,212,21)" rx="2" ry="2" />
<text x="1158.86" y="1279.5" ></text>
</g>
<g >
<title>__read_chk (9,103 samples, 0.44%)</title><rect x="29.7" y="2021" width="5.3" height="15.0" fill="rgb(250,107,43)" rx="2" ry="2" />
<text x="32.73" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11922 (9,906 samples, 0.48%)</title><rect x="1132.6" y="1333" width="5.7" height="15.0" fill="rgb(209,169,8)" rx="2" ry="2" />
<text x="1135.58" y="1343.5" ></text>
</g>
<g >
<title>caml_apply4 (395 samples, 0.02%)</title><rect x="402.9" y="1909" width="0.2" height="15.0" fill="rgb(218,150,6)" rx="2" ry="2" />
<text x="405.92" y="1919.5" ></text>
</g>
<g >
<title>camlLayered_bench__entry (821,291 samples, 40.03%)</title><rect x="716.1" y="1925" width="472.4" height="15.0" fill="rgb(229,95,32)" rx="2" ry="2" />
<text x="719.10" y="1935.5" >camlLayered_bench__entry</text>
</g>
<g >
<title>[[kernel.kallsyms]] (456 samples, 0.02%)</title><rect x="770.0" y="1253" width="0.2" height="15.0" fill="rgb(228,53,13)" rx="2" ry="2" />
<text x="772.97" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="549" width="0.3" height="15.0" fill="rgb(238,115,26)" rx="2" ry="2" />
<text x="1192.06" y="559.5" ></text>
</g>
<g >
<title>sweep_slice (218 samples, 0.01%)</title><rect x="231.8" y="1813" width="0.1" height="15.0" fill="rgb(234,10,49)" rx="2" ry="2" />
<text x="234.75" y="1823.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (720 samples, 0.04%)</title><rect x="100.4" y="1845" width="0.4" height="15.0" fill="rgb(252,99,38)" rx="2" ry="2" />
<text x="103.40" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_34596 (306 samples, 0.01%)</title><rect x="888.2" y="1669" width="0.2" height="15.0" fill="rgb(214,30,26)" rx="2" ry="2" />
<text x="891.21" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="2005" width="0.3" height="15.0" fill="rgb(227,14,6)" rx="2" ry="2" />
<text x="1191.59" y="2015.5" ></text>
</g>
<g >
<title>mark_slice (473 samples, 0.02%)</title><rect x="100.8" y="1845" width="0.3" height="15.0" fill="rgb(240,3,25)" rx="2" ry="2" />
<text x="103.81" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="341" width="0.3" height="15.0" fill="rgb(231,166,38)" rx="2" ry="2" />
<text x="1192.69" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217 samples, 0.01%)</title><rect x="785.8" y="1205" width="0.1" height="15.0" fill="rgb(238,114,8)" rx="2" ry="2" />
<text x="788.78" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (430 samples, 0.02%)</title><rect x="1157.4" y="1189" width="0.3" height="15.0" fill="rgb(237,34,48)" rx="2" ry="2" />
<text x="1160.41" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (192 samples, 0.01%)</title><rect x="850.9" y="1317" width="0.1" height="15.0" fill="rgb(232,214,45)" rx="2" ry="2" />
<text x="853.89" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1365" width="0.3" height="15.0" fill="rgb(235,113,24)" rx="2" ry="2" />
<text x="1191.59" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="917" width="0.3" height="15.0" fill="rgb(248,144,54)" rx="2" ry="2" />
<text x="1192.37" y="927.5" ></text>
</g>
<g >
<title>sweep_slice (194 samples, 0.01%)</title><rect x="181.2" y="1845" width="0.1" height="15.0" fill="rgb(228,190,27)" rx="2" ry="2" />
<text x="184.23" y="1855.5" ></text>
</g>
<g >
<title>sweep_slice (231 samples, 0.01%)</title><rect x="221.3" y="1829" width="0.1" height="15.0" fill="rgb(205,45,52)" rx="2" ry="2" />
<text x="224.27" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11991 (3,242 samples, 0.16%)</title><rect x="725.4" y="1493" width="1.8" height="15.0" fill="rgb(224,126,44)" rx="2" ry="2" />
<text x="728.38" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1653" width="0.3" height="15.0" fill="rgb(225,17,45)" rx="2" ry="2" />
<text x="1192.06" y="1663.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (226 samples, 0.01%)</title><rect x="1012.2" y="1317" width="0.1" height="15.0" fill="rgb(223,128,43)" rx="2" ry="2" />
<text x="1015.18" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (902 samples, 0.04%)</title><rect x="864.1" y="1301" width="0.5" height="15.0" fill="rgb(225,34,12)" rx="2" ry="2" />
<text x="867.07" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (773 samples, 0.04%)</title><rect x="1070.2" y="1173" width="0.5" height="15.0" fill="rgb(237,87,52)" rx="2" ry="2" />
<text x="1073.23" y="1183.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (394 samples, 0.02%)</title><rect x="1189.1" y="133" width="0.2" height="15.0" fill="rgb(224,86,29)" rx="2" ry="2" />
<text x="1192.08" y="143.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (3,409 samples, 0.17%)</title><rect x="749.6" y="1333" width="2.0" height="15.0" fill="rgb(216,78,27)" rx="2" ry="2" />
<text x="752.63" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_376 (395 samples, 0.02%)</title><rect x="704.8" y="1829" width="0.3" height="15.0" fill="rgb(207,188,45)" rx="2" ry="2" />
<text x="707.83" y="1839.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (30,578 samples, 1.49%)</title><rect x="896.5" y="1301" width="17.6" height="15.0" fill="rgb(209,147,38)" rx="2" ry="2" />
<text x="899.47" y="1311.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (354 samples, 0.02%)</title><rect x="545.8" y="1893" width="0.2" height="15.0" fill="rgb(252,38,20)" rx="2" ry="2" />
<text x="548.80" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="2037" width="0.3" height="15.0" fill="rgb(237,196,31)" rx="2" ry="2" />
<text x="1192.06" y="2047.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (204 samples, 0.01%)</title><rect x="238.6" y="1845" width="0.2" height="15.0" fill="rgb(245,90,10)" rx="2" ry="2" />
<text x="241.64" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1941" width="0.3" height="15.0" fill="rgb(253,0,23)" rx="2" ry="2" />
<text x="1192.69" y="1951.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (184 samples, 0.01%)</title><rect x="772.9" y="1253" width="0.1" height="15.0" fill="rgb(253,164,28)" rx="2" ry="2" />
<text x="775.90" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (926 samples, 0.05%)</title><rect x="921.4" y="1157" width="0.5" height="15.0" fill="rgb(206,123,25)" rx="2" ry="2" />
<text x="924.38" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,521 samples, 0.12%)</title><rect x="1157.3" y="1269" width="1.4" height="15.0" fill="rgb(246,77,37)" rx="2" ry="2" />
<text x="1160.27" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (323 samples, 0.02%)</title><rect x="1150.5" y="1189" width="0.2" height="15.0" fill="rgb(213,214,27)" rx="2" ry="2" />
<text x="1153.52" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (340 samples, 0.02%)</title><rect x="867.4" y="1189" width="0.2" height="15.0" fill="rgb(254,204,6)" rx="2" ry="2" />
<text x="870.37" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (701 samples, 0.03%)</title><rect x="1011.8" y="1317" width="0.4" height="15.0" fill="rgb(234,175,27)" rx="2" ry="2" />
<text x="1014.78" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Store__fun_34103 (41,797 samples, 2.04%)</title><rect x="716.1" y="1653" width="24.0" height="15.0" fill="rgb(252,23,19)" rx="2" ry="2" />
<text x="719.10" y="1663.5" >c..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1061" width="0.3" height="15.0" fill="rgb(208,22,8)" rx="2" ry="2" />
<text x="1192.37" y="1071.5" ></text>
</g>
<g >
<title>camlDigestif_conv__to_raw_string_476 (214 samples, 0.01%)</title><rect x="449.9" y="1925" width="0.1" height="15.0" fill="rgb(217,135,1)" rx="2" ry="2" />
<text x="452.91" y="1935.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (203 samples, 0.01%)</title><rect x="238.6" y="1829" width="0.2" height="15.0" fill="rgb(240,167,21)" rx="2" ry="2" />
<text x="241.64" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (331 samples, 0.02%)</title><rect x="1151.5" y="1189" width="0.2" height="15.0" fill="rgb(229,169,47)" rx="2" ry="2" />
<text x="1154.53" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (323 samples, 0.02%)</title><rect x="1060.9" y="1269" width="0.2" height="15.0" fill="rgb(217,188,41)" rx="2" ry="2" />
<text x="1063.87" y="1279.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,242 samples, 0.06%)</title><rect x="968.6" y="1253" width="0.7" height="15.0" fill="rgb(240,100,44)" rx="2" ry="2" />
<text x="971.58" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,768 samples, 0.33%)</title><rect x="1178.3" y="1269" width="3.9" height="15.0" fill="rgb(209,142,52)" rx="2" ry="2" />
<text x="1181.26" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (466 samples, 0.02%)</title><rect x="1176.7" y="1317" width="0.3" height="15.0" fill="rgb(244,26,12)" rx="2" ry="2" />
<text x="1179.70" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (1,277 samples, 0.06%)</title><rect x="1093.7" y="1285" width="0.7" height="15.0" fill="rgb(223,209,48)" rx="2" ry="2" />
<text x="1096.66" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,091 samples, 0.05%)</title><rect x="971.4" y="1205" width="0.6" height="15.0" fill="rgb(217,111,41)" rx="2" ry="2" />
<text x="974.37" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (210 samples, 0.01%)</title><rect x="417.2" y="1845" width="0.1" height="15.0" fill="rgb(216,160,22)" rx="2" ry="2" />
<text x="420.17" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (250 samples, 0.01%)</title><rect x="1003.1" y="1269" width="0.2" height="15.0" fill="rgb(237,109,37)" rx="2" ry="2" />
<text x="1006.13" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (296 samples, 0.01%)</title><rect x="628.0" y="1813" width="0.2" height="15.0" fill="rgb(206,45,31)" rx="2" ry="2" />
<text x="631.03" y="1823.5" ></text>
</g>
<g >
<title>caml_compare (231 samples, 0.01%)</title><rect x="839.3" y="1349" width="0.2" height="15.0" fill="rgb(215,138,39)" rx="2" ry="2" />
<text x="842.34" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (4,717 samples, 0.23%)</title><rect x="817.4" y="1381" width="2.7" height="15.0" fill="rgb(247,88,33)" rx="2" ry="2" />
<text x="820.35" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1519 (303 samples, 0.01%)</title><rect x="704.1" y="1845" width="0.2" height="15.0" fill="rgb(242,5,8)" rx="2" ry="2" />
<text x="707.09" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="661" width="0.3" height="15.0" fill="rgb(244,192,32)" rx="2" ry="2" />
<text x="1192.37" y="671.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (427 samples, 0.02%)</title><rect x="846.2" y="1301" width="0.2" height="15.0" fill="rgb(231,99,40)" rx="2" ry="2" />
<text x="849.17" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (1,009 samples, 0.05%)</title><rect x="789.4" y="1333" width="0.6" height="15.0" fill="rgb(240,22,18)" rx="2" ry="2" />
<text x="792.40" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (243 samples, 0.01%)</title><rect x="817.0" y="1317" width="0.1" height="15.0" fill="rgb(249,213,17)" rx="2" ry="2" />
<text x="819.96" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (535 samples, 0.03%)</title><rect x="1053.5" y="1269" width="0.3" height="15.0" fill="rgb(228,113,46)" rx="2" ry="2" />
<text x="1056.46" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (439 samples, 0.02%)</title><rect x="1076.6" y="1429" width="0.2" height="15.0" fill="rgb(235,134,44)" rx="2" ry="2" />
<text x="1079.59" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (207 samples, 0.01%)</title><rect x="937.0" y="1317" width="0.1" height="15.0" fill="rgb(232,72,36)" rx="2" ry="2" />
<text x="939.96" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (361 samples, 0.02%)</title><rect x="1006.4" y="1221" width="0.2" height="15.0" fill="rgb(235,51,48)" rx="2" ry="2" />
<text x="1009.35" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1589" width="0.3" height="15.0" fill="rgb(234,125,28)" rx="2" ry="2" />
<text x="1191.59" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (6,389 samples, 0.31%)</title><rect x="997.6" y="1285" width="3.7" height="15.0" fill="rgb(222,18,34)" rx="2" ry="2" />
<text x="1000.61" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (240 samples, 0.01%)</title><rect x="859.7" y="1381" width="0.1" height="15.0" fill="rgb(239,113,34)" rx="2" ry="2" />
<text x="862.69" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="437" width="0.3" height="15.0" fill="rgb(245,181,11)" rx="2" ry="2" />
<text x="1191.59" y="447.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (442 samples, 0.02%)</title><rect x="879.3" y="1365" width="0.3" height="15.0" fill="rgb(246,170,50)" rx="2" ry="2" />
<text x="882.34" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (216 samples, 0.01%)</title><rect x="847.0" y="1317" width="0.1" height="15.0" fill="rgb(214,116,40)" rx="2" ry="2" />
<text x="850.02" y="1327.5" ></text>
</g>
<g >
<title>caml_string_length (255 samples, 0.01%)</title><rect x="866.8" y="1269" width="0.1" height="15.0" fill="rgb(205,17,19)" rx="2" ry="2" />
<text x="869.78" y="1279.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (189 samples, 0.01%)</title><rect x="849.5" y="1285" width="0.1" height="15.0" fill="rgb(222,140,37)" rx="2" ry="2" />
<text x="852.52" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,737 samples, 0.08%)</title><rect x="1030.5" y="1301" width="1.0" height="15.0" fill="rgb(216,63,13)" rx="2" ry="2" />
<text x="1033.48" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (700 samples, 0.03%)</title><rect x="1128.0" y="1381" width="0.4" height="15.0" fill="rgb(240,32,29)" rx="2" ry="2" />
<text x="1130.98" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (2,999 samples, 0.15%)</title><rect x="824.7" y="1413" width="1.7" height="15.0" fill="rgb(254,11,4)" rx="2" ry="2" />
<text x="827.72" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="309" width="0.3" height="15.0" fill="rgb(213,13,14)" rx="2" ry="2" />
<text x="1192.37" y="319.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (305 samples, 0.01%)</title><rect x="751.2" y="1237" width="0.2" height="15.0" fill="rgb(245,121,7)" rx="2" ry="2" />
<text x="754.20" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (732 samples, 0.04%)</title><rect x="447.7" y="1861" width="0.4" height="15.0" fill="rgb(243,211,0)" rx="2" ry="2" />
<text x="450.72" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (653 samples, 0.03%)</title><rect x="736.7" y="1461" width="0.4" height="15.0" fill="rgb(228,170,22)" rx="2" ry="2" />
<text x="739.71" y="1471.5" ></text>
</g>
<g >
<title>caml_apply2 (743 samples, 0.04%)</title><rect x="958.8" y="1237" width="0.4" height="15.0" fill="rgb(236,64,52)" rx="2" ry="2" />
<text x="961.82" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (1,581 samples, 0.08%)</title><rect x="983.6" y="1429" width="0.9" height="15.0" fill="rgb(213,60,19)" rx="2" ry="2" />
<text x="986.58" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,553 samples, 0.08%)</title><rect x="709.0" y="1845" width="0.9" height="15.0" fill="rgb(220,170,12)" rx="2" ry="2" />
<text x="711.97" y="1855.5" ></text>
</g>
<g >
<title>alloc_custom_gen (332 samples, 0.02%)</title><rect x="1042.2" y="1333" width="0.2" height="15.0" fill="rgb(217,56,38)" rx="2" ry="2" />
<text x="1045.17" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (16,398 samples, 0.80%)</title><rect x="777.4" y="1365" width="9.4" height="15.0" fill="rgb(249,219,15)" rx="2" ry="2" />
<text x="780.40" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (666 samples, 0.03%)</title><rect x="933.2" y="1237" width="0.4" height="15.0" fill="rgb(246,210,23)" rx="2" ry="2" />
<text x="936.19" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (471 samples, 0.02%)</title><rect x="1167.9" y="1301" width="0.2" height="15.0" fill="rgb(207,24,8)" rx="2" ry="2" />
<text x="1170.86" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="741" width="0.2" height="15.0" fill="rgb(242,55,42)" rx="2" ry="2" />
<text x="1191.85" y="751.5" ></text>
</g>
<g >
<title>mark_slice (1,197 samples, 0.06%)</title><rect x="145.0" y="1845" width="0.7" height="15.0" fill="rgb(244,52,18)" rx="2" ry="2" />
<text x="147.97" y="1855.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_update (201 samples, 0.01%)</title><rect x="716.7" y="1461" width="0.2" height="15.0" fill="rgb(224,16,8)" rx="2" ry="2" />
<text x="719.74" y="1471.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (599 samples, 0.03%)</title><rect x="751.2" y="1269" width="0.3" height="15.0" fill="rgb(243,166,30)" rx="2" ry="2" />
<text x="754.16" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (226 samples, 0.01%)</title><rect x="1098.5" y="1285" width="0.2" height="15.0" fill="rgb(221,114,48)" rx="2" ry="2" />
<text x="1101.52" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,391 samples, 0.07%)</title><rect x="845.4" y="1301" width="0.8" height="15.0" fill="rgb(222,220,5)" rx="2" ry="2" />
<text x="848.36" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,204 samples, 0.64%)</title><rect x="599.8" y="1781" width="7.6" height="15.0" fill="rgb(249,137,18)" rx="2" ry="2" />
<text x="602.79" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="2005" width="0.3" height="15.0" fill="rgb(221,3,31)" rx="2" ry="2" />
<text x="1192.69" y="2015.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (429 samples, 0.02%)</title><rect x="335.2" y="1861" width="0.3" height="15.0" fill="rgb(233,47,20)" rx="2" ry="2" />
<text x="338.25" y="1871.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,242 samples, 0.06%)</title><rect x="401.8" y="1845" width="0.7" height="15.0" fill="rgb(231,4,52)" rx="2" ry="2" />
<text x="404.79" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1397" width="0.3" height="15.0" fill="rgb(234,61,0)" rx="2" ry="2" />
<text x="1192.37" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (312 samples, 0.02%)</title><rect x="785.4" y="1205" width="0.2" height="15.0" fill="rgb(226,110,7)" rx="2" ry="2" />
<text x="788.40" y="1215.5" ></text>
</g>
<g >
<title>caml_thread_yield (320 samples, 0.02%)</title><rect x="1102.7" y="1301" width="0.2" height="15.0" fill="rgb(247,215,52)" rx="2" ry="2" />
<text x="1105.68" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (255 samples, 0.01%)</title><rect x="733.9" y="1477" width="0.1" height="15.0" fill="rgb(252,174,9)" rx="2" ry="2" />
<text x="736.88" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1621" width="0.3" height="15.0" fill="rgb(218,90,28)" rx="2" ry="2" />
<text x="1191.59" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (1,707 samples, 0.08%)</title><rect x="1003.7" y="1285" width="0.9" height="15.0" fill="rgb(219,119,18)" rx="2" ry="2" />
<text x="1006.65" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (16,396 samples, 0.80%)</title><rect x="717.9" y="1573" width="9.4" height="15.0" fill="rgb(228,118,8)" rx="2" ry="2" />
<text x="720.90" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (17,871 samples, 0.87%)</title><rect x="392.2" y="1909" width="10.3" height="15.0" fill="rgb(221,226,50)" rx="2" ry="2" />
<text x="395.23" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (238 samples, 0.01%)</title><rect x="1166.7" y="1125" width="0.1" height="15.0" fill="rgb(234,13,8)" rx="2" ry="2" />
<text x="1169.70" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5832 (627 samples, 0.03%)</title><rect x="1157.3" y="1221" width="0.4" height="15.0" fill="rgb(205,87,24)" rx="2" ry="2" />
<text x="1160.31" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (1,523 samples, 0.07%)</title><rect x="1054.8" y="1269" width="0.8" height="15.0" fill="rgb(254,24,0)" rx="2" ry="2" />
<text x="1057.76" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (849 samples, 0.04%)</title><rect x="730.9" y="1413" width="0.5" height="15.0" fill="rgb(218,51,14)" rx="2" ry="2" />
<text x="733.95" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (622 samples, 0.03%)</title><rect x="1107.7" y="1157" width="0.3" height="15.0" fill="rgb(223,131,41)" rx="2" ry="2" />
<text x="1110.66" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (207 samples, 0.01%)</title><rect x="1065.4" y="1285" width="0.1" height="15.0" fill="rgb(247,177,11)" rx="2" ry="2" />
<text x="1068.43" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (8,126 samples, 0.40%)</title><rect x="920.3" y="1269" width="4.7" height="15.0" fill="rgb(210,216,52)" rx="2" ry="2" />
<text x="923.30" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (555 samples, 0.03%)</title><rect x="711.2" y="1861" width="0.3" height="15.0" fill="rgb(254,206,4)" rx="2" ry="2" />
<text x="714.21" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (2,337 samples, 0.11%)</title><rect x="674.3" y="1781" width="1.4" height="15.0" fill="rgb(250,139,35)" rx="2" ry="2" />
<text x="677.32" y="1791.5" ></text>
</g>
<g >
<title>caml_call_gc (320 samples, 0.02%)</title><rect x="707.6" y="1845" width="0.1" height="15.0" fill="rgb(209,189,11)" rx="2" ry="2" />
<text x="710.56" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (551 samples, 0.03%)</title><rect x="1189.4" y="213" width="0.3" height="15.0" fill="rgb(237,111,30)" rx="2" ry="2" />
<text x="1192.37" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__triple_556 (1,004 samples, 0.05%)</title><rect x="702.4" y="1861" width="0.6" height="15.0" fill="rgb(231,194,13)" rx="2" ry="2" />
<text x="705.41" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (509 samples, 0.02%)</title><rect x="955.7" y="1237" width="0.3" height="15.0" fill="rgb(222,10,30)" rx="2" ry="2" />
<text x="958.68" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (544 samples, 0.03%)</title><rect x="1132.0" y="1205" width="0.3" height="15.0" fill="rgb(249,124,28)" rx="2" ry="2" />
<text x="1134.99" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="325" width="0.3" height="15.0" fill="rgb(238,149,51)" rx="2" ry="2" />
<text x="1192.69" y="335.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4606 (7,772 samples, 0.38%)</title><rect x="980.1" y="1493" width="4.5" height="15.0" fill="rgb(254,116,12)" rx="2" ry="2" />
<text x="983.10" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="661" width="0.3" height="15.0" fill="rgb(248,112,0)" rx="2" ry="2" />
<text x="1192.69" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (331 samples, 0.02%)</title><rect x="792.4" y="1221" width="0.2" height="15.0" fill="rgb(213,95,16)" rx="2" ry="2" />
<text x="795.44" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,848 samples, 2.04%)</title><rect x="716.1" y="1685" width="24.1" height="15.0" fill="rgb(244,68,49)" rx="2" ry="2" />
<text x="719.10" y="1695.5" >c..</text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (4,475 samples, 0.22%)</title><rect x="991.5" y="1365" width="2.6" height="15.0" fill="rgb(248,51,35)" rx="2" ry="2" />
<text x="994.48" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (354 samples, 0.02%)</title><rect x="883.4" y="1237" width="0.2" height="15.0" fill="rgb(249,9,24)" rx="2" ry="2" />
<text x="886.36" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__add_12309 (19,126 samples, 0.93%)</title><rect x="716.4" y="1589" width="11.0" height="15.0" fill="rgb(244,145,10)" rx="2" ry="2" />
<text x="719.35" y="1599.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (745 samples, 0.04%)</title><rect x="711.1" y="1877" width="0.4" height="15.0" fill="rgb(206,94,54)" rx="2" ry="2" />
<text x="714.10" y="1887.5" ></text>
</g>
<g >
<title>caml_apply2 (218 samples, 0.01%)</title><rect x="1172.4" y="1189" width="0.1" height="15.0" fill="rgb(243,87,20)" rx="2" ry="2" />
<text x="1175.42" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (871 samples, 0.04%)</title><rect x="979.5" y="1461" width="0.5" height="15.0" fill="rgb(233,39,0)" rx="2" ry="2" />
<text x="982.49" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (444 samples, 0.02%)</title><rect x="1189.7" y="213" width="0.3" height="15.0" fill="rgb(215,2,6)" rx="2" ry="2" />
<text x="1192.71" y="223.5" ></text>
</g>
<g >
<title>digestif_sha1_update (244 samples, 0.01%)</title><rect x="1189.2" y="53" width="0.1" height="15.0" fill="rgb(216,45,16)" rx="2" ry="2" />
<text x="1192.16" y="63.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (25,533 samples, 1.24%)</title><rect x="1046.8" y="1333" width="14.7" height="15.0" fill="rgb(219,16,48)" rx="2" ry="2" />
<text x="1049.81" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (2,404 samples, 0.12%)</title><rect x="1165.7" y="1237" width="1.4" height="15.0" fill="rgb(216,222,34)" rx="2" ry="2" />
<text x="1168.73" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (356 samples, 0.02%)</title><rect x="774.0" y="1509" width="0.2" height="15.0" fill="rgb(227,198,6)" rx="2" ry="2" />
<text x="777.02" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (1,943 samples, 0.09%)</title><rect x="1152.8" y="1253" width="1.1" height="15.0" fill="rgb(233,123,22)" rx="2" ry="2" />
<text x="1155.81" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (206 samples, 0.01%)</title><rect x="1161.8" y="1173" width="0.2" height="15.0" fill="rgb(243,121,22)" rx="2" ry="2" />
<text x="1164.84" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1317" width="0.3" height="15.0" fill="rgb(209,131,6)" rx="2" ry="2" />
<text x="1192.06" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="997" width="0.2" height="15.0" fill="rgb(206,18,19)" rx="2" ry="2" />
<text x="1191.85" y="1007.5" ></text>
</g>
<g >
<title>camlFiber__fork_and_join_unit_792 (183 samples, 0.01%)</title><rect x="10.2" y="1269" width="0.1" height="15.0" fill="rgb(246,176,36)" rx="2" ry="2" />
<text x="13.24" y="1279.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (199 samples, 0.01%)</title><rect x="422.7" y="1893" width="0.2" height="15.0" fill="rgb(232,8,8)" rx="2" ry="2" />
<text x="425.74" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="869" width="0.3" height="15.0" fill="rgb(254,67,14)" rx="2" ry="2" />
<text x="1192.37" y="879.5" ></text>
</g>
<g >
<title>camlCmdliner__run_578 (599 samples, 0.03%)</title><rect x="10.1" y="1877" width="0.3" height="15.0" fill="rgb(243,99,15)" rx="2" ry="2" />
<text x="13.06" y="1887.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (181 samples, 0.01%)</title><rect x="1032.6" y="1253" width="0.1" height="15.0" fill="rgb(234,174,27)" rx="2" ry="2" />
<text x="1035.56" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (4,084 samples, 0.20%)</title><rect x="140.1" y="1877" width="2.3" height="15.0" fill="rgb(207,41,49)" rx="2" ry="2" />
<text x="143.08" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (304 samples, 0.01%)</title><rect x="803.2" y="1173" width="0.1" height="15.0" fill="rgb(241,168,47)" rx="2" ry="2" />
<text x="806.17" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (565 samples, 0.03%)</title><rect x="1150.9" y="1173" width="0.3" height="15.0" fill="rgb(212,37,1)" rx="2" ry="2" />
<text x="1153.90" y="1183.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (200 samples, 0.01%)</title><rect x="1080.6" y="1269" width="0.2" height="15.0" fill="rgb(234,217,25)" rx="2" ry="2" />
<text x="1083.65" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="565" width="0.3" height="15.0" fill="rgb(205,69,19)" rx="2" ry="2" />
<text x="1191.59" y="575.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,341 samples, 0.11%)</title><rect x="196.0" y="1877" width="1.4" height="15.0" fill="rgb(250,120,4)" rx="2" ry="2" />
<text x="199.02" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1461" width="0.2" height="15.0" fill="rgb(222,9,42)" rx="2" ry="2" />
<text x="1191.85" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (373 samples, 0.02%)</title><rect x="772.9" y="1317" width="0.2" height="15.0" fill="rgb(231,49,23)" rx="2" ry="2" />
<text x="775.88" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (254 samples, 0.01%)</title><rect x="731.8" y="1429" width="0.1" height="15.0" fill="rgb(215,146,29)" rx="2" ry="2" />
<text x="734.79" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (180 samples, 0.01%)</title><rect x="721.9" y="1365" width="0.1" height="15.0" fill="rgb(211,22,27)" rx="2" ry="2" />
<text x="724.85" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (907 samples, 0.04%)</title><rect x="28.9" y="2005" width="0.5" height="15.0" fill="rgb(220,24,10)" rx="2" ry="2" />
<text x="31.87" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (215 samples, 0.01%)</title><rect x="1114.5" y="1317" width="0.1" height="15.0" fill="rgb(235,177,49)" rx="2" ry="2" />
<text x="1117.49" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12031 (2,855 samples, 0.14%)</title><rect x="823.1" y="1413" width="1.6" height="15.0" fill="rgb(205,78,6)" rx="2" ry="2" />
<text x="826.06" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (343 samples, 0.02%)</title><rect x="792.4" y="1237" width="0.2" height="15.0" fill="rgb(223,51,14)" rx="2" ry="2" />
<text x="795.43" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (219 samples, 0.01%)</title><rect x="732.3" y="1429" width="0.1" height="15.0" fill="rgb(211,172,7)" rx="2" ry="2" />
<text x="735.25" y="1439.5" ></text>
</g>
<g >
<title>__errno_location (174 samples, 0.01%)</title><rect x="40.6" y="1989" width="0.1" height="15.0" fill="rgb(225,214,29)" rx="2" ry="2" />
<text x="43.57" y="1999.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,959 samples, 0.10%)</title><rect x="196.2" y="1861" width="1.2" height="15.0" fill="rgb(226,201,54)" rx="2" ry="2" />
<text x="199.24" y="1871.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (612 samples, 0.03%)</title><rect x="773.7" y="1509" width="0.3" height="15.0" fill="rgb(231,90,16)" rx="2" ry="2" />
<text x="776.67" y="1519.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (382 samples, 0.02%)</title><rect x="699.5" y="1909" width="0.3" height="15.0" fill="rgb(205,91,32)" rx="2" ry="2" />
<text x="702.54" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1253" width="0.3" height="15.0" fill="rgb(222,206,5)" rx="2" ry="2" />
<text x="1192.69" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (289 samples, 0.01%)</title><rect x="796.0" y="1253" width="0.2" height="15.0" fill="rgb(226,144,9)" rx="2" ry="2" />
<text x="799.00" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12031 (5,340 samples, 0.26%)</title><rect x="931.4" y="1365" width="3.0" height="15.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text x="934.36" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (56,492 samples, 2.75%)</title><rect x="895.1" y="1333" width="32.5" height="15.0" fill="rgb(212,47,41)" rx="2" ry="2" />
<text x="898.09" y="1343.5" >ca..</text>
</g>
<g >
<title>caml_empty_minor_heap (271 samples, 0.01%)</title><rect x="163.7" y="1829" width="0.2" height="15.0" fill="rgb(214,15,45)" rx="2" ry="2" />
<text x="166.72" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="229" width="0.2" height="15.0" fill="rgb(213,159,39)" rx="2" ry="2" />
<text x="1191.85" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (272 samples, 0.01%)</title><rect x="767.4" y="1301" width="0.1" height="15.0" fill="rgb(229,9,34)" rx="2" ry="2" />
<text x="770.38" y="1311.5" ></text>
</g>
<g >
<title>camlCommon__fun_13226 (937 samples, 0.05%)</title><rect x="1187.6" y="1461" width="0.6" height="15.0" fill="rgb(206,200,12)" rx="2" ry="2" />
<text x="1190.64" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (547 samples, 0.03%)</title><rect x="964.5" y="1269" width="0.3" height="15.0" fill="rgb(222,137,43)" rx="2" ry="2" />
<text x="967.46" y="1279.5" ></text>
</g>
<g >
<title>__lseek64 (682 samples, 0.03%)</title><rect x="1031.9" y="1269" width="0.4" height="15.0" fill="rgb(238,55,23)" rx="2" ry="2" />
<text x="1034.94" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (285 samples, 0.01%)</title><rect x="762.5" y="1269" width="0.1" height="15.0" fill="rgb(228,200,9)" rx="2" ry="2" />
<text x="765.45" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__rename_672 (693 samples, 0.03%)</title><rect x="701.4" y="1925" width="0.4" height="15.0" fill="rgb(205,168,42)" rx="2" ry="2" />
<text x="704.37" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1061" width="0.2" height="15.0" fill="rgb(221,66,46)" rx="2" ry="2" />
<text x="1191.85" y="1071.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (321 samples, 0.02%)</title><rect x="818.7" y="1237" width="0.1" height="15.0" fill="rgb(234,145,28)" rx="2" ry="2" />
<text x="821.66" y="1247.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (187 samples, 0.01%)</title><rect x="737.5" y="1413" width="0.1" height="15.0" fill="rgb(240,202,5)" rx="2" ry="2" />
<text x="740.53" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14907 (1,202 samples, 0.06%)</title><rect x="841.3" y="1429" width="0.6" height="15.0" fill="rgb(213,209,31)" rx="2" ry="2" />
<text x="844.26" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,750 samples, 0.09%)</title><rect x="890.9" y="1349" width="1.0" height="15.0" fill="rgb(223,213,49)" rx="2" ry="2" />
<text x="893.94" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (433 samples, 0.02%)</title><rect x="783.7" y="1285" width="0.3" height="15.0" fill="rgb(222,51,15)" rx="2" ry="2" />
<text x="786.74" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,629 samples, 0.08%)</title><rect x="1182.3" y="1285" width="0.9" height="15.0" fill="rgb(230,205,32)" rx="2" ry="2" />
<text x="1185.28" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (394 samples, 0.02%)</title><rect x="838.2" y="1205" width="0.2" height="15.0" fill="rgb(212,135,30)" rx="2" ry="2" />
<text x="841.21" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,332 samples, 0.06%)</title><rect x="674.9" y="1765" width="0.8" height="15.0" fill="rgb(245,130,20)" rx="2" ry="2" />
<text x="677.89" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395 samples, 0.02%)</title><rect x="882.3" y="1269" width="0.2" height="15.0" fill="rgb(246,189,46)" rx="2" ry="2" />
<text x="885.32" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,244 samples, 0.06%)</title><rect x="813.0" y="1301" width="0.7" height="15.0" fill="rgb(221,79,8)" rx="2" ry="2" />
<text x="815.96" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7368 (3,793 samples, 0.18%)</title><rect x="985.6" y="1413" width="2.2" height="15.0" fill="rgb(213,113,39)" rx="2" ry="2" />
<text x="988.64" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,203 samples, 0.06%)</title><rect x="1159.4" y="1285" width="0.7" height="15.0" fill="rgb(224,225,17)" rx="2" ry="2" />
<text x="1162.42" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (7,239 samples, 0.35%)</title><rect x="962.7" y="1301" width="4.2" height="15.0" fill="rgb(232,135,24)" rx="2" ry="2" />
<text x="965.74" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="2037" width="0.3" height="15.0" fill="rgb(230,152,9)" rx="2" ry="2" />
<text x="1192.69" y="2047.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (248 samples, 0.01%)</title><rect x="1184.3" y="1173" width="0.2" height="15.0" fill="rgb(253,165,15)" rx="2" ry="2" />
<text x="1187.34" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (580 samples, 0.03%)</title><rect x="1055.3" y="1253" width="0.3" height="15.0" fill="rgb(242,147,21)" rx="2" ry="2" />
<text x="1058.29" y="1263.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (216 samples, 0.01%)</title><rect x="1153.4" y="1157" width="0.1" height="15.0" fill="rgb(238,215,1)" rx="2" ry="2" />
<text x="1156.41" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (591 samples, 0.03%)</title><rect x="911.6" y="1253" width="0.3" height="15.0" fill="rgb(245,153,3)" rx="2" ry="2" />
<text x="914.60" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (848 samples, 0.04%)</title><rect x="163.1" y="1813" width="0.5" height="15.0" fill="rgb(229,90,0)" rx="2" ry="2" />
<text x="166.15" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (512 samples, 0.02%)</title><rect x="976.5" y="1349" width="0.3" height="15.0" fill="rgb(237,0,12)" rx="2" ry="2" />
<text x="979.46" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (204 samples, 0.01%)</title><rect x="751.4" y="1221" width="0.1" height="15.0" fill="rgb(235,101,48)" rx="2" ry="2" />
<text x="754.39" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (761 samples, 0.04%)</title><rect x="711.8" y="1909" width="0.5" height="15.0" fill="rgb(211,124,5)" rx="2" ry="2" />
<text x="714.84" y="1919.5" ></text>
</g>
<g >
<title>caml_call_gc (2,304 samples, 0.11%)</title><rect x="333.9" y="1861" width="1.3" height="15.0" fill="rgb(245,89,47)" rx="2" ry="2" />
<text x="336.92" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (179 samples, 0.01%)</title><rect x="1188.7" y="133" width="0.1" height="15.0" fill="rgb(215,55,16)" rx="2" ry="2" />
<text x="1191.71" y="143.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__record_683 (243 samples, 0.01%)</title><rect x="860.4" y="1445" width="0.1" height="15.0" fill="rgb(209,227,45)" rx="2" ry="2" />
<text x="863.40" y="1455.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (378 samples, 0.02%)</title><rect x="1010.5" y="1301" width="0.3" height="15.0" fill="rgb(241,70,52)" rx="2" ry="2" />
<text x="1013.55" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (605 samples, 0.03%)</title><rect x="797.1" y="1269" width="0.3" height="15.0" fill="rgb(218,57,35)" rx="2" ry="2" />
<text x="800.06" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (776 samples, 0.04%)</title><rect x="1114.8" y="1317" width="0.4" height="15.0" fill="rgb(220,86,30)" rx="2" ry="2" />
<text x="1117.76" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (551 samples, 0.03%)</title><rect x="911.2" y="1221" width="0.3" height="15.0" fill="rgb(214,59,15)" rx="2" ry="2" />
<text x="914.22" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1029" width="0.3" height="15.0" fill="rgb(213,120,6)" rx="2" ry="2" />
<text x="1192.69" y="1039.5" ></text>
</g>
<g >
<title>digestif_sha1_update (198 samples, 0.01%)</title><rect x="716.7" y="1445" width="0.2" height="15.0" fill="rgb(205,53,31)" rx="2" ry="2" />
<text x="719.74" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (14,688 samples, 0.72%)</title><rect x="1159.4" y="1317" width="8.4" height="15.0" fill="rgb(251,27,47)" rx="2" ry="2" />
<text x="1162.37" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (330 samples, 0.02%)</title><rect x="777.6" y="1301" width="0.2" height="15.0" fill="rgb(211,140,5)" rx="2" ry="2" />
<text x="780.63" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (362 samples, 0.02%)</title><rect x="792.4" y="1253" width="0.2" height="15.0" fill="rgb(246,183,39)" rx="2" ry="2" />
<text x="795.42" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (523 samples, 0.03%)</title><rect x="417.5" y="1861" width="0.3" height="15.0" fill="rgb(246,99,47)" rx="2" ry="2" />
<text x="420.45" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_856 (252 samples, 0.01%)</title><rect x="904.4" y="1221" width="0.1" height="15.0" fill="rgb(222,42,54)" rx="2" ry="2" />
<text x="907.39" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="2021" width="0.3" height="15.0" fill="rgb(206,187,2)" rx="2" ry="2" />
<text x="1192.69" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (198 samples, 0.01%)</title><rect x="1157.5" y="1125" width="0.1" height="15.0" fill="rgb(249,31,54)" rx="2" ry="2" />
<text x="1160.51" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1605" width="0.3" height="15.0" fill="rgb(214,131,45)" rx="2" ry="2" />
<text x="1192.06" y="1615.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,079 samples, 0.05%)</title><rect x="1152.2" y="1237" width="0.6" height="15.0" fill="rgb(250,173,52)" rx="2" ry="2" />
<text x="1155.16" y="1247.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (225 samples, 0.01%)</title><rect x="1020.6" y="1269" width="0.2" height="15.0" fill="rgb(207,117,49)" rx="2" ry="2" />
<text x="1023.63" y="1279.5" ></text>
</g>
<g >
<title>caml_blit_bytes (1,354 samples, 0.07%)</title><rect x="141.7" y="1861" width="0.7" height="15.0" fill="rgb(238,51,42)" rx="2" ry="2" />
<text x="144.65" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1429" width="0.2" height="15.0" fill="rgb(244,33,50)" rx="2" ry="2" />
<text x="1191.85" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,395 samples, 0.07%)</title><rect x="1142.9" y="1445" width="0.8" height="15.0" fill="rgb(252,86,51)" rx="2" ry="2" />
<text x="1145.88" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (297 samples, 0.01%)</title><rect x="824.5" y="1381" width="0.2" height="15.0" fill="rgb(251,91,50)" rx="2" ry="2" />
<text x="827.53" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11974 (1,538 samples, 0.07%)</title><rect x="863.8" y="1365" width="0.9" height="15.0" fill="rgb(236,100,0)" rx="2" ry="2" />
<text x="866.85" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,022 samples, 0.05%)</title><rect x="1067.5" y="1221" width="0.6" height="15.0" fill="rgb(223,19,53)" rx="2" ry="2" />
<text x="1070.49" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (240 samples, 0.01%)</title><rect x="1166.1" y="1109" width="0.1" height="15.0" fill="rgb(225,65,31)" rx="2" ry="2" />
<text x="1169.07" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (1,842 samples, 0.09%)</title><rect x="1002.6" y="1285" width="1.1" height="15.0" fill="rgb(216,110,6)" rx="2" ry="2" />
<text x="1005.59" y="1295.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (252 samples, 0.01%)</title><rect x="943.0" y="1285" width="0.2" height="15.0" fill="rgb(252,201,7)" rx="2" ry="2" />
<text x="946.04" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (182 samples, 0.01%)</title><rect x="1036.4" y="1333" width="0.1" height="15.0" fill="rgb(232,159,25)" rx="2" ry="2" />
<text x="1039.38" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1500 (234 samples, 0.01%)</title><rect x="1113.2" y="1333" width="0.2" height="15.0" fill="rgb(216,10,36)" rx="2" ry="2" />
<text x="1116.24" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (235 samples, 0.01%)</title><rect x="1156.1" y="1317" width="0.2" height="15.0" fill="rgb(234,17,5)" rx="2" ry="2" />
<text x="1159.12" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__append_buf_fanout_1621 (8,388 samples, 0.41%)</title><rect x="83.5" y="1941" width="4.8" height="15.0" fill="rgb(230,11,46)" rx="2" ry="2" />
<text x="86.52" y="1951.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (6,304 samples, 0.31%)</title><rect x="1178.5" y="1253" width="3.6" height="15.0" fill="rgb(250,124,44)" rx="2" ry="2" />
<text x="1181.49" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (388 samples, 0.02%)</title><rect x="1147.8" y="1269" width="0.2" height="15.0" fill="rgb(238,62,45)" rx="2" ry="2" />
<text x="1150.80" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (331 samples, 0.02%)</title><rect x="803.2" y="1205" width="0.1" height="15.0" fill="rgb(224,17,26)" rx="2" ry="2" />
<text x="806.16" y="1215.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (353 samples, 0.02%)</title><rect x="10.2" y="1397" width="0.2" height="15.0" fill="rgb(207,75,18)" rx="2" ry="2" />
<text x="13.16" y="1407.5" ></text>
</g>
<g >
<title>caml_hash (428 samples, 0.02%)</title><rect x="1119.3" y="1285" width="0.3" height="15.0" fill="rgb(248,115,5)" rx="2" ry="2" />
<text x="1122.32" y="1295.5" ></text>
</g>
<g >
<title>sha1_do_chunk (249 samples, 0.01%)</title><rect x="717.1" y="1445" width="0.2" height="15.0" fill="rgb(227,152,31)" rx="2" ry="2" />
<text x="720.15" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11748 (339 samples, 0.02%)</title><rect x="977.5" y="1429" width="0.2" height="15.0" fill="rgb(243,172,14)" rx="2" ry="2" />
<text x="980.55" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1093" width="0.3" height="15.0" fill="rgb(240,24,20)" rx="2" ry="2" />
<text x="1192.37" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (46,673 samples, 2.27%)</title><rect x="206.6" y="1909" width="26.8" height="15.0" fill="rgb(228,148,4)" rx="2" ry="2" />
<text x="209.56" y="1919.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (675 samples, 0.03%)</title><rect x="832.1" y="1301" width="0.4" height="15.0" fill="rgb(215,71,49)" rx="2" ry="2" />
<text x="835.15" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (221 samples, 0.01%)</title><rect x="745.3" y="1253" width="0.2" height="15.0" fill="rgb(227,99,32)" rx="2" ry="2" />
<text x="748.35" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (999 samples, 0.05%)</title><rect x="968.7" y="1173" width="0.6" height="15.0" fill="rgb(239,156,36)" rx="2" ry="2" />
<text x="971.71" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273 samples, 0.01%)</title><rect x="1184.1" y="1157" width="0.1" height="15.0" fill="rgb(215,9,1)" rx="2" ry="2" />
<text x="1187.09" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="453" width="0.2" height="15.0" fill="rgb(235,135,19)" rx="2" ry="2" />
<text x="1191.85" y="463.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (653 samples, 0.03%)</title><rect x="820.6" y="1397" width="0.4" height="15.0" fill="rgb(210,81,39)" rx="2" ry="2" />
<text x="823.65" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,013 samples, 0.05%)</title><rect x="1042.8" y="1285" width="0.6" height="15.0" fill="rgb(209,187,13)" rx="2" ry="2" />
<text x="1045.85" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (180 samples, 0.01%)</title><rect x="723.7" y="1461" width="0.1" height="15.0" fill="rgb(210,195,37)" rx="2" ry="2" />
<text x="726.72" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1333" width="0.3" height="15.0" fill="rgb(235,114,14)" rx="2" ry="2" />
<text x="1192.06" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4130 (1,542 samples, 0.08%)</title><rect x="772.7" y="1493" width="0.9" height="15.0" fill="rgb(230,22,11)" rx="2" ry="2" />
<text x="775.68" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (23,449 samples, 1.14%)</title><rect x="997.1" y="1317" width="13.4" height="15.0" fill="rgb(240,12,3)" rx="2" ry="2" />
<text x="1000.06" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (268 samples, 0.01%)</title><rect x="725.5" y="1349" width="0.2" height="15.0" fill="rgb(250,211,20)" rx="2" ry="2" />
<text x="728.55" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (214 samples, 0.01%)</title><rect x="1012.0" y="1301" width="0.1" height="15.0" fill="rgb(207,57,0)" rx="2" ry="2" />
<text x="1015.00" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (621 samples, 0.03%)</title><rect x="945.9" y="1333" width="0.4" height="15.0" fill="rgb(226,87,1)" rx="2" ry="2" />
<text x="948.92" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (322 samples, 0.02%)</title><rect x="828.1" y="1253" width="0.2" height="15.0" fill="rgb(226,186,27)" rx="2" ry="2" />
<text x="831.12" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (339 samples, 0.02%)</title><rect x="759.7" y="1285" width="0.1" height="15.0" fill="rgb(247,140,1)" rx="2" ry="2" />
<text x="762.65" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,004 samples, 0.05%)</title><rect x="919.7" y="1173" width="0.6" height="15.0" fill="rgb(238,66,32)" rx="2" ry="2" />
<text x="922.71" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1685" width="42.4" height="15.0" fill="rgb(253,192,25)" rx="2" ry="2" />
<text x="1148.76" y="1695.5" >caml..</text>
</g>
<g >
<title>futex_wait_cancelable (629 samples, 0.03%)</title><rect x="972.7" y="1221" width="0.4" height="15.0" fill="rgb(248,56,44)" rx="2" ry="2" />
<text x="975.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1317" width="0.3" height="15.0" fill="rgb(240,205,22)" rx="2" ry="2" />
<text x="1191.59" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (537 samples, 0.03%)</title><rect x="105.4" y="1829" width="0.3" height="15.0" fill="rgb(207,15,54)" rx="2" ry="2" />
<text x="108.37" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8527 (298 samples, 0.01%)</title><rect x="739.6" y="1605" width="0.2" height="15.0" fill="rgb(231,28,10)" rx="2" ry="2" />
<text x="742.61" y="1615.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,775 samples, 0.23%)</title><rect x="32.2" y="1925" width="2.8" height="15.0" fill="rgb(223,148,29)" rx="2" ry="2" />
<text x="35.22" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14013 (18,042 samples, 0.88%)</title><rect x="1148.4" y="1349" width="10.4" height="15.0" fill="rgb(222,90,23)" rx="2" ry="2" />
<text x="1151.42" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="965" width="0.3" height="15.0" fill="rgb(222,1,29)" rx="2" ry="2" />
<text x="1191.59" y="975.5" ></text>
</g>
<g >
<title>caml_call_gc (1,984 samples, 0.10%)</title><rect x="389.3" y="1893" width="1.2" height="15.0" fill="rgb(250,108,42)" rx="2" ry="2" />
<text x="392.33" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (7,458 samples, 0.36%)</title><rect x="744.1" y="1301" width="4.3" height="15.0" fill="rgb(221,46,20)" rx="2" ry="2" />
<text x="747.11" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1029" width="0.3" height="15.0" fill="rgb(229,224,27)" rx="2" ry="2" />
<text x="1192.37" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (205 samples, 0.01%)</title><rect x="825.1" y="1349" width="0.1" height="15.0" fill="rgb(226,226,20)" rx="2" ry="2" />
<text x="828.10" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1013" width="0.3" height="15.0" fill="rgb(237,126,6)" rx="2" ry="2" />
<text x="1191.59" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="741" width="0.3" height="15.0" fill="rgb(247,144,21)" rx="2" ry="2" />
<text x="1192.69" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (442 samples, 0.02%)</title><rect x="768.9" y="1221" width="0.3" height="15.0" fill="rgb(213,176,3)" rx="2" ry="2" />
<text x="771.92" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="853" width="0.3" height="15.0" fill="rgb(211,197,44)" rx="2" ry="2" />
<text x="1192.37" y="863.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (15,159 samples, 0.74%)</title><rect x="1177.4" y="1381" width="8.7" height="15.0" fill="rgb(227,111,11)" rx="2" ry="2" />
<text x="1180.38" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (180 samples, 0.01%)</title><rect x="35.6" y="1909" width="0.1" height="15.0" fill="rgb(207,108,25)" rx="2" ry="2" />
<text x="38.62" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1269" width="0.3" height="15.0" fill="rgb(226,113,30)" rx="2" ry="2" />
<text x="1191.59" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (16,834 samples, 0.82%)</title><rect x="742.7" y="1397" width="9.7" height="15.0" fill="rgb(218,48,44)" rx="2" ry="2" />
<text x="745.72" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (390 samples, 0.02%)</title><rect x="1025.0" y="1317" width="0.3" height="15.0" fill="rgb(222,156,50)" rx="2" ry="2" />
<text x="1028.03" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (80,841 samples, 3.94%)</title><rect x="1029.3" y="1445" width="46.5" height="15.0" fill="rgb(216,228,16)" rx="2" ry="2" />
<text x="1032.31" y="1455.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (15,979 samples, 0.78%)</title><rect x="197.4" y="1909" width="9.2" height="15.0" fill="rgb(238,162,44)" rx="2" ry="2" />
<text x="200.37" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305 samples, 0.01%)</title><rect x="818.1" y="1221" width="0.2" height="15.0" fill="rgb(250,199,53)" rx="2" ry="2" />
<text x="821.10" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (212 samples, 0.01%)</title><rect x="820.9" y="1381" width="0.1" height="15.0" fill="rgb(216,13,12)" rx="2" ry="2" />
<text x="823.89" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="901" width="0.3" height="15.0" fill="rgb(237,135,16)" rx="2" ry="2" />
<text x="1192.06" y="911.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,765 samples, 1.01%)</title><rect x="681.0" y="1813" width="11.9" height="15.0" fill="rgb(206,114,5)" rx="2" ry="2" />
<text x="684.00" y="1823.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (337 samples, 0.02%)</title><rect x="36.1" y="1973" width="0.2" height="15.0" fill="rgb(236,111,22)" rx="2" ry="2" />
<text x="39.15" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="1174.9" y="1109" width="0.1" height="15.0" fill="rgb(229,116,51)" rx="2" ry="2" />
<text x="1177.89" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_12006 (2,121 samples, 0.10%)</title><rect x="931.6" y="1317" width="1.2" height="15.0" fill="rgb(224,126,9)" rx="2" ry="2" />
<text x="934.57" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (55,545 samples, 2.71%)</title><rect x="944.3" y="1381" width="31.9" height="15.0" fill="rgb(223,132,12)" rx="2" ry="2" />
<text x="947.30" y="1391.5" >ca..</text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,856 samples, 0.14%)</title><rect x="766.6" y="1333" width="1.6" height="15.0" fill="rgb(235,183,49)" rx="2" ry="2" />
<text x="769.57" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__iter_542 (14,985 samples, 0.73%)</title><rect x="701.9" y="1925" width="8.6" height="15.0" fill="rgb(248,112,30)" rx="2" ry="2" />
<text x="704.86" y="1935.5" ></text>
</g>
<g >
<title>futex_wake (980 samples, 0.05%)</title><rect x="1020.8" y="1269" width="0.6" height="15.0" fill="rgb(208,138,17)" rx="2" ry="2" />
<text x="1023.80" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (378 samples, 0.02%)</title><rect x="837.5" y="1253" width="0.3" height="15.0" fill="rgb(222,204,20)" rx="2" ry="2" />
<text x="840.53" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,867 samples, 0.09%)</title><rect x="220.3" y="1845" width="1.1" height="15.0" fill="rgb(235,176,38)" rx="2" ry="2" />
<text x="223.33" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,415 samples, 0.07%)</title><rect x="876.0" y="1333" width="0.8" height="15.0" fill="rgb(239,21,33)" rx="2" ry="2" />
<text x="878.98" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,326 samples, 0.11%)</title><rect x="204.8" y="1861" width="1.4" height="15.0" fill="rgb(238,40,22)" rx="2" ry="2" />
<text x="207.81" y="1871.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (178 samples, 0.01%)</title><rect x="1188.4" y="1525" width="0.1" height="15.0" fill="rgb(212,69,2)" rx="2" ry="2" />
<text x="1191.36" y="1535.5" ></text>
</g>
<g >
<title>caml_hash (248 samples, 0.01%)</title><rect x="1134.4" y="1269" width="0.1" height="15.0" fill="rgb(236,131,28)" rx="2" ry="2" />
<text x="1137.36" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,719 samples, 0.08%)</title><rect x="944.7" y="1317" width="1.0" height="15.0" fill="rgb(247,109,54)" rx="2" ry="2" />
<text x="947.72" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (6,541 samples, 0.32%)</title><rect x="1018.7" y="1317" width="3.8" height="15.0" fill="rgb(217,36,10)" rx="2" ry="2" />
<text x="1021.71" y="1327.5" ></text>
</g>
<g >
<title>caml_apply5 (3,363 samples, 0.16%)</title><rect x="725.3" y="1525" width="2.0" height="15.0" fill="rgb(224,62,21)" rx="2" ry="2" />
<text x="728.35" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (5,493 samples, 0.27%)</title><rect x="453.5" y="1941" width="3.2" height="15.0" fill="rgb(236,11,50)" rx="2" ry="2" />
<text x="456.50" y="1951.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (675 samples, 0.03%)</title><rect x="732.5" y="1429" width="0.4" height="15.0" fill="rgb(221,100,42)" rx="2" ry="2" />
<text x="735.52" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (403 samples, 0.02%)</title><rect x="1025.0" y="1333" width="0.3" height="15.0" fill="rgb(251,52,37)" rx="2" ry="2" />
<text x="1028.02" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (3,044 samples, 0.15%)</title><rect x="922.5" y="1237" width="1.8" height="15.0" fill="rgb(237,130,30)" rx="2" ry="2" />
<text x="925.53" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (200 samples, 0.01%)</title><rect x="832.0" y="1301" width="0.1" height="15.0" fill="rgb(230,49,53)" rx="2" ry="2" />
<text x="835.03" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="453" width="0.3" height="15.0" fill="rgb(229,212,11)" rx="2" ry="2" />
<text x="1192.69" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,040 samples, 0.05%)</title><rect x="816.3" y="1349" width="0.6" height="15.0" fill="rgb(224,4,13)" rx="2" ry="2" />
<text x="819.27" y="1359.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (29,612 samples, 1.44%)</title><rect x="995.4" y="1349" width="17.1" height="15.0" fill="rgb(251,169,12)" rx="2" ry="2" />
<text x="998.42" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (456 samples, 0.02%)</title><rect x="802.0" y="1253" width="0.3" height="15.0" fill="rgb(235,94,23)" rx="2" ry="2" />
<text x="805.04" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (224 samples, 0.01%)</title><rect x="1147.7" y="1301" width="0.1" height="15.0" fill="rgb(236,216,25)" rx="2" ry="2" />
<text x="1150.67" y="1311.5" ></text>
</g>
<g >
<title>caml_apply4 (543 samples, 0.03%)</title><rect x="175.1" y="1909" width="0.3" height="15.0" fill="rgb(238,111,42)" rx="2" ry="2" />
<text x="178.10" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (698 samples, 0.03%)</title><rect x="1123.8" y="1397" width="0.4" height="15.0" fill="rgb(228,60,54)" rx="2" ry="2" />
<text x="1126.75" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (4,604 samples, 0.22%)</title><rect x="860.9" y="1445" width="2.6" height="15.0" fill="rgb(244,188,35)" rx="2" ry="2" />
<text x="863.90" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (907 samples, 0.04%)</title><rect x="231.2" y="1797" width="0.6" height="15.0" fill="rgb(252,0,46)" rx="2" ry="2" />
<text x="234.23" y="1807.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (419 samples, 0.02%)</title><rect x="1077.5" y="1413" width="0.2" height="15.0" fill="rgb(214,177,16)" rx="2" ry="2" />
<text x="1080.49" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (653 samples, 0.03%)</title><rect x="1168.6" y="1301" width="0.4" height="15.0" fill="rgb(237,128,6)" rx="2" ry="2" />
<text x="1171.63" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (564 samples, 0.03%)</title><rect x="979.6" y="1445" width="0.4" height="15.0" fill="rgb(239,37,40)" rx="2" ry="2" />
<text x="982.64" y="1455.5" ></text>
</g>
<g >
<title>caml_tuplify2 (181 samples, 0.01%)</title><rect x="909.0" y="1237" width="0.1" height="15.0" fill="rgb(253,200,3)" rx="2" ry="2" />
<text x="911.98" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (853 samples, 0.04%)</title><rect x="1171.8" y="1189" width="0.5" height="15.0" fill="rgb(218,88,30)" rx="2" ry="2" />
<text x="1174.80" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (40,475 samples, 1.97%)</title><rect x="313.2" y="1909" width="23.3" height="15.0" fill="rgb(209,214,42)" rx="2" ry="2" />
<text x="316.24" y="1919.5" >c..</text>
</g>
<g >
<title>camlIndex__decode_entry_323 (22,542 samples, 1.10%)</title><rect x="1084.2" y="1317" width="13.0" height="15.0" fill="rgb(239,118,4)" rx="2" ry="2" />
<text x="1087.19" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (4,434 samples, 0.22%)</title><rect x="768.2" y="1349" width="2.6" height="15.0" fill="rgb(245,10,49)" rx="2" ry="2" />
<text x="771.24" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (577 samples, 0.03%)</title><rect x="146.0" y="1813" width="0.3" height="15.0" fill="rgb(208,73,47)" rx="2" ry="2" />
<text x="149.00" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (577 samples, 0.03%)</title><rect x="1087.9" y="1253" width="0.4" height="15.0" fill="rgb(227,75,51)" rx="2" ry="2" />
<text x="1090.94" y="1263.5" ></text>
</g>
<g >
<title>caml_apply2 (618 samples, 0.03%)</title><rect x="908.5" y="1221" width="0.4" height="15.0" fill="rgb(209,84,20)" rx="2" ry="2" />
<text x="911.50" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (464 samples, 0.02%)</title><rect x="804.5" y="1349" width="0.2" height="15.0" fill="rgb(207,76,21)" rx="2" ry="2" />
<text x="807.46" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,158 samples, 0.06%)</title><rect x="1067.4" y="1253" width="0.7" height="15.0" fill="rgb(236,96,21)" rx="2" ry="2" />
<text x="1070.42" y="1263.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (244 samples, 0.01%)</title><rect x="1189.2" y="85" width="0.1" height="15.0" fill="rgb(233,96,16)" rx="2" ry="2" />
<text x="1192.16" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,250 samples, 0.06%)</title><rect x="1061.8" y="1285" width="0.7" height="15.0" fill="rgb(210,158,49)" rx="2" ry="2" />
<text x="1064.82" y="1295.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (9,147 samples, 0.45%)</title><rect x="372.1" y="1877" width="5.2" height="15.0" fill="rgb(230,163,27)" rx="2" ry="2" />
<text x="375.09" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1973" width="0.3" height="15.0" fill="rgb(242,3,44)" rx="2" ry="2" />
<text x="1192.69" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (922 samples, 0.04%)</title><rect x="723.1" y="1461" width="0.5" height="15.0" fill="rgb(211,175,34)" rx="2" ry="2" />
<text x="726.10" y="1471.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (14,528 samples, 0.71%)</title><rect x="778.0" y="1333" width="8.3" height="15.0" fill="rgb(240,143,19)" rx="2" ry="2" />
<text x="780.97" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (1,509 samples, 0.07%)</title><rect x="503.5" y="1893" width="0.8" height="15.0" fill="rgb(239,58,20)" rx="2" ry="2" />
<text x="506.47" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,304 samples, 0.06%)</title><rect x="848.0" y="1301" width="0.7" height="15.0" fill="rgb(241,8,35)" rx="2" ry="2" />
<text x="850.97" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (870 samples, 0.04%)</title><rect x="1174.5" y="1237" width="0.5" height="15.0" fill="rgb(229,172,44)" rx="2" ry="2" />
<text x="1177.51" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (176 samples, 0.01%)</title><rect x="727.1" y="1349" width="0.1" height="15.0" fill="rgb(230,68,9)" rx="2" ry="2" />
<text x="730.14" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (2,779 samples, 0.14%)</title><rect x="942.6" y="1349" width="1.6" height="15.0" fill="rgb(219,84,32)" rx="2" ry="2" />
<text x="945.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="981" width="0.3" height="15.0" fill="rgb(223,137,26)" rx="2" ry="2" />
<text x="1191.59" y="991.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (616 samples, 0.03%)</title><rect x="737.4" y="1445" width="0.3" height="15.0" fill="rgb(252,89,12)" rx="2" ry="2" />
<text x="740.37" y="1455.5" ></text>
</g>
<g >
<title>compare_val (175 samples, 0.01%)</title><rect x="1158.4" y="1173" width="0.1" height="15.0" fill="rgb(205,81,22)" rx="2" ry="2" />
<text x="1161.44" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (18,644 samples, 0.91%)</title><rect x="829.1" y="1381" width="10.7" height="15.0" fill="rgb(226,226,51)" rx="2" ry="2" />
<text x="832.12" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1333" width="0.3" height="15.0" fill="rgb(229,198,2)" rx="2" ry="2" />
<text x="1192.69" y="1343.5" ></text>
</g>
<g >
<title>caml_program (607 samples, 0.03%)</title><rect x="10.1" y="1941" width="0.3" height="15.0" fill="rgb(229,195,14)" rx="2" ry="2" />
<text x="13.06" y="1951.5" ></text>
</g>
<g >
<title>caml_hash (287 samples, 0.01%)</title><rect x="929.1" y="1301" width="0.1" height="15.0" fill="rgb(222,38,0)" rx="2" ry="2" />
<text x="932.07" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7365 (4,357 samples, 0.21%)</title><rect x="985.5" y="1429" width="2.5" height="15.0" fill="rgb(234,23,30)" rx="2" ry="2" />
<text x="988.52" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="485" width="0.3" height="15.0" fill="rgb(227,185,28)" rx="2" ry="2" />
<text x="1191.59" y="495.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,603 samples, 0.13%)</title><rect x="815.9" y="1381" width="1.5" height="15.0" fill="rgb(254,17,53)" rx="2" ry="2" />
<text x="818.85" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (62,689 samples, 3.06%)</title><rect x="891.9" y="1365" width="36.1" height="15.0" fill="rgb(252,115,22)" rx="2" ry="2" />
<text x="894.95" y="1375.5" >cam..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (270 samples, 0.01%)</title><rect x="745.6" y="1269" width="0.2" height="15.0" fill="rgb(230,122,17)" rx="2" ry="2" />
<text x="748.64" y="1279.5" ></text>
</g>
<g >
<title>camlCommon__random_string_6641 (1,005 samples, 0.05%)</title><rect x="740.4" y="1701" width="0.6" height="15.0" fill="rgb(205,40,2)" rx="2" ry="2" />
<text x="743.41" y="1711.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (479 samples, 0.02%)</title><rect x="881.6" y="1333" width="0.3" height="15.0" fill="rgb(227,168,18)" rx="2" ry="2" />
<text x="884.60" y="1343.5" ></text>
</g>
<g >
<title>caml_pread (368 samples, 0.02%)</title><rect x="1174.8" y="1221" width="0.2" height="15.0" fill="rgb(247,182,31)" rx="2" ry="2" />
<text x="1177.80" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (190 samples, 0.01%)</title><rect x="1155.3" y="1253" width="0.1" height="15.0" fill="rgb(207,7,30)" rx="2" ry="2" />
<text x="1158.29" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1445" width="0.3" height="15.0" fill="rgb(247,71,15)" rx="2" ry="2" />
<text x="1191.59" y="1455.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (10,924 samples, 0.53%)</title><rect x="760.2" y="1349" width="6.3" height="15.0" fill="rgb(210,124,46)" rx="2" ry="2" />
<text x="763.24" y="1359.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (220 samples, 0.01%)</title><rect x="1143.3" y="1397" width="0.2" height="15.0" fill="rgb(207,152,24)" rx="2" ry="2" />
<text x="1146.34" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,808 samples, 0.09%)</title><rect x="260.7" y="1845" width="1.0" height="15.0" fill="rgb(237,82,30)" rx="2" ry="2" />
<text x="263.70" y="1855.5" ></text>
</g>
<g >
<title>caml_hash (610 samples, 0.03%)</title><rect x="849.4" y="1301" width="0.3" height="15.0" fill="rgb(228,81,20)" rx="2" ry="2" />
<text x="852.39" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,315 samples, 3.52%)</title><rect x="1145.8" y="1493" width="41.6" height="15.0" fill="rgb(233,138,30)" rx="2" ry="2" />
<text x="1148.76" y="1503.5" >cam..</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (2,753 samples, 0.13%)</title><rect x="980.3" y="1445" width="1.6" height="15.0" fill="rgb(218,36,38)" rx="2" ry="2" />
<text x="983.31" y="1455.5" ></text>
</g>
<g >
<title>compare_val (481 samples, 0.02%)</title><rect x="726.6" y="1381" width="0.3" height="15.0" fill="rgb(247,193,3)" rx="2" ry="2" />
<text x="729.58" y="1391.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (544 samples, 0.03%)</title><rect x="854.4" y="1317" width="0.3" height="15.0" fill="rgb(210,153,12)" rx="2" ry="2" />
<text x="857.42" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (11,354 samples, 0.55%)</title><rect x="967.0" y="1317" width="6.5" height="15.0" fill="rgb(235,7,40)" rx="2" ry="2" />
<text x="969.95" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (246 samples, 0.01%)</title><rect x="1084.6" y="1285" width="0.2" height="15.0" fill="rgb(218,89,53)" rx="2" ry="2" />
<text x="1087.63" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,803 samples, 0.09%)</title><rect x="939.5" y="1365" width="1.0" height="15.0" fill="rgb(253,200,36)" rx="2" ry="2" />
<text x="942.50" y="1375.5" ></text>
</g>
<g >
<title>caml_string_equal (5,516 samples, 0.27%)</title><rect x="450.3" y="1925" width="3.2" height="15.0" fill="rgb(248,113,41)" rx="2" ry="2" />
<text x="453.33" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1749" width="0.2" height="15.0" fill="rgb(225,103,13)" rx="2" ry="2" />
<text x="1191.85" y="1759.5" ></text>
</g>
<g >
<title>caml_thread_yield (664 samples, 0.03%)</title><rect x="1010.9" y="1285" width="0.3" height="15.0" fill="rgb(205,126,20)" rx="2" ry="2" />
<text x="1013.87" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (276 samples, 0.01%)</title><rect x="836.1" y="1301" width="0.1" height="15.0" fill="rgb(207,31,3)" rx="2" ry="2" />
<text x="839.08" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (208 samples, 0.01%)</title><rect x="1033.0" y="1317" width="0.1" height="15.0" fill="rgb(254,67,34)" rx="2" ry="2" />
<text x="1035.97" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (866 samples, 0.04%)</title><rect x="1183.3" y="1253" width="0.5" height="15.0" fill="rgb(234,120,50)" rx="2" ry="2" />
<text x="1186.33" y="1263.5" ></text>
</g>
<g >
<title>futex_wake (271 samples, 0.01%)</title><rect x="1166.7" y="1173" width="0.1" height="15.0" fill="rgb(225,110,8)" rx="2" ry="2" />
<text x="1169.68" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,001 samples, 0.05%)</title><rect x="702.4" y="1829" width="0.6" height="15.0" fill="rgb(220,17,26)" rx="2" ry="2" />
<text x="705.41" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,798 samples, 0.09%)</title><rect x="1008.5" y="1285" width="1.0" height="15.0" fill="rgb(221,188,4)" rx="2" ry="2" />
<text x="1011.47" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,346 samples, 0.07%)</title><rect x="728.9" y="1397" width="0.8" height="15.0" fill="rgb(206,180,8)" rx="2" ry="2" />
<text x="731.95" y="1407.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (219 samples, 0.01%)</title><rect x="788.7" y="1269" width="0.1" height="15.0" fill="rgb(207,92,36)" rx="2" ry="2" />
<text x="791.66" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_459 (981 samples, 0.05%)</title><rect x="1134.1" y="1301" width="0.6" height="15.0" fill="rgb(220,103,44)" rx="2" ry="2" />
<text x="1137.11" y="1311.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (540 samples, 0.03%)</title><rect x="1132.0" y="1189" width="0.3" height="15.0" fill="rgb(218,207,31)" rx="2" ry="2" />
<text x="1134.99" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (201 samples, 0.01%)</title><rect x="727.1" y="1397" width="0.1" height="15.0" fill="rgb(240,53,48)" rx="2" ry="2" />
<text x="730.13" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (3,189 samples, 0.16%)</title><rect x="789.1" y="1381" width="1.8" height="15.0" fill="rgb(242,142,27)" rx="2" ry="2" />
<text x="792.08" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (218 samples, 0.01%)</title><rect x="743.0" y="1301" width="0.1" height="15.0" fill="rgb(242,223,28)" rx="2" ry="2" />
<text x="746.01" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="853" width="0.3" height="15.0" fill="rgb(241,59,46)" rx="2" ry="2" />
<text x="1192.06" y="863.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5211 (9,256 samples, 0.45%)</title><rect x="1132.8" y="1317" width="5.3" height="15.0" fill="rgb(251,94,48)" rx="2" ry="2" />
<text x="1135.81" y="1327.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (241 samples, 0.01%)</title><rect x="733.1" y="1365" width="0.1" height="15.0" fill="rgb(212,113,4)" rx="2" ry="2" />
<text x="736.10" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (9,454 samples, 0.46%)</title><rect x="760.9" y="1317" width="5.4" height="15.0" fill="rgb(222,226,25)" rx="2" ry="2" />
<text x="763.87" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (913 samples, 0.04%)</title><rect x="971.5" y="1157" width="0.5" height="15.0" fill="rgb(241,152,15)" rx="2" ry="2" />
<text x="974.47" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1589" width="0.3" height="15.0" fill="rgb(234,115,15)" rx="2" ry="2" />
<text x="1192.06" y="1599.5" ></text>
</g>
<g >
<title>caml_compare (487 samples, 0.02%)</title><rect x="726.6" y="1397" width="0.3" height="15.0" fill="rgb(231,183,13)" rx="2" ry="2" />
<text x="729.57" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1813" width="0.3" height="15.0" fill="rgb(210,52,9)" rx="2" ry="2" />
<text x="1191.59" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (231 samples, 0.01%)</title><rect x="1188.9" y="197" width="0.2" height="15.0" fill="rgb(222,96,52)" rx="2" ry="2" />
<text x="1191.93" y="207.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (753 samples, 0.04%)</title><rect x="709.0" y="1829" width="0.4" height="15.0" fill="rgb(227,110,48)" rx="2" ry="2" />
<text x="712.02" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (779 samples, 0.04%)</title><rect x="812.1" y="1317" width="0.4" height="15.0" fill="rgb(248,214,49)" rx="2" ry="2" />
<text x="815.10" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (431 samples, 0.02%)</title><rect x="915.6" y="1253" width="0.2" height="15.0" fill="rgb(225,218,7)" rx="2" ry="2" />
<text x="918.59" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (319 samples, 0.02%)</title><rect x="841.8" y="1333" width="0.1" height="15.0" fill="rgb(232,10,41)" rx="2" ry="2" />
<text x="844.76" y="1343.5" ></text>
</g>
<g >
<title>caml_compare (251 samples, 0.01%)</title><rect x="803.9" y="1317" width="0.2" height="15.0" fill="rgb(251,156,35)" rx="2" ry="2" />
<text x="806.94" y="1327.5" ></text>
</g>
<g >
<title>caml_apply2 (691 samples, 0.03%)</title><rect x="709.9" y="1845" width="0.4" height="15.0" fill="rgb(209,111,19)" rx="2" ry="2" />
<text x="712.87" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (627 samples, 0.03%)</title><rect x="886.8" y="1477" width="0.4" height="15.0" fill="rgb(231,114,12)" rx="2" ry="2" />
<text x="889.84" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (555 samples, 0.03%)</title><rect x="1044.9" y="1301" width="0.4" height="15.0" fill="rgb(232,130,40)" rx="2" ry="2" />
<text x="1047.93" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (241 samples, 0.01%)</title><rect x="1116.2" y="1333" width="0.1" height="15.0" fill="rgb(206,105,11)" rx="2" ry="2" />
<text x="1119.17" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (77,819 samples, 3.79%)</title><rect x="607.4" y="1909" width="44.7" height="15.0" fill="rgb(233,113,17)" rx="2" ry="2" />
<text x="610.38" y="1919.5" >__pt..</text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (347 samples, 0.02%)</title><rect x="1147.8" y="1253" width="0.2" height="15.0" fill="rgb(218,120,49)" rx="2" ry="2" />
<text x="1150.82" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (209 samples, 0.01%)</title><rect x="1175.3" y="1125" width="0.1" height="15.0" fill="rgb(251,175,29)" rx="2" ry="2" />
<text x="1178.30" y="1135.5" ></text>
</g>
<g >
<title>caml_curry13_12 (641 samples, 0.03%)</title><rect x="1128.4" y="1365" width="0.4" height="15.0" fill="rgb(207,34,40)" rx="2" ry="2" />
<text x="1131.41" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (8,322 samples, 0.41%)</title><rect x="499.7" y="1925" width="4.8" height="15.0" fill="rgb(240,104,18)" rx="2" ry="2" />
<text x="502.68" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1813" width="0.2" height="15.0" fill="rgb(240,54,13)" rx="2" ry="2" />
<text x="1191.85" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (189 samples, 0.01%)</title><rect x="1106.4" y="1237" width="0.1" height="15.0" fill="rgb(228,66,24)" rx="2" ry="2" />
<text x="1109.44" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (3,319 samples, 0.16%)</title><rect x="1004.6" y="1285" width="2.0" height="15.0" fill="rgb(229,27,31)" rx="2" ry="2" />
<text x="1007.65" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1157" width="0.3" height="15.0" fill="rgb(210,219,53)" rx="2" ry="2" />
<text x="1192.69" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (444 samples, 0.02%)</title><rect x="773.7" y="1493" width="0.3" height="15.0" fill="rgb(231,196,3)" rx="2" ry="2" />
<text x="776.71" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="901" width="0.3" height="15.0" fill="rgb(239,72,35)" rx="2" ry="2" />
<text x="1192.37" y="911.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (67,782 samples, 3.30%)</title><rect x="890.6" y="1397" width="39.0" height="15.0" fill="rgb(216,113,45)" rx="2" ry="2" />
<text x="893.61" y="1407.5" >cam..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (179 samples, 0.01%)</title><rect x="803.7" y="1157" width="0.1" height="15.0" fill="rgb(208,143,43)" rx="2" ry="2" />
<text x="806.68" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (179 samples, 0.01%)</title><rect x="816.4" y="1333" width="0.1" height="15.0" fill="rgb(238,147,22)" rx="2" ry="2" />
<text x="819.38" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (843 samples, 0.04%)</title><rect x="783.2" y="1285" width="0.5" height="15.0" fill="rgb(245,97,38)" rx="2" ry="2" />
<text x="786.24" y="1295.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (216 samples, 0.01%)</title><rect x="1032.8" y="1253" width="0.1" height="15.0" fill="rgb(249,81,15)" rx="2" ry="2" />
<text x="1035.77" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (15,076 samples, 0.73%)</title><rect x="1168.5" y="1365" width="8.7" height="15.0" fill="rgb(251,30,29)" rx="2" ry="2" />
<text x="1171.51" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="581" width="0.3" height="15.0" fill="rgb(246,63,28)" rx="2" ry="2" />
<text x="1192.37" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,371 samples, 0.07%)</title><rect x="914.2" y="1269" width="0.8" height="15.0" fill="rgb(253,87,11)" rx="2" ry="2" />
<text x="917.24" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Node__find_3010 (188 samples, 0.01%)</title><rect x="988.9" y="1429" width="0.1" height="15.0" fill="rgb(213,57,21)" rx="2" ry="2" />
<text x="991.90" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (422 samples, 0.02%)</title><rect x="1081.4" y="1349" width="0.2" height="15.0" fill="rgb(241,55,13)" rx="2" ry="2" />
<text x="1084.38" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (256 samples, 0.01%)</title><rect x="1114.6" y="1317" width="0.2" height="15.0" fill="rgb(241,75,9)" rx="2" ry="2" />
<text x="1117.62" y="1327.5" ></text>
</g>
<g >
<title>__libc_pread64 (458 samples, 0.02%)</title><rect x="818.0" y="1317" width="0.3" height="15.0" fill="rgb(223,93,14)" rx="2" ry="2" />
<text x="821.01" y="1327.5" ></text>
</g>
<g >
<title>__libc_start_main (821,302 samples, 40.03%)</title><rect x="716.1" y="2037" width="472.4" height="15.0" fill="rgb(214,55,37)" rx="2" ry="2" />
<text x="719.10" y="2047.5" >__libc_start_main</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,058 samples, 0.05%)</title><rect x="1069.1" y="1205" width="0.6" height="15.0" fill="rgb(228,87,18)" rx="2" ry="2" />
<text x="1072.08" y="1215.5" ></text>
</g>
<g >
<title>caml_blit_bytes (2,000 samples, 0.10%)</title><rect x="447.0" y="1909" width="1.1" height="15.0" fill="rgb(249,16,33)" rx="2" ry="2" />
<text x="449.99" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_85 (354 samples, 0.02%)</title><rect x="1116.3" y="1333" width="0.2" height="15.0" fill="rgb(221,7,53)" rx="2" ry="2" />
<text x="1119.31" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14907 (542 samples, 0.03%)</title><rect x="1145.8" y="1301" width="0.3" height="15.0" fill="rgb(229,226,10)" rx="2" ry="2" />
<text x="1148.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4916 (685 samples, 0.03%)</title><rect x="1123.4" y="1397" width="0.4" height="15.0" fill="rgb(226,12,32)" rx="2" ry="2" />
<text x="1126.36" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,778 samples, 0.09%)</title><rect x="723.0" y="1509" width="1.0" height="15.0" fill="rgb(224,194,11)" rx="2" ry="2" />
<text x="726.00" y="1519.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (375 samples, 0.02%)</title><rect x="886.3" y="1509" width="0.3" height="15.0" fill="rgb(247,99,3)" rx="2" ry="2" />
<text x="889.35" y="1519.5" ></text>
</g>
<g >
<title>mark_slice_darken (490 samples, 0.02%)</title><rect x="105.4" y="1813" width="0.3" height="15.0" fill="rgb(225,122,54)" rx="2" ry="2" />
<text x="108.39" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (19,835 samples, 0.97%)</title><rect x="240.2" y="1893" width="11.4" height="15.0" fill="rgb(228,69,5)" rx="2" ry="2" />
<text x="243.21" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (911 samples, 0.04%)</title><rect x="953.6" y="1253" width="0.5" height="15.0" fill="rgb(241,142,2)" rx="2" ry="2" />
<text x="956.60" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (255,742 samples, 12.47%)</title><rect x="741.1" y="1669" width="147.1" height="15.0" fill="rgb(230,193,52)" rx="2" ry="2" />
<text x="744.11" y="1679.5" >camlIrmin_pack__Pa..</text>
</g>
<g >
<title>caml_apply2 (220 samples, 0.01%)</title><rect x="796.9" y="1253" width="0.2" height="15.0" fill="rgb(236,229,49)" rx="2" ry="2" />
<text x="799.93" y="1263.5" ></text>
</g>
<g >
<title>camlLayered_bench__add_tree_19604 (1,006 samples, 0.05%)</title><rect x="740.4" y="1733" width="0.6" height="15.0" fill="rgb(247,10,6)" rx="2" ry="2" />
<text x="743.41" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="693" width="0.3" height="15.0" fill="rgb(248,203,18)" rx="2" ry="2" />
<text x="1192.37" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="1166.5" y="1093" width="0.1" height="15.0" fill="rgb(225,202,13)" rx="2" ry="2" />
<text x="1169.50" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (283 samples, 0.01%)</title><rect x="1145.9" y="1221" width="0.1" height="15.0" fill="rgb(227,188,46)" rx="2" ry="2" />
<text x="1148.87" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (464 samples, 0.02%)</title><rect x="959.0" y="1221" width="0.2" height="15.0" fill="rgb(206,71,14)" rx="2" ry="2" />
<text x="961.98" y="1231.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_19595 (1,006 samples, 0.05%)</title><rect x="740.4" y="1717" width="0.6" height="15.0" fill="rgb(239,112,5)" rx="2" ry="2" />
<text x="743.41" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (517 samples, 0.03%)</title><rect x="1002.3" y="1285" width="0.3" height="15.0" fill="rgb(243,17,30)" rx="2" ry="2" />
<text x="1005.29" y="1295.5" ></text>
</g>
<g >
<title>caml_pread (503 samples, 0.02%)</title><rect x="837.5" y="1317" width="0.3" height="15.0" fill="rgb(206,63,22)" rx="2" ry="2" />
<text x="840.46" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (928 samples, 0.05%)</title><rect x="970.5" y="1173" width="0.5" height="15.0" fill="rgb(236,128,30)" rx="2" ry="2" />
<text x="973.52" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="581" width="0.3" height="15.0" fill="rgb(248,28,45)" rx="2" ry="2" />
<text x="1192.69" y="591.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1519 (325 samples, 0.02%)</title><rect x="1114.1" y="1317" width="0.2" height="15.0" fill="rgb(230,27,30)" rx="2" ry="2" />
<text x="1117.07" y="1327.5" ></text>
</g>
<g >
<title>caml_darken (174 samples, 0.01%)</title><rect x="979.4" y="1445" width="0.1" height="15.0" fill="rgb(223,74,34)" rx="2" ry="2" />
<text x="982.38" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (50,622 samples, 2.47%)</title><rect x="233.4" y="1909" width="29.1" height="15.0" fill="rgb(235,177,47)" rx="2" ry="2" />
<text x="236.41" y="1919.5" >ca..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (14,974 samples, 0.73%)</title><rect x="1168.5" y="1349" width="8.7" height="15.0" fill="rgb(232,60,41)" rx="2" ry="2" />
<text x="1171.55" y="1359.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (210 samples, 0.01%)</title><rect x="806.0" y="1269" width="0.1" height="15.0" fill="rgb(250,174,34)" rx="2" ry="2" />
<text x="808.95" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__equal_4870 (628 samples, 0.03%)</title><rect x="448.1" y="1941" width="0.4" height="15.0" fill="rgb(231,80,50)" rx="2" ry="2" />
<text x="451.15" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (176 samples, 0.01%)</title><rect x="1153.4" y="1109" width="0.1" height="15.0" fill="rgb(210,109,42)" rx="2" ry="2" />
<text x="1156.44" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__random__bits_263 (225 samples, 0.01%)</title><rect x="740.8" y="1637" width="0.2" height="15.0" fill="rgb(237,36,7)" rx="2" ry="2" />
<text x="743.82" y="1647.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (512 samples, 0.02%)</title><rect x="821.8" y="1429" width="0.3" height="15.0" fill="rgb(238,73,15)" rx="2" ry="2" />
<text x="824.81" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1333" width="0.2" height="15.0" fill="rgb(239,131,50)" rx="2" ry="2" />
<text x="1191.85" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__node_28326 (189 samples, 0.01%)</title><rect x="1139.9" y="1461" width="0.1" height="15.0" fill="rgb(244,44,38)" rx="2" ry="2" />
<text x="1142.87" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_4916 (197 samples, 0.01%)</title><rect x="862.4" y="1397" width="0.1" height="15.0" fill="rgb(217,90,26)" rx="2" ry="2" />
<text x="865.36" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1781" width="0.3" height="15.0" fill="rgb(218,216,4)" rx="2" ry="2" />
<text x="1191.59" y="1791.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (611 samples, 0.03%)</title><rect x="803.0" y="1269" width="0.3" height="15.0" fill="rgb(251,229,46)" rx="2" ry="2" />
<text x="806.00" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (471 samples, 0.02%)</title><rect x="858.6" y="1381" width="0.3" height="15.0" fill="rgb(215,94,52)" rx="2" ry="2" />
<text x="861.59" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (642 samples, 0.03%)</title><rect x="709.9" y="1829" width="0.4" height="15.0" fill="rgb(221,147,44)" rx="2" ry="2" />
<text x="712.90" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (517 samples, 0.03%)</title><rect x="993.3" y="1301" width="0.3" height="15.0" fill="rgb(224,9,25)" rx="2" ry="2" />
<text x="996.25" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (6,036 samples, 0.29%)</title><rect x="1099.1" y="1333" width="3.4" height="15.0" fill="rgb(216,59,35)" rx="2" ry="2" />
<text x="1102.07" y="1343.5" ></text>
</g>
<g >
<title>futex_wake (402 samples, 0.02%)</title><rect x="792.4" y="1301" width="0.2" height="15.0" fill="rgb(223,211,27)" rx="2" ry="2" />
<text x="795.40" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (402 samples, 0.02%)</title><rect x="739.8" y="1605" width="0.2" height="15.0" fill="rgb(214,34,5)" rx="2" ry="2" />
<text x="742.82" y="1615.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (5,268 samples, 0.26%)</title><rect x="1030.2" y="1365" width="3.0" height="15.0" fill="rgb(246,119,23)" rx="2" ry="2" />
<text x="1033.20" y="1375.5" ></text>
</g>
<g >
<title>__GI___select (255 samples, 0.01%)</title><rect x="715.9" y="2005" width="0.1" height="15.0" fill="rgb(243,1,7)" rx="2" ry="2" />
<text x="718.90" y="2015.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1381" width="0.2" height="15.0" fill="rgb(233,111,18)" rx="2" ry="2" />
<text x="1191.85" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (554 samples, 0.03%)</title><rect x="955.1" y="1237" width="0.3" height="15.0" fill="rgb(236,32,16)" rx="2" ry="2" />
<text x="958.11" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (2,526 samples, 0.12%)</title><rect x="1117.6" y="1365" width="1.5" height="15.0" fill="rgb(231,29,13)" rx="2" ry="2" />
<text x="1120.62" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__compare_1165 (238 samples, 0.01%)</title><rect x="1072.4" y="1333" width="0.1" height="15.0" fill="rgb(236,204,10)" rx="2" ry="2" />
<text x="1075.35" y="1343.5" ></text>
</g>
<g >
<title>camlDune__scheduler__run_5122 (568 samples, 0.03%)</title><rect x="10.1" y="1797" width="0.3" height="15.0" fill="rgb(231,127,7)" rx="2" ry="2" />
<text x="13.07" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (201 samples, 0.01%)</title><rect x="738.3" y="1525" width="0.1" height="15.0" fill="rgb(250,228,1)" rx="2" ry="2" />
<text x="741.29" y="1535.5" ></text>
</g>
<g >
<title>caml_copy_int64 (369 samples, 0.02%)</title><rect x="1042.2" y="1349" width="0.2" height="15.0" fill="rgb(236,227,33)" rx="2" ry="2" />
<text x="1045.16" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (519 samples, 0.03%)</title><rect x="780.7" y="1253" width="0.3" height="15.0" fill="rgb(230,177,26)" rx="2" ry="2" />
<text x="783.72" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (248 samples, 0.01%)</title><rect x="867.0" y="1317" width="0.1" height="15.0" fill="rgb(208,146,20)" rx="2" ry="2" />
<text x="869.98" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,054 samples, 0.05%)</title><rect x="261.9" y="1861" width="0.6" height="15.0" fill="rgb(252,83,31)" rx="2" ry="2" />
<text x="264.91" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (427 samples, 0.02%)</title><rect x="831.3" y="1285" width="0.2" height="15.0" fill="rgb(226,69,9)" rx="2" ry="2" />
<text x="834.25" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1525" width="0.2" height="15.0" fill="rgb(251,32,10)" rx="2" ry="2" />
<text x="1191.85" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1989" width="0.3" height="15.0" fill="rgb(251,48,2)" rx="2" ry="2" />
<text x="1191.59" y="1999.5" ></text>
</g>
<g >
<title>caml_hash (271 samples, 0.01%)</title><rect x="880.4" y="1349" width="0.2" height="15.0" fill="rgb(235,53,2)" rx="2" ry="2" />
<text x="883.41" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (762 samples, 0.04%)</title><rect x="146.0" y="1845" width="0.4" height="15.0" fill="rgb(205,190,8)" rx="2" ry="2" />
<text x="148.97" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (494 samples, 0.02%)</title><rect x="867.3" y="1301" width="0.3" height="15.0" fill="rgb(248,198,52)" rx="2" ry="2" />
<text x="870.28" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4558 (8,211 samples, 0.40%)</title><rect x="985.1" y="1477" width="4.7" height="15.0" fill="rgb(253,202,49)" rx="2" ry="2" />
<text x="988.12" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (1,508 samples, 0.07%)</title><rect x="755.2" y="1365" width="0.9" height="15.0" fill="rgb(241,134,28)" rx="2" ry="2" />
<text x="758.25" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11974 (4,037 samples, 0.20%)</title><rect x="1130.3" y="1333" width="2.3" height="15.0" fill="rgb(230,197,9)" rx="2" ry="2" />
<text x="1133.26" y="1343.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (351 samples, 0.02%)</title><rect x="10.2" y="1349" width="0.2" height="15.0" fill="rgb(244,79,51)" rx="2" ry="2" />
<text x="13.16" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,025 samples, 0.05%)</title><rect x="1104.5" y="1253" width="0.6" height="15.0" fill="rgb(254,92,27)" rx="2" ry="2" />
<text x="1107.49" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (242 samples, 0.01%)</title><rect x="1171.0" y="1205" width="0.2" height="15.0" fill="rgb(230,142,3)" rx="2" ry="2" />
<text x="1174.02" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="693" width="0.3" height="15.0" fill="rgb(210,204,46)" rx="2" ry="2" />
<text x="1192.69" y="703.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (242 samples, 0.01%)</title><rect x="1039.7" y="1333" width="0.1" height="15.0" fill="rgb(218,104,23)" rx="2" ry="2" />
<text x="1042.66" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="565" width="0.2" height="15.0" fill="rgb(243,63,26)" rx="2" ry="2" />
<text x="1191.85" y="575.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (183 samples, 0.01%)</title><rect x="763.1" y="1269" width="0.1" height="15.0" fill="rgb(210,228,17)" rx="2" ry="2" />
<text x="766.10" y="1279.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (8,192 samples, 0.40%)</title><rect x="693.1" y="1909" width="4.7" height="15.0" fill="rgb(233,28,40)" rx="2" ry="2" />
<text x="696.08" y="1919.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (283 samples, 0.01%)</title><rect x="1153.5" y="1189" width="0.2" height="15.0" fill="rgb(248,1,44)" rx="2" ry="2" />
<text x="1156.54" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__compare_1165 (276 samples, 0.01%)</title><rect x="1022.8" y="1349" width="0.2" height="15.0" fill="rgb(246,39,17)" rx="2" ry="2" />
<text x="1025.80" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4558 (53,454 samples, 2.61%)</title><rect x="776.1" y="1509" width="30.7" height="15.0" fill="rgb(221,196,36)" rx="2" ry="2" />
<text x="779.09" y="1519.5" >ca..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (10,790 samples, 0.53%)</title><rect x="902.9" y="1253" width="6.2" height="15.0" fill="rgb(227,180,33)" rx="2" ry="2" />
<text x="905.88" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (378 samples, 0.02%)</title><rect x="1174.1" y="1237" width="0.3" height="15.0" fill="rgb(243,26,11)" rx="2" ry="2" />
<text x="1177.14" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (458 samples, 0.02%)</title><rect x="972.8" y="1157" width="0.3" height="15.0" fill="rgb(252,177,45)" rx="2" ry="2" />
<text x="975.85" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1573" width="0.2" height="15.0" fill="rgb(239,94,1)" rx="2" ry="2" />
<text x="1191.85" y="1583.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_783 (372 samples, 0.02%)</title><rect x="700.9" y="1941" width="0.2" height="15.0" fill="rgb(225,3,49)" rx="2" ry="2" />
<text x="703.91" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (952 samples, 0.05%)</title><rect x="1178.8" y="1205" width="0.5" height="15.0" fill="rgb(214,213,31)" rx="2" ry="2" />
<text x="1181.80" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4130 (580 samples, 0.03%)</title><rect x="989.1" y="1445" width="0.4" height="15.0" fill="rgb(221,179,16)" rx="2" ry="2" />
<text x="992.13" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (243 samples, 0.01%)</title><rect x="767.1" y="1301" width="0.2" height="15.0" fill="rgb(220,110,24)" rx="2" ry="2" />
<text x="770.12" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,584 samples, 0.08%)</title><rect x="872.9" y="1333" width="0.9" height="15.0" fill="rgb(249,82,0)" rx="2" ry="2" />
<text x="875.94" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (177 samples, 0.01%)</title><rect x="737.0" y="1445" width="0.1" height="15.0" fill="rgb(251,88,28)" rx="2" ry="2" />
<text x="739.97" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (602 samples, 0.03%)</title><rect x="1014.6" y="1301" width="0.4" height="15.0" fill="rgb(224,83,48)" rx="2" ry="2" />
<text x="1017.63" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,541 samples, 0.08%)</title><rect x="699.5" y="1925" width="0.9" height="15.0" fill="rgb(239,119,16)" rx="2" ry="2" />
<text x="702.54" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (18,360 samples, 0.89%)</title><rect x="742.2" y="1429" width="10.5" height="15.0" fill="rgb(229,111,37)" rx="2" ry="2" />
<text x="745.15" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_lower_7614 (255,738 samples, 12.47%)</title><rect x="741.1" y="1573" width="147.1" height="15.0" fill="rgb(221,56,20)" rx="2" ry="2" />
<text x="744.11" y="1583.5" >camlIrmin_pack__La..</text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (9,245 samples, 0.45%)</title><rect x="829.8" y="1349" width="5.3" height="15.0" fill="rgb(247,208,13)" rx="2" ry="2" />
<text x="832.78" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (273 samples, 0.01%)</title><rect x="1168.2" y="1301" width="0.1" height="15.0" fill="rgb(219,136,47)" rx="2" ry="2" />
<text x="1171.15" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__mem_current_7416 (177 samples, 0.01%)</title><rect x="990.2" y="1445" width="0.1" height="15.0" fill="rgb(212,105,17)" rx="2" ry="2" />
<text x="993.17" y="1455.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (252 samples, 0.01%)</title><rect x="733.1" y="1397" width="0.1" height="15.0" fill="rgb(238,63,3)" rx="2" ry="2" />
<text x="736.09" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (258 samples, 0.01%)</title><rect x="961.2" y="1253" width="0.1" height="15.0" fill="rgb(236,77,42)" rx="2" ry="2" />
<text x="964.15" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,796 samples, 0.14%)</title><rect x="1100.0" y="1317" width="1.6" height="15.0" fill="rgb(236,19,52)" rx="2" ry="2" />
<text x="1102.99" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (418 samples, 0.02%)</title><rect x="841.3" y="1317" width="0.2" height="15.0" fill="rgb(240,203,14)" rx="2" ry="2" />
<text x="844.29" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="773" width="0.3" height="15.0" fill="rgb(219,99,0)" rx="2" ry="2" />
<text x="1191.59" y="783.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (953 samples, 0.05%)</title><rect x="1020.8" y="1237" width="0.6" height="15.0" fill="rgb(247,14,2)" rx="2" ry="2" />
<text x="1023.81" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (7,069 samples, 0.34%)</title><rect x="308.5" y="1829" width="4.1" height="15.0" fill="rgb(247,222,1)" rx="2" ry="2" />
<text x="311.49" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (642 samples, 0.03%)</title><rect x="1045.6" y="1349" width="0.3" height="15.0" fill="rgb(249,170,41)" rx="2" ry="2" />
<text x="1048.56" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="645" width="0.3" height="15.0" fill="rgb(248,23,51)" rx="2" ry="2" />
<text x="1192.69" y="655.5" ></text>
</g>
<g >
<title>camlLwt__leave_resolution_loop_894 (74,266 samples, 3.62%)</title><rect x="1145.8" y="1765" width="42.7" height="15.0" fill="rgb(252,139,54)" rx="2" ry="2" />
<text x="1148.76" y="1775.5" >caml..</text>
</g>
<g >
<title>futex_wake (396 samples, 0.02%)</title><rect x="803.1" y="1253" width="0.2" height="15.0" fill="rgb(252,16,50)" rx="2" ry="2" />
<text x="806.12" y="1263.5" ></text>
</g>
<g >
<title>__condvar_acquire_lock (5,258 samples, 0.26%)</title><rect x="615.8" y="1893" width="3.0" height="15.0" fill="rgb(209,33,28)" rx="2" ry="2" />
<text x="618.76" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (106,276 samples, 5.18%)</title><rect x="342.7" y="1925" width="61.2" height="15.0" fill="rgb(248,93,31)" rx="2" ry="2" />
<text x="345.75" y="1935.5" >camlIr..</text>
</g>
<g >
<title>caml_call_gc (353 samples, 0.02%)</title><rect x="759.6" y="1349" width="0.3" height="15.0" fill="rgb(232,93,24)" rx="2" ry="2" />
<text x="762.65" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (204 samples, 0.01%)</title><rect x="1064.7" y="1285" width="0.1" height="15.0" fill="rgb(215,207,27)" rx="2" ry="2" />
<text x="1067.69" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (435 samples, 0.02%)</title><rect x="702.4" y="1765" width="0.3" height="15.0" fill="rgb(222,189,48)" rx="2" ry="2" />
<text x="705.41" y="1775.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,141 samples, 0.06%)</title><rect x="1067.4" y="1237" width="0.7" height="15.0" fill="rgb(242,179,30)" rx="2" ry="2" />
<text x="1070.43" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (177 samples, 0.01%)</title><rect x="757.4" y="1365" width="0.1" height="15.0" fill="rgb(242,101,44)" rx="2" ry="2" />
<text x="760.36" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (198 samples, 0.01%)</title><rect x="994.2" y="1333" width="0.1" height="15.0" fill="rgb(243,145,17)" rx="2" ry="2" />
<text x="997.19" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__lazy__from_val_160 (379 samples, 0.02%)</title><rect x="1110.0" y="1349" width="0.2" height="15.0" fill="rgb(212,73,26)" rx="2" ry="2" />
<text x="1113.03" y="1359.5" ></text>
</g>
<g >
<title>caml_make_vect (367 samples, 0.02%)</title><rect x="1188.3" y="1589" width="0.2" height="15.0" fill="rgb(253,146,51)" rx="2" ry="2" />
<text x="1191.26" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11899 (3,056 samples, 0.15%)</title><rect x="1146.4" y="1365" width="1.7" height="15.0" fill="rgb(221,210,13)" rx="2" ry="2" />
<text x="1149.35" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1349" width="0.3" height="15.0" fill="rgb(219,213,18)" rx="2" ry="2" />
<text x="1192.69" y="1359.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (254 samples, 0.01%)</title><rect x="722.2" y="1397" width="0.2" height="15.0" fill="rgb(210,222,16)" rx="2" ry="2" />
<text x="725.21" y="1407.5" ></text>
</g>
<g >
<title>sweep_slice (240 samples, 0.01%)</title><rect x="390.3" y="1845" width="0.2" height="15.0" fill="rgb(240,68,54)" rx="2" ry="2" />
<text x="393.33" y="1855.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (437 samples, 0.02%)</title><rect x="503.2" y="1893" width="0.3" height="15.0" fill="rgb(218,217,26)" rx="2" ry="2" />
<text x="506.22" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (450 samples, 0.02%)</title><rect x="424.5" y="1925" width="0.3" height="15.0" fill="rgb(229,207,11)" rx="2" ry="2" />
<text x="427.51" y="1935.5" ></text>
</g>
<g >
<title>caml_string_equal (946 samples, 0.05%)</title><rect x="893.1" y="1269" width="0.5" height="15.0" fill="rgb(244,98,51)" rx="2" ry="2" />
<text x="896.11" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (22,857 samples, 1.11%)</title><rect x="842.7" y="1445" width="13.2" height="15.0" fill="rgb(220,120,3)" rx="2" ry="2" />
<text x="845.74" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (2,532 samples, 0.12%)</title><rect x="1130.9" y="1253" width="1.4" height="15.0" fill="rgb(250,48,10)" rx="2" ry="2" />
<text x="1133.85" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="373" width="0.3" height="15.0" fill="rgb(222,200,34)" rx="2" ry="2" />
<text x="1191.59" y="383.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7380 (1,175 samples, 0.06%)</title><rect x="805.9" y="1381" width="0.7" height="15.0" fill="rgb(254,126,33)" rx="2" ry="2" />
<text x="808.92" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (1,083 samples, 0.05%)</title><rect x="180.6" y="1845" width="0.6" height="15.0" fill="rgb(213,227,21)" rx="2" ry="2" />
<text x="183.61" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__init_96 (1,044 samples, 0.05%)</title><rect x="1187.6" y="1477" width="0.6" height="15.0" fill="rgb(252,5,9)" rx="2" ry="2" />
<text x="1190.62" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (231 samples, 0.01%)</title><rect x="35.6" y="1957" width="0.1" height="15.0" fill="rgb(218,95,6)" rx="2" ry="2" />
<text x="38.59" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12020 (2,399 samples, 0.12%)</title><rect x="823.1" y="1381" width="1.4" height="15.0" fill="rgb(241,117,52)" rx="2" ry="2" />
<text x="826.12" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1093" width="0.2" height="15.0" fill="rgb(234,59,13)" rx="2" ry="2" />
<text x="1191.85" y="1103.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (276 samples, 0.01%)</title><rect x="750.2" y="1173" width="0.2" height="15.0" fill="rgb(207,21,25)" rx="2" ry="2" />
<text x="753.21" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (359 samples, 0.02%)</title><rect x="333.9" y="1829" width="0.2" height="15.0" fill="rgb(237,84,1)" rx="2" ry="2" />
<text x="336.92" y="1839.5" ></text>
</g>
<g >
<title>mark_slice_darken (271 samples, 0.01%)</title><rect x="545.8" y="1845" width="0.2" height="15.0" fill="rgb(223,227,0)" rx="2" ry="2" />
<text x="548.82" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (190 samples, 0.01%)</title><rect x="727.1" y="1381" width="0.1" height="15.0" fill="rgb(244,208,16)" rx="2" ry="2" />
<text x="730.14" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (212 samples, 0.01%)</title><rect x="841.3" y="1253" width="0.1" height="15.0" fill="rgb(234,113,54)" rx="2" ry="2" />
<text x="844.32" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (832 samples, 0.04%)</title><rect x="403.4" y="1877" width="0.5" height="15.0" fill="rgb(219,157,50)" rx="2" ry="2" />
<text x="406.39" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,068 samples, 0.05%)</title><rect x="1012.7" y="1301" width="0.7" height="15.0" fill="rgb(212,149,28)" rx="2" ry="2" />
<text x="1015.75" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="885" width="0.2" height="15.0" fill="rgb(233,215,19)" rx="2" ry="2" />
<text x="1191.85" y="895.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1,301 samples, 0.06%)</title><rect x="921.2" y="1221" width="0.7" height="15.0" fill="rgb(237,36,54)" rx="2" ry="2" />
<text x="924.17" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,519 samples, 0.12%)</title><rect x="830.2" y="1301" width="1.5" height="15.0" fill="rgb(213,198,53)" rx="2" ry="2" />
<text x="833.22" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (239 samples, 0.01%)</title><rect x="704.9" y="1749" width="0.1" height="15.0" fill="rgb(228,19,14)" rx="2" ry="2" />
<text x="707.90" y="1759.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (1,206 samples, 0.06%)</title><rect x="924.3" y="1237" width="0.7" height="15.0" fill="rgb(211,171,30)" rx="2" ry="2" />
<text x="927.28" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (279 samples, 0.01%)</title><rect x="415.5" y="1893" width="0.1" height="15.0" fill="rgb(221,62,17)" rx="2" ry="2" />
<text x="418.49" y="1903.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (756 samples, 0.04%)</title><rect x="770.2" y="1285" width="0.5" height="15.0" fill="rgb(206,182,47)" rx="2" ry="2" />
<text x="773.23" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5768 (1,846 samples, 0.09%)</title><rect x="827.4" y="1429" width="1.1" height="15.0" fill="rgb(221,58,9)" rx="2" ry="2" />
<text x="830.39" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1829" width="0.3" height="15.0" fill="rgb(248,175,36)" rx="2" ry="2" />
<text x="1192.69" y="1839.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (530 samples, 0.03%)</title><rect x="709.9" y="1749" width="0.3" height="15.0" fill="rgb(250,99,37)" rx="2" ry="2" />
<text x="712.91" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_14907 (238 samples, 0.01%)</title><rect x="716.1" y="1509" width="0.2" height="15.0" fill="rgb(236,118,10)" rx="2" ry="2" />
<text x="719.12" y="1519.5" ></text>
</g>
<g >
<title>caml_pread (1,252 samples, 0.06%)</title><rect x="1104.4" y="1301" width="0.7" height="15.0" fill="rgb(245,172,5)" rx="2" ry="2" />
<text x="1107.36" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1500 (523 samples, 0.03%)</title><rect x="416.1" y="1893" width="0.3" height="15.0" fill="rgb(208,157,15)" rx="2" ry="2" />
<text x="419.13" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,806 samples, 0.19%)</title><rect x="673.5" y="1797" width="2.2" height="15.0" fill="rgb(241,125,46)" rx="2" ry="2" />
<text x="676.47" y="1807.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,652 samples, 0.13%)</title><rect x="231.9" y="1877" width="1.5" height="15.0" fill="rgb(237,116,41)" rx="2" ry="2" />
<text x="234.88" y="1887.5" ></text>
</g>
<g >
<title>mark_slice (1,633 samples, 0.08%)</title><rect x="546.0" y="1893" width="0.9" height="15.0" fill="rgb(208,10,47)" rx="2" ry="2" />
<text x="549.00" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1205" width="0.3" height="15.0" fill="rgb(217,227,1)" rx="2" ry="2" />
<text x="1191.59" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (668 samples, 0.03%)</title><rect x="1148.6" y="1269" width="0.4" height="15.0" fill="rgb(214,75,20)" rx="2" ry="2" />
<text x="1151.60" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (337 samples, 0.02%)</title><rect x="868.6" y="1493" width="0.2" height="15.0" fill="rgb(237,0,15)" rx="2" ry="2" />
<text x="871.64" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (405 samples, 0.02%)</title><rect x="955.2" y="1221" width="0.2" height="15.0" fill="rgb(233,195,20)" rx="2" ry="2" />
<text x="958.19" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7424 (15,049 samples, 0.73%)</title><rect x="1177.4" y="1365" width="8.7" height="15.0" fill="rgb(221,178,0)" rx="2" ry="2" />
<text x="1180.41" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (15,219 samples, 0.74%)</title><rect x="1030.0" y="1397" width="8.7" height="15.0" fill="rgb(223,217,22)" rx="2" ry="2" />
<text x="1032.99" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (196 samples, 0.01%)</title><rect x="1158.6" y="1109" width="0.1" height="15.0" fill="rgb(239,74,29)" rx="2" ry="2" />
<text x="1161.60" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (12,207 samples, 0.60%)</title><rect x="318.1" y="1893" width="7.0" height="15.0" fill="rgb(217,39,6)" rx="2" ry="2" />
<text x="321.11" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1077" width="0.3" height="15.0" fill="rgb(225,122,24)" rx="2" ry="2" />
<text x="1192.37" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (245 samples, 0.01%)</title><rect x="772.0" y="1397" width="0.2" height="15.0" fill="rgb(206,170,34)" rx="2" ry="2" />
<text x="775.01" y="1407.5" ></text>
</g>
<g >
<title>caml_apply5 (484 samples, 0.02%)</title><rect x="1140.7" y="1461" width="0.3" height="15.0" fill="rgb(237,62,11)" rx="2" ry="2" />
<text x="1143.72" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_1560 (1,980 samples, 0.10%)</title><rect x="391.1" y="1909" width="1.1" height="15.0" fill="rgb(232,34,37)" rx="2" ry="2" />
<text x="394.09" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (252 samples, 0.01%)</title><rect x="1188.7" y="165" width="0.2" height="15.0" fill="rgb(240,142,19)" rx="2" ry="2" />
<text x="1191.71" y="175.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="741" width="0.3" height="15.0" fill="rgb(215,148,9)" rx="2" ry="2" />
<text x="1192.37" y="751.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__copy_12383 (82,585 samples, 4.03%)</title><rect x="1028.4" y="1461" width="47.5" height="15.0" fill="rgb(247,37,51)" rx="2" ry="2" />
<text x="1031.41" y="1471.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (236 samples, 0.01%)</title><rect x="895.2" y="1285" width="0.2" height="15.0" fill="rgb(248,128,31)" rx="2" ry="2" />
<text x="898.23" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (473 samples, 0.02%)</title><rect x="762.2" y="1269" width="0.3" height="15.0" fill="rgb(205,12,36)" rx="2" ry="2" />
<text x="765.18" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__create_inner_1520 (367 samples, 0.02%)</title><rect x="1188.3" y="1605" width="0.2" height="15.0" fill="rgb(221,75,8)" rx="2" ry="2" />
<text x="1191.26" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (243 samples, 0.01%)</title><rect x="831.5" y="1285" width="0.1" height="15.0" fill="rgb(213,151,18)" rx="2" ry="2" />
<text x="834.50" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (402 samples, 0.02%)</title><rect x="859.7" y="1397" width="0.2" height="15.0" fill="rgb(223,163,44)" rx="2" ry="2" />
<text x="862.65" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1701" width="42.4" height="15.0" fill="rgb(228,135,7)" rx="2" ry="2" />
<text x="1148.76" y="1711.5" >caml..</text>
</g>
<g >
<title>caml_call_gc (1,264 samples, 0.06%)</title><rect x="403.1" y="1909" width="0.8" height="15.0" fill="rgb(232,110,35)" rx="2" ry="2" />
<text x="406.15" y="1919.5" ></text>
</g>
<g >
<title>caml_alloc_string (354 samples, 0.02%)</title><rect x="423.3" y="1893" width="0.2" height="15.0" fill="rgb(228,33,44)" rx="2" ry="2" />
<text x="426.32" y="1903.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (236 samples, 0.01%)</title><rect x="1153.4" y="1189" width="0.1" height="15.0" fill="rgb(251,208,19)" rx="2" ry="2" />
<text x="1156.40" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (237 samples, 0.01%)</title><rect x="759.3" y="1317" width="0.1" height="15.0" fill="rgb(216,226,36)" rx="2" ry="2" />
<text x="762.28" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (252 samples, 0.01%)</title><rect x="874.9" y="1349" width="0.1" height="15.0" fill="rgb(226,104,41)" rx="2" ry="2" />
<text x="877.86" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (416 samples, 0.02%)</title><rect x="1098.0" y="1301" width="0.3" height="15.0" fill="rgb(217,79,47)" rx="2" ry="2" />
<text x="1101.04" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (178 samples, 0.01%)</title><rect x="1133.7" y="1285" width="0.1" height="15.0" fill="rgb(230,176,1)" rx="2" ry="2" />
<text x="1136.68" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1333" width="0.3" height="15.0" fill="rgb(250,6,33)" rx="2" ry="2" />
<text x="1191.59" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,148 samples, 0.06%)</title><rect x="919.6" y="1221" width="0.7" height="15.0" fill="rgb(243,204,35)" rx="2" ry="2" />
<text x="922.63" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,255 samples, 21.80%)</title><rect x="888.5" y="1557" width="257.2" height="15.0" fill="rgb(237,154,2)" rx="2" ry="2" />
<text x="891.47" y="1567.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>camlIndex__fun_3630 (260 samples, 0.01%)</title><rect x="713.2" y="1925" width="0.2" height="15.0" fill="rgb(252,216,36)" rx="2" ry="2" />
<text x="716.22" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (474 samples, 0.02%)</title><rect x="1022.2" y="1173" width="0.2" height="15.0" fill="rgb(248,175,45)" rx="2" ry="2" />
<text x="1025.16" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (195 samples, 0.01%)</title><rect x="708.2" y="1797" width="0.1" height="15.0" fill="rgb(245,136,47)" rx="2" ry="2" />
<text x="711.17" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1845" width="0.3" height="15.0" fill="rgb(250,90,12)" rx="2" ry="2" />
<text x="1191.59" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1109" width="0.3" height="15.0" fill="rgb(254,198,11)" rx="2" ry="2" />
<text x="1191.59" y="1119.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (197 samples, 0.01%)</title><rect x="973.1" y="1221" width="0.1" height="15.0" fill="rgb(238,169,26)" rx="2" ry="2" />
<text x="976.11" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__filter_map_inplace_567 (2,773 samples, 0.14%)</title><rect x="712.4" y="1957" width="1.6" height="15.0" fill="rgb(235,146,33)" rx="2" ry="2" />
<text x="715.40" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1909" width="0.3" height="15.0" fill="rgb(223,150,52)" rx="2" ry="2" />
<text x="1192.37" y="1919.5" ></text>
</g>
<g >
<title>caml_fl_add_blocks (218 samples, 0.01%)</title><rect x="446.8" y="1861" width="0.1" height="15.0" fill="rgb(236,67,41)" rx="2" ry="2" />
<text x="449.81" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,476 samples, 0.07%)</title><rect x="728.9" y="1413" width="0.9" height="15.0" fill="rgb(213,149,16)" rx="2" ry="2" />
<text x="731.91" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15414 (592 samples, 0.03%)</title><rect x="988.3" y="1429" width="0.4" height="15.0" fill="rgb(213,46,10)" rx="2" ry="2" />
<text x="991.35" y="1439.5" ></text>
</g>
<g >
<title>caml_hash (175 samples, 0.01%)</title><rect x="1174.2" y="1205" width="0.1" height="15.0" fill="rgb(209,159,8)" rx="2" ry="2" />
<text x="1177.20" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (201 samples, 0.01%)</title><rect x="1012.0" y="1285" width="0.1" height="15.0" fill="rgb(207,30,24)" rx="2" ry="2" />
<text x="1015.00" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (6,197 samples, 0.30%)</title><rect x="855.9" y="1445" width="3.6" height="15.0" fill="rgb(220,53,34)" rx="2" ry="2" />
<text x="858.89" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_4843 (71,398 samples, 3.48%)</title><rect x="1146.2" y="1413" width="41.1" height="15.0" fill="rgb(220,223,39)" rx="2" ry="2" />
<text x="1149.22" y="1423.5" >cam..</text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,574 samples, 0.13%)</title><rect x="850.8" y="1381" width="1.4" height="15.0" fill="rgb(245,28,24)" rx="2" ry="2" />
<text x="853.75" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (746 samples, 0.04%)</title><rect x="1020.9" y="1189" width="0.5" height="15.0" fill="rgb(228,200,8)" rx="2" ry="2" />
<text x="1023.93" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__hash_4867 (1,790 samples, 0.09%)</title><rect x="341.1" y="1925" width="1.1" height="15.0" fill="rgb(254,92,51)" rx="2" ry="2" />
<text x="344.14" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,812 samples, 0.09%)</title><rect x="807.5" y="1381" width="1.0" height="15.0" fill="rgb(247,84,53)" rx="2" ry="2" />
<text x="810.51" y="1391.5" ></text>
</g>
<g >
<title>caml_do_local_roots (276 samples, 0.01%)</title><rect x="308.1" y="1797" width="0.1" height="15.0" fill="rgb(232,26,26)" rx="2" ry="2" />
<text x="311.06" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15238 (692 samples, 0.03%)</title><rect x="867.9" y="1445" width="0.4" height="15.0" fill="rgb(232,194,8)" rx="2" ry="2" />
<text x="870.90" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,092 samples, 0.05%)</title><rect x="1069.1" y="1221" width="0.6" height="15.0" fill="rgb(242,110,49)" rx="2" ry="2" />
<text x="1072.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (581 samples, 0.03%)</title><rect x="832.5" y="1301" width="0.4" height="15.0" fill="rgb(209,196,54)" rx="2" ry="2" />
<text x="835.53" y="1311.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (464 samples, 0.02%)</title><rect x="232.6" y="1829" width="0.3" height="15.0" fill="rgb(242,149,43)" rx="2" ry="2" />
<text x="235.64" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (870 samples, 0.04%)</title><rect x="1020.0" y="1189" width="0.5" height="15.0" fill="rgb(208,223,38)" rx="2" ry="2" />
<text x="1022.98" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__t_485 (1,411 samples, 0.07%)</title><rect x="705.7" y="1861" width="0.8" height="15.0" fill="rgb(235,57,27)" rx="2" ry="2" />
<text x="708.73" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (588 samples, 0.03%)</title><rect x="730.4" y="1381" width="0.3" height="15.0" fill="rgb(243,171,48)" rx="2" ry="2" />
<text x="733.38" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (410 samples, 0.02%)</title><rect x="1062.2" y="1269" width="0.2" height="15.0" fill="rgb(205,19,28)" rx="2" ry="2" />
<text x="1065.20" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1557" width="0.3" height="15.0" fill="rgb(217,202,52)" rx="2" ry="2" />
<text x="1192.37" y="1567.5" ></text>
</g>
<g >
<title>caml_apply2 (298 samples, 0.01%)</title><rect x="863.2" y="1413" width="0.2" height="15.0" fill="rgb(246,19,36)" rx="2" ry="2" />
<text x="866.21" y="1423.5" ></text>
</g>
<g >
<title>caml_thread_yield (5,085 samples, 0.25%)</title><rect x="1019.6" y="1301" width="2.9" height="15.0" fill="rgb(212,152,51)" rx="2" ry="2" />
<text x="1022.55" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (422 samples, 0.02%)</title><rect x="881.6" y="1301" width="0.3" height="15.0" fill="rgb(231,65,22)" rx="2" ry="2" />
<text x="884.63" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1877" width="0.3" height="15.0" fill="rgb(245,41,3)" rx="2" ry="2" />
<text x="1192.06" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (16,506 samples, 0.80%)</title><rect x="777.3" y="1381" width="9.5" height="15.0" fill="rgb(245,197,35)" rx="2" ry="2" />
<text x="780.34" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,242 samples, 0.06%)</title><rect x="800.2" y="1301" width="0.8" height="15.0" fill="rgb(254,107,39)" rx="2" ry="2" />
<text x="803.24" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (3,016 samples, 0.15%)</title><rect x="784.2" y="1301" width="1.7" height="15.0" fill="rgb(231,64,24)" rx="2" ry="2" />
<text x="787.19" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (348 samples, 0.02%)</title><rect x="752.5" y="1381" width="0.2" height="15.0" fill="rgb(217,92,4)" rx="2" ry="2" />
<text x="755.48" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (1,537 samples, 0.07%)</title><rect x="774.9" y="1477" width="0.9" height="15.0" fill="rgb(237,67,28)" rx="2" ry="2" />
<text x="777.88" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1941" width="0.2" height="15.0" fill="rgb(234,137,6)" rx="2" ry="2" />
<text x="1191.85" y="1951.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (981 samples, 0.05%)</title><rect x="163.9" y="1845" width="0.5" height="15.0" fill="rgb(241,115,38)" rx="2" ry="2" />
<text x="166.87" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (211 samples, 0.01%)</title><rect x="766.2" y="1301" width="0.1" height="15.0" fill="rgb(225,227,50)" rx="2" ry="2" />
<text x="769.18" y="1311.5" ></text>
</g>
<g >
<title>caml_modify (268 samples, 0.01%)</title><rect x="414.9" y="1893" width="0.2" height="15.0" fill="rgb(224,76,19)" rx="2" ry="2" />
<text x="417.94" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,073 samples, 0.05%)</title><rect x="746.5" y="1253" width="0.7" height="15.0" fill="rgb(236,199,32)" rx="2" ry="2" />
<text x="749.55" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="373" width="0.3" height="15.0" fill="rgb(212,189,48)" rx="2" ry="2" />
<text x="1192.37" y="383.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (275 samples, 0.01%)</title><rect x="867.4" y="1125" width="0.2" height="15.0" fill="rgb(237,22,48)" rx="2" ry="2" />
<text x="870.41" y="1135.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (219 samples, 0.01%)</title><rect x="976.0" y="1333" width="0.1" height="15.0" fill="rgb(226,187,29)" rx="2" ry="2" />
<text x="978.98" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (252 samples, 0.01%)</title><rect x="1188.7" y="181" width="0.2" height="15.0" fill="rgb(245,161,3)" rx="2" ry="2" />
<text x="1191.71" y="191.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (632 samples, 0.03%)</title><rect x="828.6" y="1381" width="0.3" height="15.0" fill="rgb(226,124,8)" rx="2" ry="2" />
<text x="831.58" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (24,573 samples, 1.20%)</title><rect x="948.1" y="1301" width="14.1" height="15.0" fill="rgb(227,72,44)" rx="2" ry="2" />
<text x="951.11" y="1311.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (192 samples, 0.01%)</title><rect x="180.4" y="1829" width="0.1" height="15.0" fill="rgb(226,130,17)" rx="2" ry="2" />
<text x="183.40" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (198 samples, 0.01%)</title><rect x="963.9" y="1269" width="0.1" height="15.0" fill="rgb(246,6,1)" rx="2" ry="2" />
<text x="966.90" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (378 samples, 0.02%)</title><rect x="838.6" y="1237" width="0.2" height="15.0" fill="rgb(217,116,17)" rx="2" ry="2" />
<text x="841.61" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,058 samples, 0.05%)</title><rect x="1018.1" y="1253" width="0.6" height="15.0" fill="rgb(252,61,36)" rx="2" ry="2" />
<text x="1021.09" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (222 samples, 0.01%)</title><rect x="761.2" y="1269" width="0.1" height="15.0" fill="rgb(253,172,26)" rx="2" ry="2" />
<text x="764.21" y="1279.5" ></text>
</g>
<g >
<title>caml_string_length (565 samples, 0.03%)</title><rect x="1137.5" y="1237" width="0.3" height="15.0" fill="rgb(248,75,1)" rx="2" ry="2" />
<text x="1140.52" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (184 samples, 0.01%)</title><rect x="916.7" y="1253" width="0.1" height="15.0" fill="rgb(236,32,28)" rx="2" ry="2" />
<text x="919.66" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (300 samples, 0.01%)</title><rect x="886.9" y="1445" width="0.2" height="15.0" fill="rgb(233,70,28)" rx="2" ry="2" />
<text x="889.94" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (685 samples, 0.03%)</title><rect x="736.7" y="1477" width="0.4" height="15.0" fill="rgb(215,6,9)" rx="2" ry="2" />
<text x="739.70" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (186 samples, 0.01%)</title><rect x="736.4" y="1413" width="0.1" height="15.0" fill="rgb(218,31,30)" rx="2" ry="2" />
<text x="739.43" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,107 samples, 0.05%)</title><rect x="823.2" y="1333" width="0.6" height="15.0" fill="rgb(209,2,24)" rx="2" ry="2" />
<text x="826.17" y="1343.5" ></text>
</g>
<g >
<title>caml_apply2 (328 samples, 0.02%)</title><rect x="765.0" y="1269" width="0.2" height="15.0" fill="rgb(211,148,13)" rx="2" ry="2" />
<text x="767.98" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (640 samples, 0.03%)</title><rect x="100.4" y="1813" width="0.4" height="15.0" fill="rgb(243,219,0)" rx="2" ry="2" />
<text x="103.40" y="1823.5" ></text>
</g>
<g >
<title>caml_apply2 (499 samples, 0.02%)</title><rect x="1091.4" y="1269" width="0.2" height="15.0" fill="rgb(219,65,37)" rx="2" ry="2" />
<text x="1094.35" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (384 samples, 0.02%)</title><rect x="922.3" y="1173" width="0.2" height="15.0" fill="rgb(217,30,33)" rx="2" ry="2" />
<text x="925.31" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (1,631 samples, 0.08%)</title><rect x="220.3" y="1829" width="1.0" height="15.0" fill="rgb(227,154,9)" rx="2" ry="2" />
<text x="223.34" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (544 samples, 0.03%)</title><rect x="859.9" y="1413" width="0.4" height="15.0" fill="rgb(225,72,37)" rx="2" ry="2" />
<text x="862.94" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (1,657 samples, 0.08%)</title><rect x="974.8" y="1333" width="1.0" height="15.0" fill="rgb(234,195,51)" rx="2" ry="2" />
<text x="977.83" y="1343.5" ></text>
</g>
<g >
<title>caml_startup_common (821,302 samples, 40.03%)</title><rect x="716.1" y="1973" width="472.4" height="15.0" fill="rgb(248,196,15)" rx="2" ry="2" />
<text x="719.10" y="1983.5" >caml_startup_common</text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7380 (1,154 samples, 0.06%)</title><rect x="841.3" y="1381" width="0.6" height="15.0" fill="rgb(216,52,43)" rx="2" ry="2" />
<text x="844.28" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (492 samples, 0.02%)</title><rect x="916.2" y="1253" width="0.2" height="15.0" fill="rgb(241,153,51)" rx="2" ry="2" />
<text x="919.16" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (230 samples, 0.01%)</title><rect x="812.6" y="1301" width="0.2" height="15.0" fill="rgb(205,209,27)" rx="2" ry="2" />
<text x="815.64" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (7,033 samples, 0.34%)</title><rect x="1113.1" y="1349" width="4.1" height="15.0" fill="rgb(219,178,34)" rx="2" ry="2" />
<text x="1116.12" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (12,660 samples, 0.62%)</title><rect x="1160.2" y="1269" width="7.3" height="15.0" fill="rgb(209,74,46)" rx="2" ry="2" />
<text x="1163.21" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (299 samples, 0.01%)</title><rect x="1174.8" y="1173" width="0.2" height="15.0" fill="rgb(239,206,21)" rx="2" ry="2" />
<text x="1177.84" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (524 samples, 0.03%)</title><rect x="206.3" y="1861" width="0.3" height="15.0" fill="rgb(214,172,0)" rx="2" ry="2" />
<text x="209.26" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (513 samples, 0.03%)</title><rect x="668.8" y="1797" width="0.3" height="15.0" fill="rgb(210,200,12)" rx="2" ry="2" />
<text x="671.81" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (720 samples, 0.04%)</title><rect x="876.8" y="1349" width="0.4" height="15.0" fill="rgb(243,71,6)" rx="2" ry="2" />
<text x="879.79" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (618 samples, 0.03%)</title><rect x="880.3" y="1381" width="0.4" height="15.0" fill="rgb(223,54,10)" rx="2" ry="2" />
<text x="883.31" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (386 samples, 0.02%)</title><rect x="811.2" y="1301" width="0.2" height="15.0" fill="rgb(207,149,38)" rx="2" ry="2" />
<text x="814.17" y="1311.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (26,702 samples, 1.30%)</title><rect x="947.3" y="1317" width="15.3" height="15.0" fill="rgb(239,166,45)" rx="2" ry="2" />
<text x="950.27" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (7,686 samples, 0.37%)</title><rect x="980.1" y="1477" width="4.5" height="15.0" fill="rgb(244,91,50)" rx="2" ry="2" />
<text x="983.15" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (440 samples, 0.02%)</title><rect x="855.4" y="1397" width="0.2" height="15.0" fill="rgb(246,212,28)" rx="2" ry="2" />
<text x="858.38" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11917 (6,929 samples, 0.34%)</title><rect x="863.6" y="1429" width="4.0" height="15.0" fill="rgb(238,14,2)" rx="2" ry="2" />
<text x="866.60" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (276 samples, 0.01%)</title><rect x="418.4" y="1877" width="0.2" height="15.0" fill="rgb(230,149,32)" rx="2" ry="2" />
<text x="421.41" y="1887.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,481 samples, 0.07%)</title><rect x="546.1" y="1877" width="0.8" height="15.0" fill="rgb(210,212,35)" rx="2" ry="2" />
<text x="549.09" y="1887.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (274 samples, 0.01%)</title><rect x="1184.5" y="1189" width="0.2" height="15.0" fill="rgb(221,151,31)" rx="2" ry="2" />
<text x="1187.50" y="1199.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (255,739 samples, 12.47%)</title><rect x="741.1" y="1621" width="147.1" height="15.0" fill="rgb(246,126,38)" rx="2" ry="2" />
<text x="744.11" y="1631.5" >camlLwt_list__iter..</text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (198 samples, 0.01%)</title><rect x="743.2" y="1349" width="0.1" height="15.0" fill="rgb(215,166,48)" rx="2" ry="2" />
<text x="746.19" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (432 samples, 0.02%)</title><rect x="772.9" y="1365" width="0.2" height="15.0" fill="rgb(217,176,54)" rx="2" ry="2" />
<text x="775.86" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (182 samples, 0.01%)</title><rect x="739.1" y="1541" width="0.1" height="15.0" fill="rgb(249,7,2)" rx="2" ry="2" />
<text x="742.08" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (409 samples, 0.02%)</title><rect x="1011.5" y="1301" width="0.3" height="15.0" fill="rgb(237,178,38)" rx="2" ry="2" />
<text x="1014.53" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (180 samples, 0.01%)</title><rect x="747.6" y="1269" width="0.1" height="15.0" fill="rgb(225,226,49)" rx="2" ry="2" />
<text x="750.65" y="1279.5" ></text>
</g>
<g >
<title>caml_start_program (607 samples, 0.03%)</title><rect x="10.1" y="1957" width="0.3" height="15.0" fill="rgb(226,2,30)" rx="2" ry="2" />
<text x="13.06" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_v_685 (540 samples, 0.03%)</title><rect x="1126.2" y="1381" width="0.3" height="15.0" fill="rgb(236,190,21)" rx="2" ry="2" />
<text x="1129.21" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (13,107 samples, 0.64%)</title><rect x="1160.1" y="1285" width="7.6" height="15.0" fill="rgb(222,109,3)" rx="2" ry="2" />
<text x="1163.12" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (244 samples, 0.01%)</title><rect x="1042.5" y="1285" width="0.1" height="15.0" fill="rgb(250,190,5)" rx="2" ry="2" />
<text x="1045.46" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (16,372 samples, 0.80%)</title><rect x="415.1" y="1925" width="9.4" height="15.0" fill="rgb(221,180,39)" rx="2" ry="2" />
<text x="418.09" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1141" width="0.3" height="15.0" fill="rgb(207,23,21)" rx="2" ry="2" />
<text x="1192.37" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (269 samples, 0.01%)</title><rect x="1150.7" y="1189" width="0.2" height="15.0" fill="rgb(224,30,17)" rx="2" ry="2" />
<text x="1153.71" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (639 samples, 0.03%)</title><rect x="911.2" y="1237" width="0.3" height="15.0" fill="rgb(224,157,9)" rx="2" ry="2" />
<text x="914.17" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,996 samples, 0.15%)</title><rect x="766.5" y="1349" width="1.7" height="15.0" fill="rgb(246,74,18)" rx="2" ry="2" />
<text x="769.52" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,347 samples, 0.07%)</title><rect x="324.4" y="1845" width="0.7" height="15.0" fill="rgb(207,80,34)" rx="2" ry="2" />
<text x="327.35" y="1855.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (217 samples, 0.01%)</title><rect x="927.9" y="1333" width="0.1" height="15.0" fill="rgb(226,140,35)" rx="2" ry="2" />
<text x="930.86" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__compare_1165 (272 samples, 0.01%)</title><rect x="973.9" y="1317" width="0.1" height="15.0" fill="rgb(250,177,53)" rx="2" ry="2" />
<text x="976.89" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (648 samples, 0.03%)</title><rect x="757.1" y="1397" width="0.4" height="15.0" fill="rgb(241,140,30)" rx="2" ry="2" />
<text x="760.12" y="1407.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (180 samples, 0.01%)</title><rect x="933.9" y="1237" width="0.1" height="15.0" fill="rgb(206,181,46)" rx="2" ry="2" />
<text x="936.94" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (232 samples, 0.01%)</title><rect x="840.1" y="1365" width="0.2" height="15.0" fill="rgb(207,118,22)" rx="2" ry="2" />
<text x="843.12" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (744 samples, 0.04%)</title><rect x="940.1" y="1349" width="0.4" height="15.0" fill="rgb(250,122,8)" rx="2" ry="2" />
<text x="943.11" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_143 (193 samples, 0.01%)</title><rect x="951.7" y="1221" width="0.1" height="15.0" fill="rgb(205,113,51)" rx="2" ry="2" />
<text x="954.70" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (859 samples, 0.04%)</title><rect x="1161.2" y="1173" width="0.5" height="15.0" fill="rgb(214,56,36)" rx="2" ry="2" />
<text x="1164.17" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (569 samples, 0.03%)</title><rect x="786.3" y="1333" width="0.3" height="15.0" fill="rgb(249,2,14)" rx="2" ry="2" />
<text x="789.32" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (445 samples, 0.02%)</title><rect x="852.9" y="1301" width="0.3" height="15.0" fill="rgb(228,132,5)" rx="2" ry="2" />
<text x="855.93" y="1311.5" ></text>
</g>
<g >
<title>caml_compare (177 samples, 0.01%)</title><rect x="1158.4" y="1189" width="0.1" height="15.0" fill="rgb(208,94,26)" rx="2" ry="2" />
<text x="1161.44" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (14,085 samples, 0.69%)</title><rect x="1168.6" y="1333" width="8.1" height="15.0" fill="rgb(214,6,22)" rx="2" ry="2" />
<text x="1171.57" y="1343.5" ></text>
</g>
<g >
<title>camlDigestif_conv__to_raw_string_476 (567 samples, 0.03%)</title><rect x="358.0" y="1893" width="0.3" height="15.0" fill="rgb(238,119,10)" rx="2" ry="2" />
<text x="360.98" y="1903.5" ></text>
</g>
<g >
<title>mark_slice_darken (611 samples, 0.03%)</title><rect x="444.5" y="1829" width="0.4" height="15.0" fill="rgb(248,8,31)" rx="2" ry="2" />
<text x="447.52" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (217 samples, 0.01%)</title><rect x="703.4" y="1845" width="0.2" height="15.0" fill="rgb(220,185,10)" rx="2" ry="2" />
<text x="706.43" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (269 samples, 0.01%)</title><rect x="788.5" y="1237" width="0.2" height="15.0" fill="rgb(235,221,6)" rx="2" ry="2" />
<text x="791.50" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (756 samples, 0.04%)</title><rect x="327.1" y="1877" width="0.4" height="15.0" fill="rgb(245,203,45)" rx="2" ry="2" />
<text x="330.07" y="1887.5" ></text>
</g>
<g >
<title>caml_garbage_collection (186 samples, 0.01%)</title><rect x="958.2" y="1205" width="0.1" height="15.0" fill="rgb(236,202,29)" rx="2" ry="2" />
<text x="961.22" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="373" width="0.2" height="15.0" fill="rgb(218,194,27)" rx="2" ry="2" />
<text x="1191.85" y="383.5" ></text>
</g>
<g >
<title>caml_garbage_collection (297 samples, 0.01%)</title><rect x="824.5" y="1365" width="0.2" height="15.0" fill="rgb(244,203,16)" rx="2" ry="2" />
<text x="827.53" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1413" width="0.3" height="15.0" fill="rgb(219,193,47)" rx="2" ry="2" />
<text x="1192.69" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1013" width="0.3" height="15.0" fill="rgb(241,185,47)" rx="2" ry="2" />
<text x="1192.06" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (295 samples, 0.01%)</title><rect x="704.9" y="1781" width="0.2" height="15.0" fill="rgb(239,41,26)" rx="2" ry="2" />
<text x="707.88" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (591 samples, 0.03%)</title><rect x="1063.7" y="1269" width="0.4" height="15.0" fill="rgb(219,183,40)" rx="2" ry="2" />
<text x="1066.72" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (251 samples, 0.01%)</title><rect x="1123.9" y="1365" width="0.1" height="15.0" fill="rgb(218,46,48)" rx="2" ry="2" />
<text x="1126.89" y="1375.5" ></text>
</g>
<g >
<title>do_compare_val (178 samples, 0.01%)</title><rect x="770.8" y="1301" width="0.1" height="15.0" fill="rgb(214,191,4)" rx="2" ry="2" />
<text x="773.84" y="1311.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (512 samples, 0.02%)</title><rect x="838.1" y="1301" width="0.3" height="15.0" fill="rgb(244,136,36)" rx="2" ry="2" />
<text x="841.14" y="1311.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (228 samples, 0.01%)</title><rect x="1133.9" y="1253" width="0.2" height="15.0" fill="rgb(251,92,28)" rx="2" ry="2" />
<text x="1136.93" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (421 samples, 0.02%)</title><rect x="805.9" y="1317" width="0.3" height="15.0" fill="rgb(236,118,31)" rx="2" ry="2" />
<text x="808.94" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (537 samples, 0.03%)</title><rect x="1026.6" y="1349" width="0.3" height="15.0" fill="rgb(223,217,1)" rx="2" ry="2" />
<text x="1029.56" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (444 samples, 0.02%)</title><rect x="774.5" y="1445" width="0.3" height="15.0" fill="rgb(215,61,31)" rx="2" ry="2" />
<text x="777.51" y="1455.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (196 samples, 0.01%)</title><rect x="444.4" y="1877" width="0.1" height="15.0" fill="rgb(248,19,45)" rx="2" ry="2" />
<text x="447.38" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (290 samples, 0.01%)</title><rect x="887.7" y="1493" width="0.2" height="15.0" fill="rgb(240,46,15)" rx="2" ry="2" />
<text x="890.75" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (238 samples, 0.01%)</title><rect x="902.7" y="1237" width="0.1" height="15.0" fill="rgb(236,50,45)" rx="2" ry="2" />
<text x="905.67" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (3,406 samples, 0.17%)</title><rect x="1079.3" y="1365" width="2.0" height="15.0" fill="rgb(249,61,27)" rx="2" ry="2" />
<text x="1082.30" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (249 samples, 0.01%)</title><rect x="913.5" y="1253" width="0.2" height="15.0" fill="rgb(219,167,11)" rx="2" ry="2" />
<text x="916.54" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (1,123 samples, 0.05%)</title><rect x="864.0" y="1317" width="0.7" height="15.0" fill="rgb(232,159,27)" rx="2" ry="2" />
<text x="867.03" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (4,237 samples, 0.21%)</title><rect x="836.9" y="1365" width="2.4" height="15.0" fill="rgb(231,146,35)" rx="2" ry="2" />
<text x="839.88" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (1,133 samples, 0.06%)</title><rect x="737.1" y="1477" width="0.6" height="15.0" fill="rgb(239,30,30)" rx="2" ry="2" />
<text x="740.10" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_8318 (241 samples, 0.01%)</title><rect x="739.9" y="1589" width="0.1" height="15.0" fill="rgb(207,101,54)" rx="2" ry="2" />
<text x="742.91" y="1599.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,618 samples, 0.08%)</title><rect x="1175.0" y="1237" width="0.9" height="15.0" fill="rgb(230,60,39)" rx="2" ry="2" />
<text x="1178.01" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (800 samples, 0.04%)</title><rect x="1064.8" y="1269" width="0.5" height="15.0" fill="rgb(238,170,26)" rx="2" ry="2" />
<text x="1067.85" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2590 (2,051 samples, 0.10%)</title><rect x="239.0" y="1893" width="1.2" height="15.0" fill="rgb(231,192,16)" rx="2" ry="2" />
<text x="242.03" y="1903.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (797 samples, 0.04%)</title><rect x="205.0" y="1829" width="0.4" height="15.0" fill="rgb(242,23,3)" rx="2" ry="2" />
<text x="207.97" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (976 samples, 0.05%)</title><rect x="971.4" y="1189" width="0.6" height="15.0" fill="rgb(249,227,28)" rx="2" ry="2" />
<text x="974.43" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (177 samples, 0.01%)</title><rect x="745.8" y="1269" width="0.1" height="15.0" fill="rgb(246,109,0)" rx="2" ry="2" />
<text x="748.80" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (468 samples, 0.02%)</title><rect x="838.2" y="1237" width="0.2" height="15.0" fill="rgb(237,163,2)" rx="2" ry="2" />
<text x="841.16" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (7,164 samples, 0.35%)</title><rect x="1061.6" y="1317" width="4.1" height="15.0" fill="rgb(214,160,14)" rx="2" ry="2" />
<text x="1064.58" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (731 samples, 0.04%)</title><rect x="925.4" y="1301" width="0.4" height="15.0" fill="rgb(249,85,7)" rx="2" ry="2" />
<text x="928.43" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (8,904 samples, 0.43%)</title><rect x="330.1" y="1877" width="5.1" height="15.0" fill="rgb(225,186,2)" rx="2" ry="2" />
<text x="333.12" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1381" width="0.3" height="15.0" fill="rgb(207,142,54)" rx="2" ry="2" />
<text x="1191.59" y="1391.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,524 samples, 0.07%)</title><rect x="1020.5" y="1285" width="0.9" height="15.0" fill="rgb(230,40,32)" rx="2" ry="2" />
<text x="1023.48" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12272 (541 samples, 0.03%)</title><rect x="1145.8" y="1269" width="0.3" height="15.0" fill="rgb(223,25,11)" rx="2" ry="2" />
<text x="1148.84" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (1,643 samples, 0.08%)</title><rect x="401.6" y="1877" width="0.9" height="15.0" fill="rgb(230,115,43)" rx="2" ry="2" />
<text x="404.56" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1413" width="0.3" height="15.0" fill="rgb(220,59,44)" rx="2" ry="2" />
<text x="1191.59" y="1423.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,779 samples, 0.09%)</title><rect x="335.5" y="1861" width="1.0" height="15.0" fill="rgb(249,79,54)" rx="2" ry="2" />
<text x="338.50" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (402 samples, 0.02%)</title><rect x="792.4" y="1285" width="0.2" height="15.0" fill="rgb(208,90,42)" rx="2" ry="2" />
<text x="795.40" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (499 samples, 0.02%)</title><rect x="1000.9" y="1253" width="0.3" height="15.0" fill="rgb(238,19,33)" rx="2" ry="2" />
<text x="1003.91" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (1,835 samples, 0.09%)</title><rect x="890.9" y="1365" width="1.0" height="15.0" fill="rgb(230,74,9)" rx="2" ry="2" />
<text x="893.89" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (592 samples, 0.03%)</title><rect x="859.9" y="1429" width="0.4" height="15.0" fill="rgb(229,147,36)" rx="2" ry="2" />
<text x="862.92" y="1439.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (217 samples, 0.01%)</title><rect x="713.9" y="1893" width="0.1" height="15.0" fill="rgb(224,29,22)" rx="2" ry="2" />
<text x="716.87" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (928 samples, 0.05%)</title><rect x="1121.2" y="1365" width="0.5" height="15.0" fill="rgb(223,201,37)" rx="2" ry="2" />
<text x="1124.20" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1140 (194 samples, 0.01%)</title><rect x="703.1" y="1877" width="0.1" height="15.0" fill="rgb(219,50,45)" rx="2" ry="2" />
<text x="706.09" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1141" width="0.3" height="15.0" fill="rgb(233,201,32)" rx="2" ry="2" />
<text x="1191.59" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (447,257 samples, 21.80%)</title><rect x="888.5" y="1669" width="257.2" height="15.0" fill="rgb(206,214,36)" rx="2" ry="2" />
<text x="891.47" y="1679.5" >camlStdlib__list__rmap_f_231</text>
</g>
<g >
<title>camlIndex__decode_entry_323 (5,833 samples, 0.28%)</title><rect x="914.2" y="1285" width="3.3" height="15.0" fill="rgb(244,62,32)" rx="2" ry="2" />
<text x="917.16" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3830 (279,468 samples, 13.62%)</title><rect x="984.6" y="1493" width="160.7" height="15.0" fill="rgb(228,168,43)" rx="2" ry="2" />
<text x="987.57" y="1503.5" >camlIrmin__Object_gr..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (381 samples, 0.02%)</title><rect x="883.3" y="1269" width="0.3" height="15.0" fill="rgb(214,25,40)" rx="2" ry="2" />
<text x="886.34" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1221" width="0.2" height="15.0" fill="rgb(240,113,46)" rx="2" ry="2" />
<text x="1191.85" y="1231.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (672 samples, 0.03%)</title><rect x="769.8" y="1285" width="0.4" height="15.0" fill="rgb(233,99,21)" rx="2" ry="2" />
<text x="772.84" y="1295.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (7,255 samples, 0.35%)</title><rect x="1169.3" y="1269" width="4.2" height="15.0" fill="rgb(224,68,30)" rx="2" ry="2" />
<text x="1172.31" y="1279.5" ></text>
</g>
<g >
<title>__condvar_get_private (321 samples, 0.02%)</title><rect x="669.1" y="1877" width="0.2" height="15.0" fill="rgb(233,145,26)" rx="2" ry="2" />
<text x="672.11" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (74,606 samples, 3.64%)</title><rect x="506.0" y="1941" width="42.9" height="15.0" fill="rgb(217,145,46)" rx="2" ry="2" />
<text x="508.98" y="1951.5" >caml..</text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (14,650 samples, 0.71%)</title><rect x="1159.4" y="1301" width="8.4" height="15.0" fill="rgb(248,24,22)" rx="2" ry="2" />
<text x="1162.39" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (865 samples, 0.04%)</title><rect x="1070.2" y="1205" width="0.5" height="15.0" fill="rgb(210,157,51)" rx="2" ry="2" />
<text x="1073.18" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (253 samples, 0.01%)</title><rect x="1060.2" y="1269" width="0.1" height="15.0" fill="rgb(227,9,11)" rx="2" ry="2" />
<text x="1063.16" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1733" width="0.2" height="15.0" fill="rgb(248,96,1)" rx="2" ry="2" />
<text x="1191.85" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="549" width="0.3" height="15.0" fill="rgb(243,189,49)" rx="2" ry="2" />
<text x="1192.69" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (375 samples, 0.02%)</title><rect x="882.3" y="1253" width="0.2" height="15.0" fill="rgb(252,73,14)" rx="2" ry="2" />
<text x="885.33" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (190 samples, 0.01%)</title><rect x="1189.5" y="101" width="0.1" height="15.0" fill="rgb(216,169,17)" rx="2" ry="2" />
<text x="1192.50" y="111.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (214 samples, 0.01%)</title><rect x="894.3" y="1221" width="0.2" height="15.0" fill="rgb(236,34,52)" rx="2" ry="2" />
<text x="897.34" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (409 samples, 0.02%)</title><rect x="10.2" y="1525" width="0.2" height="15.0" fill="rgb(236,108,33)" rx="2" ry="2" />
<text x="13.16" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (6,840 samples, 0.33%)</title><rect x="949.3" y="1253" width="3.9" height="15.0" fill="rgb(221,116,19)" rx="2" ry="2" />
<text x="952.26" y="1263.5" ></text>
</g>
<g >
<title>caml_obj_tag (209 samples, 0.01%)</title><rect x="1110.1" y="1333" width="0.1" height="15.0" fill="rgb(205,122,15)" rx="2" ry="2" />
<text x="1113.12" y="1343.5" ></text>
</g>
<g >
<title>caml_leave_blocking_section (591 samples, 0.03%)</title><rect x="36.3" y="2021" width="0.4" height="15.0" fill="rgb(238,214,10)" rx="2" ry="2" />
<text x="39.35" y="2031.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (753 samples, 0.04%)</title><rect x="839.8" y="1381" width="0.5" height="15.0" fill="rgb(247,2,14)" rx="2" ry="2" />
<text x="842.84" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="821" width="0.2" height="15.0" fill="rgb(215,29,33)" rx="2" ry="2" />
<text x="1191.85" y="831.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (511 samples, 0.02%)</title><rect x="1022.1" y="1221" width="0.3" height="15.0" fill="rgb(230,220,47)" rx="2" ry="2" />
<text x="1025.14" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1845" width="0.3" height="15.0" fill="rgb(212,9,27)" rx="2" ry="2" />
<text x="1192.69" y="1855.5" ></text>
</g>
<g >
<title>caml_curry4_2 (183 samples, 0.01%)</title><rect x="1138.5" y="1397" width="0.1" height="15.0" fill="rgb(214,164,16)" rx="2" ry="2" />
<text x="1141.54" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (315 samples, 0.02%)</title><rect x="856.8" y="1365" width="0.2" height="15.0" fill="rgb(217,110,11)" rx="2" ry="2" />
<text x="859.82" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (2,180 samples, 0.11%)</title><rect x="1154.4" y="1317" width="1.2" height="15.0" fill="rgb(253,202,45)" rx="2" ry="2" />
<text x="1157.37" y="1327.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (1,087 samples, 0.05%)</title><rect x="972.1" y="1221" width="0.6" height="15.0" fill="rgb(221,89,51)" rx="2" ry="2" />
<text x="975.08" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (265 samples, 0.01%)</title><rect x="1114.1" y="1301" width="0.2" height="15.0" fill="rgb(221,20,49)" rx="2" ry="2" />
<text x="1117.11" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (654 samples, 0.03%)</title><rect x="764.8" y="1285" width="0.4" height="15.0" fill="rgb(214,7,37)" rx="2" ry="2" />
<text x="767.79" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (9,025 samples, 0.44%)</title><rect x="385.3" y="1909" width="5.2" height="15.0" fill="rgb(225,108,10)" rx="2" ry="2" />
<text x="388.28" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__case_971 (5,108 samples, 0.25%)</title><rect x="1033.8" y="1365" width="2.9" height="15.0" fill="rgb(228,56,50)" rx="2" ry="2" />
<text x="1036.78" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_4321 (185 samples, 0.01%)</title><rect x="740.3" y="1717" width="0.1" height="15.0" fill="rgb(235,0,52)" rx="2" ry="2" />
<text x="743.30" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (474 samples, 0.02%)</title><rect x="1100.3" y="1301" width="0.2" height="15.0" fill="rgb(237,209,20)" rx="2" ry="2" />
<text x="1103.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="805" width="0.3" height="15.0" fill="rgb(241,16,7)" rx="2" ry="2" />
<text x="1192.06" y="815.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (1,266 samples, 0.06%)</title><rect x="886.6" y="1509" width="0.7" height="15.0" fill="rgb(249,188,39)" rx="2" ry="2" />
<text x="889.59" y="1519.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (13,117 samples, 0.64%)</title><rect x="871.7" y="1413" width="7.5" height="15.0" fill="rgb(248,13,3)" rx="2" ry="2" />
<text x="874.65" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1957" width="0.3" height="15.0" fill="rgb(235,107,34)" rx="2" ry="2" />
<text x="1192.06" y="1967.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (489 samples, 0.02%)</title><rect x="1022.2" y="1189" width="0.2" height="15.0" fill="rgb(221,14,44)" rx="2" ry="2" />
<text x="1025.15" y="1199.5" ></text>
</g>
<g >
<title>caml_thread_yield (2,143 samples, 0.10%)</title><rect x="769.5" y="1301" width="1.2" height="15.0" fill="rgb(210,156,45)" rx="2" ry="2" />
<text x="772.49" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__closure_inner_4612 (306 samples, 0.01%)</title><rect x="888.2" y="1653" width="0.2" height="15.0" fill="rgb(206,27,36)" rx="2" ry="2" />
<text x="891.21" y="1663.5" ></text>
</g>
<g >
<title>caml_pread (197 samples, 0.01%)</title><rect x="973.1" y="1253" width="0.1" height="15.0" fill="rgb(224,62,11)" rx="2" ry="2" />
<text x="976.11" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_680 (269 samples, 0.01%)</title><rect x="1113.8" y="1317" width="0.2" height="15.0" fill="rgb(215,125,11)" rx="2" ry="2" />
<text x="1116.82" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (2,656 samples, 0.13%)</title><rect x="231.9" y="1893" width="1.5" height="15.0" fill="rgb(215,212,46)" rx="2" ry="2" />
<text x="234.88" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (3,383 samples, 0.16%)</title><rect x="1091.7" y="1285" width="2.0" height="15.0" fill="rgb(220,43,36)" rx="2" ry="2" />
<text x="1094.72" y="1295.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (479 samples, 0.02%)</title><rect x="819.4" y="1285" width="0.3" height="15.0" fill="rgb(231,48,37)" rx="2" ry="2" />
<text x="822.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5215 (1,962 samples, 0.10%)</title><rect x="931.6" y="1301" width="1.1" height="15.0" fill="rgb(231,140,31)" rx="2" ry="2" />
<text x="934.62" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12272 (238 samples, 0.01%)</title><rect x="716.1" y="1477" width="0.2" height="15.0" fill="rgb(251,191,20)" rx="2" ry="2" />
<text x="719.12" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="2053" width="0.3" height="15.0" fill="rgb(223,202,5)" rx="2" ry="2" />
<text x="1192.37" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (181 samples, 0.01%)</title><rect x="964.0" y="1269" width="0.1" height="15.0" fill="rgb(236,66,47)" rx="2" ry="2" />
<text x="967.02" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (14,039 samples, 0.68%)</title><rect x="1168.6" y="1317" width="8.1" height="15.0" fill="rgb(247,18,42)" rx="2" ry="2" />
<text x="1171.59" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (1,611 samples, 0.08%)</title><rect x="721.6" y="1461" width="0.9" height="15.0" fill="rgb(254,23,1)" rx="2" ry="2" />
<text x="724.61" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_7365 (152,716 samples, 7.44%)</title><rect x="889.3" y="1445" width="87.8" height="15.0" fill="rgb(249,185,34)" rx="2" ry="2" />
<text x="892.28" y="1455.5" >camlIrmin_..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (421 samples, 0.02%)</title><rect x="828.1" y="1301" width="0.2" height="15.0" fill="rgb(253,12,48)" rx="2" ry="2" />
<text x="831.07" y="1311.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (248 samples, 0.01%)</title><rect x="1189.7" y="149" width="0.2" height="15.0" fill="rgb(250,77,7)" rx="2" ry="2" />
<text x="1192.71" y="159.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1397" width="0.3" height="15.0" fill="rgb(247,26,0)" rx="2" ry="2" />
<text x="1192.06" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,884 samples, 0.09%)</title><rect x="931.6" y="1285" width="1.1" height="15.0" fill="rgb(210,89,20)" rx="2" ry="2" />
<text x="934.64" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1077" width="0.3" height="15.0" fill="rgb(243,28,10)" rx="2" ry="2" />
<text x="1192.69" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1253" width="0.3" height="15.0" fill="rgb(246,6,28)" rx="2" ry="2" />
<text x="1191.59" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13867 (447,255 samples, 21.80%)</title><rect x="888.5" y="1525" width="257.2" height="15.0" fill="rgb(208,32,2)" rx="2" ry="2" />
<text x="891.47" y="1535.5" >camlIrmin_pack__Layered__fun_13867</text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (21,385 samples, 1.04%)</title><rect x="759.5" y="1381" width="12.3" height="15.0" fill="rgb(232,26,31)" rx="2" ry="2" />
<text x="762.47" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (9,971 samples, 0.49%)</title><rect x="844.6" y="1365" width="5.8" height="15.0" fill="rgb(210,220,43)" rx="2" ry="2" />
<text x="847.62" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (749 samples, 0.04%)</title><rect x="1127.0" y="1365" width="0.5" height="15.0" fill="rgb(246,196,8)" rx="2" ry="2" />
<text x="1130.04" y="1375.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (229 samples, 0.01%)</title><rect x="976.1" y="1349" width="0.1" height="15.0" fill="rgb(247,220,12)" rx="2" ry="2" />
<text x="979.10" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (4,960 samples, 0.24%)</title><rect x="892.2" y="1333" width="2.9" height="15.0" fill="rgb(251,194,47)" rx="2" ry="2" />
<text x="895.24" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (691 samples, 0.03%)</title><rect x="1141.7" y="1461" width="0.4" height="15.0" fill="rgb(211,158,42)" rx="2" ry="2" />
<text x="1144.72" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (344 samples, 0.02%)</title><rect x="785.1" y="1205" width="0.2" height="15.0" fill="rgb(235,171,19)" rx="2" ry="2" />
<text x="788.09" y="1215.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (447 samples, 0.02%)</title><rect x="701.5" y="1845" width="0.2" height="15.0" fill="rgb(214,198,16)" rx="2" ry="2" />
<text x="704.48" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1765" width="0.3" height="15.0" fill="rgb(214,151,23)" rx="2" ry="2" />
<text x="1192.37" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (7,269 samples, 0.35%)</title><rect x="997.4" y="1301" width="4.2" height="15.0" fill="rgb(218,182,28)" rx="2" ry="2" />
<text x="1000.39" y="1311.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (351 samples, 0.02%)</title><rect x="10.2" y="1317" width="0.2" height="15.0" fill="rgb(214,5,25)" rx="2" ry="2" />
<text x="13.16" y="1327.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (10,300 samples, 0.50%)</title><rect x="793.9" y="1333" width="5.9" height="15.0" fill="rgb(219,95,2)" rx="2" ry="2" />
<text x="796.87" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (1,382 samples, 0.07%)</title><rect x="1034.6" y="1317" width="0.8" height="15.0" fill="rgb(236,109,36)" rx="2" ry="2" />
<text x="1037.60" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="693" width="0.3" height="15.0" fill="rgb(237,209,35)" rx="2" ry="2" />
<text x="1191.59" y="703.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="581" width="0.3" height="15.0" fill="rgb(235,174,34)" rx="2" ry="2" />
<text x="1191.59" y="591.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1189" width="0.3" height="15.0" fill="rgb(245,29,2)" rx="2" ry="2" />
<text x="1191.59" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (441 samples, 0.02%)</title><rect x="1188.6" y="229" width="0.3" height="15.0" fill="rgb(223,49,4)" rx="2" ry="2" />
<text x="1191.60" y="239.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_5763 (586 samples, 0.03%)</title><rect x="791.3" y="1397" width="0.4" height="15.0" fill="rgb(207,37,11)" rx="2" ry="2" />
<text x="794.34" y="1407.5" ></text>
</g>
<g >
<title>caml_fill_bytes (250 samples, 0.01%)</title><rect x="422.3" y="1845" width="0.1" height="15.0" fill="rgb(229,13,7)" rx="2" ry="2" />
<text x="425.30" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (954 samples, 0.05%)</title><rect x="893.1" y="1285" width="0.5" height="15.0" fill="rgb(247,78,5)" rx="2" ry="2" />
<text x="896.10" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="661" width="0.2" height="15.0" fill="rgb(212,24,48)" rx="2" ry="2" />
<text x="1191.85" y="671.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7407 (190 samples, 0.01%)</title><rect x="717.6" y="1509" width="0.1" height="15.0" fill="rgb(207,225,35)" rx="2" ry="2" />
<text x="720.57" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (12,492 samples, 0.61%)</title><rect x="1169.1" y="1285" width="7.2" height="15.0" fill="rgb(226,198,25)" rx="2" ry="2" />
<text x="1172.10" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (390 samples, 0.02%)</title><rect x="22.6" y="2021" width="0.2" height="15.0" fill="rgb(220,25,47)" rx="2" ry="2" />
<text x="25.56" y="2031.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (429 samples, 0.02%)</title><rect x="335.2" y="1845" width="0.3" height="15.0" fill="rgb(223,199,33)" rx="2" ry="2" />
<text x="338.25" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1989" width="0.3" height="15.0" fill="rgb(206,121,12)" rx="2" ry="2" />
<text x="1192.37" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,257 samples, 21.80%)</title><rect x="888.5" y="1589" width="257.2" height="15.0" fill="rgb(244,173,3)" rx="2" ry="2" />
<text x="891.47" y="1599.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>caml_garbage_collection (687 samples, 0.03%)</title><rect x="238.6" y="1861" width="0.4" height="15.0" fill="rgb(251,184,33)" rx="2" ry="2" />
<text x="241.64" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (31,206 samples, 1.52%)</title><rect x="822.8" y="1445" width="18.0" height="15.0" fill="rgb(248,157,2)" rx="2" ry="2" />
<text x="825.83" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (266 samples, 0.01%)</title><rect x="720.3" y="1397" width="0.1" height="15.0" fill="rgb(247,195,25)" rx="2" ry="2" />
<text x="723.28" y="1407.5" ></text>
</g>
<g >
<title>caml_hash (226 samples, 0.01%)</title><rect x="946.0" y="1285" width="0.2" height="15.0" fill="rgb(218,74,36)" rx="2" ry="2" />
<text x="949.03" y="1295.5" ></text>
</g>
<g >
<title>st_masterlock_acquire.constprop.6 (368 samples, 0.02%)</title><rect x="40.8" y="1973" width="0.2" height="15.0" fill="rgb(208,14,1)" rx="2" ry="2" />
<text x="43.81" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (323 samples, 0.02%)</title><rect x="750.2" y="1189" width="0.2" height="15.0" fill="rgb(252,175,15)" rx="2" ry="2" />
<text x="753.18" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,588 samples, 0.08%)</title><rect x="814.1" y="1333" width="0.9" height="15.0" fill="rgb(251,113,48)" rx="2" ry="2" />
<text x="817.10" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7407 (425 samples, 0.02%)</title><rect x="1147.8" y="1301" width="0.2" height="15.0" fill="rgb(230,60,48)" rx="2" ry="2" />
<text x="1150.80" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (223 samples, 0.01%)</title><rect x="719.8" y="1397" width="0.2" height="15.0" fill="rgb(222,141,45)" rx="2" ry="2" />
<text x="722.84" y="1407.5" ></text>
</g>
<g >
<title>caml_tuplify3 (1,161 samples, 0.06%)</title><rect x="423.8" y="1909" width="0.7" height="15.0" fill="rgb(239,122,4)" rx="2" ry="2" />
<text x="426.84" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (309 samples, 0.02%)</title><rect x="725.5" y="1381" width="0.2" height="15.0" fill="rgb(205,228,51)" rx="2" ry="2" />
<text x="728.53" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="789" width="0.3" height="15.0" fill="rgb(226,49,34)" rx="2" ry="2" />
<text x="1191.59" y="799.5" ></text>
</g>
<g >
<title>camlStdlib__lazy__from_val_160 (278 samples, 0.01%)</title><rect x="974.5" y="1317" width="0.2" height="15.0" fill="rgb(248,209,30)" rx="2" ry="2" />
<text x="977.50" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (201 samples, 0.01%)</title><rect x="917.5" y="1269" width="0.1" height="15.0" fill="rgb(250,149,7)" rx="2" ry="2" />
<text x="920.51" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_274 (183 samples, 0.01%)</title><rect x="710.5" y="1957" width="0.1" height="15.0" fill="rgb(225,89,33)" rx="2" ry="2" />
<text x="713.49" y="1967.5" ></text>
</g>
<g >
<title>mark_slice (493 samples, 0.02%)</title><rect x="706.2" y="1781" width="0.3" height="15.0" fill="rgb(250,75,51)" rx="2" ry="2" />
<text x="709.19" y="1791.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,134 samples, 0.06%)</title><rect x="853.8" y="1317" width="0.6" height="15.0" fill="rgb(225,122,8)" rx="2" ry="2" />
<text x="856.77" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="389" width="0.2" height="15.0" fill="rgb(245,146,6)" rx="2" ry="2" />
<text x="1191.85" y="399.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (248 samples, 0.01%)</title><rect x="765.4" y="1285" width="0.1" height="15.0" fill="rgb(235,6,7)" rx="2" ry="2" />
<text x="768.37" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (312 samples, 0.02%)</title><rect x="730.2" y="1397" width="0.2" height="15.0" fill="rgb(245,5,3)" rx="2" ry="2" />
<text x="733.17" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (236 samples, 0.01%)</title><rect x="888.0" y="1525" width="0.1" height="15.0" fill="rgb(208,115,33)" rx="2" ry="2" />
<text x="891.01" y="1535.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (200 samples, 0.01%)</title><rect x="36.6" y="1957" width="0.1" height="15.0" fill="rgb(217,201,34)" rx="2" ry="2" />
<text x="39.57" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="565" width="0.3" height="15.0" fill="rgb(251,86,7)" rx="2" ry="2" />
<text x="1192.06" y="575.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5215 (1,283 samples, 0.06%)</title><rect x="753.5" y="1333" width="0.7" height="15.0" fill="rgb(247,194,33)" rx="2" ry="2" />
<text x="756.51" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (205 samples, 0.01%)</title><rect x="1176.8" y="1285" width="0.2" height="15.0" fill="rgb(242,160,40)" rx="2" ry="2" />
<text x="1179.85" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (375 samples, 0.02%)</title><rect x="860.0" y="1397" width="0.2" height="15.0" fill="rgb(241,115,50)" rx="2" ry="2" />
<text x="862.97" y="1407.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (418 samples, 0.02%)</title><rect x="10.2" y="1573" width="0.2" height="15.0" fill="rgb(226,220,6)" rx="2" ry="2" />
<text x="13.16" y="1583.5" ></text>
</g>
<g >
<title>caml_call_gc (216 samples, 0.01%)</title><rect x="907.8" y="1205" width="0.1" height="15.0" fill="rgb(221,161,45)" rx="2" ry="2" />
<text x="910.81" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (745 samples, 0.04%)</title><rect x="1145.8" y="1413" width="0.4" height="15.0" fill="rgb(233,74,42)" rx="2" ry="2" />
<text x="1148.76" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,768 samples, 0.33%)</title><rect x="1169.5" y="1253" width="3.9" height="15.0" fill="rgb(237,147,51)" rx="2" ry="2" />
<text x="1172.51" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (178 samples, 0.01%)</title><rect x="1032.2" y="1189" width="0.1" height="15.0" fill="rgb(223,201,43)" rx="2" ry="2" />
<text x="1035.23" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,702 samples, 0.23%)</title><rect x="673.0" y="1829" width="2.7" height="15.0" fill="rgb(213,17,13)" rx="2" ry="2" />
<text x="675.96" y="1839.5" ></text>
</g>
<g >
<title>caml_compare (611 samples, 0.03%)</title><rect x="973.5" y="1301" width="0.4" height="15.0" fill="rgb(223,133,51)" rx="2" ry="2" />
<text x="976.53" y="1311.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (30,084 samples, 1.47%)</title><rect x="675.8" y="1877" width="17.3" height="15.0" fill="rgb(207,36,21)" rx="2" ry="2" />
<text x="678.78" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (668 samples, 0.03%)</title><rect x="945.2" y="1285" width="0.4" height="15.0" fill="rgb(242,213,44)" rx="2" ry="2" />
<text x="948.23" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (787 samples, 0.04%)</title><rect x="1044.9" y="1317" width="0.4" height="15.0" fill="rgb(233,158,18)" rx="2" ry="2" />
<text x="1047.85" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_7962 (189 samples, 0.01%)</title><rect x="740.3" y="1733" width="0.1" height="15.0" fill="rgb(212,194,12)" rx="2" ry="2" />
<text x="743.30" y="1743.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (716 samples, 0.03%)</title><rect x="716.7" y="1509" width="0.4" height="15.0" fill="rgb(233,169,13)" rx="2" ry="2" />
<text x="719.68" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (861 samples, 0.04%)</title><rect x="968.8" y="1157" width="0.5" height="15.0" fill="rgb(232,186,42)" rx="2" ry="2" />
<text x="971.79" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (1,986 samples, 0.10%)</title><rect x="885.2" y="1477" width="1.1" height="15.0" fill="rgb(205,38,2)" rx="2" ry="2" />
<text x="888.17" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (258 samples, 0.01%)</title><rect x="938.6" y="1333" width="0.2" height="15.0" fill="rgb(219,138,45)" rx="2" ry="2" />
<text x="941.60" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,088 samples, 0.05%)</title><rect x="731.8" y="1445" width="0.6" height="15.0" fill="rgb(225,228,39)" rx="2" ry="2" />
<text x="734.78" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,249 samples, 0.06%)</title><rect x="842.9" y="1381" width="0.8" height="15.0" fill="rgb(219,208,29)" rx="2" ry="2" />
<text x="845.95" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (508 samples, 0.02%)</title><rect x="795.7" y="1253" width="0.3" height="15.0" fill="rgb(249,150,26)" rx="2" ry="2" />
<text x="798.71" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1845" width="0.3" height="15.0" fill="rgb(238,168,19)" rx="2" ry="2" />
<text x="1192.06" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (505 samples, 0.02%)</title><rect x="873.9" y="1333" width="0.3" height="15.0" fill="rgb(249,156,7)" rx="2" ry="2" />
<text x="876.86" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (678 samples, 0.03%)</title><rect x="798.8" y="1269" width="0.4" height="15.0" fill="rgb(245,27,47)" rx="2" ry="2" />
<text x="801.85" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (1,509 samples, 0.07%)</title><rect x="859.5" y="1445" width="0.9" height="15.0" fill="rgb(231,43,14)" rx="2" ry="2" />
<text x="862.54" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (313 samples, 0.02%)</title><rect x="1179.4" y="1205" width="0.1" height="15.0" fill="rgb(248,51,11)" rx="2" ry="2" />
<text x="1182.35" y="1215.5" ></text>
</g>
<g >
<title>caml_apply3 (1,434 samples, 0.07%)</title><rect x="411.4" y="1925" width="0.8" height="15.0" fill="rgb(209,168,37)" rx="2" ry="2" />
<text x="414.39" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_5211 (3,962 samples, 0.19%)</title><rect x="864.9" y="1349" width="2.2" height="15.0" fill="rgb(229,46,41)" rx="2" ry="2" />
<text x="867.86" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (185 samples, 0.01%)</title><rect x="964.3" y="1253" width="0.1" height="15.0" fill="rgb(234,38,39)" rx="2" ry="2" />
<text x="967.34" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (400 samples, 0.02%)</title><rect x="725.5" y="1397" width="0.2" height="15.0" fill="rgb(240,61,54)" rx="2" ry="2" />
<text x="728.52" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (504 samples, 0.02%)</title><rect x="949.6" y="1237" width="0.3" height="15.0" fill="rgb(230,72,32)" rx="2" ry="2" />
<text x="952.61" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (436 samples, 0.02%)</title><rect x="1189.7" y="197" width="0.3" height="15.0" fill="rgb(211,4,5)" rx="2" ry="2" />
<text x="1192.71" y="207.5" ></text>
</g>
<g >
<title>caml_string_equal (964 samples, 0.05%)</title><rect x="992.3" y="1317" width="0.5" height="15.0" fill="rgb(228,74,42)" rx="2" ry="2" />
<text x="995.27" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_general_951 (777,798 samples, 37.91%)</title><rect x="741.1" y="1813" width="447.4" height="15.0" fill="rgb(241,65,42)" rx="2" ry="2" />
<text x="744.11" y="1823.5" >camlLwt__wakeup_general_951</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (486 samples, 0.02%)</title><rect x="1058.2" y="1237" width="0.2" height="15.0" fill="rgb(242,145,34)" rx="2" ry="2" />
<text x="1061.16" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4580 (511 samples, 0.02%)</title><rect x="888.7" y="1493" width="0.3" height="15.0" fill="rgb(243,210,34)" rx="2" ry="2" />
<text x="891.66" y="1503.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (379 samples, 0.02%)</title><rect x="196.0" y="1845" width="0.2" height="15.0" fill="rgb(243,229,4)" rx="2" ry="2" />
<text x="199.03" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (199 samples, 0.01%)</title><rect x="806.0" y="1253" width="0.1" height="15.0" fill="rgb(210,117,27)" rx="2" ry="2" />
<text x="808.96" y="1263.5" ></text>
</g>
<g >
<title>caml_compact_heap (184 samples, 0.01%)</title><rect x="1188.3" y="1541" width="0.1" height="15.0" fill="rgb(254,79,36)" rx="2" ry="2" />
<text x="1191.26" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (570 samples, 0.03%)</title><rect x="1094.8" y="1285" width="0.4" height="15.0" fill="rgb(212,11,24)" rx="2" ry="2" />
<text x="1097.84" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (537 samples, 0.03%)</title><rect x="1063.4" y="1285" width="0.3" height="15.0" fill="rgb(212,192,38)" rx="2" ry="2" />
<text x="1066.36" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (554 samples, 0.03%)</title><rect x="867.2" y="1349" width="0.4" height="15.0" fill="rgb(207,148,54)" rx="2" ry="2" />
<text x="870.25" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (186 samples, 0.01%)</title><rect x="843.8" y="1381" width="0.1" height="15.0" fill="rgb(207,93,30)" rx="2" ry="2" />
<text x="846.75" y="1391.5" ></text>
</g>
<g >
<title>camlFiber__fork_and_join_unit_792 (409 samples, 0.02%)</title><rect x="10.2" y="1557" width="0.2" height="15.0" fill="rgb(235,30,36)" rx="2" ry="2" />
<text x="13.16" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (212 samples, 0.01%)</title><rect x="1037.4" y="1349" width="0.1" height="15.0" fill="rgb(237,85,54)" rx="2" ry="2" />
<text x="1040.39" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (216 samples, 0.01%)</title><rect x="752.5" y="1365" width="0.1" height="15.0" fill="rgb(223,148,49)" rx="2" ry="2" />
<text x="755.52" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (187 samples, 0.01%)</title><rect x="1158.6" y="1093" width="0.1" height="15.0" fill="rgb(219,14,27)" rx="2" ry="2" />
<text x="1161.61" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (220 samples, 0.01%)</title><rect x="1093.9" y="1269" width="0.1" height="15.0" fill="rgb(237,72,31)" rx="2" ry="2" />
<text x="1096.88" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (311 samples, 0.02%)</title><rect x="709.7" y="1765" width="0.1" height="15.0" fill="rgb(214,187,37)" rx="2" ry="2" />
<text x="712.67" y="1775.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (278 samples, 0.01%)</title><rect x="815.3" y="1333" width="0.1" height="15.0" fill="rgb(245,93,45)" rx="2" ry="2" />
<text x="818.25" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (3,035 samples, 0.15%)</title><rect x="1142.1" y="1477" width="1.8" height="15.0" fill="rgb(225,164,11)" rx="2" ry="2" />
<text x="1145.13" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (470 samples, 0.02%)</title><rect x="867.3" y="1285" width="0.3" height="15.0" fill="rgb(253,70,16)" rx="2" ry="2" />
<text x="870.30" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (538 samples, 0.03%)</title><rect x="870.6" y="1381" width="0.3" height="15.0" fill="rgb(233,38,53)" rx="2" ry="2" />
<text x="873.60" y="1391.5" ></text>
</g>
<g >
<title>futex_wake (456 samples, 0.02%)</title><rect x="770.0" y="1269" width="0.2" height="15.0" fill="rgb(212,35,25)" rx="2" ry="2" />
<text x="772.97" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1621" width="0.2" height="15.0" fill="rgb(219,162,46)" rx="2" ry="2" />
<text x="1191.85" y="1631.5" ></text>
</g>
<g >
<title>futex_wake (428 samples, 0.02%)</title><rect x="828.1" y="1333" width="0.2" height="15.0" fill="rgb(235,73,20)" rx="2" ry="2" />
<text x="831.06" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (289 samples, 0.01%)</title><rect x="1110.8" y="1333" width="0.2" height="15.0" fill="rgb(207,220,14)" rx="2" ry="2" />
<text x="1113.79" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__create_600 (367 samples, 0.02%)</title><rect x="1188.3" y="1621" width="0.2" height="15.0" fill="rgb(239,14,2)" rx="2" ry="2" />
<text x="1191.26" y="1631.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,814 samples, 0.09%)</title><rect x="748.6" y="1317" width="1.0" height="15.0" fill="rgb(208,58,46)" rx="2" ry="2" />
<text x="751.56" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181 samples, 0.01%)</title><rect x="628.1" y="1797" width="0.1" height="15.0" fill="rgb(236,147,42)" rx="2" ry="2" />
<text x="631.10" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (7,789 samples, 0.38%)</title><rect x="898.4" y="1253" width="4.5" height="15.0" fill="rgb(240,200,15)" rx="2" ry="2" />
<text x="901.40" y="1263.5" ></text>
</g>
<g >
<title>__libc_pread64 (365 samples, 0.02%)</title><rect x="784.5" y="1253" width="0.3" height="15.0" fill="rgb(233,60,42)" rx="2" ry="2" />
<text x="787.54" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (528 samples, 0.03%)</title><rect x="782.2" y="1237" width="0.3" height="15.0" fill="rgb(212,53,29)" rx="2" ry="2" />
<text x="785.21" y="1247.5" ></text>
</g>
<g >
<title>camlFiber__fork_and_join_unit_792 (353 samples, 0.02%)</title><rect x="10.2" y="1413" width="0.2" height="15.0" fill="rgb(215,153,52)" rx="2" ry="2" />
<text x="13.16" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303 samples, 0.01%)</title><rect x="628.0" y="1829" width="0.2" height="15.0" fill="rgb(244,66,1)" rx="2" ry="2" />
<text x="631.03" y="1839.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (250 samples, 0.01%)</title><rect x="722.4" y="1381" width="0.1" height="15.0" fill="rgb(216,5,51)" rx="2" ry="2" />
<text x="725.36" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (209 samples, 0.01%)</title><rect x="1184.4" y="1125" width="0.1" height="15.0" fill="rgb(242,109,1)" rx="2" ry="2" />
<text x="1187.36" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,884 samples, 0.09%)</title><rect x="783.0" y="1317" width="1.0" height="15.0" fill="rgb(207,28,50)" rx="2" ry="2" />
<text x="785.95" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,309 samples, 3.52%)</title><rect x="1145.8" y="1477" width="41.6" height="15.0" fill="rgb(214,223,3)" rx="2" ry="2" />
<text x="1148.76" y="1487.5" >cam..</text>
</g>
<g >
<title>caml_oldify_mopup (228 samples, 0.01%)</title><rect x="410.6" y="1829" width="0.1" height="15.0" fill="rgb(252,69,46)" rx="2" ry="2" />
<text x="413.55" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (537 samples, 0.03%)</title><rect x="747.2" y="1269" width="0.3" height="15.0" fill="rgb(213,51,47)" rx="2" ry="2" />
<text x="750.17" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (18,277 samples, 0.89%)</title><rect x="742.2" y="1413" width="10.5" height="15.0" fill="rgb(211,52,11)" rx="2" ry="2" />
<text x="745.17" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_856 (234 samples, 0.01%)</title><rect x="1090.1" y="1269" width="0.1" height="15.0" fill="rgb(247,5,17)" rx="2" ry="2" />
<text x="1093.10" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1285" width="0.3" height="15.0" fill="rgb(245,28,0)" rx="2" ry="2" />
<text x="1192.06" y="1295.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (372 samples, 0.02%)</title><rect x="785.1" y="1237" width="0.2" height="15.0" fill="rgb(215,188,18)" rx="2" ry="2" />
<text x="788.07" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1541" width="0.3" height="15.0" fill="rgb(217,164,28)" rx="2" ry="2" />
<text x="1191.59" y="1551.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (26,332 samples, 1.28%)</title><rect x="807.2" y="1477" width="15.2" height="15.0" fill="rgb(215,89,41)" rx="2" ry="2" />
<text x="810.21" y="1487.5" ></text>
</g>
<g >
<title>__lseek64 (733 samples, 0.04%)</title><rect x="933.1" y="1253" width="0.5" height="15.0" fill="rgb(241,67,7)" rx="2" ry="2" />
<text x="936.15" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="261" width="0.2" height="15.0" fill="rgb(228,185,27)" rx="2" ry="2" />
<text x="1191.85" y="271.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,644 samples, 0.08%)</title><rect x="971.0" y="1253" width="1.0" height="15.0" fill="rgb(220,189,46)" rx="2" ry="2" />
<text x="974.05" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (280 samples, 0.01%)</title><rect x="1057.4" y="1237" width="0.2" height="15.0" fill="rgb(211,163,40)" rx="2" ry="2" />
<text x="1060.39" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (609 samples, 0.03%)</title><rect x="1032.0" y="1237" width="0.3" height="15.0" fill="rgb(231,144,23)" rx="2" ry="2" />
<text x="1034.98" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12020 (5,056 samples, 0.25%)</title><rect x="931.5" y="1333" width="2.9" height="15.0" fill="rgb(253,23,27)" rx="2" ry="2" />
<text x="934.50" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1141" width="0.3" height="15.0" fill="rgb(235,140,52)" rx="2" ry="2" />
<text x="1192.06" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (24,100 samples, 1.17%)</title><rect x="871.1" y="1445" width="13.8" height="15.0" fill="rgb(249,183,46)" rx="2" ry="2" />
<text x="874.05" y="1455.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (210 samples, 0.01%)</title><rect x="105.2" y="1829" width="0.2" height="15.0" fill="rgb(237,61,32)" rx="2" ry="2" />
<text x="108.24" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (218 samples, 0.01%)</title><rect x="810.2" y="1301" width="0.2" height="15.0" fill="rgb(236,178,7)" rx="2" ry="2" />
<text x="813.23" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (339 samples, 0.02%)</title><rect x="1141.1" y="1477" width="0.2" height="15.0" fill="rgb(209,17,12)" rx="2" ry="2" />
<text x="1144.14" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="357" width="0.3" height="15.0" fill="rgb(252,56,15)" rx="2" ry="2" />
<text x="1192.37" y="367.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (185 samples, 0.01%)</title><rect x="1101.1" y="1237" width="0.1" height="15.0" fill="rgb(236,105,51)" rx="2" ry="2" />
<text x="1104.09" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (22,696 samples, 1.11%)</title><rect x="842.8" y="1429" width="13.1" height="15.0" fill="rgb(229,36,51)" rx="2" ry="2" />
<text x="845.82" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (441 samples, 0.02%)</title><rect x="1188.6" y="261" width="0.3" height="15.0" fill="rgb(224,134,38)" rx="2" ry="2" />
<text x="1191.60" y="271.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__tuple_486 (657 samples, 0.03%)</title><rect x="420.2" y="1877" width="0.4" height="15.0" fill="rgb(227,141,21)" rx="2" ry="2" />
<text x="423.21" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (322 samples, 0.02%)</title><rect x="881.7" y="1253" width="0.2" height="15.0" fill="rgb(208,86,5)" rx="2" ry="2" />
<text x="884.69" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1061" width="0.3" height="15.0" fill="rgb(216,60,30)" rx="2" ry="2" />
<text x="1191.59" y="1071.5" ></text>
</g>
<g >
<title>caml_thread_enter_blocking_section (305 samples, 0.01%)</title><rect x="35.9" y="2005" width="0.1" height="15.0" fill="rgb(253,17,28)" rx="2" ry="2" />
<text x="38.87" y="2015.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (465 samples, 0.02%)</title><rect x="1095.7" y="1253" width="0.3" height="15.0" fill="rgb(231,117,2)" rx="2" ry="2" />
<text x="1098.69" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,575 samples, 0.13%)</title><rect x="837.8" y="1333" width="1.4" height="15.0" fill="rgb(249,14,23)" rx="2" ry="2" />
<text x="840.75" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,340 samples, 3.53%)</title><rect x="1145.8" y="1541" width="41.6" height="15.0" fill="rgb(210,67,29)" rx="2" ry="2" />
<text x="1148.76" y="1551.5" >cam..</text>
</g>
<g >
<title>caml_tuplify2 (181 samples, 0.01%)</title><rect x="1058.5" y="1269" width="0.1" height="15.0" fill="rgb(220,105,42)" rx="2" ry="2" />
<text x="1061.55" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (286 samples, 0.01%)</title><rect x="1118.7" y="1333" width="0.2" height="15.0" fill="rgb(244,195,27)" rx="2" ry="2" />
<text x="1121.74" y="1343.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (380 samples, 0.02%)</title><rect x="1025.0" y="1253" width="0.3" height="15.0" fill="rgb(226,6,54)" rx="2" ry="2" />
<text x="1028.03" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1285" width="0.3" height="15.0" fill="rgb(218,46,49)" rx="2" ry="2" />
<text x="1191.59" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (3,604 samples, 0.18%)</title><rect x="949.9" y="1237" width="2.1" height="15.0" fill="rgb(242,136,45)" rx="2" ry="2" />
<text x="952.90" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="853" width="0.3" height="15.0" fill="rgb(248,212,22)" rx="2" ry="2" />
<text x="1192.69" y="863.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,792 samples, 1.99%)</title><rect x="628.7" y="1861" width="23.4" height="15.0" fill="rgb(223,155,23)" rx="2" ry="2" />
<text x="631.68" y="1871.5" >[..</text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (389 samples, 0.02%)</title><rect x="750.7" y="1269" width="0.2" height="15.0" fill="rgb(220,83,15)" rx="2" ry="2" />
<text x="753.66" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (5,985 samples, 0.29%)</title><rect x="1012.6" y="1333" width="3.4" height="15.0" fill="rgb(210,24,48)" rx="2" ry="2" />
<text x="1015.57" y="1343.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (2,056 samples, 0.10%)</title><rect x="943.0" y="1317" width="1.2" height="15.0" fill="rgb(217,75,8)" rx="2" ry="2" />
<text x="945.97" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="341" width="0.3" height="15.0" fill="rgb(214,180,54)" rx="2" ry="2" />
<text x="1192.37" y="351.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (611 samples, 0.03%)</title><rect x="1033.4" y="1365" width="0.4" height="15.0" fill="rgb(219,123,1)" rx="2" ry="2" />
<text x="1036.43" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (422 samples, 0.02%)</title><rect x="1121.3" y="1349" width="0.3" height="15.0" fill="rgb(215,194,3)" rx="2" ry="2" />
<text x="1124.35" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (1,401 samples, 0.07%)</title><rect x="841.1" y="1461" width="0.9" height="15.0" fill="rgb(247,149,37)" rx="2" ry="2" />
<text x="844.15" y="1471.5" ></text>
</g>
<g >
<title>caml_pread (214 samples, 0.01%)</title><rect x="721.8" y="1413" width="0.2" height="15.0" fill="rgb(216,44,24)" rx="2" ry="2" />
<text x="724.83" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (211 samples, 0.01%)</title><rect x="1177.6" y="1269" width="0.1" height="15.0" fill="rgb(226,65,31)" rx="2" ry="2" />
<text x="1180.62" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (869 samples, 0.04%)</title><rect x="703.6" y="1829" width="0.5" height="15.0" fill="rgb(239,2,7)" rx="2" ry="2" />
<text x="706.59" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_445 (326 samples, 0.02%)</title><rect x="726.9" y="1397" width="0.2" height="15.0" fill="rgb(232,63,8)" rx="2" ry="2" />
<text x="729.87" y="1407.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (219 samples, 0.01%)</title><rect x="856.3" y="1381" width="0.2" height="15.0" fill="rgb(240,178,21)" rx="2" ry="2" />
<text x="859.33" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (953 samples, 0.05%)</title><rect x="167.0" y="1829" width="0.5" height="15.0" fill="rgb(236,212,42)" rx="2" ry="2" />
<text x="169.98" y="1839.5" ></text>
</g>
<g >
<title>__lseek64 (191 samples, 0.01%)</title><rect x="942.9" y="1317" width="0.1" height="15.0" fill="rgb(217,100,54)" rx="2" ry="2" />
<text x="945.86" y="1327.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (424 samples, 0.02%)</title><rect x="10.2" y="1733" width="0.2" height="15.0" fill="rgb(247,216,26)" rx="2" ry="2" />
<text x="13.16" y="1743.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (8,844 samples, 0.43%)</title><rect x="794.5" y="1301" width="5.1" height="15.0" fill="rgb(246,53,15)" rx="2" ry="2" />
<text x="797.50" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (4,828 samples, 0.24%)</title><rect x="892.3" y="1317" width="2.8" height="15.0" fill="rgb(232,172,14)" rx="2" ry="2" />
<text x="895.30" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (194 samples, 0.01%)</title><rect x="800.5" y="1285" width="0.1" height="15.0" fill="rgb(246,26,40)" rx="2" ry="2" />
<text x="803.51" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1973" width="0.3" height="15.0" fill="rgb(221,151,26)" rx="2" ry="2" />
<text x="1192.06" y="1983.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (1,137 samples, 0.06%)</title><rect x="1110.4" y="1365" width="0.7" height="15.0" fill="rgb(235,223,2)" rx="2" ry="2" />
<text x="1113.41" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (662 samples, 0.03%)</title><rect x="956.0" y="1237" width="0.4" height="15.0" fill="rgb(248,220,1)" rx="2" ry="2" />
<text x="958.98" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (201 samples, 0.01%)</title><rect x="949.1" y="1253" width="0.2" height="15.0" fill="rgb(223,196,13)" rx="2" ry="2" />
<text x="952.15" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (267 samples, 0.01%)</title><rect x="1166.7" y="1141" width="0.1" height="15.0" fill="rgb(253,139,3)" rx="2" ry="2" />
<text x="1169.68" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="325" width="0.2" height="15.0" fill="rgb(240,90,18)" rx="2" ry="2" />
<text x="1191.85" y="335.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (384 samples, 0.02%)</title><rect x="1171.5" y="1205" width="0.3" height="15.0" fill="rgb(223,172,15)" rx="2" ry="2" />
<text x="1174.53" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (223 samples, 0.01%)</title><rect x="784.6" y="1157" width="0.1" height="15.0" fill="rgb(212,175,34)" rx="2" ry="2" />
<text x="787.62" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,557 samples, 0.32%)</title><rect x="1160.6" y="1237" width="3.8" height="15.0" fill="rgb(227,112,38)" rx="2" ry="2" />
<text x="1163.64" y="1247.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (220 samples, 0.01%)</title><rect x="29.6" y="2021" width="0.1" height="15.0" fill="rgb(250,106,20)" rx="2" ry="2" />
<text x="32.61" y="2031.5" ></text>
</g>
<g >
<title>caml_thread_yield (5,470 samples, 0.27%)</title><rect x="970.1" y="1269" width="3.2" height="15.0" fill="rgb(209,99,49)" rx="2" ry="2" />
<text x="973.13" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (199 samples, 0.01%)</title><rect x="816.7" y="1333" width="0.1" height="15.0" fill="rgb(252,201,35)" rx="2" ry="2" />
<text x="819.72" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (9,596 samples, 0.47%)</title><rect x="728.4" y="1477" width="5.5" height="15.0" fill="rgb(235,148,52)" rx="2" ry="2" />
<text x="731.36" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (364 samples, 0.02%)</title><rect x="1157.4" y="1173" width="0.2" height="15.0" fill="rgb(234,204,27)" rx="2" ry="2" />
<text x="1160.42" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,534 samples, 0.07%)</title><rect x="389.6" y="1861" width="0.9" height="15.0" fill="rgb(250,229,53)" rx="2" ry="2" />
<text x="392.59" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (393 samples, 0.02%)</title><rect x="874.6" y="1349" width="0.3" height="15.0" fill="rgb(222,169,30)" rx="2" ry="2" />
<text x="877.63" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1253" width="0.3" height="15.0" fill="rgb(220,215,44)" rx="2" ry="2" />
<text x="1192.37" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (205 samples, 0.01%)</title><rect x="777.2" y="1333" width="0.1" height="15.0" fill="rgb(223,122,34)" rx="2" ry="2" />
<text x="780.21" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__check_and_copy_to_current_7620 (447,255 samples, 21.80%)</title><rect x="888.5" y="1541" width="257.2" height="15.0" fill="rgb(238,25,22)" rx="2" ry="2" />
<text x="891.47" y="1551.5" >camlIrmin_pack__Layered__check_and..</text>
</g>
<g >
<title>__lll_unlock_wake (289 samples, 0.01%)</title><rect x="1175.3" y="1173" width="0.1" height="15.0" fill="rgb(222,107,50)" rx="2" ry="2" />
<text x="1178.26" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (203 samples, 0.01%)</title><rect x="969.2" y="1125" width="0.1" height="15.0" fill="rgb(234,171,19)" rx="2" ry="2" />
<text x="972.17" y="1135.5" ></text>
</g>
<g >
<title>caml_hash (402 samples, 0.02%)</title><rect x="1121.4" y="1333" width="0.2" height="15.0" fill="rgb(234,54,1)" rx="2" ry="2" />
<text x="1124.36" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (656 samples, 0.03%)</title><rect x="765.6" y="1269" width="0.4" height="15.0" fill="rgb(208,209,3)" rx="2" ry="2" />
<text x="768.57" y="1279.5" ></text>
</g>
<g >
<title>__GI___ctype_init (1,966 samples, 0.10%)</title><rect x="38.4" y="2021" width="1.1" height="15.0" fill="rgb(215,183,48)" rx="2" ry="2" />
<text x="41.40" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (722 samples, 0.04%)</title><rect x="774.5" y="1461" width="0.4" height="15.0" fill="rgb(215,206,31)" rx="2" ry="2" />
<text x="777.46" y="1471.5" ></text>
</g>
<g >
<title>caml_apply2 (259 samples, 0.01%)</title><rect x="875.4" y="1333" width="0.1" height="15.0" fill="rgb(245,227,31)" rx="2" ry="2" />
<text x="878.37" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (712 samples, 0.03%)</title><rect x="724.9" y="1509" width="0.4" height="15.0" fill="rgb(226,176,48)" rx="2" ry="2" />
<text x="727.88" y="1519.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (447 samples, 0.02%)</title><rect x="818.0" y="1285" width="0.3" height="15.0" fill="rgb(238,33,28)" rx="2" ry="2" />
<text x="821.02" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (413 samples, 0.02%)</title><rect x="963.3" y="1253" width="0.3" height="15.0" fill="rgb(209,130,35)" rx="2" ry="2" />
<text x="966.32" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (74,266 samples, 3.62%)</title><rect x="1145.8" y="1733" width="42.7" height="15.0" fill="rgb(230,169,35)" rx="2" ry="2" />
<text x="1148.76" y="1743.5" >caml..</text>
</g>
<g >
<title>caml_finish_major_cycle (229 samples, 0.01%)</title><rect x="261.9" y="1829" width="0.1" height="15.0" fill="rgb(232,228,18)" rx="2" ry="2" />
<text x="264.91" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (212 samples, 0.01%)</title><rect x="715.5" y="1893" width="0.1" height="15.0" fill="rgb(226,207,4)" rx="2" ry="2" />
<text x="718.50" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_376 (364 samples, 0.02%)</title><rect x="418.9" y="1861" width="0.2" height="15.0" fill="rgb(215,140,19)" rx="2" ry="2" />
<text x="421.88" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (384 samples, 0.02%)</title><rect x="846.8" y="1317" width="0.2" height="15.0" fill="rgb(234,192,41)" rx="2" ry="2" />
<text x="849.79" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (485 samples, 0.02%)</title><rect x="938.9" y="1365" width="0.3" height="15.0" fill="rgb(249,170,48)" rx="2" ry="2" />
<text x="941.95" y="1375.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (209 samples, 0.01%)</title><rect x="933.8" y="1237" width="0.1" height="15.0" fill="rgb(243,106,27)" rx="2" ry="2" />
<text x="936.78" y="1247.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (781 samples, 0.04%)</title><rect x="758.5" y="1349" width="0.4" height="15.0" fill="rgb(225,137,14)" rx="2" ry="2" />
<text x="761.47" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__get_tree_11613 (1,216 samples, 0.06%)</title><rect x="805.9" y="1413" width="0.7" height="15.0" fill="rgb(219,208,0)" rx="2" ry="2" />
<text x="808.89" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (725 samples, 0.04%)</title><rect x="826.7" y="1429" width="0.4" height="15.0" fill="rgb(220,176,51)" rx="2" ry="2" />
<text x="829.66" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (177 samples, 0.01%)</title><rect x="1177.0" y="1285" width="0.1" height="15.0" fill="rgb(229,0,18)" rx="2" ry="2" />
<text x="1180.03" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__fun_742 (194 samples, 0.01%)</title><rect x="419.7" y="1893" width="0.1" height="15.0" fill="rgb(223,216,28)" rx="2" ry="2" />
<text x="422.71" y="1903.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (315 samples, 0.02%)</title><rect x="446.8" y="1877" width="0.2" height="15.0" fill="rgb(244,215,28)" rx="2" ry="2" />
<text x="449.81" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (202 samples, 0.01%)</title><rect x="733.3" y="1349" width="0.1" height="15.0" fill="rgb(233,64,53)" rx="2" ry="2" />
<text x="736.30" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (884 samples, 0.04%)</title><rect x="921.4" y="1141" width="0.5" height="15.0" fill="rgb(254,31,33)" rx="2" ry="2" />
<text x="924.41" y="1151.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (415 samples, 0.02%)</title><rect x="758.6" y="1301" width="0.2" height="15.0" fill="rgb(226,171,37)" rx="2" ry="2" />
<text x="761.58" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (604 samples, 0.03%)</title><rect x="1141.8" y="1445" width="0.3" height="15.0" fill="rgb(234,1,13)" rx="2" ry="2" />
<text x="1144.77" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (1,814 samples, 0.09%)</title><rect x="260.7" y="1861" width="1.0" height="15.0" fill="rgb(243,40,54)" rx="2" ry="2" />
<text x="263.69" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (593 samples, 0.03%)</title><rect x="782.2" y="1253" width="0.3" height="15.0" fill="rgb(216,132,23)" rx="2" ry="2" />
<text x="785.18" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="549" width="0.3" height="15.0" fill="rgb(245,4,38)" rx="2" ry="2" />
<text x="1191.59" y="559.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (80,208 samples, 3.91%)</title><rect x="930.8" y="1397" width="46.1" height="15.0" fill="rgb(240,205,42)" rx="2" ry="2" />
<text x="933.76" y="1407.5" >caml..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (736 samples, 0.04%)</title><rect x="1155.6" y="1317" width="0.5" height="15.0" fill="rgb(252,56,2)" rx="2" ry="2" />
<text x="1158.63" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,639 samples, 0.08%)</title><rect x="893.8" y="1285" width="1.0" height="15.0" fill="rgb(236,87,1)" rx="2" ry="2" />
<text x="896.82" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (289 samples, 0.01%)</title><rect x="734.7" y="1477" width="0.2" height="15.0" fill="rgb(248,216,49)" rx="2" ry="2" />
<text x="737.75" y="1487.5" ></text>
</g>
<g >
<title>caml_string_length (901 samples, 0.04%)</title><rect x="376.8" y="1861" width="0.5" height="15.0" fill="rgb(239,56,27)" rx="2" ry="2" />
<text x="379.83" y="1871.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (354 samples, 0.02%)</title><rect x="545.8" y="1877" width="0.2" height="15.0" fill="rgb(251,91,24)" rx="2" ry="2" />
<text x="548.80" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1733" width="0.3" height="15.0" fill="rgb(220,52,3)" rx="2" ry="2" />
<text x="1191.59" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (852 samples, 0.04%)</title><rect x="1167.8" y="1317" width="0.5" height="15.0" fill="rgb(237,31,8)" rx="2" ry="2" />
<text x="1170.82" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_912 (501 samples, 0.02%)</title><rect x="937.2" y="1333" width="0.3" height="15.0" fill="rgb(230,223,49)" rx="2" ry="2" />
<text x="940.16" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,171 samples, 0.11%)</title><rect x="744.3" y="1269" width="1.2" height="15.0" fill="rgb(235,56,43)" rx="2" ry="2" />
<text x="747.25" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1925" width="0.2" height="15.0" fill="rgb(209,80,23)" rx="2" ry="2" />
<text x="1191.85" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (386 samples, 0.02%)</title><rect x="803.1" y="1221" width="0.2" height="15.0" fill="rgb(235,130,35)" rx="2" ry="2" />
<text x="806.13" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (9,757 samples, 0.48%)</title><rect x="1066.2" y="1317" width="5.6" height="15.0" fill="rgb(228,19,41)" rx="2" ry="2" />
<text x="1069.16" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,279 samples, 0.06%)</title><rect x="747.6" y="1285" width="0.7" height="15.0" fill="rgb(231,134,26)" rx="2" ry="2" />
<text x="750.56" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (248 samples, 0.01%)</title><rect x="880.0" y="1365" width="0.1" height="15.0" fill="rgb(239,91,37)" rx="2" ry="2" />
<text x="882.98" y="1375.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (418 samples, 0.02%)</title><rect x="882.5" y="1349" width="0.3" height="15.0" fill="rgb(221,18,45)" rx="2" ry="2" />
<text x="885.55" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1797" width="0.3" height="15.0" fill="rgb(228,40,35)" rx="2" ry="2" />
<text x="1192.06" y="1807.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (720 samples, 0.04%)</title><rect x="100.4" y="1829" width="0.4" height="15.0" fill="rgb(238,94,33)" rx="2" ry="2" />
<text x="103.40" y="1839.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (620 samples, 0.03%)</title><rect x="828.0" y="1349" width="0.3" height="15.0" fill="rgb(248,26,51)" rx="2" ry="2" />
<text x="830.95" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2325 (211 samples, 0.01%)</title><rect x="1036.1" y="1317" width="0.1" height="15.0" fill="rgb(220,176,3)" rx="2" ry="2" />
<text x="1039.07" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (1,703 samples, 0.08%)</title><rect x="1073.3" y="1349" width="0.9" height="15.0" fill="rgb(230,104,34)" rx="2" ry="2" />
<text x="1076.25" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (1,787 samples, 0.09%)</title><rect x="821.3" y="1445" width="1.0" height="15.0" fill="rgb(235,130,51)" rx="2" ry="2" />
<text x="824.29" y="1455.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (225 samples, 0.01%)</title><rect x="1189.4" y="165" width="0.1" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="1192.37" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (463 samples, 0.02%)</title><rect x="922.3" y="1205" width="0.2" height="15.0" fill="rgb(214,108,42)" rx="2" ry="2" />
<text x="925.26" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (535 samples, 0.03%)</title><rect x="867.3" y="1333" width="0.3" height="15.0" fill="rgb(230,85,24)" rx="2" ry="2" />
<text x="870.26" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="677" width="0.3" height="15.0" fill="rgb(240,45,38)" rx="2" ry="2" />
<text x="1191.59" y="687.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (432 samples, 0.02%)</title><rect x="786.9" y="1381" width="0.2" height="15.0" fill="rgb(245,67,36)" rx="2" ry="2" />
<text x="789.87" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (286 samples, 0.01%)</title><rect x="759.7" y="1269" width="0.1" height="15.0" fill="rgb(232,112,45)" rx="2" ry="2" />
<text x="762.65" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="837" width="0.3" height="15.0" fill="rgb(219,119,52)" rx="2" ry="2" />
<text x="1192.69" y="847.5" ></text>
</g>
<g >
<title>caml_fl_allocate (431 samples, 0.02%)</title><rect x="28.6" y="1973" width="0.3" height="15.0" fill="rgb(209,216,48)" rx="2" ry="2" />
<text x="31.62" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_680 (555 samples, 0.03%)</title><rect x="417.0" y="1877" width="0.3" height="15.0" fill="rgb(240,189,28)" rx="2" ry="2" />
<text x="419.97" y="1887.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (424 samples, 0.02%)</title><rect x="10.2" y="1717" width="0.2" height="15.0" fill="rgb(215,42,18)" rx="2" ry="2" />
<text x="13.16" y="1727.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (1,239 samples, 0.06%)</title><rect x="505.1" y="1893" width="0.7" height="15.0" fill="rgb(219,109,2)" rx="2" ry="2" />
<text x="508.10" y="1903.5" ></text>
</g>
<g >
<title>mark_slice_darken (222 samples, 0.01%)</title><rect x="707.2" y="1781" width="0.2" height="15.0" fill="rgb(220,75,21)" rx="2" ry="2" />
<text x="710.24" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="405" width="0.3" height="15.0" fill="rgb(251,114,20)" rx="2" ry="2" />
<text x="1192.37" y="415.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1669" width="0.3" height="15.0" fill="rgb(205,123,54)" rx="2" ry="2" />
<text x="1191.59" y="1679.5" ></text>
</g>
<g >
<title>mark_slice (741 samples, 0.04%)</title><rect x="338.3" y="1861" width="0.4" height="15.0" fill="rgb(245,200,9)" rx="2" ry="2" />
<text x="341.29" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="325" width="0.3" height="15.0" fill="rgb(227,44,4)" rx="2" ry="2" />
<text x="1191.59" y="335.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (809 samples, 0.04%)</title><rect x="1119.2" y="1333" width="0.5" height="15.0" fill="rgb(208,99,27)" rx="2" ry="2" />
<text x="1122.21" y="1343.5" ></text>
</g>
<g >
<title>st_masterlock_release.constprop.5 (260 samples, 0.01%)</title><rect x="1043.5" y="1317" width="0.2" height="15.0" fill="rgb(209,100,0)" rx="2" ry="2" />
<text x="1046.52" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (299 samples, 0.01%)</title><rect x="725.0" y="1493" width="0.1" height="15.0" fill="rgb(215,69,14)" rx="2" ry="2" />
<text x="727.96" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,189 samples, 0.06%)</title><rect x="921.2" y="1189" width="0.7" height="15.0" fill="rgb(232,229,48)" rx="2" ry="2" />
<text x="924.23" y="1199.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (187 samples, 0.01%)</title><rect x="821.2" y="1413" width="0.1" height="15.0" fill="rgb(220,182,45)" rx="2" ry="2" />
<text x="824.16" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (662 samples, 0.03%)</title><rect x="796.7" y="1269" width="0.4" height="15.0" fill="rgb(226,212,15)" rx="2" ry="2" />
<text x="799.68" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__fun_2963 (264 samples, 0.01%)</title><rect x="990.6" y="1445" width="0.2" height="15.0" fill="rgb(228,212,4)" rx="2" ry="2" />
<text x="993.63" y="1455.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (729 samples, 0.04%)</title><rect x="444.5" y="1861" width="0.4" height="15.0" fill="rgb(234,102,9)" rx="2" ry="2" />
<text x="447.50" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (574 samples, 0.03%)</title><rect x="1003.9" y="1269" width="0.3" height="15.0" fill="rgb(243,208,49)" rx="2" ry="2" />
<text x="1006.89" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (663 samples, 0.03%)</title><rect x="711.9" y="1893" width="0.4" height="15.0" fill="rgb(253,194,20)" rx="2" ry="2" />
<text x="714.90" y="1903.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,152 samples, 0.06%)</title><rect x="699.8" y="1909" width="0.6" height="15.0" fill="rgb(219,15,14)" rx="2" ry="2" />
<text x="702.76" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (252 samples, 0.01%)</title><rect x="1042.5" y="1301" width="0.1" height="15.0" fill="rgb(235,165,38)" rx="2" ry="2" />
<text x="1045.46" y="1311.5" ></text>
</g>
<g >
<title>futex_wake (1,018 samples, 0.05%)</title><rect x="1042.8" y="1301" width="0.6" height="15.0" fill="rgb(231,225,33)" rx="2" ry="2" />
<text x="1045.84" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (482 samples, 0.02%)</title><rect x="1112.5" y="1349" width="0.3" height="15.0" fill="rgb(233,56,14)" rx="2" ry="2" />
<text x="1115.49" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,863 samples, 1.02%)</title><rect x="680.9" y="1845" width="12.0" height="15.0" fill="rgb(218,74,35)" rx="2" ry="2" />
<text x="683.95" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5663 (2,848 samples, 0.14%)</title><rect x="1031.5" y="1333" width="1.7" height="15.0" fill="rgb(217,105,27)" rx="2" ry="2" />
<text x="1034.55" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (2,841 samples, 0.14%)</title><rect x="165.9" y="1877" width="1.6" height="15.0" fill="rgb(207,55,21)" rx="2" ry="2" />
<text x="168.90" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="597" width="0.3" height="15.0" fill="rgb(249,110,0)" rx="2" ry="2" />
<text x="1192.37" y="607.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (1,576 samples, 0.08%)</title><rect x="905.0" y="1237" width="0.9" height="15.0" fill="rgb(252,162,54)" rx="2" ry="2" />
<text x="908.02" y="1247.5" ></text>
</g>
<g >
<title>digestif_sha1_update (284 samples, 0.01%)</title><rect x="717.1" y="1461" width="0.2" height="15.0" fill="rgb(237,4,11)" rx="2" ry="2" />
<text x="720.13" y="1471.5" ></text>
</g>
<g >
<title>camlMain__exec__fun_3909 (597 samples, 0.03%)</title><rect x="10.1" y="1845" width="0.3" height="15.0" fill="rgb(214,196,7)" rx="2" ry="2" />
<text x="13.06" y="1855.5" ></text>
</g>
<g >
<title>caml_apply5 (7,178 samples, 0.35%)</title><rect x="863.6" y="1445" width="4.1" height="15.0" fill="rgb(237,56,50)" rx="2" ry="2" />
<text x="866.57" y="1455.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_678 (559 samples, 0.03%)</title><rect x="415.3" y="1909" width="0.4" height="15.0" fill="rgb(241,9,0)" rx="2" ry="2" />
<text x="418.35" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (187 samples, 0.01%)</title><rect x="937.5" y="1333" width="0.1" height="15.0" fill="rgb(210,32,54)" rx="2" ry="2" />
<text x="940.45" y="1343.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (359 samples, 0.02%)</title><rect x="333.9" y="1813" width="0.2" height="15.0" fill="rgb(212,66,35)" rx="2" ry="2" />
<text x="336.92" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_12307 (224 samples, 0.01%)</title><rect x="1139.4" y="1445" width="0.1" height="15.0" fill="rgb(225,200,24)" rx="2" ry="2" />
<text x="1142.38" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (657 samples, 0.03%)</title><rect x="923.9" y="1109" width="0.3" height="15.0" fill="rgb(209,154,37)" rx="2" ry="2" />
<text x="926.86" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (322 samples, 0.02%)</title><rect x="862.9" y="1413" width="0.1" height="15.0" fill="rgb(242,21,5)" rx="2" ry="2" />
<text x="865.85" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (3,234 samples, 0.16%)</title><rect x="956.5" y="1237" width="1.8" height="15.0" fill="rgb(246,155,13)" rx="2" ry="2" />
<text x="959.47" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (219 samples, 0.01%)</title><rect x="816.6" y="1333" width="0.1" height="15.0" fill="rgb(233,56,7)" rx="2" ry="2" />
<text x="819.60" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,984 samples, 0.10%)</title><rect x="807.5" y="1397" width="1.1" height="15.0" fill="rgb(248,222,43)" rx="2" ry="2" />
<text x="810.47" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (4,251 samples, 0.21%)</title><rect x="909.2" y="1253" width="2.4" height="15.0" fill="rgb(208,106,1)" rx="2" ry="2" />
<text x="912.16" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (189 samples, 0.01%)</title><rect x="1174.2" y="1221" width="0.1" height="15.0" fill="rgb(214,203,1)" rx="2" ry="2" />
<text x="1177.20" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (669 samples, 0.03%)</title><rect x="1000.8" y="1269" width="0.4" height="15.0" fill="rgb(206,158,14)" rx="2" ry="2" />
<text x="1003.82" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (274 samples, 0.01%)</title><rect x="1027.3" y="1349" width="0.2" height="15.0" fill="rgb(211,9,36)" rx="2" ry="2" />
<text x="1030.29" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (601 samples, 0.03%)</title><rect x="1063.0" y="1285" width="0.4" height="15.0" fill="rgb(231,221,49)" rx="2" ry="2" />
<text x="1066.02" y="1295.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_update (248 samples, 0.01%)</title><rect x="1146.7" y="1253" width="0.2" height="15.0" fill="rgb(248,3,38)" rx="2" ry="2" />
<text x="1149.74" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (297 samples, 0.01%)</title><rect x="1045.0" y="1269" width="0.2" height="15.0" fill="rgb(236,158,50)" rx="2" ry="2" />
<text x="1048.02" y="1279.5" ></text>
</g>
<g >
<title>caml_c_call (309 samples, 0.02%)</title><rect x="423.6" y="1893" width="0.2" height="15.0" fill="rgb(224,80,8)" rx="2" ry="2" />
<text x="426.63" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (262 samples, 0.01%)</title><rect x="800.4" y="1285" width="0.1" height="15.0" fill="rgb(252,4,53)" rx="2" ry="2" />
<text x="803.35" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1541" width="0.3" height="15.0" fill="rgb(207,30,30)" rx="2" ry="2" />
<text x="1192.37" y="1551.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (962 samples, 0.05%)</title><rect x="1021.4" y="1253" width="0.6" height="15.0" fill="rgb(247,31,44)" rx="2" ry="2" />
<text x="1024.44" y="1263.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (365 samples, 0.02%)</title><rect x="1188.3" y="1573" width="0.2" height="15.0" fill="rgb(225,3,14)" rx="2" ry="2" />
<text x="1191.26" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1140 (385 samples, 0.02%)</title><rect x="1112.9" y="1349" width="0.2" height="15.0" fill="rgb(249,102,38)" rx="2" ry="2" />
<text x="1115.89" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (319 samples, 0.02%)</title><rect x="1035.8" y="1333" width="0.2" height="15.0" fill="rgb(237,77,52)" rx="2" ry="2" />
<text x="1038.80" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (913 samples, 0.04%)</title><rect x="1104.6" y="1221" width="0.5" height="15.0" fill="rgb(228,197,8)" rx="2" ry="2" />
<text x="1107.55" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (297 samples, 0.01%)</title><rect x="893.6" y="1285" width="0.2" height="15.0" fill="rgb(237,155,33)" rx="2" ry="2" />
<text x="896.65" y="1295.5" ></text>
</g>
<g >
<title>__condvar_release_lock (4,283 samples, 0.21%)</title><rect x="625.7" y="1893" width="2.5" height="15.0" fill="rgb(218,196,45)" rx="2" ry="2" />
<text x="628.74" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (17,776 samples, 0.87%)</title><rect x="434.2" y="1925" width="10.2" height="15.0" fill="rgb(229,74,34)" rx="2" ry="2" />
<text x="437.16" y="1935.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (288 samples, 0.01%)</title><rect x="35.2" y="1989" width="0.2" height="15.0" fill="rgb(207,215,27)" rx="2" ry="2" />
<text x="38.20" y="1999.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (195 samples, 0.01%)</title><rect x="841.3" y="1237" width="0.1" height="15.0" fill="rgb(242,43,36)" rx="2" ry="2" />
<text x="844.33" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (204 samples, 0.01%)</title><rect x="1023.0" y="1333" width="0.1" height="15.0" fill="rgb(224,41,25)" rx="2" ry="2" />
<text x="1025.97" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="277" width="0.3" height="15.0" fill="rgb(245,96,32)" rx="2" ry="2" />
<text x="1192.06" y="287.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (511 samples, 0.02%)</title><rect x="777.5" y="1317" width="0.3" height="15.0" fill="rgb(228,118,7)" rx="2" ry="2" />
<text x="780.52" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1285" width="0.3" height="15.0" fill="rgb(246,14,11)" rx="2" ry="2" />
<text x="1192.37" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,235 samples, 0.11%)</title><rect x="220.1" y="1861" width="1.3" height="15.0" fill="rgb(220,47,14)" rx="2" ry="2" />
<text x="223.12" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (289 samples, 0.01%)</title><rect x="841.5" y="1349" width="0.2" height="15.0" fill="rgb(222,217,13)" rx="2" ry="2" />
<text x="844.55" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303 samples, 0.01%)</title><rect x="818.7" y="1221" width="0.1" height="15.0" fill="rgb(242,51,35)" rx="2" ry="2" />
<text x="821.67" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (297 samples, 0.01%)</title><rect x="704.9" y="1813" width="0.2" height="15.0" fill="rgb(251,7,10)" rx="2" ry="2" />
<text x="707.88" y="1823.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (1,191 samples, 0.06%)</title><rect x="978.1" y="1477" width="0.7" height="15.0" fill="rgb(248,111,32)" rx="2" ry="2" />
<text x="981.08" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (244 samples, 0.01%)</title><rect x="1158.6" y="1221" width="0.1" height="15.0" fill="rgb(206,22,50)" rx="2" ry="2" />
<text x="1161.58" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="341" width="0.2" height="15.0" fill="rgb(214,45,11)" rx="2" ry="2" />
<text x="1191.85" y="351.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (31,281 samples, 1.52%)</title><rect x="822.8" y="1461" width="18.0" height="15.0" fill="rgb(217,72,51)" rx="2" ry="2" />
<text x="825.82" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (218 samples, 0.01%)</title><rect x="1126.6" y="1365" width="0.1" height="15.0" fill="rgb(241,177,31)" rx="2" ry="2" />
<text x="1129.56" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (5,419 samples, 0.26%)</title><rect x="1126.1" y="1397" width="3.1" height="15.0" fill="rgb(253,211,1)" rx="2" ry="2" />
<text x="1129.10" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_899 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1637" width="42.4" height="15.0" fill="rgb(222,209,48)" rx="2" ry="2" />
<text x="1148.76" y="1647.5" >caml..</text>
</g>
<g >
<title>camlFiber__exec_in_479 (319 samples, 0.02%)</title><rect x="10.2" y="1301" width="0.1" height="15.0" fill="rgb(244,60,22)" rx="2" ry="2" />
<text x="13.16" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (1,392 samples, 0.07%)</title><rect x="842.9" y="1397" width="0.8" height="15.0" fill="rgb(216,128,10)" rx="2" ry="2" />
<text x="845.91" y="1407.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (183 samples, 0.01%)</title><rect x="10.2" y="1253" width="0.1" height="15.0" fill="rgb(251,0,32)" rx="2" ry="2" />
<text x="13.24" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (541 samples, 0.03%)</title><rect x="828.6" y="1365" width="0.3" height="15.0" fill="rgb(205,200,19)" rx="2" ry="2" />
<text x="831.61" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,120 samples, 0.05%)</title><rect x="338.1" y="1893" width="0.7" height="15.0" fill="rgb(229,77,24)" rx="2" ry="2" />
<text x="341.15" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Node__edges_4130 (720 samples, 0.04%)</title><rect x="978.2" y="1461" width="0.4" height="15.0" fill="rgb(242,213,13)" rx="2" ry="2" />
<text x="981.17" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (506 samples, 0.02%)</title><rect x="755.5" y="1333" width="0.3" height="15.0" fill="rgb(236,143,51)" rx="2" ry="2" />
<text x="758.52" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (375 samples, 0.02%)</title><rect x="1099.6" y="1285" width="0.2" height="15.0" fill="rgb(216,108,42)" rx="2" ry="2" />
<text x="1102.58" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="869" width="0.2" height="15.0" fill="rgb(240,218,54)" rx="2" ry="2" />
<text x="1191.85" y="879.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (214 samples, 0.01%)</title><rect x="796.0" y="1237" width="0.2" height="15.0" fill="rgb(248,115,54)" rx="2" ry="2" />
<text x="799.04" y="1247.5" ></text>
</g>
<g >
<title>caml_thread_yield (1,270 samples, 0.06%)</title><rect x="1184.0" y="1237" width="0.8" height="15.0" fill="rgb(241,1,29)" rx="2" ry="2" />
<text x="1187.03" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (232 samples, 0.01%)</title><rect x="878.2" y="1333" width="0.1" height="15.0" fill="rgb(246,167,35)" rx="2" ry="2" />
<text x="881.19" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (6,444 samples, 0.31%)</title><rect x="1048.8" y="1269" width="3.7" height="15.0" fill="rgb(208,111,35)" rx="2" ry="2" />
<text x="1051.83" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (313 samples, 0.02%)</title><rect x="775.2" y="1461" width="0.2" height="15.0" fill="rgb(231,229,7)" rx="2" ry="2" />
<text x="778.24" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (441 samples, 0.02%)</title><rect x="1188.6" y="213" width="0.3" height="15.0" fill="rgb(241,95,1)" rx="2" ry="2" />
<text x="1191.60" y="223.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (285 samples, 0.01%)</title><rect x="716.1" y="1589" width="0.2" height="15.0" fill="rgb(250,152,45)" rx="2" ry="2" />
<text x="719.10" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (237 samples, 0.01%)</title><rect x="790.9" y="1381" width="0.1" height="15.0" fill="rgb(209,25,32)" rx="2" ry="2" />
<text x="793.91" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (951 samples, 0.05%)</title><rect x="886.8" y="1493" width="0.5" height="15.0" fill="rgb(218,66,24)" rx="2" ry="2" />
<text x="889.75" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (232 samples, 0.01%)</title><rect x="880.1" y="1365" width="0.2" height="15.0" fill="rgb(253,99,33)" rx="2" ry="2" />
<text x="883.13" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (19,963 samples, 0.97%)</title><rect x="759.9" y="1365" width="11.4" height="15.0" fill="rgb(253,13,33)" rx="2" ry="2" />
<text x="762.85" y="1375.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (228 samples, 0.01%)</title><rect x="841.3" y="1269" width="0.1" height="15.0" fill="rgb(254,3,29)" rx="2" ry="2" />
<text x="844.31" y="1279.5" ></text>
</g>
<g >
<title>digestif_sha1_update (303 samples, 0.01%)</title><rect x="1147.2" y="1253" width="0.2" height="15.0" fill="rgb(252,13,38)" rx="2" ry="2" />
<text x="1150.21" y="1263.5" ></text>
</g>
<g >
<title>caml_hash (305 samples, 0.01%)</title><rect x="987.3" y="1285" width="0.1" height="15.0" fill="rgb(238,32,48)" rx="2" ry="2" />
<text x="990.26" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (214 samples, 0.01%)</title><rect x="789.5" y="1317" width="0.1" height="15.0" fill="rgb(222,60,37)" rx="2" ry="2" />
<text x="792.46" y="1327.5" ></text>
</g>
<g >
<title>camlCommon__fun_13226 (914 samples, 0.04%)</title><rect x="740.4" y="1669" width="0.6" height="15.0" fill="rgb(241,191,14)" rx="2" ry="2" />
<text x="743.43" y="1679.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="645" width="0.3" height="15.0" fill="rgb(221,92,3)" rx="2" ry="2" />
<text x="1192.37" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (208 samples, 0.01%)</title><rect x="1183.7" y="1125" width="0.1" height="15.0" fill="rgb(228,160,37)" rx="2" ry="2" />
<text x="1186.70" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1013" width="0.3" height="15.0" fill="rgb(223,115,6)" rx="2" ry="2" />
<text x="1192.37" y="1023.5" ></text>
</g>
<g >
<title>camlLayered_bench__fun_30200 (43,345 samples, 2.11%)</title><rect x="716.1" y="1813" width="24.9" height="15.0" fill="rgb(217,136,10)" rx="2" ry="2" />
<text x="719.10" y="1823.5" >c..</text>
</g>
<g >
<title>camlStdlib__array__loop_274 (185 samples, 0.01%)</title><rect x="710.8" y="1909" width="0.1" height="15.0" fill="rgb(254,55,33)" rx="2" ry="2" />
<text x="713.79" y="1919.5" ></text>
</g>
<g >
<title>caml_tuplify2 (4,079 samples, 0.20%)</title><rect x="338.8" y="1909" width="2.3" height="15.0" fill="rgb(217,181,8)" rx="2" ry="2" />
<text x="341.79" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__unsafe_find_7380 (1,089 samples, 0.05%)</title><rect x="772.9" y="1397" width="0.6" height="15.0" fill="rgb(245,139,50)" rx="2" ry="2" />
<text x="775.86" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (289 samples, 0.01%)</title><rect x="773.3" y="1365" width="0.2" height="15.0" fill="rgb(251,185,2)" rx="2" ry="2" />
<text x="776.31" y="1375.5" ></text>
</g>
<g >
<title>caml_garbage_collection (546 samples, 0.03%)</title><rect x="1132.0" y="1221" width="0.3" height="15.0" fill="rgb(254,20,23)" rx="2" ry="2" />
<text x="1134.99" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (719 samples, 0.04%)</title><rect x="1151.4" y="1205" width="0.4" height="15.0" fill="rgb(254,201,54)" rx="2" ry="2" />
<text x="1154.43" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1589" width="0.3" height="15.0" fill="rgb(208,51,34)" rx="2" ry="2" />
<text x="1192.37" y="1599.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (194 samples, 0.01%)</title><rect x="1042.5" y="1269" width="0.1" height="15.0" fill="rgb(213,70,8)" rx="2" ry="2" />
<text x="1045.49" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (250 samples, 0.01%)</title><rect x="1140.4" y="1429" width="0.1" height="15.0" fill="rgb(241,112,18)" rx="2" ry="2" />
<text x="1143.39" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (256 samples, 0.01%)</title><rect x="884.1" y="1413" width="0.1" height="15.0" fill="rgb(243,148,7)" rx="2" ry="2" />
<text x="887.08" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__aux_28322 (1,217 samples, 0.06%)</title><rect x="1076.3" y="1445" width="0.7" height="15.0" fill="rgb(248,123,25)" rx="2" ry="2" />
<text x="1079.30" y="1455.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (278 samples, 0.01%)</title><rect x="1184.1" y="1189" width="0.1" height="15.0" fill="rgb(242,67,12)" rx="2" ry="2" />
<text x="1187.09" y="1199.5" ></text>
</g>
<g >
<title>caml_apply2 (234 samples, 0.01%)</title><rect x="875.8" y="1333" width="0.1" height="15.0" fill="rgb(236,138,47)" rx="2" ry="2" />
<text x="878.77" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (47,499 samples, 2.32%)</title><rect x="1045.9" y="1349" width="27.4" height="15.0" fill="rgb(226,160,44)" rx="2" ry="2" />
<text x="1048.93" y="1359.5" >c..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (300 samples, 0.01%)</title><rect x="1018.5" y="1173" width="0.2" height="15.0" fill="rgb(237,28,6)" rx="2" ry="2" />
<text x="1021.53" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__fun_98100 (703,458 samples, 34.29%)</title><rect x="741.1" y="1733" width="404.6" height="15.0" fill="rgb(254,82,19)" rx="2" ry="2" />
<text x="744.11" y="1743.5" >camlIrmin_pack__Pack_layers__fun_98100</text>
</g>
<g >
<title>caml_fl_allocate (188 samples, 0.01%)</title><rect x="28.4" y="1973" width="0.1" height="15.0" fill="rgb(242,206,49)" rx="2" ry="2" />
<text x="31.41" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (621 samples, 0.03%)</title><rect x="1039.5" y="1349" width="0.4" height="15.0" fill="rgb(245,82,22)" rx="2" ry="2" />
<text x="1042.53" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (193 samples, 0.01%)</title><rect x="1063.2" y="1269" width="0.1" height="15.0" fill="rgb(250,33,36)" rx="2" ry="2" />
<text x="1066.23" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (3,758 samples, 0.18%)</title><rect x="417.3" y="1893" width="2.2" height="15.0" fill="rgb(223,89,44)" rx="2" ry="2" />
<text x="420.29" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (20,937 samples, 1.02%)</title><rect x="792.9" y="1381" width="12.0" height="15.0" fill="rgb(226,160,13)" rx="2" ry="2" />
<text x="795.87" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (353 samples, 0.02%)</title><rect x="10.2" y="1381" width="0.2" height="15.0" fill="rgb(208,141,12)" rx="2" ry="2" />
<text x="13.16" y="1391.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (501 samples, 0.02%)</title><rect x="410.5" y="1861" width="0.3" height="15.0" fill="rgb(227,158,26)" rx="2" ry="2" />
<text x="413.49" y="1871.5" ></text>
</g>
<g >
<title>camlDune__scheduler__go_5188 (570 samples, 0.03%)</title><rect x="10.1" y="1829" width="0.3" height="15.0" fill="rgb(254,35,22)" rx="2" ry="2" />
<text x="13.07" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__random__bits_263 (227 samples, 0.01%)</title><rect x="1188.0" y="1429" width="0.2" height="15.0" fill="rgb(221,136,6)" rx="2" ry="2" />
<text x="1191.05" y="1439.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_19595 (1,050 samples, 0.05%)</title><rect x="1187.6" y="1509" width="0.6" height="15.0" fill="rgb(227,2,49)" rx="2" ry="2" />
<text x="1190.62" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (231 samples, 0.01%)</title><rect x="724.4" y="1525" width="0.2" height="15.0" fill="rgb(213,200,26)" rx="2" ry="2" />
<text x="727.43" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="933" width="0.3" height="15.0" fill="rgb(240,109,36)" rx="2" ry="2" />
<text x="1191.59" y="943.5" ></text>
</g>
<g >
<title>mark_slice (188 samples, 0.01%)</title><rect x="704.1" y="1781" width="0.1" height="15.0" fill="rgb(252,151,28)" rx="2" ry="2" />
<text x="707.14" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (540 samples, 0.03%)</title><rect x="816.9" y="1349" width="0.3" height="15.0" fill="rgb(249,60,41)" rx="2" ry="2" />
<text x="819.88" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (292 samples, 0.01%)</title><rect x="836.5" y="1317" width="0.2" height="15.0" fill="rgb(231,182,39)" rx="2" ry="2" />
<text x="839.54" y="1327.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (511 samples, 0.02%)</title><rect x="802.7" y="1269" width="0.3" height="15.0" fill="rgb(242,2,4)" rx="2" ry="2" />
<text x="805.70" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__t_612 (221 samples, 0.01%)</title><rect x="987.0" y="1333" width="0.1" height="15.0" fill="rgb(229,157,40)" rx="2" ry="2" />
<text x="990.00" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (353 samples, 0.02%)</title><rect x="758.6" y="1237" width="0.2" height="15.0" fill="rgb(228,183,27)" rx="2" ry="2" />
<text x="761.62" y="1247.5" ></text>
</g>
<g >
<title>caml_string_equal (282 samples, 0.01%)</title><rect x="944.9" y="1285" width="0.2" height="15.0" fill="rgb(245,76,28)" rx="2" ry="2" />
<text x="947.94" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (247 samples, 0.01%)</title><rect x="708.5" y="1845" width="0.2" height="15.0" fill="rgb(251,142,28)" rx="2" ry="2" />
<text x="711.54" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (393 samples, 0.02%)</title><rect x="841.3" y="1301" width="0.2" height="15.0" fill="rgb(226,176,13)" rx="2" ry="2" />
<text x="844.30" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (548 samples, 0.03%)</title><rect x="1145.8" y="1317" width="0.4" height="15.0" fill="rgb(249,10,51)" rx="2" ry="2" />
<text x="1148.84" y="1327.5" ></text>
</g>
<g >
<title>camlLayered_bench__fun_29694 (1,431 samples, 0.07%)</title><rect x="740.2" y="1749" width="0.8" height="15.0" fill="rgb(239,90,50)" rx="2" ry="2" />
<text x="743.20" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (817 samples, 0.04%)</title><rect x="877.6" y="1349" width="0.5" height="15.0" fill="rgb(250,53,24)" rx="2" ry="2" />
<text x="880.60" y="1359.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (53,982 samples, 2.63%)</title><rect x="576.3" y="1893" width="31.1" height="15.0" fill="rgb(226,126,27)" rx="2" ry="2" />
<text x="579.33" y="1903.5" >__..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (211 samples, 0.01%)</title><rect x="35.6" y="1941" width="0.1" height="15.0" fill="rgb(224,228,23)" rx="2" ry="2" />
<text x="38.60" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395 samples, 0.02%)</title><rect x="802.1" y="1205" width="0.2" height="15.0" fill="rgb(227,151,5)" rx="2" ry="2" />
<text x="805.07" y="1215.5" ></text>
</g>
<g >
<title>memset (178 samples, 0.01%)</title><rect x="422.3" y="1829" width="0.1" height="15.0" fill="rgb(238,121,33)" rx="2" ry="2" />
<text x="425.34" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="469" width="0.3" height="15.0" fill="rgb(223,217,30)" rx="2" ry="2" />
<text x="1192.37" y="479.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1029" width="0.2" height="15.0" fill="rgb(213,162,33)" rx="2" ry="2" />
<text x="1191.85" y="1039.5" ></text>
</g>
<g >
<title>caml_pread (561 samples, 0.03%)</title><rect x="802.0" y="1285" width="0.3" height="15.0" fill="rgb(214,19,24)" rx="2" ry="2" />
<text x="804.99" y="1295.5" ></text>
</g>
<g >
<title>caml_oldify_one (991 samples, 0.05%)</title><rect x="307.1" y="1797" width="0.6" height="15.0" fill="rgb(229,203,34)" rx="2" ry="2" />
<text x="310.13" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__eq_620 (261 samples, 0.01%)</title><rect x="887.4" y="1493" width="0.2" height="15.0" fill="rgb(226,7,0)" rx="2" ry="2" />
<text x="890.44" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (868 samples, 0.04%)</title><rect x="721.1" y="1445" width="0.5" height="15.0" fill="rgb(239,194,41)" rx="2" ry="2" />
<text x="724.07" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (259 samples, 0.01%)</title><rect x="1184.3" y="1189" width="0.2" height="15.0" fill="rgb(251,54,52)" rx="2" ry="2" />
<text x="1187.33" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (198 samples, 0.01%)</title><rect x="834.2" y="1301" width="0.1" height="15.0" fill="rgb(221,131,37)" rx="2" ry="2" />
<text x="837.17" y="1311.5" ></text>
</g>
<g >
<title>__libc_pread64 (177 samples, 0.01%)</title><rect x="1069.7" y="1269" width="0.1" height="15.0" fill="rgb(205,91,8)" rx="2" ry="2" />
<text x="1072.69" y="1279.5" ></text>
</g>
<g >
<title>do_compare_val (1,011 samples, 0.05%)</title><rect x="866.3" y="1285" width="0.6" height="15.0" fill="rgb(253,163,2)" rx="2" ry="2" />
<text x="869.34" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (409 samples, 0.02%)</title><rect x="802.1" y="1221" width="0.2" height="15.0" fill="rgb(217,42,42)" rx="2" ry="2" />
<text x="805.07" y="1231.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (213 samples, 0.01%)</title><rect x="839.1" y="1253" width="0.1" height="15.0" fill="rgb(247,185,11)" rx="2" ry="2" />
<text x="842.10" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (431 samples, 0.02%)</title><rect x="28.6" y="1989" width="0.3" height="15.0" fill="rgb(221,63,19)" rx="2" ry="2" />
<text x="31.62" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (447,257 samples, 21.80%)</title><rect x="888.5" y="1637" width="257.2" height="15.0" fill="rgb(235,130,38)" rx="2" ry="2" />
<text x="891.47" y="1647.5" >camlIrmin_pack__Pack__batch_5822</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1269" width="0.3" height="15.0" fill="rgb(217,29,46)" rx="2" ry="2" />
<text x="1192.69" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (357 samples, 0.02%)</title><rect x="914.6" y="1237" width="0.2" height="15.0" fill="rgb(236,27,26)" rx="2" ry="2" />
<text x="917.64" y="1247.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,770 samples, 0.09%)</title><rect x="933.1" y="1269" width="1.1" height="15.0" fill="rgb(229,170,26)" rx="2" ry="2" />
<text x="936.14" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (593 samples, 0.03%)</title><rect x="105.4" y="1845" width="0.3" height="15.0" fill="rgb(220,142,32)" rx="2" ry="2" />
<text x="108.37" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="597" width="0.3" height="15.0" fill="rgb(214,60,44)" rx="2" ry="2" />
<text x="1192.06" y="607.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1861" width="0.3" height="15.0" fill="rgb(241,38,50)" rx="2" ry="2" />
<text x="1191.59" y="1871.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (497 samples, 0.02%)</title><rect x="410.5" y="1845" width="0.3" height="15.0" fill="rgb(242,41,3)" rx="2" ry="2" />
<text x="413.49" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1077" width="0.3" height="15.0" fill="rgb(241,220,40)" rx="2" ry="2" />
<text x="1191.59" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (187 samples, 0.01%)</title><rect x="1013.5" y="1301" width="0.1" height="15.0" fill="rgb(234,214,27)" rx="2" ry="2" />
<text x="1016.54" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (565 samples, 0.03%)</title><rect x="759.1" y="1349" width="0.3" height="15.0" fill="rgb(224,62,8)" rx="2" ry="2" />
<text x="762.12" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (214 samples, 0.01%)</title><rect x="783.8" y="1269" width="0.1" height="15.0" fill="rgb(249,215,22)" rx="2" ry="2" />
<text x="786.79" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (206 samples, 0.01%)</title><rect x="703.4" y="1813" width="0.2" height="15.0" fill="rgb(227,72,17)" rx="2" ry="2" />
<text x="706.44" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (11,064 samples, 0.54%)</title><rect x="1016.3" y="1349" width="6.4" height="15.0" fill="rgb(215,218,28)" rx="2" ry="2" />
<text x="1019.35" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (408 samples, 0.02%)</title><rect x="736.4" y="1429" width="0.2" height="15.0" fill="rgb(252,202,34)" rx="2" ry="2" />
<text x="739.36" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (5,232 samples, 0.26%)</title><rect x="931.4" y="1349" width="3.0" height="15.0" fill="rgb(226,49,25)" rx="2" ry="2" />
<text x="934.42" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1045" width="0.2" height="15.0" fill="rgb(226,45,47)" rx="2" ry="2" />
<text x="1191.85" y="1055.5" ></text>
</g>
<g >
<title>caml_apply2 (494 samples, 0.02%)</title><rect x="1060.8" y="1285" width="0.3" height="15.0" fill="rgb(208,79,34)" rx="2" ry="2" />
<text x="1063.77" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (699 samples, 0.03%)</title><rect x="877.7" y="1333" width="0.4" height="15.0" fill="rgb(252,179,0)" rx="2" ry="2" />
<text x="880.67" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (255,738 samples, 12.47%)</title><rect x="741.1" y="1589" width="147.1" height="15.0" fill="rgb(243,103,24)" rx="2" ry="2" />
<text x="744.11" y="1599.5" >camlLwt__apply_1991</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (222 samples, 0.01%)</title><rect x="835.9" y="1317" width="0.2" height="15.0" fill="rgb(216,108,25)" rx="2" ry="2" />
<text x="838.94" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1509" width="0.3" height="15.0" fill="rgb(227,61,36)" rx="2" ry="2" />
<text x="1191.59" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,497 samples, 0.07%)</title><rect x="849.1" y="1333" width="0.9" height="15.0" fill="rgb(227,206,28)" rx="2" ry="2" />
<text x="852.10" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,373 samples, 0.07%)</title><rect x="1012.7" y="1317" width="0.7" height="15.0" fill="rgb(216,51,53)" rx="2" ry="2" />
<text x="1015.65" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (3,045 samples, 0.15%)</title><rect x="761.0" y="1301" width="1.7" height="15.0" fill="rgb(230,34,2)" rx="2" ry="2" />
<text x="764.00" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (261 samples, 0.01%)</title><rect x="927.3" y="1269" width="0.2" height="15.0" fill="rgb(253,68,25)" rx="2" ry="2" />
<text x="930.34" y="1279.5" ></text>
</g>
<g >
<title>caml_darken (187 samples, 0.01%)</title><rect x="1134.6" y="1269" width="0.1" height="15.0" fill="rgb(207,167,45)" rx="2" ry="2" />
<text x="1137.57" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1301" width="0.3" height="15.0" fill="rgb(208,202,39)" rx="2" ry="2" />
<text x="1192.06" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="837" width="0.2" height="15.0" fill="rgb(250,205,3)" rx="2" ry="2" />
<text x="1191.85" y="847.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__encode_bin_11917 (2,615 samples, 0.13%)</title><rect x="1157.2" y="1301" width="1.5" height="15.0" fill="rgb(231,185,54)" rx="2" ry="2" />
<text x="1160.23" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Fan__loop_435 (179 samples, 0.01%)</title><rect x="41.1" y="1941" width="0.1" height="15.0" fill="rgb(254,97,27)" rx="2" ry="2" />
<text x="44.10" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (256 samples, 0.01%)</title><rect x="618.6" y="1781" width="0.2" height="15.0" fill="rgb(239,74,40)" rx="2" ry="2" />
<text x="621.63" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (465 samples, 0.02%)</title><rect x="417.8" y="1861" width="0.3" height="15.0" fill="rgb(229,213,15)" rx="2" ry="2" />
<text x="420.79" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1509" width="0.2" height="15.0" fill="rgb(236,91,4)" rx="2" ry="2" />
<text x="1191.85" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="693" width="0.3" height="15.0" fill="rgb(209,19,14)" rx="2" ry="2" />
<text x="1192.06" y="703.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (248 samples, 0.01%)</title><rect x="338.1" y="1877" width="0.2" height="15.0" fill="rgb(220,209,44)" rx="2" ry="2" />
<text x="341.15" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (839 samples, 0.04%)</title><rect x="1010.8" y="1301" width="0.4" height="15.0" fill="rgb(249,98,48)" rx="2" ry="2" />
<text x="1013.77" y="1311.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (322 samples, 0.02%)</title><rect x="1153.7" y="1189" width="0.2" height="15.0" fill="rgb(225,167,22)" rx="2" ry="2" />
<text x="1156.70" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__pre_hash_12260 (615 samples, 0.03%)</title><rect x="1145.8" y="1349" width="0.4" height="15.0" fill="rgb(250,144,23)" rx="2" ry="2" />
<text x="1148.84" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (727 samples, 0.04%)</title><rect x="821.4" y="1429" width="0.4" height="15.0" fill="rgb(222,154,54)" rx="2" ry="2" />
<text x="824.36" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (436 samples, 0.02%)</title><rect x="821.8" y="1413" width="0.3" height="15.0" fill="rgb(213,164,54)" rx="2" ry="2" />
<text x="824.85" y="1423.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (473 samples, 0.02%)</title><rect x="1175.7" y="1205" width="0.2" height="15.0" fill="rgb(242,227,26)" rx="2" ry="2" />
<text x="1178.66" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185 samples, 0.01%)</title><rect x="733.3" y="1333" width="0.1" height="15.0" fill="rgb(229,21,43)" rx="2" ry="2" />
<text x="736.31" y="1343.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (431 samples, 0.02%)</title><rect x="28.6" y="2037" width="0.3" height="15.0" fill="rgb(207,208,45)" rx="2" ry="2" />
<text x="31.62" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1685" width="0.3" height="15.0" fill="rgb(231,126,22)" rx="2" ry="2" />
<text x="1192.69" y="1695.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__init_96 (1,005 samples, 0.05%)</title><rect x="740.4" y="1685" width="0.6" height="15.0" fill="rgb(218,186,43)" rx="2" ry="2" />
<text x="743.41" y="1695.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,065 samples, 0.05%)</title><rect x="921.9" y="1237" width="0.6" height="15.0" fill="rgb(245,128,43)" rx="2" ry="2" />
<text x="924.92" y="1247.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (266 samples, 0.01%)</title><rect x="204.8" y="1845" width="0.2" height="15.0" fill="rgb(207,201,33)" rx="2" ry="2" />
<text x="207.81" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (14,986 samples, 0.73%)</title><rect x="743.3" y="1349" width="8.6" height="15.0" fill="rgb(213,162,53)" rx="2" ry="2" />
<text x="746.31" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,410 samples, 0.07%)</title><rect x="1015.1" y="1317" width="0.8" height="15.0" fill="rgb(254,82,7)" rx="2" ry="2" />
<text x="1018.09" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,154 samples, 0.06%)</title><rect x="163.1" y="1845" width="0.6" height="15.0" fill="rgb(251,216,42)" rx="2" ry="2" />
<text x="166.05" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1429" width="0.3" height="15.0" fill="rgb(215,0,11)" rx="2" ry="2" />
<text x="1192.37" y="1439.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_26641 (73,870 samples, 3.60%)</title><rect x="1145.8" y="1573" width="42.4" height="15.0" fill="rgb(216,111,47)" rx="2" ry="2" />
<text x="1148.76" y="1583.5" >caml..</text>
</g>
<g >
<title>futex_wake (219 samples, 0.01%)</title><rect x="882.7" y="1333" width="0.1" height="15.0" fill="rgb(253,131,47)" rx="2" ry="2" />
<text x="885.66" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (70,875 samples, 3.45%)</title><rect x="105.7" y="1893" width="40.8" height="15.0" fill="rgb(240,49,7)" rx="2" ry="2" />
<text x="108.71" y="1903.5" >cam..</text>
</g>
<g >
<title>__pthread_cond_wait_common (750 samples, 0.04%)</title><rect x="803.3" y="1253" width="0.5" height="15.0" fill="rgb(212,59,2)" rx="2" ry="2" />
<text x="806.35" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (9,402 samples, 0.46%)</title><rect x="794.2" y="1317" width="5.4" height="15.0" fill="rgb(253,162,14)" rx="2" ry="2" />
<text x="797.23" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (214 samples, 0.01%)</title><rect x="925.4" y="1285" width="0.2" height="15.0" fill="rgb(236,74,44)" rx="2" ry="2" />
<text x="928.44" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7543 (368 samples, 0.02%)</title><rect x="1188.3" y="1653" width="0.2" height="15.0" fill="rgb(227,170,50)" rx="2" ry="2" />
<text x="1191.26" y="1663.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (703 samples, 0.03%)</title><rect x="777.4" y="1349" width="0.5" height="15.0" fill="rgb(233,90,38)" rx="2" ry="2" />
<text x="780.45" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (3,446 samples, 0.17%)</title><rect x="881.9" y="1381" width="2.0" height="15.0" fill="rgb(230,114,23)" rx="2" ry="2" />
<text x="884.88" y="1391.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (293 samples, 0.01%)</title><rect x="1184.1" y="1221" width="0.1" height="15.0" fill="rgb(230,224,38)" rx="2" ry="2" />
<text x="1187.08" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (5,533 samples, 0.27%)</title><rect x="1134.7" y="1301" width="3.2" height="15.0" fill="rgb(220,224,22)" rx="2" ry="2" />
<text x="1137.67" y="1311.5" ></text>
</g>
<g >
<title>unix_lseek_64 (2,344 samples, 0.11%)</title><rect x="942.9" y="1333" width="1.3" height="15.0" fill="rgb(232,229,7)" rx="2" ry="2" />
<text x="945.86" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (199 samples, 0.01%)</title><rect x="826.3" y="1397" width="0.1" height="15.0" fill="rgb(242,60,18)" rx="2" ry="2" />
<text x="829.31" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (346 samples, 0.02%)</title><rect x="751.0" y="1237" width="0.2" height="15.0" fill="rgb(233,184,8)" rx="2" ry="2" />
<text x="753.96" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1237" width="0.3" height="15.0" fill="rgb(254,126,25)" rx="2" ry="2" />
<text x="1192.06" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (558 samples, 0.03%)</title><rect x="1013.7" y="1301" width="0.3" height="15.0" fill="rgb(221,226,52)" rx="2" ry="2" />
<text x="1016.72" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_541 (200 samples, 0.01%)</title><rect x="716.5" y="1509" width="0.1" height="15.0" fill="rgb(237,25,7)" rx="2" ry="2" />
<text x="719.52" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Node__pred_4144 (6,575 samples, 0.32%)</title><rect x="985.3" y="1461" width="3.8" height="15.0" fill="rgb(211,39,4)" rx="2" ry="2" />
<text x="988.28" y="1471.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (283 samples, 0.01%)</title><rect x="837.6" y="1205" width="0.2" height="15.0" fill="rgb(214,162,5)" rx="2" ry="2" />
<text x="840.59" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (185 samples, 0.01%)</title><rect x="1124.8" y="1349" width="0.1" height="15.0" fill="rgb(238,228,26)" rx="2" ry="2" />
<text x="1127.83" y="1359.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (5,074 samples, 0.25%)</title><rect x="672.7" y="1861" width="3.0" height="15.0" fill="rgb(207,50,26)" rx="2" ry="2" />
<text x="675.74" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (1,814 samples, 0.09%)</title><rect x="1095.2" y="1285" width="1.0" height="15.0" fill="rgb(209,217,36)" rx="2" ry="2" />
<text x="1098.20" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (235 samples, 0.01%)</title><rect x="797.3" y="1253" width="0.1" height="15.0" fill="rgb(229,115,47)" rx="2" ry="2" />
<text x="800.27" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__visit_3830 (195,022 samples, 9.51%)</title><rect x="775.8" y="1525" width="112.2" height="15.0" fill="rgb(236,228,8)" rx="2" ry="2" />
<text x="778.83" y="1535.5" >camlIrmin__Ob..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (508 samples, 0.02%)</title><rect x="1004.3" y="1253" width="0.3" height="15.0" fill="rgb(245,63,11)" rx="2" ry="2" />
<text x="1007.31" y="1263.5" ></text>
</g>
<g >
<title>camlLayered_bench__go_26674 (73,870 samples, 3.60%)</title><rect x="1145.8" y="1589" width="42.4" height="15.0" fill="rgb(248,117,14)" rx="2" ry="2" />
<text x="1148.76" y="1599.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (1,631 samples, 0.08%)</title><rect x="907.9" y="1237" width="1.0" height="15.0" fill="rgb(240,4,16)" rx="2" ry="2" />
<text x="910.93" y="1247.5" ></text>
</g>
<g >
<title>caml_mutex_lock (189 samples, 0.01%)</title><rect x="885.0" y="1445" width="0.1" height="15.0" fill="rgb(208,22,44)" rx="2" ry="2" />
<text x="887.96" y="1455.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (210 samples, 0.01%)</title><rect x="105.2" y="1845" width="0.2" height="15.0" fill="rgb(231,103,43)" rx="2" ry="2" />
<text x="108.24" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (326 samples, 0.02%)</title><rect x="841.8" y="1349" width="0.1" height="15.0" fill="rgb(239,208,30)" rx="2" ry="2" />
<text x="844.76" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (459 samples, 0.02%)</title><rect x="1185.6" y="1317" width="0.3" height="15.0" fill="rgb(212,178,49)" rx="2" ry="2" />
<text x="1188.61" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__array__isortto_282 (322 samples, 0.02%)</title><rect x="711.3" y="1829" width="0.2" height="15.0" fill="rgb(212,58,15)" rx="2" ry="2" />
<text x="714.34" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="453" width="0.3" height="15.0" fill="rgb(210,23,16)" rx="2" ry="2" />
<text x="1192.37" y="463.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_856 (222 samples, 0.01%)</title><rect x="1003.0" y="1269" width="0.1" height="15.0" fill="rgb(215,2,39)" rx="2" ry="2" />
<text x="1006.00" y="1279.5" ></text>
</g>
<g >
<title>sweep_slice (175 samples, 0.01%)</title><rect x="411.3" y="1845" width="0.1" height="15.0" fill="rgb(233,73,48)" rx="2" ry="2" />
<text x="414.28" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (427 samples, 0.02%)</title><rect x="805.9" y="1333" width="0.3" height="15.0" fill="rgb(210,173,36)" rx="2" ry="2" />
<text x="808.93" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (478 samples, 0.02%)</title><rect x="1189.1" y="181" width="0.3" height="15.0" fill="rgb(212,221,18)" rx="2" ry="2" />
<text x="1192.08" y="191.5" ></text>
</g>
<g >
<title>caml_compact_heap (480 samples, 0.02%)</title><rect x="545.5" y="1893" width="0.3" height="15.0" fill="rgb(252,105,28)" rx="2" ry="2" />
<text x="548.52" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (41,826 samples, 2.04%)</title><rect x="716.1" y="1669" width="24.1" height="15.0" fill="rgb(239,107,8)" rx="2" ry="2" />
<text x="719.10" y="1679.5" >c..</text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="837" width="0.3" height="15.0" fill="rgb(245,21,6)" rx="2" ry="2" />
<text x="1192.06" y="847.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="613" width="0.3" height="15.0" fill="rgb(216,91,30)" rx="2" ry="2" />
<text x="1192.69" y="623.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (935 samples, 0.05%)</title><rect x="711.8" y="1925" width="0.6" height="15.0" fill="rgb(244,129,33)" rx="2" ry="2" />
<text x="714.84" y="1935.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (469 samples, 0.02%)</title><rect x="881.6" y="1317" width="0.3" height="15.0" fill="rgb(231,40,40)" rx="2" ry="2" />
<text x="884.60" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,060 samples, 0.10%)</title><rect x="205.0" y="1845" width="1.2" height="15.0" fill="rgb(240,110,12)" rx="2" ry="2" />
<text x="207.97" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int64_859 (312 samples, 0.02%)</title><rect x="1006.8" y="1269" width="0.2" height="15.0" fill="rgb(239,205,29)" rx="2" ry="2" />
<text x="1009.84" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (773 samples, 0.04%)</title><rect x="978.9" y="1461" width="0.4" height="15.0" fill="rgb(229,107,38)" rx="2" ry="2" />
<text x="981.89" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="1029" width="0.3" height="15.0" fill="rgb(244,226,48)" rx="2" ry="2" />
<text x="1191.59" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (470 samples, 0.02%)</title><rect x="913.0" y="1269" width="0.3" height="15.0" fill="rgb(214,116,25)" rx="2" ry="2" />
<text x="916.03" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (549 samples, 0.03%)</title><rect x="850.8" y="1349" width="0.4" height="15.0" fill="rgb(235,82,44)" rx="2" ry="2" />
<text x="853.84" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (430 samples, 0.02%)</title><rect x="100.8" y="1829" width="0.3" height="15.0" fill="rgb(209,75,32)" rx="2" ry="2" />
<text x="103.83" y="1839.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (447,257 samples, 21.80%)</title><rect x="888.5" y="1685" width="257.2" height="15.0" fill="rgb(225,210,31)" rx="2" ry="2" />
<text x="891.47" y="1695.5" >camlLwt_list__iter_p_163</text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (734 samples, 0.04%)</title><rect x="916.8" y="1253" width="0.4" height="15.0" fill="rgb(233,205,19)" rx="2" ry="2" />
<text x="919.78" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="885" width="0.3" height="15.0" fill="rgb(222,147,52)" rx="2" ry="2" />
<text x="1192.06" y="895.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (482 samples, 0.02%)</title><rect x="238.8" y="1845" width="0.2" height="15.0" fill="rgb(244,100,17)" rx="2" ry="2" />
<text x="241.75" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (180 samples, 0.01%)</title><rect x="874.9" y="1333" width="0.1" height="15.0" fill="rgb(249,208,25)" rx="2" ry="2" />
<text x="877.90" y="1343.5" ></text>
</g>
<g >
<title>caml_string_equal (194 samples, 0.01%)</title><rect x="886.2" y="1429" width="0.1" height="15.0" fill="rgb(211,44,15)" rx="2" ry="2" />
<text x="889.17" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (5,867 samples, 0.29%)</title><rect x="167.5" y="1893" width="3.4" height="15.0" fill="rgb(245,178,45)" rx="2" ry="2" />
<text x="170.53" y="1903.5" ></text>
</g>
<g >
<title>caml_apply2 (222 samples, 0.01%)</title><rect x="965.4" y="1253" width="0.1" height="15.0" fill="rgb(217,207,39)" rx="2" ry="2" />
<text x="968.41" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1477" width="0.2" height="15.0" fill="rgb(249,208,48)" rx="2" ry="2" />
<text x="1191.85" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1637" width="0.3" height="15.0" fill="rgb(206,206,53)" rx="2" ry="2" />
<text x="1192.69" y="1647.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (306 samples, 0.01%)</title><rect x="1175.2" y="1205" width="0.2" height="15.0" fill="rgb(224,78,39)" rx="2" ry="2" />
<text x="1178.25" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (187 samples, 0.01%)</title><rect x="1147.8" y="1221" width="0.1" height="15.0" fill="rgb(207,79,5)" rx="2" ry="2" />
<text x="1150.83" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (3,058 samples, 0.15%)</title><rect x="749.8" y="1317" width="1.7" height="15.0" fill="rgb(226,137,49)" rx="2" ry="2" />
<text x="752.77" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (2,331 samples, 0.11%)</title><rect x="204.8" y="1877" width="1.4" height="15.0" fill="rgb(213,106,5)" rx="2" ry="2" />
<text x="207.81" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (375 samples, 0.02%)</title><rect x="841.3" y="1285" width="0.2" height="15.0" fill="rgb(216,152,7)" rx="2" ry="2" />
<text x="844.31" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (278 samples, 0.01%)</title><rect x="1184.1" y="1173" width="0.1" height="15.0" fill="rgb(211,74,15)" rx="2" ry="2" />
<text x="1187.09" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1045" width="0.3" height="15.0" fill="rgb(232,116,14)" rx="2" ry="2" />
<text x="1192.37" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_456 (244 samples, 0.01%)</title><rect x="1031.3" y="1285" width="0.1" height="15.0" fill="rgb(223,157,26)" rx="2" ry="2" />
<text x="1034.28" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (182 samples, 0.01%)</title><rect x="746.1" y="1253" width="0.1" height="15.0" fill="rgb(231,10,15)" rx="2" ry="2" />
<text x="749.11" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (8,698 samples, 0.42%)</title><rect x="830.1" y="1333" width="5.0" height="15.0" fill="rgb(212,113,52)" rx="2" ry="2" />
<text x="833.05" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (447,257 samples, 21.80%)</title><rect x="888.5" y="1653" width="257.2" height="15.0" fill="rgb(249,78,31)" rx="2" ry="2" />
<text x="891.47" y="1663.5" >camlLwt__apply_1991</text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (11,720 samples, 0.57%)</title><rect x="872.0" y="1397" width="6.8" height="15.0" fill="rgb(209,142,0)" rx="2" ry="2" />
<text x="875.04" y="1407.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (455 samples, 0.02%)</title><rect x="818.6" y="1317" width="0.2" height="15.0" fill="rgb(245,160,16)" rx="2" ry="2" />
<text x="821.58" y="1327.5" ></text>
</g>
<g >
<title>caml_hash (714 samples, 0.03%)</title><rect x="709.0" y="1813" width="0.4" height="15.0" fill="rgb(214,72,47)" rx="2" ry="2" />
<text x="712.04" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="917" width="0.3" height="15.0" fill="rgb(231,12,13)" rx="2" ry="2" />
<text x="1191.59" y="927.5" ></text>
</g>
<g >
<title>caml_thread_yield (1,564 samples, 0.08%)</title><rect x="785.0" y="1269" width="0.9" height="15.0" fill="rgb(214,196,19)" rx="2" ry="2" />
<text x="788.01" y="1279.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (673 samples, 0.03%)</title><rect x="705.8" y="1765" width="0.4" height="15.0" fill="rgb(237,17,28)" rx="2" ry="2" />
<text x="708.80" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1936 (174 samples, 0.01%)</title><rect x="704.5" y="1829" width="0.1" height="15.0" fill="rgb(209,25,40)" rx="2" ry="2" />
<text x="707.54" y="1839.5" ></text>
</g>
<g >
<title>mark_slice (235 samples, 0.01%)</title><rect x="824.5" y="1301" width="0.2" height="15.0" fill="rgb(213,207,20)" rx="2" ry="2" />
<text x="827.53" y="1311.5" ></text>
</g>
<g >
<title>caml_curry3_1_app (741 samples, 0.04%)</title><rect x="700.4" y="1941" width="0.5" height="15.0" fill="rgb(238,146,50)" rx="2" ry="2" />
<text x="703.43" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__pre_hash_167 (202 samples, 0.01%)</title><rect x="709.4" y="1829" width="0.2" height="15.0" fill="rgb(251,184,3)" rx="2" ry="2" />
<text x="712.45" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__filter_map_inplace_bucket_554 (2,668 samples, 0.13%)</title><rect x="712.5" y="1941" width="1.5" height="15.0" fill="rgb(224,166,30)" rx="2" ry="2" />
<text x="715.46" y="1951.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,688 samples, 0.13%)</title><rect x="853.2" y="1349" width="1.5" height="15.0" fill="rgb(234,157,28)" rx="2" ry="2" />
<text x="856.19" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (15,724 samples, 0.77%)</title><rect x="743.2" y="1365" width="9.0" height="15.0" fill="rgb(206,119,7)" rx="2" ry="2" />
<text x="746.19" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1157" width="0.3" height="15.0" fill="rgb(205,8,54)" rx="2" ry="2" />
<text x="1192.06" y="1167.5" ></text>
</g>
<g >
<title>camlLwt_sequence__loop_139 (777,798 samples, 37.91%)</title><rect x="741.1" y="1829" width="447.4" height="15.0" fill="rgb(208,68,37)" rx="2" ry="2" />
<text x="744.11" y="1839.5" >camlLwt_sequence__loop_139</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (647 samples, 0.03%)</title><rect x="902.2" y="1205" width="0.4" height="15.0" fill="rgb(240,187,21)" rx="2" ry="2" />
<text x="905.19" y="1215.5" ></text>
</g>
<g >
<title>caml_hash (485 samples, 0.02%)</title><rect x="993.3" y="1285" width="0.3" height="15.0" fill="rgb(234,5,13)" rx="2" ry="2" />
<text x="996.27" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (495 samples, 0.02%)</title><rect x="1100.5" y="1301" width="0.3" height="15.0" fill="rgb(241,46,43)" rx="2" ry="2" />
<text x="1103.54" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="853" width="0.2" height="15.0" fill="rgb(209,155,15)" rx="2" ry="2" />
<text x="1191.85" y="863.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="613" width="0.3" height="15.0" fill="rgb(235,66,27)" rx="2" ry="2" />
<text x="1192.06" y="623.5" ></text>
</g>
<g >
<title>camlLwt__callback_1225 (703,532 samples, 34.29%)</title><rect x="741.1" y="1749" width="404.7" height="15.0" fill="rgb(220,185,3)" rx="2" ry="2" />
<text x="744.11" y="1759.5" >camlLwt__callback_1225</text>
</g>
<g >
<title>camlFiber__exec_in_479 (418 samples, 0.02%)</title><rect x="10.2" y="1637" width="0.2" height="15.0" fill="rgb(242,52,53)" rx="2" ry="2" />
<text x="13.16" y="1647.5" ></text>
</g>
<g >
<title>camlLwt_mutex__unlock_126 (185 samples, 0.01%)</title><rect x="990.7" y="1413" width="0.1" height="15.0" fill="rgb(243,229,46)" rx="2" ry="2" />
<text x="993.67" y="1423.5" ></text>
</g>
<g >
<title>caml_hash (1,933 samples, 0.09%)</title><rect x="714.3" y="1877" width="1.1" height="15.0" fill="rgb(247,210,50)" rx="2" ry="2" />
<text x="717.30" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (460 samples, 0.02%)</title><rect x="1129.3" y="1381" width="0.2" height="15.0" fill="rgb(214,193,43)" rx="2" ry="2" />
<text x="1132.27" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2533 (189 samples, 0.01%)</title><rect x="875.4" y="1317" width="0.1" height="15.0" fill="rgb(217,121,26)" rx="2" ry="2" />
<text x="878.41" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (176 samples, 0.01%)</title><rect x="737.9" y="1493" width="0.1" height="15.0" fill="rgb(225,202,15)" rx="2" ry="2" />
<text x="740.85" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,346 samples, 0.07%)</title><rect x="764.0" y="1285" width="0.8" height="15.0" fill="rgb(220,1,16)" rx="2" ry="2" />
<text x="767.02" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,017 samples, 0.05%)</title><rect x="737.1" y="1461" width="0.6" height="15.0" fill="rgb(230,49,43)" rx="2" ry="2" />
<text x="740.14" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (232 samples, 0.01%)</title><rect x="880.0" y="1349" width="0.1" height="15.0" fill="rgb(232,159,3)" rx="2" ry="2" />
<text x="882.99" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (17,587 samples, 0.86%)</title><rect x="251.6" y="1893" width="10.1" height="15.0" fill="rgb(234,176,4)" rx="2" ry="2" />
<text x="254.62" y="1903.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (365 samples, 0.02%)</title><rect x="1188.3" y="1557" width="0.2" height="15.0" fill="rgb(207,190,4)" rx="2" ry="2" />
<text x="1191.26" y="1567.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (447 samples, 0.02%)</title><rect x="878.5" y="1381" width="0.3" height="15.0" fill="rgb(247,136,24)" rx="2" ry="2" />
<text x="881.51" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (282 samples, 0.01%)</title><rect x="850.2" y="1333" width="0.1" height="15.0" fill="rgb(221,27,37)" rx="2" ry="2" />
<text x="853.18" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,467 samples, 0.07%)</title><rect x="881.0" y="1381" width="0.9" height="15.0" fill="rgb(233,208,38)" rx="2" ry="2" />
<text x="884.03" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1429" width="0.3" height="15.0" fill="rgb(251,72,34)" rx="2" ry="2" />
<text x="1192.69" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (385 samples, 0.02%)</title><rect x="826.0" y="1397" width="0.2" height="15.0" fill="rgb(232,156,29)" rx="2" ry="2" />
<text x="829.02" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (420 samples, 0.02%)</title><rect x="752.4" y="1397" width="0.3" height="15.0" fill="rgb(235,220,51)" rx="2" ry="2" />
<text x="755.44" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (209 samples, 0.01%)</title><rect x="1133.3" y="1269" width="0.1" height="15.0" fill="rgb(216,93,10)" rx="2" ry="2" />
<text x="1136.30" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (988 samples, 0.05%)</title><rect x="1105.6" y="1221" width="0.6" height="15.0" fill="rgb(222,70,26)" rx="2" ry="2" />
<text x="1108.65" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="277" width="0.3" height="15.0" fill="rgb(254,80,5)" rx="2" ry="2" />
<text x="1191.59" y="287.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (175 samples, 0.01%)</title><rect x="794.8" y="1253" width="0.1" height="15.0" fill="rgb(214,58,15)" rx="2" ry="2" />
<text x="797.83" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,447 samples, 0.07%)</title><rect x="1011.5" y="1333" width="0.8" height="15.0" fill="rgb(242,170,25)" rx="2" ry="2" />
<text x="1014.50" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (2,179 samples, 0.11%)</title><rect x="944.6" y="1349" width="1.2" height="15.0" fill="rgb(241,171,40)" rx="2" ry="2" />
<text x="947.56" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (649 samples, 0.03%)</title><rect x="1173.8" y="1237" width="0.3" height="15.0" fill="rgb(234,203,49)" rx="2" ry="2" />
<text x="1176.75" y="1247.5" ></text>
</g>
<g >
<title>caml_startup_exn (615 samples, 0.03%)</title><rect x="10.1" y="1989" width="0.3" height="15.0" fill="rgb(239,68,48)" rx="2" ry="2" />
<text x="13.05" y="1999.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (296 samples, 0.01%)</title><rect x="824.5" y="1333" width="0.2" height="15.0" fill="rgb(251,175,39)" rx="2" ry="2" />
<text x="827.53" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (11,160 samples, 0.54%)</title><rect x="727.7" y="1525" width="6.5" height="15.0" fill="rgb(235,128,18)" rx="2" ry="2" />
<text x="730.75" y="1535.5" ></text>
</g>
<g >
<title>unix_lseek_64 (2,238 samples, 0.11%)</title><rect x="1042.4" y="1349" width="1.3" height="15.0" fill="rgb(232,4,9)" rx="2" ry="2" />
<text x="1045.44" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (575 samples, 0.03%)</title><rect x="1158.2" y="1205" width="0.3" height="15.0" fill="rgb(228,31,24)" rx="2" ry="2" />
<text x="1161.21" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="885" width="0.3" height="15.0" fill="rgb(229,72,40)" rx="2" ry="2" />
<text x="1192.69" y="895.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1365" width="0.3" height="15.0" fill="rgb(223,179,41)" rx="2" ry="2" />
<text x="1192.37" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (182 samples, 0.01%)</title><rect x="782.6" y="1253" width="0.1" height="15.0" fill="rgb(207,71,53)" rx="2" ry="2" />
<text x="785.59" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (247 samples, 0.01%)</title><rect x="767.5" y="1301" width="0.2" height="15.0" fill="rgb(250,167,42)" rx="2" ry="2" />
<text x="770.53" y="1311.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (239 samples, 0.01%)</title><rect x="1148.1" y="1349" width="0.1" height="15.0" fill="rgb(210,114,9)" rx="2" ry="2" />
<text x="1151.11" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__len_880 (20,035 samples, 0.98%)</title><rect x="152.2" y="1877" width="11.5" height="15.0" fill="rgb(229,146,14)" rx="2" ry="2" />
<text x="155.19" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="1509" width="0.3" height="15.0" fill="rgb(228,223,27)" rx="2" ry="2" />
<text x="1192.37" y="1519.5" ></text>
</g>
<g >
<title>__libc_pread64 (304 samples, 0.01%)</title><rect x="1174.8" y="1205" width="0.2" height="15.0" fill="rgb(206,100,31)" rx="2" ry="2" />
<text x="1177.83" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (258 samples, 0.01%)</title><rect x="759.7" y="1253" width="0.1" height="15.0" fill="rgb(249,63,38)" rx="2" ry="2" />
<text x="762.67" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (242 samples, 0.01%)</title><rect x="197.2" y="1845" width="0.2" height="15.0" fill="rgb(247,120,33)" rx="2" ry="2" />
<text x="200.23" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (258 samples, 0.01%)</title><rect x="815.0" y="1333" width="0.2" height="15.0" fill="rgb(254,38,39)" rx="2" ry="2" />
<text x="818.01" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (526 samples, 0.03%)</title><rect x="1073.9" y="1333" width="0.3" height="15.0" fill="rgb(216,12,48)" rx="2" ry="2" />
<text x="1076.89" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (940 samples, 0.05%)</title><rect x="1067.5" y="1189" width="0.6" height="15.0" fill="rgb(242,12,53)" rx="2" ry="2" />
<text x="1070.54" y="1199.5" ></text>
</g>
<g >
<title>futex_wake (319 samples, 0.02%)</title><rect x="785.4" y="1237" width="0.2" height="15.0" fill="rgb(205,65,10)" rx="2" ry="2" />
<text x="788.39" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="1477" width="0.3" height="15.0" fill="rgb(246,113,14)" rx="2" ry="2" />
<text x="1192.69" y="1487.5" ></text>
</g>
<g >
<title>caml_oldify_one (194 samples, 0.01%)</title><rect x="231.9" y="1813" width="0.1" height="15.0" fill="rgb(214,147,20)" rx="2" ry="2" />
<text x="234.93" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_1169 (445 samples, 0.02%)</title><rect x="1072.5" y="1333" width="0.3" height="15.0" fill="rgb(224,23,12)" rx="2" ry="2" />
<text x="1075.53" y="1343.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (180 samples, 0.01%)</title><rect x="503.3" y="1877" width="0.1" height="15.0" fill="rgb(235,23,37)" rx="2" ry="2" />
<text x="506.26" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_680 (209 samples, 0.01%)</title><rect x="1128.3" y="1365" width="0.1" height="15.0" fill="rgb(226,158,5)" rx="2" ry="2" />
<text x="1131.27" y="1375.5" ></text>
</g>
<g >
<title>__lll_lock_wait (1,488 samples, 0.07%)</title><rect x="671.6" y="1861" width="0.9" height="15.0" fill="rgb(208,47,17)" rx="2" ry="2" />
<text x="674.62" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="357" width="0.3" height="15.0" fill="rgb(254,166,52)" rx="2" ry="2" />
<text x="1192.69" y="367.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_string_401 (199 samples, 0.01%)</title><rect x="1133.0" y="1285" width="0.2" height="15.0" fill="rgb(246,112,26)" rx="2" ry="2" />
<text x="1136.05" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (3,356 samples, 0.16%)</title><rect x="784.0" y="1317" width="2.0" height="15.0" fill="rgb(244,96,33)" rx="2" ry="2" />
<text x="787.04" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (36,346 samples, 1.77%)</title><rect x="15.9" y="2053" width="20.9" height="15.0" fill="rgb(248,17,42)" rx="2" ry="2" />
<text x="18.88" y="2063.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (392 samples, 0.02%)</title><rect x="772.9" y="1333" width="0.2" height="15.0" fill="rgb(226,50,38)" rx="2" ry="2" />
<text x="775.87" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (630 samples, 0.03%)</title><rect x="994.1" y="1365" width="0.4" height="15.0" fill="rgb(210,167,36)" rx="2" ry="2" />
<text x="997.09" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="2037" width="0.3" height="15.0" fill="rgb(242,182,36)" rx="2" ry="2" />
<text x="1191.59" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (1,303 samples, 0.06%)</title><rect x="805.8" y="1461" width="0.8" height="15.0" fill="rgb(214,136,33)" rx="2" ry="2" />
<text x="808.85" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_4064 (400 samples, 0.02%)</title><rect x="1189.1" y="149" width="0.2" height="15.0" fill="rgb(234,87,11)" rx="2" ry="2" />
<text x="1192.08" y="159.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (185 samples, 0.01%)</title><rect x="1189.9" y="149" width="0.1" height="15.0" fill="rgb(254,36,47)" rx="2" ry="2" />
<text x="1192.85" y="159.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,863 samples, 0.09%)</title><rect x="1021.4" y="1285" width="1.0" height="15.0" fill="rgb(247,93,34)" rx="2" ry="2" />
<text x="1024.36" y="1295.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1,220 samples, 0.06%)</title><rect x="970.3" y="1221" width="0.7" height="15.0" fill="rgb(230,43,3)" rx="2" ry="2" />
<text x="973.35" y="1231.5" ></text>
</g>
<g >
<title>futex_wake (408 samples, 0.02%)</title><rect x="628.0" y="1877" width="0.2" height="15.0" fill="rgb(211,202,37)" rx="2" ry="2" />
<text x="630.97" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (337 samples, 0.02%)</title><rect x="618.6" y="1829" width="0.2" height="15.0" fill="rgb(232,169,13)" rx="2" ry="2" />
<text x="621.59" y="1839.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (16,725 samples, 0.82%)</title><rect x="742.8" y="1381" width="9.6" height="15.0" fill="rgb(241,37,49)" rx="2" ry="2" />
<text x="745.77" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="677" width="0.3" height="15.0" fill="rgb(233,119,0)" rx="2" ry="2" />
<text x="1192.06" y="687.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (243 samples, 0.01%)</title><rect x="1131.1" y="1221" width="0.2" height="15.0" fill="rgb(237,55,22)" rx="2" ry="2" />
<text x="1134.12" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1653" width="0.3" height="15.0" fill="rgb(250,57,9)" rx="2" ry="2" />
<text x="1191.59" y="1663.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,899 samples, 1.99%)</title><rect x="583.9" y="1845" width="23.5" height="15.0" fill="rgb(235,170,15)" rx="2" ry="2" />
<text x="586.86" y="1855.5" >[..</text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (13,216 samples, 0.64%)</title><rect x="1177.8" y="1317" width="7.6" height="15.0" fill="rgb(215,174,27)" rx="2" ry="2" />
<text x="1180.76" y="1327.5" ></text>
</g>
<g >
<title>caml_apply2 (352 samples, 0.02%)</title><rect x="988.8" y="1445" width="0.2" height="15.0" fill="rgb(229,60,8)" rx="2" ry="2" />
<text x="991.84" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_541 (342 samples, 0.02%)</title><rect x="861.5" y="1429" width="0.1" height="15.0" fill="rgb(207,174,42)" rx="2" ry="2" />
<text x="864.45" y="1439.5" ></text>
</g>
<g >
<title>camlMain__entry (600 samples, 0.03%)</title><rect x="10.1" y="1925" width="0.3" height="15.0" fill="rgb(222,180,37)" rx="2" ry="2" />
<text x="13.06" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (487 samples, 0.02%)</title><rect x="1189.1" y="213" width="0.3" height="15.0" fill="rgb(228,165,8)" rx="2" ry="2" />
<text x="1192.08" y="223.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12294 (4,948 samples, 0.24%)</title><rect x="985.4" y="1445" width="2.9" height="15.0" fill="rgb(224,196,28)" rx="2" ry="2" />
<text x="988.43" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (183 samples, 0.01%)</title><rect x="733.1" y="1301" width="0.1" height="15.0" fill="rgb(238,166,32)" rx="2" ry="2" />
<text x="736.13" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2516 (2,087 samples, 0.10%)</title><rect x="316.9" y="1893" width="1.2" height="15.0" fill="rgb(253,107,50)" rx="2" ry="2" />
<text x="319.91" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (3,302 samples, 0.16%)</title><rect x="1062.6" y="1301" width="1.9" height="15.0" fill="rgb(240,203,46)" rx="2" ry="2" />
<text x="1065.64" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (903 samples, 0.04%)</title><rect x="1122.7" y="1397" width="0.5" height="15.0" fill="rgb(253,137,47)" rx="2" ry="2" />
<text x="1125.71" y="1407.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (187 samples, 0.01%)</title><rect x="849.6" y="1285" width="0.1" height="15.0" fill="rgb(234,116,5)" rx="2" ry="2" />
<text x="852.63" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (4,448 samples, 0.22%)</title><rect x="941.7" y="1365" width="2.6" height="15.0" fill="rgb(245,4,28)" rx="2" ry="2" />
<text x="944.70" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1157" width="0.3" height="15.0" fill="rgb(207,190,52)" rx="2" ry="2" />
<text x="1191.59" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (336 samples, 0.02%)</title><rect x="743.0" y="1317" width="0.2" height="15.0" fill="rgb(229,144,53)" rx="2" ry="2" />
<text x="745.96" y="1327.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (229 samples, 0.01%)</title><rect x="770.5" y="1253" width="0.2" height="15.0" fill="rgb(247,122,15)" rx="2" ry="2" />
<text x="773.53" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="533" width="0.3" height="15.0" fill="rgb(248,157,34)" rx="2" ry="2" />
<text x="1192.69" y="543.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (1,999 samples, 0.10%)</title><rect x="1178.6" y="1237" width="1.1" height="15.0" fill="rgb(251,38,30)" rx="2" ry="2" />
<text x="1181.59" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (4,081 samples, 0.20%)</title><rect x="991.5" y="1349" width="2.4" height="15.0" fill="rgb(241,1,49)" rx="2" ry="2" />
<text x="994.55" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12294 (153,255 samples, 7.47%)</title><rect x="889.2" y="1461" width="88.1" height="15.0" fill="rgb(250,108,54)" rx="2" ry="2" />
<text x="892.19" y="1471.5" >camlIrmin_..</text>
</g>
<g >
<title>camlIrmin_pack__Dict__find_5215 (404 samples, 0.02%)</title><rect x="788.1" y="1317" width="0.2" height="15.0" fill="rgb(212,176,37)" rx="2" ry="2" />
<text x="791.05" y="1327.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (392 samples, 0.02%)</title><rect x="401.6" y="1829" width="0.2" height="15.0" fill="rgb(222,210,11)" rx="2" ry="2" />
<text x="404.56" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1477" width="0.3" height="15.0" fill="rgb(247,18,42)" rx="2" ry="2" />
<text x="1191.59" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__unsafe_find_12272 (1,214 samples, 0.06%)</title><rect x="805.9" y="1397" width="0.7" height="15.0" fill="rgb(248,196,33)" rx="2" ry="2" />
<text x="808.90" y="1407.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (360 samples, 0.02%)</title><rect x="1157.4" y="1157" width="0.2" height="15.0" fill="rgb(246,94,50)" rx="2" ry="2" />
<text x="1160.43" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (84,058 samples, 4.10%)</title><rect x="264.9" y="1893" width="48.3" height="15.0" fill="rgb(209,4,17)" rx="2" ry="2" />
<text x="267.90" y="1903.5" >caml..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (263 samples, 0.01%)</title><rect x="1174.9" y="1141" width="0.1" height="15.0" fill="rgb(225,47,49)" rx="2" ry="2" />
<text x="1177.86" y="1151.5" ></text>
</g>
<g >
<title>camlFiber__run_1110 (424 samples, 0.02%)</title><rect x="10.2" y="1781" width="0.2" height="15.0" fill="rgb(221,10,14)" rx="2" ry="2" />
<text x="13.16" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (294 samples, 0.01%)</title><rect x="1182.4" y="1237" width="0.1" height="15.0" fill="rgb(231,226,23)" rx="2" ry="2" />
<text x="1185.35" y="1247.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (184 samples, 0.01%)</title><rect x="36.5" y="1973" width="0.1" height="15.0" fill="rgb(205,126,46)" rx="2" ry="2" />
<text x="39.46" y="1983.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (288 samples, 0.01%)</title><rect x="788.5" y="1253" width="0.2" height="15.0" fill="rgb(230,79,9)" rx="2" ry="2" />
<text x="791.49" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1717" width="0.3" height="15.0" fill="rgb(230,134,15)" rx="2" ry="2" />
<text x="1192.37" y="1727.5" ></text>
</g>
<g >
<title>caml_pread (1,472 samples, 0.07%)</title><rect x="968.4" y="1269" width="0.9" height="15.0" fill="rgb(231,68,34)" rx="2" ry="2" />
<text x="971.45" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (283 samples, 0.01%)</title><rect x="801.1" y="1269" width="0.1" height="15.0" fill="rgb(205,16,12)" rx="2" ry="2" />
<text x="804.07" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (345 samples, 0.02%)</title><rect x="1109.3" y="1333" width="0.2" height="15.0" fill="rgb(233,79,8)" rx="2" ry="2" />
<text x="1112.33" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,028 samples, 0.05%)</title><rect x="1036.9" y="1365" width="0.6" height="15.0" fill="rgb(211,90,33)" rx="2" ry="2" />
<text x="1039.94" y="1375.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (396 samples, 0.02%)</title><rect x="260.7" y="1829" width="0.2" height="15.0" fill="rgb(213,40,29)" rx="2" ry="2" />
<text x="263.70" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1189" width="0.2" height="15.0" fill="rgb(218,137,45)" rx="2" ry="2" />
<text x="1191.85" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (932 samples, 0.05%)</title><rect x="1018.2" y="1221" width="0.5" height="15.0" fill="rgb(239,148,29)" rx="2" ry="2" />
<text x="1021.17" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (561 samples, 0.03%)</title><rect x="1172.8" y="1205" width="0.3" height="15.0" fill="rgb(230,224,23)" rx="2" ry="2" />
<text x="1175.78" y="1215.5" ></text>
</g>
<g >
<title>unix_lseek_64 (1,732 samples, 0.08%)</title><rect x="1031.9" y="1285" width="1.0" height="15.0" fill="rgb(210,125,6)" rx="2" ry="2" />
<text x="1034.89" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (3,285 samples, 0.16%)</title><rect x="780.1" y="1269" width="1.9" height="15.0" fill="rgb(238,162,26)" rx="2" ry="2" />
<text x="783.09" y="1279.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (365 samples, 0.02%)</title><rect x="220.1" y="1829" width="0.2" height="15.0" fill="rgb(237,213,33)" rx="2" ry="2" />
<text x="223.12" y="1839.5" ></text>
</g>
<g >
<title>caml_blit_bytes (6,509 samples, 0.32%)</title><rect x="440.6" y="1909" width="3.8" height="15.0" fill="rgb(240,113,35)" rx="2" ry="2" />
<text x="443.62" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1941" width="0.3" height="15.0" fill="rgb(235,145,47)" rx="2" ry="2" />
<text x="1191.59" y="1951.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (828 samples, 0.04%)</title><rect x="923.8" y="1141" width="0.4" height="15.0" fill="rgb(224,145,27)" rx="2" ry="2" />
<text x="926.76" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (435 samples, 0.02%)</title><rect x="1011.5" y="1317" width="0.3" height="15.0" fill="rgb(249,171,44)" rx="2" ry="2" />
<text x="1014.53" y="1327.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (221 samples, 0.01%)</title><rect x="231.9" y="1829" width="0.1" height="15.0" fill="rgb(218,30,35)" rx="2" ry="2" />
<text x="234.92" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (238 samples, 0.01%)</title><rect x="766.0" y="1285" width="0.2" height="15.0" fill="rgb(223,20,15)" rx="2" ry="2" />
<text x="769.03" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (1,356 samples, 0.07%)</title><rect x="912.0" y="1269" width="0.8" height="15.0" fill="rgb(232,13,23)" rx="2" ry="2" />
<text x="914.99" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__aux_11899 (2,276 samples, 0.11%)</title><rect x="716.4" y="1573" width="1.3" height="15.0" fill="rgb(222,9,14)" rx="2" ry="2" />
<text x="719.39" y="1583.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (437 samples, 0.02%)</title><rect x="707.0" y="1797" width="0.2" height="15.0" fill="rgb(237,126,52)" rx="2" ry="2" />
<text x="709.98" y="1807.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (358 samples, 0.02%)</title><rect x="922.3" y="1141" width="0.2" height="15.0" fill="rgb(235,90,26)" rx="2" ry="2" />
<text x="925.32" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (3,981 samples, 0.19%)</title><rect x="1025.9" y="1413" width="2.2" height="15.0" fill="rgb(236,30,19)" rx="2" ry="2" />
<text x="1028.85" y="1423.5" ></text>
</g>
<g >
<title>caml_blit_bytes (2,669 samples, 0.13%)</title><rect x="547.1" y="1925" width="1.5" height="15.0" fill="rgb(220,221,9)" rx="2" ry="2" />
<text x="550.06" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (651 samples, 0.03%)</title><rect x="1009.8" y="1285" width="0.3" height="15.0" fill="rgb(205,177,14)" rx="2" ry="2" />
<text x="1012.75" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (225 samples, 0.01%)</title><rect x="842.2" y="1461" width="0.1" height="15.0" fill="rgb(214,174,51)" rx="2" ry="2" />
<text x="845.15" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="309" width="0.2" height="15.0" fill="rgb(254,94,18)" rx="2" ry="2" />
<text x="1191.85" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (346 samples, 0.02%)</title><rect x="38.2" y="2005" width="0.2" height="15.0" fill="rgb(236,223,35)" rx="2" ry="2" />
<text x="41.20" y="2015.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (808 samples, 0.04%)</title><rect x="1070.2" y="1189" width="0.5" height="15.0" fill="rgb(210,227,31)" rx="2" ry="2" />
<text x="1073.21" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (865 samples, 0.04%)</title><rect x="1018.2" y="1205" width="0.5" height="15.0" fill="rgb(229,177,9)" rx="2" ry="2" />
<text x="1021.20" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (13,895 samples, 0.68%)</title><rect x="223.9" y="1893" width="8.0" height="15.0" fill="rgb(207,155,39)" rx="2" ry="2" />
<text x="226.89" y="1903.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (349 samples, 0.02%)</title><rect x="231.0" y="1813" width="0.2" height="15.0" fill="rgb(235,172,53)" rx="2" ry="2" />
<text x="233.98" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (1,247 samples, 0.06%)</title><rect x="832.9" y="1285" width="0.7" height="15.0" fill="rgb(239,122,5)" rx="2" ry="2" />
<text x="835.89" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (776 samples, 0.04%)</title><rect x="1107.6" y="1189" width="0.4" height="15.0" fill="rgb(221,132,25)" rx="2" ry="2" />
<text x="1110.58" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (204 samples, 0.01%)</title><rect x="767.3" y="1301" width="0.1" height="15.0" fill="rgb(229,152,53)" rx="2" ry="2" />
<text x="770.26" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (570 samples, 0.03%)</title><rect x="759.5" y="1365" width="0.4" height="15.0" fill="rgb(239,163,17)" rx="2" ry="2" />
<text x="762.52" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (68,113 samples, 3.32%)</title><rect x="890.5" y="1413" width="39.2" height="15.0" fill="rgb(249,3,39)" rx="2" ry="2" />
<text x="893.48" y="1423.5" >cam..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (289 samples, 0.01%)</title><rect x="750.7" y="1173" width="0.2" height="15.0" fill="rgb(223,228,4)" rx="2" ry="2" />
<text x="753.72" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (404 samples, 0.02%)</title><rect x="702.4" y="1749" width="0.3" height="15.0" fill="rgb(237,16,23)" rx="2" ry="2" />
<text x="705.43" y="1759.5" ></text>
</g>
<g >
<title>caml_alloc_string (300 samples, 0.01%)</title><rect x="1000.0" y="1253" width="0.1" height="15.0" fill="rgb(235,129,10)" rx="2" ry="2" />
<text x="1002.96" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (222 samples, 0.01%)</title><rect x="766.7" y="1285" width="0.1" height="15.0" fill="rgb(252,166,16)" rx="2" ry="2" />
<text x="769.66" y="1295.5" ></text>
</g>
<g >
<title>caml_thread_yield (281 samples, 0.01%)</title><rect x="878.6" y="1349" width="0.2" height="15.0" fill="rgb(231,177,36)" rx="2" ry="2" />
<text x="881.60" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (421 samples, 0.02%)</title><rect x="1180.3" y="1221" width="0.3" height="15.0" fill="rgb(222,132,52)" rx="2" ry="2" />
<text x="1183.31" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (347 samples, 0.02%)</title><rect x="308.2" y="1781" width="0.2" height="15.0" fill="rgb(237,12,2)" rx="2" ry="2" />
<text x="311.25" y="1791.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (408 samples, 0.02%)</title><rect x="758.6" y="1285" width="0.2" height="15.0" fill="rgb(241,137,43)" rx="2" ry="2" />
<text x="761.59" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (640 samples, 0.03%)</title><rect x="422.1" y="1861" width="0.3" height="15.0" fill="rgb(254,55,20)" rx="2" ry="2" />
<text x="425.07" y="1871.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (15,859 samples, 0.77%)</title><rect x="701.4" y="1957" width="9.1" height="15.0" fill="rgb(213,209,39)" rx="2" ry="2" />
<text x="704.36" y="1967.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (6,220 samples, 0.30%)</title><rect x="1084.8" y="1285" width="3.5" height="15.0" fill="rgb(215,90,8)" rx="2" ry="2" />
<text x="1087.77" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_4843 (41,398 samples, 2.02%)</title><rect x="716.3" y="1621" width="23.8" height="15.0" fill="rgb(207,33,22)" rx="2" ry="2" />
<text x="719.28" y="1631.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_5763 (647 samples, 0.03%)</title><rect x="757.5" y="1413" width="0.4" height="15.0" fill="rgb(205,9,2)" rx="2" ry="2" />
<text x="760.49" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1493" width="0.2" height="15.0" fill="rgb(209,141,38)" rx="2" ry="2" />
<text x="1191.85" y="1503.5" ></text>
</g>
<g >
<title>caml_curry3_1 (271 samples, 0.01%)</title><rect x="422.6" y="1893" width="0.1" height="15.0" fill="rgb(211,103,21)" rx="2" ry="2" />
<text x="425.58" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1541" width="0.2" height="15.0" fill="rgb(239,111,31)" rx="2" ry="2" />
<text x="1191.85" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (666 samples, 0.03%)</title><rect x="1063.7" y="1285" width="0.4" height="15.0" fill="rgb(221,164,38)" rx="2" ry="2" />
<text x="1066.68" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="933" width="0.3" height="15.0" fill="rgb(216,33,19)" rx="2" ry="2" />
<text x="1192.06" y="943.5" ></text>
</g>
<g >
<title>caml_apply2 (273 samples, 0.01%)</title><rect x="981.7" y="1413" width="0.2" height="15.0" fill="rgb(226,64,30)" rx="2" ry="2" />
<text x="984.70" y="1423.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (930 samples, 0.05%)</title><rect x="1106.7" y="1253" width="0.6" height="15.0" fill="rgb(230,47,47)" rx="2" ry="2" />
<text x="1109.73" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (370 samples, 0.02%)</title><rect x="922.3" y="1157" width="0.2" height="15.0" fill="rgb(219,181,46)" rx="2" ry="2" />
<text x="925.32" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (383 samples, 0.02%)</title><rect x="238.8" y="1829" width="0.2" height="15.0" fill="rgb(242,181,2)" rx="2" ry="2" />
<text x="241.76" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_4817 (47,924 samples, 2.34%)</title><rect x="1158.9" y="1397" width="27.6" height="15.0" fill="rgb(216,29,5)" rx="2" ry="2" />
<text x="1161.91" y="1407.5" >c..</text>
</g>
<g >
<title>caml_call_gc (1,851 samples, 0.09%)</title><rect x="444.4" y="1925" width="1.0" height="15.0" fill="rgb(212,158,28)" rx="2" ry="2" />
<text x="447.38" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (216 samples, 0.01%)</title><rect x="718.2" y="1445" width="0.2" height="15.0" fill="rgb(222,164,14)" rx="2" ry="2" />
<text x="721.24" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (773 samples, 0.04%)</title><rect x="1067.6" y="1173" width="0.5" height="15.0" fill="rgb(207,51,11)" rx="2" ry="2" />
<text x="1070.64" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (10,229 samples, 0.50%)</title><rect x="809.5" y="1365" width="5.9" height="15.0" fill="rgb(218,190,29)" rx="2" ry="2" />
<text x="812.55" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (327 samples, 0.02%)</title><rect x="723.7" y="1477" width="0.2" height="15.0" fill="rgb(240,73,9)" rx="2" ry="2" />
<text x="726.70" y="1487.5" ></text>
</g>
<g >
<title>caml_apply2 (699 samples, 0.03%)</title><rect x="1128.8" y="1381" width="0.4" height="15.0" fill="rgb(212,189,48)" rx="2" ry="2" />
<text x="1131.78" y="1391.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (190 samples, 0.01%)</title><rect x="1015.5" y="1269" width="0.1" height="15.0" fill="rgb(215,75,1)" rx="2" ry="2" />
<text x="1018.47" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (1,118 samples, 0.05%)</title><rect x="887.3" y="1509" width="0.7" height="15.0" fill="rgb(241,195,31)" rx="2" ry="2" />
<text x="890.32" y="1519.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1621" width="0.3" height="15.0" fill="rgb(230,116,47)" rx="2" ry="2" />
<text x="1192.06" y="1631.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (477 samples, 0.02%)</title><rect x="769.6" y="1221" width="0.2" height="15.0" fill="rgb(232,192,19)" rx="2" ry="2" />
<text x="772.57" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__t_12031 (2,742 samples, 0.13%)</title><rect x="753.4" y="1397" width="1.6" height="15.0" fill="rgb(239,224,21)" rx="2" ry="2" />
<text x="756.39" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (7,368 samples, 0.36%)</title><rect x="30.7" y="1989" width="4.3" height="15.0" fill="rgb(219,8,47)" rx="2" ry="2" />
<text x="33.73" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (304 samples, 0.01%)</title><rect x="1001.3" y="1285" width="0.2" height="15.0" fill="rgb(219,218,8)" rx="2" ry="2" />
<text x="1004.29" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (2,777 samples, 0.14%)</title><rect x="761.1" y="1285" width="1.6" height="15.0" fill="rgb(224,167,51)" rx="2" ry="2" />
<text x="764.06" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (471 samples, 0.02%)</title><rect x="1185.6" y="1333" width="0.3" height="15.0" fill="rgb(241,33,48)" rx="2" ry="2" />
<text x="1188.60" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (231 samples, 0.01%)</title><rect x="1188.9" y="181" width="0.2" height="15.0" fill="rgb(242,11,20)" rx="2" ry="2" />
<text x="1191.93" y="191.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (9,143 samples, 0.45%)</title><rect x="703.2" y="1877" width="5.3" height="15.0" fill="rgb(220,224,36)" rx="2" ry="2" />
<text x="706.20" y="1887.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (11,826 samples, 0.58%)</title><rect x="618.9" y="1893" width="6.8" height="15.0" fill="rgb(253,93,39)" rx="2" ry="2" />
<text x="621.94" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (179 samples, 0.01%)</title><rect x="803.7" y="1189" width="0.1" height="15.0" fill="rgb(225,178,51)" rx="2" ry="2" />
<text x="806.68" y="1199.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (474 samples, 0.02%)</title><rect x="853.4" y="1301" width="0.2" height="15.0" fill="rgb(217,132,47)" rx="2" ry="2" />
<text x="856.37" y="1311.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193 samples, 0.01%)</title><rect x="733.1" y="1317" width="0.1" height="15.0" fill="rgb(214,99,51)" rx="2" ry="2" />
<text x="736.13" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (4,031 samples, 0.20%)</title><rect x="1007.9" y="1301" width="2.3" height="15.0" fill="rgb(236,115,40)" rx="2" ry="2" />
<text x="1010.87" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (698 samples, 0.03%)</title><rect x="1182.5" y="1253" width="0.4" height="15.0" fill="rgb(253,201,32)" rx="2" ry="2" />
<text x="1185.54" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_layers__copy_29555 (458 samples, 0.02%)</title><rect x="888.2" y="1685" width="0.3" height="15.0" fill="rgb(238,26,45)" rx="2" ry="2" />
<text x="891.21" y="1695.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,021 samples, 0.05%)</title><rect x="919.7" y="1189" width="0.6" height="15.0" fill="rgb(236,41,23)" rx="2" ry="2" />
<text x="922.70" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (933 samples, 0.05%)</title><rect x="945.1" y="1301" width="0.6" height="15.0" fill="rgb(228,5,28)" rx="2" ry="2" />
<text x="948.15" y="1311.5" ></text>
</g>
<g >
<title>caml_mutex_lock (262 samples, 0.01%)</title><rect x="927.7" y="1333" width="0.2" height="15.0" fill="rgb(244,123,11)" rx="2" ry="2" />
<text x="930.70" y="1343.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1,789 samples, 0.09%)</title><rect x="1070.7" y="1269" width="1.0" height="15.0" fill="rgb(221,16,0)" rx="2" ry="2" />
<text x="1073.67" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (183 samples, 0.01%)</title><rect x="10.2" y="1237" width="0.1" height="15.0" fill="rgb(244,23,37)" rx="2" ry="2" />
<text x="13.24" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="789" width="0.3" height="15.0" fill="rgb(217,179,14)" rx="2" ry="2" />
<text x="1192.06" y="799.5" ></text>
</g>
<g >
<title>sweep_slice (180 samples, 0.01%)</title><rect x="233.3" y="1845" width="0.1" height="15.0" fill="rgb(236,174,8)" rx="2" ry="2" />
<text x="236.30" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (527 samples, 0.03%)</title><rect x="738.6" y="1557" width="0.3" height="15.0" fill="rgb(207,54,44)" rx="2" ry="2" />
<text x="741.55" y="1567.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (1,453 samples, 0.07%)</title><rect x="842.9" y="1413" width="0.8" height="15.0" fill="rgb(240,146,5)" rx="2" ry="2" />
<text x="845.89" y="1423.5" ></text>
</g>
<g >
<title>sweep_slice (240 samples, 0.01%)</title><rect x="402.4" y="1829" width="0.1" height="15.0" fill="rgb(214,200,9)" rx="2" ry="2" />
<text x="405.37" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (525 samples, 0.03%)</title><rect x="1080.5" y="1301" width="0.3" height="15.0" fill="rgb(250,220,18)" rx="2" ry="2" />
<text x="1083.50" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (24,122 samples, 1.18%)</title><rect x="807.4" y="1429" width="13.9" height="15.0" fill="rgb(251,15,27)" rx="2" ry="2" />
<text x="810.39" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (207 samples, 0.01%)</title><rect x="727.1" y="1413" width="0.1" height="15.0" fill="rgb(233,183,19)" rx="2" ry="2" />
<text x="730.13" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (1,778 samples, 0.09%)</title><rect x="1130.9" y="1237" width="1.1" height="15.0" fill="rgb(249,159,15)" rx="2" ry="2" />
<text x="1133.94" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (250 samples, 0.01%)</title><rect x="708.2" y="1861" width="0.1" height="15.0" fill="rgb(217,18,40)" rx="2" ry="2" />
<text x="711.16" y="1871.5" ></text>
</g>
<g >
<title>caml_apply2 (192 samples, 0.01%)</title><rect x="798.4" y="1253" width="0.1" height="15.0" fill="rgb(227,110,10)" rx="2" ry="2" />
<text x="801.39" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (500 samples, 0.02%)</title><rect x="768.9" y="1269" width="0.3" height="15.0" fill="rgb(216,91,35)" rx="2" ry="2" />
<text x="771.89" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (376 samples, 0.02%)</title><rect x="1125.9" y="1397" width="0.2" height="15.0" fill="rgb(231,201,3)" rx="2" ry="2" />
<text x="1128.88" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (220 samples, 0.01%)</title><rect x="1109.2" y="1333" width="0.1" height="15.0" fill="rgb(205,192,14)" rx="2" ry="2" />
<text x="1112.20" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (194 samples, 0.01%)</title><rect x="1023.0" y="1317" width="0.1" height="15.0" fill="rgb(231,196,16)" rx="2" ry="2" />
<text x="1025.98" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,403 samples, 0.07%)</title><rect x="706.6" y="1813" width="0.8" height="15.0" fill="rgb(229,61,38)" rx="2" ry="2" />
<text x="709.57" y="1823.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (351 samples, 0.02%)</title><rect x="10.2" y="1333" width="0.2" height="15.0" fill="rgb(243,224,36)" rx="2" ry="2" />
<text x="13.16" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_231 (575 samples, 0.03%)</title><rect x="1077.4" y="1429" width="0.4" height="15.0" fill="rgb(207,138,39)" rx="2" ry="2" />
<text x="1080.43" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (231 samples, 0.01%)</title><rect x="953.2" y="1253" width="0.1" height="15.0" fill="rgb(245,99,48)" rx="2" ry="2" />
<text x="956.20" y="1263.5" ></text>
</g>
<g >
<title>camlLwt_mutex__fun_157 (195 samples, 0.01%)</title><rect x="990.7" y="1429" width="0.1" height="15.0" fill="rgb(217,68,38)" rx="2" ry="2" />
<text x="993.66" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1365" width="0.2" height="15.0" fill="rgb(235,42,18)" rx="2" ry="2" />
<text x="1191.85" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (377 samples, 0.02%)</title><rect x="1165.4" y="1221" width="0.2" height="15.0" fill="rgb(251,147,29)" rx="2" ry="2" />
<text x="1168.35" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (503 samples, 0.02%)</title><rect x="848.7" y="1317" width="0.3" height="15.0" fill="rgb(221,174,53)" rx="2" ry="2" />
<text x="851.72" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__fun_3710 (1,976 samples, 0.10%)</title><rect x="1154.4" y="1285" width="1.2" height="15.0" fill="rgb(228,109,31)" rx="2" ry="2" />
<text x="1157.44" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (218 samples, 0.01%)</title><rect x="1011.1" y="1253" width="0.1" height="15.0" fill="rgb(246,99,34)" rx="2" ry="2" />
<text x="1014.12" y="1263.5" ></text>
</g>
<g >
<title>caml_darken (180 samples, 0.01%)</title><rect x="88.1" y="1893" width="0.1" height="15.0" fill="rgb(206,107,10)" rx="2" ry="2" />
<text x="91.11" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1717" width="0.2" height="15.0" fill="rgb(231,64,16)" rx="2" ry="2" />
<text x="1191.85" y="1727.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_14363 (368 samples, 0.02%)</title><rect x="1188.3" y="1685" width="0.2" height="15.0" fill="rgb(246,11,35)" rx="2" ry="2" />
<text x="1191.26" y="1695.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (203 samples, 0.01%)</title><rect x="1150.1" y="1173" width="0.1" height="15.0" fill="rgb(213,156,13)" rx="2" ry="2" />
<text x="1153.05" y="1183.5" ></text>
</g>
<g >
<title>camlLayered_bench__main_26833 (43,493 samples, 2.12%)</title><rect x="716.1" y="1845" width="25.0" height="15.0" fill="rgb(234,71,13)" rx="2" ry="2" />
<text x="719.10" y="1855.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (343 samples, 0.02%)</title><rect x="738.1" y="1525" width="0.2" height="15.0" fill="rgb(237,10,53)" rx="2" ry="2" />
<text x="741.08" y="1535.5" ></text>
</g>
<g >
<title>caml_pread (1,387 samples, 0.07%)</title><rect x="1067.3" y="1285" width="0.8" height="15.0" fill="rgb(213,31,26)" rx="2" ry="2" />
<text x="1070.29" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (307 samples, 0.01%)</title><rect x="1141.9" y="1429" width="0.2" height="15.0" fill="rgb(220,209,25)" rx="2" ry="2" />
<text x="1144.94" y="1439.5" ></text>
</g>
<g >
<title>caml_call_gc (1,302 samples, 0.06%)</title><rect x="412.2" y="1925" width="0.8" height="15.0" fill="rgb(240,23,31)" rx="2" ry="2" />
<text x="415.21" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (4,123 samples, 0.20%)</title><rect x="811.7" y="1333" width="2.4" height="15.0" fill="rgb(234,39,13)" rx="2" ry="2" />
<text x="814.71" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1109" width="0.2" height="15.0" fill="rgb(223,182,30)" rx="2" ry="2" />
<text x="1191.85" y="1119.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (296 samples, 0.01%)</title><rect x="1074.5" y="1349" width="0.2" height="15.0" fill="rgb(246,49,29)" rx="2" ry="2" />
<text x="1077.48" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (5,898 samples, 0.29%)</title><rect x="856.0" y="1429" width="3.4" height="15.0" fill="rgb(254,3,44)" rx="2" ry="2" />
<text x="859.03" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (232 samples, 0.01%)</title><rect x="1098.7" y="1317" width="0.2" height="15.0" fill="rgb(214,81,32)" rx="2" ry="2" />
<text x="1101.72" y="1327.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (466 samples, 0.02%)</title><rect x="819.7" y="1317" width="0.3" height="15.0" fill="rgb(221,55,41)" rx="2" ry="2" />
<text x="822.71" y="1327.5" ></text>
</g>
<g >
<title>caml_apply4 (746 samples, 0.04%)</title><rect x="337.7" y="1909" width="0.4" height="15.0" fill="rgb(251,76,13)" rx="2" ry="2" />
<text x="340.72" y="1919.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,023 samples, 0.05%)</title><rect x="196.6" y="1829" width="0.6" height="15.0" fill="rgb(239,42,1)" rx="2" ry="2" />
<text x="199.64" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15414 (276 samples, 0.01%)</title><rect x="772.3" y="1477" width="0.2" height="15.0" fill="rgb(229,44,46)" rx="2" ry="2" />
<text x="775.34" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1813" width="0.3" height="15.0" fill="rgb(246,151,54)" rx="2" ry="2" />
<text x="1192.69" y="1823.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (979 samples, 0.05%)</title><rect x="784.2" y="1285" width="0.6" height="15.0" fill="rgb(248,44,51)" rx="2" ry="2" />
<text x="787.19" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (3,669 samples, 0.18%)</title><rect x="1130.4" y="1301" width="2.1" height="15.0" fill="rgb(224,220,7)" rx="2" ry="2" />
<text x="1133.42" y="1311.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (404 samples, 0.02%)</title><rect x="1184.2" y="1221" width="0.3" height="15.0" fill="rgb(224,44,14)" rx="2" ry="2" />
<text x="1187.25" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (397 samples, 0.02%)</title><rect x="737.1" y="1445" width="0.3" height="15.0" fill="rgb(222,153,46)" rx="2" ry="2" />
<text x="740.14" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (976 samples, 0.05%)</title><rect x="781.0" y="1253" width="0.6" height="15.0" fill="rgb(243,214,21)" rx="2" ry="2" />
<text x="784.02" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (6,960 samples, 0.34%)</title><rect x="1084.6" y="1301" width="4.0" height="15.0" fill="rgb(229,47,37)" rx="2" ry="2" />
<text x="1087.57" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (633 samples, 0.03%)</title><rect x="718.0" y="1493" width="0.4" height="15.0" fill="rgb(249,138,29)" rx="2" ry="2" />
<text x="721.04" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (293 samples, 0.01%)</title><rect x="1170.6" y="1189" width="0.2" height="15.0" fill="rgb(243,217,26)" rx="2" ry="2" />
<text x="1173.58" y="1199.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (219 samples, 0.01%)</title><rect x="412.2" y="1893" width="0.1" height="15.0" fill="rgb(243,203,27)" rx="2" ry="2" />
<text x="415.21" y="1903.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (1,301 samples, 0.06%)</title><rect x="921.2" y="1237" width="0.7" height="15.0" fill="rgb(225,103,17)" rx="2" ry="2" />
<text x="924.17" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (745 samples, 0.04%)</title><rect x="870.5" y="1397" width="0.4" height="15.0" fill="rgb(210,226,10)" rx="2" ry="2" />
<text x="873.51" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__step_11922 (1,555 samples, 0.08%)</title><rect x="1157.7" y="1237" width="0.9" height="15.0" fill="rgb(226,56,25)" rx="2" ry="2" />
<text x="1160.67" y="1247.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (11,283 samples, 0.55%)</title><rect x="844.3" y="1381" width="6.5" height="15.0" fill="rgb(247,217,2)" rx="2" ry="2" />
<text x="847.27" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,014 samples, 0.05%)</title><rect x="671.9" y="1813" width="0.6" height="15.0" fill="rgb(240,37,49)" rx="2" ry="2" />
<text x="674.90" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (261 samples, 0.01%)</title><rect x="757.3" y="1381" width="0.2" height="15.0" fill="rgb(210,147,36)" rx="2" ry="2" />
<text x="760.34" y="1391.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (18,087 samples, 0.88%)</title><rect x="1148.4" y="1365" width="10.4" height="15.0" fill="rgb(245,89,19)" rx="2" ry="2" />
<text x="1151.41" y="1375.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (429 samples, 0.02%)</title><rect x="770.3" y="1253" width="0.2" height="15.0" fill="rgb(250,84,6)" rx="2" ry="2" />
<text x="773.26" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (595 samples, 0.03%)</title><rect x="879.3" y="1381" width="0.3" height="15.0" fill="rgb(235,39,36)" rx="2" ry="2" />
<text x="882.29" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1317" width="0.2" height="15.0" fill="rgb(254,24,3)" rx="2" ry="2" />
<text x="1191.85" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_684 (688 samples, 0.03%)</title><rect x="1128.4" y="1381" width="0.4" height="15.0" fill="rgb(230,218,32)" rx="2" ry="2" />
<text x="1131.39" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (219 samples, 0.01%)</title><rect x="1127.9" y="1365" width="0.1" height="15.0" fill="rgb(207,84,52)" rx="2" ry="2" />
<text x="1130.86" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1237" width="0.3" height="15.0" fill="rgb(252,180,11)" rx="2" ry="2" />
<text x="1191.59" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (787 samples, 0.04%)</title><rect x="987.1" y="1333" width="0.5" height="15.0" fill="rgb(224,156,10)" rx="2" ry="2" />
<text x="990.12" y="1343.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (810 samples, 0.04%)</title><rect x="1077.3" y="1445" width="0.5" height="15.0" fill="rgb(252,185,44)" rx="2" ry="2" />
<text x="1080.30" y="1455.5" ></text>
</g>
<g >
<title>camlCmdliner_term__fun_177 (821,291 samples, 40.03%)</title><rect x="716.1" y="1861" width="472.4" height="15.0" fill="rgb(253,109,14)" rx="2" ry="2" />
<text x="719.10" y="1871.5" >camlCmdliner_term__fun_177</text>
</g>
<g >
<title>caml_oldify_one (209 samples, 0.01%)</title><rect x="410.6" y="1813" width="0.1" height="15.0" fill="rgb(251,52,37)" rx="2" ry="2" />
<text x="413.56" y="1823.5" ></text>
</g>
<g >
<title>caml_call_gc (1,310 samples, 0.06%)</title><rect x="705.8" y="1829" width="0.7" height="15.0" fill="rgb(254,66,13)" rx="2" ry="2" />
<text x="708.79" y="1839.5" ></text>
</g>
<g >
<title>__libc_pread64 (304 samples, 0.01%)</title><rect x="1183.7" y="1221" width="0.1" height="15.0" fill="rgb(237,39,38)" rx="2" ry="2" />
<text x="1186.65" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (293 samples, 0.01%)</title><rect x="806.2" y="1349" width="0.2" height="15.0" fill="rgb(245,12,49)" rx="2" ry="2" />
<text x="809.19" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (216 samples, 0.01%)</title><rect x="1124.8" y="1365" width="0.1" height="15.0" fill="rgb(225,23,5)" rx="2" ry="2" />
<text x="1127.82" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (255 samples, 0.01%)</title><rect x="1116.7" y="1317" width="0.1" height="15.0" fill="rgb(243,80,24)" rx="2" ry="2" />
<text x="1119.65" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__replace_1790 (1,886 samples, 0.09%)</title><rect x="722.9" y="1525" width="1.1" height="15.0" fill="rgb(231,107,54)" rx="2" ry="2" />
<text x="725.94" y="1535.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (1,334 samples, 0.07%)</title><rect x="1146.4" y="1317" width="0.8" height="15.0" fill="rgb(241,84,15)" rx="2" ry="2" />
<text x="1149.42" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,965 samples, 1.66%)</title><rect x="632.6" y="1813" width="19.5" height="15.0" fill="rgb(210,179,43)" rx="2" ry="2" />
<text x="635.61" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,509 samples, 0.07%)</title><rect x="875.9" y="1349" width="0.9" height="15.0" fill="rgb(251,8,16)" rx="2" ry="2" />
<text x="878.92" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__decode_bin_12000 (6,359 samples, 0.31%)</title><rect x="823.0" y="1429" width="3.7" height="15.0" fill="rgb(240,29,35)" rx="2" ry="2" />
<text x="826.00" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="805" width="0.3" height="15.0" fill="rgb(218,140,2)" rx="2" ry="2" />
<text x="1192.37" y="815.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (570 samples, 0.03%)</title><rect x="867.2" y="1365" width="0.4" height="15.0" fill="rgb(218,144,13)" rx="2" ry="2" />
<text x="870.24" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (183 samples, 0.01%)</title><rect x="724.2" y="1493" width="0.1" height="15.0" fill="rgb(227,217,12)" rx="2" ry="2" />
<text x="727.22" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="1893" width="0.3" height="15.0" fill="rgb(253,19,7)" rx="2" ry="2" />
<text x="1192.37" y="1903.5" ></text>
</g>
<g >
<title>camlThread__fun_275 (259,168 samples, 12.63%)</title><rect x="548.9" y="1941" width="149.1" height="15.0" fill="rgb(219,103,27)" rx="2" ry="2" />
<text x="551.89" y="1951.5" >camlThread__fun_275</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1301" width="0.3" height="15.0" fill="rgb(240,1,42)" rx="2" ry="2" />
<text x="1192.37" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (1,546 samples, 0.08%)</title><rect x="418.6" y="1877" width="0.9" height="15.0" fill="rgb(225,183,24)" rx="2" ry="2" />
<text x="421.57" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="437" width="0.3" height="15.0" fill="rgb(211,195,8)" rx="2" ry="2" />
<text x="1192.06" y="447.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (353 samples, 0.02%)</title><rect x="10.2" y="1365" width="0.2" height="15.0" fill="rgb(234,187,11)" rx="2" ry="2" />
<text x="13.16" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (216 samples, 0.01%)</title><rect x="732.8" y="1333" width="0.1" height="15.0" fill="rgb(234,13,43)" rx="2" ry="2" />
<text x="735.78" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (523 samples, 0.03%)</title><rect x="789.6" y="1317" width="0.3" height="15.0" fill="rgb(210,104,20)" rx="2" ry="2" />
<text x="792.60" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (512 samples, 0.02%)</title><rect x="1096.4" y="1285" width="0.3" height="15.0" fill="rgb(240,88,8)" rx="2" ry="2" />
<text x="1099.44" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="485" width="0.2" height="15.0" fill="rgb(217,78,27)" rx="2" ry="2" />
<text x="1191.85" y="495.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (321 samples, 0.02%)</title><rect x="811.8" y="1317" width="0.2" height="15.0" fill="rgb(242,192,45)" rx="2" ry="2" />
<text x="814.78" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (207 samples, 0.01%)</title><rect x="851.5" y="1333" width="0.1" height="15.0" fill="rgb(232,21,41)" rx="2" ry="2" />
<text x="854.47" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__mem_1616 (506 samples, 0.02%)</title><rect x="867.9" y="1429" width="0.3" height="15.0" fill="rgb(243,15,3)" rx="2" ry="2" />
<text x="870.90" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (213 samples, 0.01%)</title><rect x="814.9" y="1301" width="0.1" height="15.0" fill="rgb(252,31,0)" rx="2" ry="2" />
<text x="817.87" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (222 samples, 0.01%)</title><rect x="812.4" y="1301" width="0.1" height="15.0" fill="rgb(223,100,21)" rx="2" ry="2" />
<text x="815.41" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (444 samples, 0.02%)</title><rect x="1189.7" y="245" width="0.3" height="15.0" fill="rgb(222,85,34)" rx="2" ry="2" />
<text x="1192.71" y="255.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1189" width="0.3" height="15.0" fill="rgb(232,175,19)" rx="2" ry="2" />
<text x="1192.69" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,236 samples, 0.06%)</title><rect x="782.0" y="1269" width="0.7" height="15.0" fill="rgb(206,87,35)" rx="2" ry="2" />
<text x="785.00" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_1591 (228 samples, 0.01%)</title><rect x="1130.6" y="1285" width="0.1" height="15.0" fill="rgb(230,90,42)" rx="2" ry="2" />
<text x="1133.60" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (862 samples, 0.04%)</title><rect x="903.1" y="1237" width="0.5" height="15.0" fill="rgb(212,17,51)" rx="2" ry="2" />
<text x="906.08" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,316 samples, 3.52%)</title><rect x="1145.8" y="1509" width="41.6" height="15.0" fill="rgb(244,162,26)" rx="2" ry="2" />
<text x="1148.76" y="1519.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (389 samples, 0.02%)</title><rect x="1182.3" y="1253" width="0.2" height="15.0" fill="rgb(244,228,51)" rx="2" ry="2" />
<text x="1185.32" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,732 samples, 0.08%)</title><rect x="1064.6" y="1301" width="1.0" height="15.0" fill="rgb(218,173,39)" rx="2" ry="2" />
<text x="1067.57" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="1285" width="0.2" height="15.0" fill="rgb(213,178,6)" rx="2" ry="2" />
<text x="1191.85" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (565 samples, 0.03%)</title><rect x="781.6" y="1253" width="0.3" height="15.0" fill="rgb(211,98,28)" rx="2" ry="2" />
<text x="784.58" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (241 samples, 0.01%)</title><rect x="732.8" y="1365" width="0.1" height="15.0" fill="rgb(236,170,14)" rx="2" ry="2" />
<text x="735.77" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,545 samples, 0.08%)</title><rect x="334.2" y="1797" width="0.9" height="15.0" fill="rgb(209,10,15)" rx="2" ry="2" />
<text x="337.21" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (449 samples, 0.02%)</title><rect x="843.3" y="1349" width="0.3" height="15.0" fill="rgb(250,138,7)" rx="2" ry="2" />
<text x="846.33" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (409 samples, 0.02%)</title><rect x="783.0" y="1285" width="0.2" height="15.0" fill="rgb(206,149,11)" rx="2" ry="2" />
<text x="786.01" y="1295.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (288 samples, 0.01%)</title><rect x="842.1" y="1477" width="0.2" height="15.0" fill="rgb(235,185,18)" rx="2" ry="2" />
<text x="845.12" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (959 samples, 0.05%)</title><rect x="983.0" y="1429" width="0.5" height="15.0" fill="rgb(250,108,27)" rx="2" ry="2" />
<text x="985.97" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (239 samples, 0.01%)</title><rect x="707.8" y="1845" width="0.1" height="15.0" fill="rgb(205,7,45)" rx="2" ry="2" />
<text x="710.78" y="1855.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (753 samples, 0.04%)</title><rect x="803.3" y="1269" width="0.5" height="15.0" fill="rgb(216,4,9)" rx="2" ry="2" />
<text x="806.35" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (2,758 samples, 0.13%)</title><rect x="830.2" y="1317" width="1.5" height="15.0" fill="rgb(235,203,22)" rx="2" ry="2" />
<text x="833.16" y="1327.5" ></text>
</g>
<g >
<title>start_thread (1,179,690 samples, 57.50%)</title><rect x="37.6" y="2037" width="678.5" height="15.0" fill="rgb(220,6,11)" rx="2" ry="2" />
<text x="40.58" y="2047.5" >start_thread</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (2,992 samples, 0.15%)</title><rect x="856.6" y="1381" width="1.7" height="15.0" fill="rgb(249,109,40)" rx="2" ry="2" />
<text x="859.62" y="1391.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (2,509 samples, 0.12%)</title><rect x="1174.5" y="1253" width="1.4" height="15.0" fill="rgb(219,104,35)" rx="2" ry="2" />
<text x="1177.51" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (193 samples, 0.01%)</title><rect x="808.3" y="1333" width="0.1" height="15.0" fill="rgb(252,163,26)" rx="2" ry="2" />
<text x="811.28" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (255,743 samples, 12.47%)</title><rect x="741.1" y="1685" width="147.1" height="15.0" fill="rgb(251,190,4)" rx="2" ry="2" />
<text x="744.11" y="1695.5" >camlIrmin_pack__Pa..</text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4601 (158,471 samples, 7.72%)</title><rect x="889.0" y="1493" width="91.1" height="15.0" fill="rgb(246,26,49)" rx="2" ry="2" />
<text x="891.95" y="1503.5" >camlIrmin_..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (287,007 samples, 13.99%)</title><rect x="176.1" y="1925" width="165.0" height="15.0" fill="rgb(238,95,19)" rx="2" ry="2" />
<text x="179.06" y="1935.5" >camlIrmin_pack__Pack_..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (195 samples, 0.01%)</title><rect x="731.8" y="1413" width="0.1" height="15.0" fill="rgb(206,35,12)" rx="2" ry="2" />
<text x="734.81" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__join_1684 (350 samples, 0.02%)</title><rect x="1077.1" y="1445" width="0.2" height="15.0" fill="rgb(209,218,21)" rx="2" ry="2" />
<text x="1080.10" y="1455.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (295 samples, 0.01%)</title><rect x="824.5" y="1317" width="0.2" height="15.0" fill="rgb(211,51,18)" rx="2" ry="2" />
<text x="827.53" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (269 samples, 0.01%)</title><rect x="1065.2" y="1253" width="0.1" height="15.0" fill="rgb(230,201,38)" rx="2" ry="2" />
<text x="1068.15" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (674 samples, 0.03%)</title><rect x="834.3" y="1301" width="0.4" height="15.0" fill="rgb(239,218,40)" rx="2" ry="2" />
<text x="837.29" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (201 samples, 0.01%)</title><rect x="1081.4" y="1333" width="0.1" height="15.0" fill="rgb(210,192,34)" rx="2" ry="2" />
<text x="1084.43" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (222 samples, 0.01%)</title><rect x="1170.8" y="1189" width="0.1" height="15.0" fill="rgb(212,121,5)" rx="2" ry="2" />
<text x="1173.75" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (268 samples, 0.01%)</title><rect x="806.4" y="1301" width="0.2" height="15.0" fill="rgb(215,11,8)" rx="2" ry="2" />
<text x="809.43" y="1311.5" ></text>
</g>
<g >
<title>memmove (231 samples, 0.01%)</title><rect x="1133.9" y="1269" width="0.2" height="15.0" fill="rgb(249,164,39)" rx="2" ry="2" />
<text x="1136.93" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (2,772 samples, 0.14%)</title><rect x="1183.2" y="1285" width="1.6" height="15.0" fill="rgb(226,222,41)" rx="2" ry="2" />
<text x="1186.22" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (422 samples, 0.02%)</title><rect x="867.3" y="1253" width="0.3" height="15.0" fill="rgb(247,114,37)" rx="2" ry="2" />
<text x="870.33" y="1263.5" ></text>
</g>
<g >
<title>caml_pread (458 samples, 0.02%)</title><rect x="750.1" y="1285" width="0.3" height="15.0" fill="rgb(239,211,8)" rx="2" ry="2" />
<text x="753.11" y="1295.5" ></text>
</g>
<g >
<title>caml_process_pending_signals (491 samples, 0.02%)</title><rect x="883.6" y="1349" width="0.3" height="15.0" fill="rgb(226,82,4)" rx="2" ry="2" />
<text x="886.58" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (211 samples, 0.01%)</title><rect x="1168.0" y="1269" width="0.1" height="15.0" fill="rgb(247,154,24)" rx="2" ry="2" />
<text x="1171.01" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (810 samples, 0.04%)</title><rect x="672.0" y="1781" width="0.5" height="15.0" fill="rgb(251,148,46)" rx="2" ry="2" />
<text x="675.01" y="1791.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (10,587 samples, 0.52%)</title><rect x="1102.9" y="1349" width="6.1" height="15.0" fill="rgb(221,168,10)" rx="2" ry="2" />
<text x="1105.88" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (3,428 samples, 0.17%)</title><rect x="967.3" y="1285" width="2.0" height="15.0" fill="rgb(235,221,28)" rx="2" ry="2" />
<text x="970.32" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (2,154 samples, 0.10%)</title><rect x="1114.0" y="1333" width="1.2" height="15.0" fill="rgb(251,62,7)" rx="2" ry="2" />
<text x="1116.97" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (1,088 samples, 0.05%)</title><rect x="205.4" y="1829" width="0.7" height="15.0" fill="rgb(245,37,14)" rx="2" ry="2" />
<text x="208.43" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (365 samples, 0.02%)</title><rect x="867.4" y="1205" width="0.2" height="15.0" fill="rgb(245,33,6)" rx="2" ry="2" />
<text x="870.36" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (215 samples, 0.01%)</title><rect x="762.5" y="1253" width="0.1" height="15.0" fill="rgb(249,42,19)" rx="2" ry="2" />
<text x="765.49" y="1263.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (244 samples, 0.01%)</title><rect x="1097.6" y="1253" width="0.1" height="15.0" fill="rgb(249,127,52)" rx="2" ry="2" />
<text x="1100.61" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (15,639 samples, 0.76%)</title><rect x="393.5" y="1893" width="9.0" height="15.0" fill="rgb(250,105,2)" rx="2" ry="2" />
<text x="396.51" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="773" width="0.3" height="15.0" fill="rgb(208,92,41)" rx="2" ry="2" />
<text x="1192.37" y="783.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,299 samples, 0.06%)</title><rect x="412.2" y="1909" width="0.8" height="15.0" fill="rgb(212,78,3)" rx="2" ry="2" />
<text x="415.21" y="1919.5" ></text>
</g>
<g >
<title>memmove (1,995 samples, 0.10%)</title><rect x="547.5" y="1909" width="1.1" height="15.0" fill="rgb(210,83,52)" rx="2" ry="2" />
<text x="550.45" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__lseek_339 (1,070 samples, 0.05%)</title><rect x="758.3" y="1381" width="0.6" height="15.0" fill="rgb(243,20,15)" rx="2" ry="2" />
<text x="761.32" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (571 samples, 0.03%)</title><rect x="954.1" y="1253" width="0.4" height="15.0" fill="rgb(213,219,20)" rx="2" ry="2" />
<text x="957.13" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1701" width="0.3" height="15.0" fill="rgb(213,176,45)" rx="2" ry="2" />
<text x="1192.06" y="1711.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (1,037 samples, 0.05%)</title><rect x="937.8" y="1349" width="0.6" height="15.0" fill="rgb(232,140,40)" rx="2" ry="2" />
<text x="940.77" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2496 (426 samples, 0.02%)</title><rect x="1007.3" y="1253" width="0.2" height="15.0" fill="rgb(249,182,25)" rx="2" ry="2" />
<text x="1010.29" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_738 (183 samples, 0.01%)</title><rect x="993.9" y="1349" width="0.1" height="15.0" fill="rgb(217,225,54)" rx="2" ry="2" />
<text x="996.89" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="293" width="0.3" height="15.0" fill="rgb(241,74,16)" rx="2" ry="2" />
<text x="1192.06" y="303.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (346 samples, 0.02%)</title><rect x="730.0" y="1397" width="0.2" height="15.0" fill="rgb(216,224,3)" rx="2" ry="2" />
<text x="732.97" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (551 samples, 0.03%)</title><rect x="1189.4" y="277" width="0.3" height="15.0" fill="rgb(233,158,47)" rx="2" ry="2" />
<text x="1192.37" y="287.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (202 samples, 0.01%)</title><rect x="727.9" y="1445" width="0.1" height="15.0" fill="rgb(213,82,16)" rx="2" ry="2" />
<text x="730.93" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_484 (1,015 samples, 0.05%)</title><rect x="726.3" y="1413" width="0.6" height="15.0" fill="rgb(247,203,5)" rx="2" ry="2" />
<text x="729.27" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (545 samples, 0.03%)</title><rect x="1075.2" y="1365" width="0.3" height="15.0" fill="rgb(235,200,51)" rx="2" ry="2" />
<text x="1078.15" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (412 samples, 0.02%)</title><rect x="1071.5" y="1189" width="0.2" height="15.0" fill="rgb(238,79,35)" rx="2" ry="2" />
<text x="1074.47" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1829" width="0.3" height="15.0" fill="rgb(236,186,50)" rx="2" ry="2" />
<text x="1192.06" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (333 samples, 0.02%)</title><rect x="819.5" y="1237" width="0.2" height="15.0" fill="rgb(212,172,40)" rx="2" ry="2" />
<text x="822.50" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (280 samples, 0.01%)</title><rect x="1161.7" y="1173" width="0.1" height="15.0" fill="rgb(208,153,52)" rx="2" ry="2" />
<text x="1164.68" y="1183.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (429 samples, 0.02%)</title><rect x="180.4" y="1845" width="0.2" height="15.0" fill="rgb(242,96,16)" rx="2" ry="2" />
<text x="183.36" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (255 samples, 0.01%)</title><rect x="877.4" y="1349" width="0.2" height="15.0" fill="rgb(229,167,47)" rx="2" ry="2" />
<text x="880.44" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="405" width="0.3" height="15.0" fill="rgb(253,148,19)" rx="2" ry="2" />
<text x="1191.59" y="415.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,176 samples, 0.06%)</title><rect x="1153.2" y="1221" width="0.7" height="15.0" fill="rgb(221,115,43)" rx="2" ry="2" />
<text x="1156.22" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,562 samples, 0.08%)</title><rect x="231.0" y="1845" width="0.9" height="15.0" fill="rgb(208,41,17)" rx="2" ry="2" />
<text x="233.98" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (338 samples, 0.02%)</title><rect x="717.5" y="1557" width="0.2" height="15.0" fill="rgb(219,188,6)" rx="2" ry="2" />
<text x="720.51" y="1567.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (2,806 samples, 0.14%)</title><rect x="1174.4" y="1269" width="1.6" height="15.0" fill="rgb(213,46,32)" rx="2" ry="2" />
<text x="1177.39" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_459 (309 samples, 0.02%)</title><rect x="726.1" y="1413" width="0.2" height="15.0" fill="rgb(242,1,2)" rx="2" ry="2" />
<text x="729.09" y="1423.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (415 samples, 0.02%)</title><rect x="166.7" y="1829" width="0.3" height="15.0" fill="rgb(240,189,54)" rx="2" ry="2" />
<text x="169.74" y="1839.5" ></text>
</g>
<g >
<title>caml_pread (596 samples, 0.03%)</title><rect x="881.5" y="1365" width="0.4" height="15.0" fill="rgb(233,181,51)" rx="2" ry="2" />
<text x="884.54" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (606 samples, 0.03%)</title><rect x="1168.7" y="1285" width="0.3" height="15.0" fill="rgb(225,178,43)" rx="2" ry="2" />
<text x="1171.65" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (23,232 samples, 1.13%)</title><rect x="948.8" y="1285" width="13.3" height="15.0" fill="rgb(224,104,26)" rx="2" ry="2" />
<text x="951.78" y="1295.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (1,785 samples, 0.09%)</title><rect x="1070.7" y="1253" width="1.0" height="15.0" fill="rgb(231,189,10)" rx="2" ry="2" />
<text x="1073.68" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (629 samples, 0.03%)</title><rect x="709.9" y="1797" width="0.4" height="15.0" fill="rgb(236,183,19)" rx="2" ry="2" />
<text x="712.91" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (22,127 samples, 1.08%)</title><rect x="1048.3" y="1301" width="12.8" height="15.0" fill="rgb(246,56,38)" rx="2" ry="2" />
<text x="1051.35" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (452 samples, 0.02%)</title><rect x="914.4" y="1237" width="0.2" height="15.0" fill="rgb(217,200,11)" rx="2" ry="2" />
<text x="917.36" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_290 (917 samples, 0.04%)</title><rect x="711.0" y="1893" width="0.5" height="15.0" fill="rgb(234,201,43)" rx="2" ry="2" />
<text x="714.00" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$7c$3d_830 (194 samples, 0.01%)</title><rect x="1062.9" y="1285" width="0.1" height="15.0" fill="rgb(244,218,25)" rx="2" ry="2" />
<text x="1065.90" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (2,323 samples, 0.11%)</title><rect x="815.9" y="1365" width="1.3" height="15.0" fill="rgb(232,208,43)" rx="2" ry="2" />
<text x="818.89" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1528 (523 samples, 0.03%)</title><rect x="417.8" y="1877" width="0.3" height="15.0" fill="rgb(232,9,9)" rx="2" ry="2" />
<text x="420.76" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15525 (2,497 samples, 0.12%)</title><rect x="840.9" y="1493" width="1.4" height="15.0" fill="rgb(248,120,47)" rx="2" ry="2" />
<text x="843.86" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (786 samples, 0.04%)</title><rect x="1143.1" y="1429" width="0.4" height="15.0" fill="rgb(245,206,37)" rx="2" ry="2" />
<text x="1146.06" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (1,647 samples, 0.08%)</title><rect x="791.8" y="1381" width="1.0" height="15.0" fill="rgb(232,118,45)" rx="2" ry="2" />
<text x="794.82" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (285 samples, 0.01%)</title><rect x="819.5" y="1205" width="0.2" height="15.0" fill="rgb(244,161,19)" rx="2" ry="2" />
<text x="822.53" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1589" width="0.2" height="15.0" fill="rgb(228,224,20)" rx="2" ry="2" />
<text x="1191.85" y="1599.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (2,848 samples, 0.14%)</title><rect x="845.1" y="1333" width="1.6" height="15.0" fill="rgb(235,197,39)" rx="2" ry="2" />
<text x="848.08" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="341" width="0.3" height="15.0" fill="rgb(222,27,12)" rx="2" ry="2" />
<text x="1191.59" y="351.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="805" width="0.3" height="15.0" fill="rgb(244,112,31)" rx="2" ry="2" />
<text x="1191.59" y="815.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (457 samples, 0.02%)</title><rect x="1188.6" y="1461" width="0.3" height="15.0" fill="rgb(230,1,22)" rx="2" ry="2" />
<text x="1191.59" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (1,683 samples, 0.08%)</title><rect x="334.1" y="1813" width="1.0" height="15.0" fill="rgb(235,101,19)" rx="2" ry="2" />
<text x="337.13" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (235 samples, 0.01%)</title><rect x="834.8" y="1301" width="0.1" height="15.0" fill="rgb(229,112,44)" rx="2" ry="2" />
<text x="837.75" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_7462 (17,989 samples, 0.88%)</title><rect x="776.8" y="1413" width="10.4" height="15.0" fill="rgb(212,120,31)" rx="2" ry="2" />
<text x="779.82" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (419 samples, 0.02%)</title><rect x="850.9" y="1333" width="0.2" height="15.0" fill="rgb(248,94,52)" rx="2" ry="2" />
<text x="853.88" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (326 samples, 0.02%)</title><rect x="786.9" y="1365" width="0.2" height="15.0" fill="rgb(220,179,29)" rx="2" ry="2" />
<text x="789.93" y="1375.5" ></text>
</g>
<g >
<title>caml_apply2 (233 samples, 0.01%)</title><rect x="832.7" y="1285" width="0.2" height="15.0" fill="rgb(248,103,36)" rx="2" ry="2" />
<text x="835.73" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (12,509 samples, 0.61%)</title><rect x="415.9" y="1909" width="7.2" height="15.0" fill="rgb(206,87,1)" rx="2" ry="2" />
<text x="418.93" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (839 samples, 0.04%)</title><rect x="1042.9" y="1221" width="0.5" height="15.0" fill="rgb(232,127,23)" rx="2" ry="2" />
<text x="1045.95" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_5067 (21,116 samples, 1.03%)</title><rect x="792.8" y="1397" width="12.1" height="15.0" fill="rgb(232,212,0)" rx="2" ry="2" />
<text x="795.79" y="1407.5" ></text>
</g>
<g >
<title>caml_pread (246 samples, 0.01%)</title><rect x="1153.1" y="1205" width="0.1" height="15.0" fill="rgb(241,142,22)" rx="2" ry="2" />
<text x="1156.07" y="1215.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (561 samples, 0.03%)</title><rect x="882.2" y="1333" width="0.3" height="15.0" fill="rgb(246,94,3)" rx="2" ry="2" />
<text x="885.22" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_719 (463 samples, 0.02%)</title><rect x="860.6" y="1445" width="0.3" height="15.0" fill="rgb(228,173,41)" rx="2" ry="2" />
<text x="863.62" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (537 samples, 0.03%)</title><rect x="720.0" y="1397" width="0.3" height="15.0" fill="rgb(241,41,7)" rx="2" ry="2" />
<text x="722.97" y="1407.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1653" width="42.4" height="15.0" fill="rgb(234,86,23)" rx="2" ry="2" />
<text x="1148.76" y="1663.5" >caml..</text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,027 samples, 0.05%)</title><rect x="981.0" y="1413" width="0.6" height="15.0" fill="rgb(230,170,30)" rx="2" ry="2" />
<text x="984.04" y="1423.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (350 samples, 0.02%)</title><rect x="819.1" y="1285" width="0.2" height="15.0" fill="rgb(236,72,26)" rx="2" ry="2" />
<text x="822.13" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (301 samples, 0.01%)</title><rect x="877.0" y="1333" width="0.2" height="15.0" fill="rgb(244,10,53)" rx="2" ry="2" />
<text x="880.03" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (339 samples, 0.02%)</title><rect x="1085.1" y="1269" width="0.2" height="15.0" fill="rgb(231,13,36)" rx="2" ry="2" />
<text x="1088.06" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (188 samples, 0.01%)</title><rect x="28.4" y="1989" width="0.1" height="15.0" fill="rgb(218,114,7)" rx="2" ry="2" />
<text x="31.41" y="1999.5" ></text>
</g>
<g >
<title>caml_hash (249 samples, 0.01%)</title><rect x="851.8" y="1317" width="0.2" height="15.0" fill="rgb(241,98,3)" rx="2" ry="2" />
<text x="854.85" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (609 samples, 0.03%)</title><rect x="909.4" y="1237" width="0.4" height="15.0" fill="rgb(251,104,49)" rx="2" ry="2" />
<text x="912.43" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__value_12020 (2,565 samples, 0.13%)</title><rect x="753.5" y="1365" width="1.4" height="15.0" fill="rgb(214,104,32)" rx="2" ry="2" />
<text x="756.45" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (212 samples, 0.01%)</title><rect x="1109.2" y="1317" width="0.1" height="15.0" fill="rgb(234,190,1)" rx="2" ry="2" />
<text x="1112.21" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__do_bucket_545 (14,946 samples, 0.73%)</title><rect x="701.9" y="1909" width="8.6" height="15.0" fill="rgb(220,77,29)" rx="2" ry="2" />
<text x="704.88" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,908 samples, 0.09%)</title><rect x="1150.3" y="1205" width="1.1" height="15.0" fill="rgb(250,40,20)" rx="2" ry="2" />
<text x="1153.33" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (218 samples, 0.01%)</title><rect x="799.9" y="1269" width="0.2" height="15.0" fill="rgb(230,151,10)" rx="2" ry="2" />
<text x="802.93" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_967 (302 samples, 0.01%)</title><rect x="874.2" y="1317" width="0.2" height="15.0" fill="rgb(252,175,51)" rx="2" ry="2" />
<text x="877.20" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1093" width="0.3" height="15.0" fill="rgb(214,86,1)" rx="2" ry="2" />
<text x="1192.06" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (2,077 samples, 0.10%)</title><rect x="1126.8" y="1381" width="1.2" height="15.0" fill="rgb(208,133,1)" rx="2" ry="2" />
<text x="1129.79" y="1391.5" ></text>
</g>
<g >
<title>caml_call_gc (2,246 samples, 0.11%)</title><rect x="220.1" y="1877" width="1.3" height="15.0" fill="rgb(218,85,50)" rx="2" ry="2" />
<text x="223.12" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (19,959 samples, 0.97%)</title><rect x="793.3" y="1365" width="11.5" height="15.0" fill="rgb(216,31,13)" rx="2" ry="2" />
<text x="796.28" y="1375.5" ></text>
</g>
<g >
<title>caml_apply5 (251 samples, 0.01%)</title><rect x="868.9" y="1493" width="0.2" height="15.0" fill="rgb(223,41,32)" rx="2" ry="2" />
<text x="871.92" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (243 samples, 0.01%)</title><rect x="1174.9" y="1125" width="0.1" height="15.0" fill="rgb(227,162,44)" rx="2" ry="2" />
<text x="1177.87" y="1135.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (1,995 samples, 0.10%)</title><rect x="750.4" y="1301" width="1.1" height="15.0" fill="rgb(222,65,30)" rx="2" ry="2" />
<text x="753.37" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (482 samples, 0.02%)</title><rect x="1180.0" y="1221" width="0.3" height="15.0" fill="rgb(227,191,52)" rx="2" ry="2" />
<text x="1183.03" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_436 (366 samples, 0.02%)</title><rect x="726.9" y="1413" width="0.2" height="15.0" fill="rgb(211,200,21)" rx="2" ry="2" />
<text x="729.87" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (197 samples, 0.01%)</title><rect x="814.6" y="1285" width="0.2" height="15.0" fill="rgb(226,207,53)" rx="2" ry="2" />
<text x="817.64" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__list_541 (894 samples, 0.04%)</title><rect x="1124.6" y="1397" width="0.6" height="15.0" fill="rgb(206,65,13)" rx="2" ry="2" />
<text x="1127.64" y="1407.5" ></text>
</g>
<g >
<title>caml_c_call (182 samples, 0.01%)</title><rect x="145.7" y="1877" width="0.2" height="15.0" fill="rgb(207,154,2)" rx="2" ry="2" />
<text x="148.75" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (1,579 samples, 0.08%)</title><rect x="1173.5" y="1269" width="0.9" height="15.0" fill="rgb(237,136,54)" rx="2" ry="2" />
<text x="1176.49" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1909" width="0.2" height="15.0" fill="rgb(252,36,4)" rx="2" ry="2" />
<text x="1191.85" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_443 (12,691 samples, 0.62%)</title><rect x="917.9" y="1301" width="7.3" height="15.0" fill="rgb(249,126,48)" rx="2" ry="2" />
<text x="920.88" y="1311.5" ></text>
</g>
<g >
<title>caml_string_equal (231 samples, 0.01%)</title><rect x="1131.1" y="1205" width="0.2" height="15.0" fill="rgb(214,143,21)" rx="2" ry="2" />
<text x="1134.13" y="1215.5" ></text>
</g>
<g >
<title>do_compaction (708 samples, 0.03%)</title><rect x="706.6" y="1781" width="0.4" height="15.0" fill="rgb(243,75,50)" rx="2" ry="2" />
<text x="709.57" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,051 samples, 0.05%)</title><rect x="1181.4" y="1237" width="0.6" height="15.0" fill="rgb(244,222,54)" rx="2" ry="2" />
<text x="1184.41" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__of_bin_11748 (422 samples, 0.02%)</title><rect x="988.4" y="1413" width="0.3" height="15.0" fill="rgb(205,81,19)" rx="2" ry="2" />
<text x="991.43" y="1423.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (448 samples, 0.02%)</title><rect x="768.9" y="1237" width="0.3" height="15.0" fill="rgb(233,109,28)" rx="2" ry="2" />
<text x="771.92" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (249 samples, 0.01%)</title><rect x="1164.5" y="1237" width="0.1" height="15.0" fill="rgb(211,102,28)" rx="2" ry="2" />
<text x="1167.47" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="981" width="0.3" height="15.0" fill="rgb(253,218,36)" rx="2" ry="2" />
<text x="1192.69" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="325" width="0.3" height="15.0" fill="rgb(231,28,45)" rx="2" ry="2" />
<text x="1192.37" y="335.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (11,613 samples, 0.57%)</title><rect x="15.9" y="2005" width="6.7" height="15.0" fill="rgb(223,3,25)" rx="2" ry="2" />
<text x="18.88" y="2015.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (5,848 samples, 0.29%)</title><rect x="734.7" y="1525" width="3.4" height="15.0" fill="rgb(215,43,43)" rx="2" ry="2" />
<text x="737.69" y="1535.5" ></text>
</g>
<g >
<title>caml_apply2 (180 samples, 0.01%)</title><rect x="964.7" y="1253" width="0.1" height="15.0" fill="rgb(224,205,10)" rx="2" ry="2" />
<text x="967.66" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="677" width="0.3" height="15.0" fill="rgb(208,126,39)" rx="2" ry="2" />
<text x="1192.69" y="687.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (811 samples, 0.04%)</title><rect x="1001.8" y="1285" width="0.5" height="15.0" fill="rgb(244,117,2)" rx="2" ry="2" />
<text x="1004.83" y="1295.5" ></text>
</g>
<g >
<title>caml_pread (598 samples, 0.03%)</title><rect x="768.8" y="1301" width="0.4" height="15.0" fill="rgb(242,199,39)" rx="2" ry="2" />
<text x="771.84" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_size__tuple_486 (1,364 samples, 0.07%)</title><rect x="705.8" y="1845" width="0.7" height="15.0" fill="rgb(238,21,40)" rx="2" ry="2" />
<text x="708.76" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (80,715 samples, 3.93%)</title><rect x="930.6" y="1429" width="46.5" height="15.0" fill="rgb(213,131,34)" rx="2" ry="2" />
<text x="933.63" y="1439.5" >caml..</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="949" width="0.2" height="15.0" fill="rgb(251,167,53)" rx="2" ry="2" />
<text x="1191.85" y="959.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (7,750 samples, 0.38%)</title><rect x="934.5" y="1365" width="4.4" height="15.0" fill="rgb(223,39,29)" rx="2" ry="2" />
<text x="937.49" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1397" width="0.3" height="15.0" fill="rgb(238,43,34)" rx="2" ry="2" />
<text x="1191.59" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (378 samples, 0.02%)</title><rect x="769.6" y="1205" width="0.2" height="15.0" fill="rgb(228,106,22)" rx="2" ry="2" />
<text x="772.63" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Object_graph__fun_4378 (444 samples, 0.02%)</title><rect x="775.5" y="1445" width="0.2" height="15.0" fill="rgb(221,45,50)" rx="2" ry="2" />
<text x="778.46" y="1455.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_795 (313 samples, 0.02%)</title><rect x="1185.9" y="1333" width="0.2" height="15.0" fill="rgb(242,81,9)" rx="2" ry="2" />
<text x="1188.89" y="1343.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (2,823 samples, 0.14%)</title><rect x="735.1" y="1477" width="1.6" height="15.0" fill="rgb(210,213,52)" rx="2" ry="2" />
<text x="738.08" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (742 samples, 0.04%)</title><rect x="767.7" y="1317" width="0.5" height="15.0" fill="rgb(242,71,7)" rx="2" ry="2" />
<text x="770.74" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2202 (585 samples, 0.03%)</title><rect x="847.6" y="1317" width="0.3" height="15.0" fill="rgb(221,131,5)" rx="2" ry="2" />
<text x="850.58" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (350 samples, 0.02%)</title><rect x="759.7" y="1317" width="0.2" height="15.0" fill="rgb(241,67,23)" rx="2" ry="2" />
<text x="762.65" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (7,213 samples, 0.35%)</title><rect x="542.9" y="1925" width="4.2" height="15.0" fill="rgb(230,116,9)" rx="2" ry="2" />
<text x="545.91" y="1935.5" ></text>
</g>
<g >
<title>caml_call_gc (230 samples, 0.01%)</title><rect x="1101.1" y="1269" width="0.1" height="15.0" fill="rgb(218,214,21)" rx="2" ry="2" />
<text x="1104.06" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (602 samples, 0.03%)</title><rect x="1101.9" y="1285" width="0.3" height="15.0" fill="rgb(239,127,54)" rx="2" ry="2" />
<text x="1104.85" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,543 samples, 0.08%)</title><rect x="992.9" y="1333" width="0.9" height="15.0" fill="rgb(246,156,1)" rx="2" ry="2" />
<text x="995.94" y="1343.5" ></text>
</g>
<g >
<title>caml_program (821,299 samples, 40.03%)</title><rect x="716.1" y="1941" width="472.4" height="15.0" fill="rgb(207,113,12)" rx="2" ry="2" />
<text x="719.10" y="1951.5" >caml_program</text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1669" width="0.2" height="15.0" fill="rgb(206,206,22)" rx="2" ry="2" />
<text x="1191.85" y="1679.5" ></text>
</g>
<g >
<title>caml_call_gc (1,562 samples, 0.08%)</title><rect x="231.0" y="1861" width="0.9" height="15.0" fill="rgb(245,100,39)" rx="2" ry="2" />
<text x="233.98" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (406 samples, 0.02%)</title><rect x="1071.5" y="1157" width="0.2" height="15.0" fill="rgb(236,168,42)" rx="2" ry="2" />
<text x="1074.47" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1669" width="0.3" height="15.0" fill="rgb(236,76,6)" rx="2" ry="2" />
<text x="1192.69" y="1679.5" ></text>
</g>
<g >
<title>caml_call_gc (197 samples, 0.01%)</title><rect x="1063.9" y="1253" width="0.2" height="15.0" fill="rgb(251,94,15)" rx="2" ry="2" />
<text x="1066.95" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (254 samples, 0.01%)</title><rect x="870.7" y="1365" width="0.1" height="15.0" fill="rgb(248,107,24)" rx="2" ry="2" />
<text x="873.68" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (398 samples, 0.02%)</title><rect x="418.2" y="1877" width="0.2" height="15.0" fill="rgb(209,93,10)" rx="2" ry="2" />
<text x="421.18" y="1887.5" ></text>
</g>
<g >
<title>mark_slice (734 samples, 0.04%)</title><rect x="703.6" y="1781" width="0.4" height="15.0" fill="rgb(224,196,33)" rx="2" ry="2" />
<text x="706.60" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (470 samples, 0.02%)</title><rect x="1163.8" y="1189" width="0.3" height="15.0" fill="rgb(252,25,5)" rx="2" ry="2" />
<text x="1166.81" y="1199.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (204 samples, 0.01%)</title><rect x="145.9" y="1845" width="0.1" height="15.0" fill="rgb(209,212,25)" rx="2" ry="2" />
<text x="148.85" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1557" width="0.2" height="15.0" fill="rgb(210,182,34)" rx="2" ry="2" />
<text x="1191.85" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__record_683 (472 samples, 0.02%)</title><rect x="1122.2" y="1413" width="0.3" height="15.0" fill="rgb(214,201,34)" rx="2" ry="2" />
<text x="1125.19" y="1423.5" ></text>
</g>
<g >
<title>camlFiber__exec_in_479 (360 samples, 0.02%)</title><rect x="10.2" y="1445" width="0.2" height="15.0" fill="rgb(216,188,42)" rx="2" ry="2" />
<text x="13.16" y="1455.5" ></text>
</g>
<g >
<title>caml_string_equal (514 samples, 0.03%)</title><rect x="928.5" y="1333" width="0.3" height="15.0" fill="rgb(222,181,3)" rx="2" ry="2" />
<text x="931.48" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (680 samples, 0.03%)</title><rect x="338.3" y="1845" width="0.4" height="15.0" fill="rgb(253,224,48)" rx="2" ry="2" />
<text x="341.33" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (231 samples, 0.01%)</title><rect x="1188.9" y="213" width="0.2" height="15.0" fill="rgb(211,0,32)" rx="2" ry="2" />
<text x="1191.93" y="223.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (300 samples, 0.01%)</title><rect x="1189.5" y="149" width="0.2" height="15.0" fill="rgb(238,117,44)" rx="2" ry="2" />
<text x="1192.50" y="159.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (227 samples, 0.01%)</title><rect x="1042.7" y="1301" width="0.1" height="15.0" fill="rgb(247,52,54)" rx="2" ry="2" />
<text x="1045.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="645" width="0.2" height="15.0" fill="rgb(234,3,29)" rx="2" ry="2" />
<text x="1191.85" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,209 samples, 0.06%)</title><rect x="970.4" y="1205" width="0.6" height="15.0" fill="rgb(215,11,26)" rx="2" ry="2" />
<text x="973.35" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (236 samples, 0.01%)</title><rect x="1175.5" y="1141" width="0.2" height="15.0" fill="rgb(228,133,16)" rx="2" ry="2" />
<text x="1178.52" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__list_12242 (1,240 samples, 0.06%)</title><rect x="772.8" y="1477" width="0.7" height="15.0" fill="rgb(238,207,46)" rx="2" ry="2" />
<text x="775.78" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (259 samples, 0.01%)</title><rect x="878.2" y="1349" width="0.1" height="15.0" fill="rgb(224,133,51)" rx="2" ry="2" />
<text x="881.17" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (471 samples, 0.02%)</title><rect x="1162.3" y="1189" width="0.3" height="15.0" fill="rgb(224,169,42)" rx="2" ry="2" />
<text x="1165.32" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (354 samples, 0.02%)</title><rect x="750.7" y="1205" width="0.2" height="15.0" fill="rgb(236,79,12)" rx="2" ry="2" />
<text x="753.68" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="725" width="0.3" height="15.0" fill="rgb(226,160,12)" rx="2" ry="2" />
<text x="1192.69" y="735.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__pair_932 (425 samples, 0.02%)</title><rect x="825.2" y="1349" width="0.3" height="15.0" fill="rgb(208,5,10)" rx="2" ry="2" />
<text x="828.23" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (2,844 samples, 0.14%)</title><rect x="794.6" y="1285" width="1.7" height="15.0" fill="rgb(228,135,15)" rx="2" ry="2" />
<text x="797.63" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (619 samples, 0.03%)</title><rect x="1008.1" y="1285" width="0.3" height="15.0" fill="rgb(223,194,5)" rx="2" ry="2" />
<text x="1011.09" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (1,554 samples, 0.08%)</title><rect x="410.5" y="1893" width="0.9" height="15.0" fill="rgb(244,228,33)" rx="2" ry="2" />
<text x="413.49" y="1903.5" ></text>
</g>
<g >
<title>caml_thread_yield (907 samples, 0.04%)</title><rect x="1153.4" y="1205" width="0.5" height="15.0" fill="rgb(249,109,19)" rx="2" ry="2" />
<text x="1156.37" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_110 (1,186 samples, 0.06%)</title><rect x="423.1" y="1909" width="0.7" height="15.0" fill="rgb(234,52,4)" rx="2" ry="2" />
<text x="426.13" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (381 samples, 0.02%)</title><rect x="745.1" y="1253" width="0.2" height="15.0" fill="rgb(247,65,23)" rx="2" ry="2" />
<text x="748.13" y="1263.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (742 samples, 0.04%)</title><rect x="142.0" y="1829" width="0.4" height="15.0" fill="rgb(251,173,52)" rx="2" ry="2" />
<text x="144.99" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (373 samples, 0.02%)</title><rect x="790.4" y="1365" width="0.3" height="15.0" fill="rgb(230,121,7)" rx="2" ry="2" />
<text x="793.44" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181 samples, 0.01%)</title><rect x="882.7" y="1285" width="0.1" height="15.0" fill="rgb(209,201,45)" rx="2" ry="2" />
<text x="885.68" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (350 samples, 0.02%)</title><rect x="1032.1" y="1205" width="0.2" height="15.0" fill="rgb(205,155,40)" rx="2" ry="2" />
<text x="1035.13" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (2,837 samples, 0.14%)</title><rect x="879.2" y="1413" width="1.6" height="15.0" fill="rgb(228,167,39)" rx="2" ry="2" />
<text x="882.20" y="1423.5" ></text>
</g>
<g >
<title>caml_apply2 (182 samples, 0.01%)</title><rect x="1101.4" y="1285" width="0.1" height="15.0" fill="rgb(252,128,35)" rx="2" ry="2" />
<text x="1104.38" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (214 samples, 0.01%)</title><rect x="835.8" y="1317" width="0.1" height="15.0" fill="rgb(206,110,30)" rx="2" ry="2" />
<text x="838.82" y="1327.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (5,268 samples, 0.26%)</title><rect x="669.4" y="1877" width="3.1" height="15.0" fill="rgb(224,127,34)" rx="2" ry="2" />
<text x="672.45" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (599 samples, 0.03%)</title><rect x="843.3" y="1365" width="0.3" height="15.0" fill="rgb(245,17,20)" rx="2" ry="2" />
<text x="846.28" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__char_357 (776 samples, 0.04%)</title><rect x="422.0" y="1877" width="0.4" height="15.0" fill="rgb(221,157,22)" rx="2" ry="2" />
<text x="425.00" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (402 samples, 0.02%)</title><rect x="867.3" y="1237" width="0.3" height="15.0" fill="rgb(247,48,15)" rx="2" ry="2" />
<text x="870.34" y="1247.5" ></text>
</g>
<g >
<title>do_compare_val (181 samples, 0.01%)</title><rect x="839.4" y="1317" width="0.1" height="15.0" fill="rgb(215,200,36)" rx="2" ry="2" />
<text x="842.37" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (363 samples, 0.02%)</title><rect x="742.5" y="1365" width="0.2" height="15.0" fill="rgb(244,224,7)" rx="2" ry="2" />
<text x="745.51" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2570 (409 samples, 0.02%)</title><rect x="905.7" y="1205" width="0.2" height="15.0" fill="rgb(225,201,14)" rx="2" ry="2" />
<text x="908.68" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (219 samples, 0.01%)</title><rect x="1158.6" y="1173" width="0.1" height="15.0" fill="rgb(232,73,48)" rx="2" ry="2" />
<text x="1161.59" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (468 samples, 0.02%)</title><rect x="835.4" y="1317" width="0.2" height="15.0" fill="rgb(209,60,1)" rx="2" ry="2" />
<text x="838.37" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (244 samples, 0.01%)</title><rect x="803.6" y="1221" width="0.2" height="15.0" fill="rgb(224,148,41)" rx="2" ry="2" />
<text x="806.64" y="1231.5" ></text>
</g>
<g >
<title>futex_wake (271 samples, 0.01%)</title><rect x="1175.5" y="1189" width="0.2" height="15.0" fill="rgb(236,2,18)" rx="2" ry="2" />
<text x="1178.50" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (1,572 samples, 0.08%)</title><rect x="1057.6" y="1269" width="0.9" height="15.0" fill="rgb(226,147,5)" rx="2" ry="2" />
<text x="1060.55" y="1279.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (378 samples, 0.02%)</title><rect x="324.1" y="1829" width="0.3" height="15.0" fill="rgb(218,154,36)" rx="2" ry="2" />
<text x="327.13" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (213 samples, 0.01%)</title><rect x="826.4" y="1413" width="0.2" height="15.0" fill="rgb(210,51,19)" rx="2" ry="2" />
<text x="829.45" y="1423.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (217 samples, 0.01%)</title><rect x="1102.1" y="1269" width="0.1" height="15.0" fill="rgb(205,19,17)" rx="2" ry="2" />
<text x="1105.07" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_5832 (1,515 samples, 0.07%)</title><rect x="863.9" y="1349" width="0.8" height="15.0" fill="rgb(246,217,35)" rx="2" ry="2" />
<text x="866.86" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1109" width="0.3" height="15.0" fill="rgb(209,101,14)" rx="2" ry="2" />
<text x="1192.06" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (872 samples, 0.04%)</title><rect x="338.3" y="1877" width="0.5" height="15.0" fill="rgb(206,205,34)" rx="2" ry="2" />
<text x="341.29" y="1887.5" ></text>
</g>
<g >
<title>mark_slice (691 samples, 0.03%)</title><rect x="232.9" y="1845" width="0.4" height="15.0" fill="rgb(236,29,30)" rx="2" ry="2" />
<text x="235.90" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (230 samples, 0.01%)</title><rect x="787.0" y="1349" width="0.1" height="15.0" fill="rgb(221,157,40)" rx="2" ry="2" />
<text x="789.96" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (363 samples, 0.02%)</title><rect x="838.6" y="1221" width="0.2" height="15.0" fill="rgb(224,15,52)" rx="2" ry="2" />
<text x="841.62" y="1231.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (426 samples, 0.02%)</title><rect x="803.4" y="1237" width="0.2" height="15.0" fill="rgb(251,128,40)" rx="2" ry="2" />
<text x="806.38" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,358 samples, 0.07%)</title><rect x="261.7" y="1877" width="0.8" height="15.0" fill="rgb(248,191,44)" rx="2" ry="2" />
<text x="264.74" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (176 samples, 0.01%)</title><rect x="936.5" y="1285" width="0.1" height="15.0" fill="rgb(223,92,19)" rx="2" ry="2" />
<text x="939.47" y="1295.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (574 samples, 0.03%)</title><rect x="933.6" y="1253" width="0.3" height="15.0" fill="rgb(222,86,4)" rx="2" ry="2" />
<text x="936.57" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1381" width="0.3" height="15.0" fill="rgb(250,86,41)" rx="2" ry="2" />
<text x="1192.06" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (255,739 samples, 12.47%)</title><rect x="741.1" y="1653" width="147.1" height="15.0" fill="rgb(207,139,0)" rx="2" ry="2" />
<text x="744.11" y="1663.5" >camlIrmin_pack__Pa..</text>
</g>
<g >
<title>caml_process_pending_signals (256 samples, 0.01%)</title><rect x="35.7" y="2005" width="0.2" height="15.0" fill="rgb(229,95,12)" rx="2" ry="2" />
<text x="38.72" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (212 samples, 0.01%)</title><rect x="1179.5" y="1205" width="0.2" height="15.0" fill="rgb(228,177,16)" rx="2" ry="2" />
<text x="1182.53" y="1215.5" ></text>
</g>
<g >
<title>caml_hash (842 samples, 0.04%)</title><rect x="966.0" y="1253" width="0.5" height="15.0" fill="rgb(230,157,18)" rx="2" ry="2" />
<text x="969.01" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="309" width="0.3" height="15.0" fill="rgb(212,122,49)" rx="2" ry="2" />
<text x="1192.06" y="319.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (565 samples, 0.03%)</title><rect x="792.3" y="1317" width="0.3" height="15.0" fill="rgb(218,147,41)" rx="2" ry="2" />
<text x="795.31" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="245" width="0.3" height="15.0" fill="rgb(214,0,7)" rx="2" ry="2" />
<text x="1192.06" y="255.5" ></text>
</g>
<g >
<title>mark_slice (822 samples, 0.04%)</title><rect x="163.9" y="1829" width="0.4" height="15.0" fill="rgb(252,98,6)" rx="2" ry="2" />
<text x="166.88" y="1839.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (2,565 samples, 0.13%)</title><rect x="1130.8" y="1269" width="1.5" height="15.0" fill="rgb(205,133,41)" rx="2" ry="2" />
<text x="1133.84" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (457 samples, 0.02%)</title><rect x="1188.6" y="709" width="0.3" height="15.0" fill="rgb(241,166,32)" rx="2" ry="2" />
<text x="1191.59" y="719.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_619 (670 samples, 0.03%)</title><rect x="777.0" y="1381" width="0.3" height="15.0" fill="rgb(232,8,8)" rx="2" ry="2" />
<text x="779.95" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (4,141 samples, 0.20%)</title><rect x="325.1" y="1893" width="2.4" height="15.0" fill="rgb(243,19,31)" rx="2" ry="2" />
<text x="328.13" y="1903.5" ></text>
</g>
<g >
<title>camlIndex__Fan__export_388 (179 samples, 0.01%)</title><rect x="41.1" y="1957" width="0.1" height="15.0" fill="rgb(240,63,34)" rx="2" ry="2" />
<text x="44.10" y="1967.5" ></text>
</g>
<g >
<title>caml_thread_leave_blocking_section (529 samples, 0.03%)</title><rect x="36.4" y="2005" width="0.3" height="15.0" fill="rgb(247,54,44)" rx="2" ry="2" />
<text x="39.38" y="2015.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (470 samples, 0.02%)</title><rect x="1189.7" y="1541" width="0.3" height="15.0" fill="rgb(216,29,19)" rx="2" ry="2" />
<text x="1192.69" y="1551.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (628 samples, 0.03%)</title><rect x="777.0" y="1365" width="0.3" height="15.0" fill="rgb(239,195,44)" rx="2" ry="2" />
<text x="779.98" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2652 (199 samples, 0.01%)</title><rect x="756.9" y="1397" width="0.1" height="15.0" fill="rgb(245,228,19)" rx="2" ry="2" />
<text x="759.89" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (553 samples, 0.03%)</title><rect x="1189.4" y="1781" width="0.3" height="15.0" fill="rgb(244,137,48)" rx="2" ry="2" />
<text x="1192.37" y="1791.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (221 samples, 0.01%)</title><rect x="981.4" y="1365" width="0.1" height="15.0" fill="rgb(219,116,21)" rx="2" ry="2" />
<text x="984.35" y="1375.5" ></text>
</g>
<g >
<title>__libc_pread64 (195 samples, 0.01%)</title><rect x="1153.1" y="1189" width="0.1" height="15.0" fill="rgb(211,68,48)" rx="2" ry="2" />
<text x="1156.10" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (264 samples, 0.01%)</title><rect x="1159.6" y="1237" width="0.1" height="15.0" fill="rgb(243,60,31)" rx="2" ry="2" />
<text x="1162.59" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1509" width="0.3" height="15.0" fill="rgb(231,220,40)" rx="2" ry="2" />
<text x="1192.06" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_236 (2,297 samples, 0.11%)</title><rect x="862.1" y="1429" width="1.3" height="15.0" fill="rgb(215,214,36)" rx="2" ry="2" />
<text x="865.07" y="1439.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (367 samples, 0.02%)</title><rect x="837.5" y="1237" width="0.3" height="15.0" fill="rgb(241,55,29)" rx="2" ry="2" />
<text x="840.54" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Slice__iter_2289 (255,739 samples, 12.47%)</title><rect x="741.1" y="1637" width="147.1" height="15.0" fill="rgb(220,191,22)" rx="2" ry="2" />
<text x="744.11" y="1647.5" >camlIrmin__Slice__..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="1175.5" y="1173" width="0.2" height="15.0" fill="rgb(234,85,44)" rx="2" ry="2" />
<text x="1178.50" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (3,076 samples, 0.15%)</title><rect x="872.7" y="1349" width="1.7" height="15.0" fill="rgb(240,46,48)" rx="2" ry="2" />
<text x="875.66" y="1359.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (335 samples, 0.02%)</title><rect x="750.2" y="1205" width="0.2" height="15.0" fill="rgb(239,141,15)" rx="2" ry="2" />
<text x="753.18" y="1215.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (278 samples, 0.01%)</title><rect x="733.4" y="1381" width="0.2" height="15.0" fill="rgb(246,115,31)" rx="2" ry="2" />
<text x="736.41" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (1,246 samples, 0.06%)</title><rect x="704.5" y="1845" width="0.7" height="15.0" fill="rgb(209,152,3)" rx="2" ry="2" />
<text x="707.51" y="1855.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,373 samples, 0.07%)</title><rect x="503.6" y="1877" width="0.7" height="15.0" fill="rgb(228,223,39)" rx="2" ry="2" />
<text x="506.55" y="1887.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (1,617 samples, 0.08%)</title><rect x="1164.7" y="1237" width="0.9" height="15.0" fill="rgb(218,129,13)" rx="2" ry="2" />
<text x="1167.66" y="1247.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (530 samples, 0.03%)</title><rect x="709.9" y="1765" width="0.3" height="15.0" fill="rgb(225,29,51)" rx="2" ry="2" />
<text x="712.91" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__hash_11416 (187 samples, 0.01%)</title><rect x="941.0" y="1365" width="0.1" height="15.0" fill="rgb(240,30,2)" rx="2" ry="2" />
<text x="943.96" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_432 (327 samples, 0.02%)</title><rect x="1123.9" y="1381" width="0.2" height="15.0" fill="rgb(223,63,34)" rx="2" ry="2" />
<text x="1126.87" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (315 samples, 0.02%)</title><rect x="853.5" y="1237" width="0.1" height="15.0" fill="rgb(236,149,1)" rx="2" ry="2" />
<text x="856.46" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_1049 (8,590 samples, 0.42%)</title><rect x="1033.3" y="1381" width="4.9" height="15.0" fill="rgb(253,109,23)" rx="2" ry="2" />
<text x="1036.30" y="1391.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,048 samples, 0.05%)</title><rect x="1104.5" y="1269" width="0.6" height="15.0" fill="rgb(206,64,15)" rx="2" ry="2" />
<text x="1107.47" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__find_12294 (50,581 samples, 2.47%)</title><rect x="776.3" y="1477" width="29.1" height="15.0" fill="rgb(213,58,48)" rx="2" ry="2" />
<text x="779.26" y="1487.5" >ca..</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (430 samples, 0.02%)</title><rect x="1121.9" y="1397" width="0.3" height="15.0" fill="rgb(251,108,33)" rx="2" ry="2" />
<text x="1124.93" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,783 samples, 0.14%)</title><rect x="1162.0" y="1205" width="1.6" height="15.0" fill="rgb(210,55,42)" rx="2" ry="2" />
<text x="1165.03" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (196 samples, 0.01%)</title><rect x="772.9" y="1285" width="0.1" height="15.0" fill="rgb(226,76,26)" rx="2" ry="2" />
<text x="775.89" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (45,678 samples, 2.23%)</title><rect x="359.0" y="1909" width="26.3" height="15.0" fill="rgb(238,209,39)" rx="2" ry="2" />
<text x="362.01" y="1919.5" >c..</text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (16,569 samples, 0.81%)</title><rect x="348.8" y="1909" width="9.5" height="15.0" fill="rgb(238,225,23)" rx="2" ry="2" />
<text x="351.77" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (9,976 samples, 0.49%)</title><rect x="728.3" y="1493" width="5.7" height="15.0" fill="rgb(226,229,7)" rx="2" ry="2" />
<text x="731.28" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (1,730 samples, 0.08%)</title><rect x="980.9" y="1429" width="1.0" height="15.0" fill="rgb(244,149,23)" rx="2" ry="2" />
<text x="983.90" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15241 (239 samples, 0.01%)</title><rect x="1148.1" y="1365" width="0.1" height="15.0" fill="rgb(248,102,15)" rx="2" ry="2" />
<text x="1151.11" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (3,250 samples, 0.16%)</title><rect x="650.3" y="1797" width="1.8" height="15.0" fill="rgb(216,109,49)" rx="2" ry="2" />
<text x="653.27" y="1807.5" ></text>
</g>
<g >
<title>mark_slice_darken (718 samples, 0.03%)</title><rect x="167.0" y="1797" width="0.4" height="15.0" fill="rgb(247,108,12)" rx="2" ry="2" />
<text x="170.03" y="1807.5" ></text>
</g>
<g >
<title>caml_garbage_collection (868 samples, 0.04%)</title><rect x="703.6" y="1813" width="0.5" height="15.0" fill="rgb(230,202,5)" rx="2" ry="2" />
<text x="706.59" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="1061" width="0.3" height="15.0" fill="rgb(225,208,44)" rx="2" ry="2" />
<text x="1192.06" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (255 samples, 0.01%)</title><rect x="720.6" y="1397" width="0.1" height="15.0" fill="rgb(210,179,35)" rx="2" ry="2" />
<text x="723.57" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (561 samples, 0.03%)</title><rect x="780.4" y="1253" width="0.3" height="15.0" fill="rgb(214,122,37)" rx="2" ry="2" />
<text x="783.40" y="1263.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (349 samples, 0.02%)</title><rect x="1040.2" y="1381" width="0.2" height="15.0" fill="rgb(245,66,21)" rx="2" ry="2" />
<text x="1043.20" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (650 samples, 0.03%)</title><rect x="444.5" y="1845" width="0.4" height="15.0" fill="rgb(245,60,27)" rx="2" ry="2" />
<text x="447.50" y="1855.5" ></text>
</g>
<g >
<title>unix_read (12,635 samples, 0.62%)</title><rect x="29.4" y="2037" width="7.3" height="15.0" fill="rgb(239,75,16)" rx="2" ry="2" />
<text x="32.42" y="2047.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (522 samples, 0.03%)</title><rect x="798.2" y="1269" width="0.3" height="15.0" fill="rgb(241,229,0)" rx="2" ry="2" />
<text x="801.21" y="1279.5" ></text>
</g>
<g >
<title>caml_apply5 (15,638 samples, 0.76%)</title><rect x="1129.7" y="1413" width="9.0" height="15.0" fill="rgb(243,184,32)" rx="2" ry="2" />
<text x="1132.67" y="1423.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (74,266 samples, 3.62%)</title><rect x="1145.8" y="1749" width="42.7" height="15.0" fill="rgb(215,208,14)" rx="2" ry="2" />
<text x="1148.76" y="1759.5" >caml..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,721 samples, 1.45%)</title><rect x="675.9" y="1861" width="17.0" height="15.0" fill="rgb(230,86,24)" rx="2" ry="2" />
<text x="678.85" y="1871.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1007 (1,489 samples, 0.07%)</title><rect x="716.5" y="1541" width="0.8" height="15.0" fill="rgb(235,17,17)" rx="2" ry="2" />
<text x="719.47" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (266 samples, 0.01%)</title><rect x="1174.9" y="1157" width="0.1" height="15.0" fill="rgb(245,25,47)" rx="2" ry="2" />
<text x="1177.86" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (331 samples, 0.02%)</title><rect x="1147.8" y="1237" width="0.2" height="15.0" fill="rgb(225,66,33)" rx="2" ry="2" />
<text x="1150.83" y="1247.5" ></text>
</g>
<g >
<title>sha1_do_chunk (266 samples, 0.01%)</title><rect x="1147.2" y="1237" width="0.2" height="15.0" fill="rgb(209,213,35)" rx="2" ry="2" />
<text x="1150.23" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_623 (285 samples, 0.01%)</title><rect x="734.2" y="1509" width="0.1" height="15.0" fill="rgb(213,207,21)" rx="2" ry="2" />
<text x="737.18" y="1519.5" ></text>
</g>
<g >
<title>caml_enter_blocking_section (786 samples, 0.04%)</title><rect x="828.0" y="1365" width="0.4" height="15.0" fill="rgb(253,154,12)" rx="2" ry="2" />
<text x="830.95" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1077" width="0.3" height="15.0" fill="rgb(232,17,37)" rx="2" ry="2" />
<text x="1192.06" y="1087.5" ></text>
</g>
<g >
<title>sweep_slice (214 samples, 0.01%)</title><rect x="546.9" y="1893" width="0.2" height="15.0" fill="rgb(240,224,54)" rx="2" ry="2" />
<text x="549.94" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1205" width="0.3" height="15.0" fill="rgb(233,216,15)" rx="2" ry="2" />
<text x="1192.69" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__fun_13867 (255,673 samples, 12.46%)</title><rect x="741.2" y="1557" width="147.0" height="15.0" fill="rgb(232,76,48)" rx="2" ry="2" />
<text x="744.15" y="1567.5" >camlIrmin_pack__La..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_5768 (1,940 samples, 0.09%)</title><rect x="791.7" y="1397" width="1.1" height="15.0" fill="rgb(245,42,43)" rx="2" ry="2" />
<text x="794.67" y="1407.5" ></text>
</g>
<g >
<title>__pthread_cond_signal (1,633 samples, 0.08%)</title><rect x="943.0" y="1301" width="0.9" height="15.0" fill="rgb(236,202,15)" rx="2" ry="2" />
<text x="945.97" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (409 samples, 0.02%)</title><rect x="1163.8" y="1173" width="0.3" height="15.0" fill="rgb(248,13,3)" rx="2" ry="2" />
<text x="1166.84" y="1183.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (35,202 samples, 1.72%)</title><rect x="631.9" y="1829" width="20.2" height="15.0" fill="rgb(211,199,18)" rx="2" ry="2" />
<text x="634.89" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_5822 (72,333 samples, 3.53%)</title><rect x="1145.8" y="1525" width="41.6" height="15.0" fill="rgb(241,45,37)" rx="2" ry="2" />
<text x="1148.76" y="1535.5" >cam..</text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (435 samples, 0.02%)</title><rect x="1098.0" y="1317" width="0.3" height="15.0" fill="rgb(238,46,36)" rx="2" ry="2" />
<text x="1101.03" y="1327.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (509 samples, 0.02%)</title><rect x="702.4" y="1781" width="0.3" height="15.0" fill="rgb(250,145,27)" rx="2" ry="2" />
<text x="705.41" y="1791.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (218 samples, 0.01%)</title><rect x="1011.1" y="1269" width="0.1" height="15.0" fill="rgb(226,172,18)" rx="2" ry="2" />
<text x="1014.12" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (180 samples, 0.01%)</title><rect x="1037.3" y="1349" width="0.1" height="15.0" fill="rgb(210,11,25)" rx="2" ry="2" />
<text x="1040.29" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (385 samples, 0.02%)</title><rect x="1102.6" y="1317" width="0.3" height="15.0" fill="rgb(254,62,2)" rx="2" ry="2" />
<text x="1105.64" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="1013" width="0.2" height="15.0" fill="rgb(206,178,22)" rx="2" ry="2" />
<text x="1191.85" y="1023.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (258 samples, 0.01%)</title><rect x="1183.7" y="1173" width="0.1" height="15.0" fill="rgb(214,142,12)" rx="2" ry="2" />
<text x="1186.67" y="1183.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (358 samples, 0.02%)</title><rect x="1016.1" y="1317" width="0.2" height="15.0" fill="rgb(254,144,17)" rx="2" ry="2" />
<text x="1019.12" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="629" width="0.3" height="15.0" fill="rgb(237,167,33)" rx="2" ry="2" />
<text x="1192.06" y="639.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (1,333 samples, 0.06%)</title><rect x="882.8" y="1333" width="0.8" height="15.0" fill="rgb(235,137,33)" rx="2" ry="2" />
<text x="885.81" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (1,162 samples, 0.06%)</title><rect x="738.5" y="1589" width="0.7" height="15.0" fill="rgb(244,153,52)" rx="2" ry="2" />
<text x="741.53" y="1599.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (489 samples, 0.02%)</title><rect x="838.2" y="1269" width="0.2" height="15.0" fill="rgb(249,45,49)" rx="2" ry="2" />
<text x="841.15" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="885" width="0.3" height="15.0" fill="rgb(215,57,31)" rx="2" ry="2" />
<text x="1191.59" y="895.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (444 samples, 0.02%)</title><rect x="1189.7" y="229" width="0.3" height="15.0" fill="rgb(210,42,12)" rx="2" ry="2" />
<text x="1192.71" y="239.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (3,224 samples, 0.16%)</title><rect x="725.4" y="1477" width="1.8" height="15.0" fill="rgb(225,165,19)" rx="2" ry="2" />
<text x="728.39" y="1487.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (2,109 samples, 0.10%)</title><rect x="1146.4" y="1349" width="1.2" height="15.0" fill="rgb(210,98,47)" rx="2" ry="2" />
<text x="1149.39" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (822 samples, 0.04%)</title><rect x="1165.7" y="1221" width="0.5" height="15.0" fill="rgb(240,70,17)" rx="2" ry="2" />
<text x="1168.74" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (308 samples, 0.02%)</title><rect x="929.1" y="1317" width="0.1" height="15.0" fill="rgb(228,162,19)" rx="2" ry="2" />
<text x="932.06" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (279 samples, 0.01%)</title><rect x="854.2" y="1189" width="0.2" height="15.0" fill="rgb(218,132,29)" rx="2" ry="2" />
<text x="857.24" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_848 (73,873 samples, 3.60%)</title><rect x="1145.8" y="1621" width="42.4" height="15.0" fill="rgb(232,228,28)" rx="2" ry="2" />
<text x="1148.76" y="1631.5" >caml..</text>
</g>
<g >
<title>caml_enter_blocking_section (739 samples, 0.04%)</title><rect x="792.3" y="1333" width="0.4" height="15.0" fill="rgb(241,17,5)" rx="2" ry="2" />
<text x="795.30" y="1343.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,851 samples, 2.43%)</title><rect x="578.7" y="1861" width="28.7" height="15.0" fill="rgb(249,154,44)" rx="2" ry="2" />
<text x="581.71" y="1871.5" >[[..</text>
</g>
<g >
<title>caml_garbage_collection (803 samples, 0.04%)</title><rect x="105.2" y="1861" width="0.5" height="15.0" fill="rgb(216,137,15)" rx="2" ry="2" />
<text x="108.24" y="1871.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_203 (207 samples, 0.01%)</title><rect x="1110.6" y="1349" width="0.1" height="15.0" fill="rgb(225,35,36)" rx="2" ry="2" />
<text x="1113.57" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1973 (318 samples, 0.02%)</title><rect x="704.6" y="1829" width="0.2" height="15.0" fill="rgb(248,119,19)" rx="2" ry="2" />
<text x="707.64" y="1839.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (215 samples, 0.01%)</title><rect x="1184.1" y="1141" width="0.1" height="15.0" fill="rgb(235,198,19)" rx="2" ry="2" />
<text x="1187.12" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_1553 (407 samples, 0.02%)</title><rect x="1185.1" y="1301" width="0.3" height="15.0" fill="rgb(245,213,7)" rx="2" ry="2" />
<text x="1188.12" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (563 samples, 0.03%)</title><rect x="904.7" y="1221" width="0.3" height="15.0" fill="rgb(210,158,7)" rx="2" ry="2" />
<text x="907.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (282 samples, 0.01%)</title><rect x="859.2" y="1349" width="0.1" height="15.0" fill="rgb(248,184,15)" rx="2" ry="2" />
<text x="862.15" y="1359.5" ></text>
</g>
<g >
<title>__condvar_fetch_xor_wseq_release (3,005 samples, 0.15%)</title><rect x="622.5" y="1877" width="1.7" height="15.0" fill="rgb(223,220,1)" rx="2" ry="2" />
<text x="625.51" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,169 samples, 0.06%)</title><rect x="901.4" y="1221" width="0.7" height="15.0" fill="rgb(215,47,14)" rx="2" ry="2" />
<text x="904.41" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Fan__update_208 (4,288 samples, 0.21%)</title><rect x="85.7" y="1925" width="2.5" height="15.0" fill="rgb(254,70,46)" rx="2" ry="2" />
<text x="88.75" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (685 samples, 0.03%)</title><rect x="1148.6" y="1285" width="0.4" height="15.0" fill="rgb(238,196,41)" rx="2" ry="2" />
<text x="1151.59" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_269 (8,999 samples, 0.44%)</title><rect x="1112.3" y="1365" width="5.2" height="15.0" fill="rgb(222,150,7)" rx="2" ry="2" />
<text x="1115.31" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="757" width="0.3" height="15.0" fill="rgb(218,204,52)" rx="2" ry="2" />
<text x="1191.59" y="767.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (502 samples, 0.02%)</title><rect x="910.6" y="1205" width="0.3" height="15.0" fill="rgb(230,51,49)" rx="2" ry="2" />
<text x="913.64" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_665 (1,980 samples, 0.10%)</title><rect x="704.1" y="1861" width="1.1" height="15.0" fill="rgb(223,225,26)" rx="2" ry="2" />
<text x="707.09" y="1871.5" ></text>
</g>
<g >
<title>caml_startup_exn (821,302 samples, 40.03%)</title><rect x="716.1" y="1989" width="472.4" height="15.0" fill="rgb(241,210,27)" rx="2" ry="2" />
<text x="719.10" y="1999.5" >caml_startup_exn</text>
</g>
<g >
<title>caml_garbage_collection (452 samples, 0.02%)</title><rect x="1006.3" y="1237" width="0.3" height="15.0" fill="rgb(240,20,50)" rx="2" ry="2" />
<text x="1009.30" y="1247.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (293 samples, 0.01%)</title><rect x="1184.1" y="1205" width="0.1" height="15.0" fill="rgb(205,91,29)" rx="2" ry="2" />
<text x="1187.08" y="1215.5" ></text>
</g>
<g >
<title>__pthread_cond_wait_common (563 samples, 0.03%)</title><rect x="785.6" y="1237" width="0.3" height="15.0" fill="rgb(248,104,6)" rx="2" ry="2" />
<text x="788.58" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (589 samples, 0.03%)</title><rect x="742.8" y="1349" width="0.4" height="15.0" fill="rgb(213,133,16)" rx="2" ry="2" />
<text x="745.84" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__aux_170 (226 samples, 0.01%)</title><rect x="849.2" y="1317" width="0.1" height="15.0" fill="rgb(243,45,32)" rx="2" ry="2" />
<text x="852.18" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (841 samples, 0.04%)</title><rect x="1027.1" y="1381" width="0.5" height="15.0" fill="rgb(240,201,2)" rx="2" ry="2" />
<text x="1030.14" y="1391.5" ></text>
</g>
<g >
<title>caml_apply2 (219 samples, 0.01%)</title><rect x="832.4" y="1285" width="0.1" height="15.0" fill="rgb(253,13,47)" rx="2" ry="2" />
<text x="835.40" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (528 samples, 0.03%)</title><rect x="1189.1" y="741" width="0.3" height="15.0" fill="rgb(251,177,53)" rx="2" ry="2" />
<text x="1192.06" y="751.5" ></text>
</g>
<g >
<title>caml_digestif_sha1_st_finalize (302 samples, 0.01%)</title><rect x="717.1" y="1493" width="0.2" height="15.0" fill="rgb(211,125,9)" rx="2" ry="2" />
<text x="720.11" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (190 samples, 0.01%)</title><rect x="772.9" y="1269" width="0.1" height="15.0" fill="rgb(208,155,1)" rx="2" ry="2" />
<text x="775.89" y="1279.5" ></text>
</g>
<g >
<title>__libc_pread64 (438 samples, 0.02%)</title><rect x="837.5" y="1301" width="0.3" height="15.0" fill="rgb(219,97,49)" rx="2" ry="2" />
<text x="840.50" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (6,693 samples, 0.33%)</title><rect x="863.7" y="1397" width="3.9" height="15.0" fill="rgb(237,9,33)" rx="2" ry="2" />
<text x="866.73" y="1407.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (71,180 samples, 3.47%)</title><rect x="652.1" y="1909" width="41.0" height="15.0" fill="rgb(242,199,24)" rx="2" ry="2" />
<text x="655.14" y="1919.5" >__p..</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (1,287 samples, 0.06%)</title><rect x="832.9" y="1301" width="0.7" height="15.0" fill="rgb(251,99,25)" rx="2" ry="2" />
<text x="835.87" y="1311.5" ></text>
</g>
<g >
<title>__condvar_quiesce_and_switch_g1 (258 samples, 0.01%)</title><rect x="971.2" y="1237" width="0.1" height="15.0" fill="rgb(206,143,15)" rx="2" ry="2" />
<text x="974.17" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (203 samples, 0.01%)</title><rect x="855.5" y="1381" width="0.1" height="15.0" fill="rgb(214,202,43)" rx="2" ry="2" />
<text x="858.51" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (267 samples, 0.01%)</title><rect x="800.6" y="1285" width="0.2" height="15.0" fill="rgb(227,170,21)" rx="2" ry="2" />
<text x="803.62" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (2,033 samples, 0.10%)</title><rect x="986.5" y="1365" width="1.2" height="15.0" fill="rgb(226,62,9)" rx="2" ry="2" />
<text x="989.50" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (230 samples, 0.01%)</title><rect x="819.6" y="1189" width="0.1" height="15.0" fill="rgb(240,179,22)" rx="2" ry="2" />
<text x="822.56" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (2,302 samples, 0.11%)</title><rect x="986.4" y="1397" width="1.3" height="15.0" fill="rgb(239,46,2)" rx="2" ry="2" />
<text x="989.39" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1493" width="0.3" height="15.0" fill="rgb(233,96,13)" rx="2" ry="2" />
<text x="1191.59" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (217 samples, 0.01%)</title><rect x="1127.2" y="1333" width="0.2" height="15.0" fill="rgb(242,48,33)" rx="2" ry="2" />
<text x="1130.23" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="869" width="0.3" height="15.0" fill="rgb(221,69,35)" rx="2" ry="2" />
<text x="1192.69" y="879.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (219 samples, 0.01%)</title><rect x="1188.9" y="149" width="0.2" height="15.0" fill="rgb(243,25,11)" rx="2" ry="2" />
<text x="1191.93" y="159.5" ></text>
</g>
<g >
<title>caml_hash (273 samples, 0.01%)</title><rect x="1110.8" y="1317" width="0.2" height="15.0" fill="rgb(238,33,21)" rx="2" ry="2" />
<text x="1113.80" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (881 samples, 0.04%)</title><rect x="1042.9" y="1237" width="0.5" height="15.0" fill="rgb(248,62,13)" rx="2" ry="2" />
<text x="1045.92" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (498 samples, 0.02%)</title><rect x="742.9" y="1333" width="0.3" height="15.0" fill="rgb(236,33,10)" rx="2" ry="2" />
<text x="745.87" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_hash_5663 (1,103 samples, 0.05%)</title><rect x="823.9" y="1365" width="0.6" height="15.0" fill="rgb(205,139,40)" rx="2" ry="2" />
<text x="826.85" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (631 samples, 0.03%)</title><rect x="801.0" y="1301" width="0.3" height="15.0" fill="rgb(240,17,49)" rx="2" ry="2" />
<text x="803.97" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__prim_682 (206 samples, 0.01%)</title><rect x="834.8" y="1285" width="0.1" height="15.0" fill="rgb(216,138,12)" rx="2" ry="2" />
<text x="837.77" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,515 samples, 0.07%)</title><rect x="100.3" y="1877" width="0.8" height="15.0" fill="rgb(230,61,23)" rx="2" ry="2" />
<text x="103.28" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (198 samples, 0.01%)</title><rect x="867.5" y="1077" width="0.1" height="15.0" fill="rgb(212,139,9)" rx="2" ry="2" />
<text x="870.45" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__fun_2826 (1,084 samples, 0.05%)</title><rect x="989.1" y="1461" width="0.6" height="15.0" fill="rgb(244,75,19)" rx="2" ry="2" />
<text x="992.06" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (553 samples, 0.03%)</title><rect x="1189.4" y="1477" width="0.3" height="15.0" fill="rgb(222,145,15)" rx="2" ry="2" />
<text x="1192.37" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (551 samples, 0.03%)</title><rect x="1189.4" y="261" width="0.3" height="15.0" fill="rgb(243,202,48)" rx="2" ry="2" />
<text x="1192.37" y="271.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="773" width="0.3" height="15.0" fill="rgb(225,117,7)" rx="2" ry="2" />
<text x="1192.06" y="783.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (512 samples, 0.02%)</title><rect x="867.3" y="1317" width="0.3" height="15.0" fill="rgb(229,31,23)" rx="2" ry="2" />
<text x="870.27" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (601 samples, 0.03%)</title><rect x="705.8" y="1749" width="0.3" height="15.0" fill="rgb(247,41,47)" rx="2" ry="2" />
<text x="708.80" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (528 samples, 0.03%)</title><rect x="1189.1" y="1909" width="0.3" height="15.0" fill="rgb(223,34,52)" rx="2" ry="2" />
<text x="1192.06" y="1919.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,129 samples, 0.06%)</title><rect x="923.6" y="1189" width="0.6" height="15.0" fill="rgb(214,150,15)" rx="2" ry="2" />
<text x="926.59" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,114 samples, 0.05%)</title><rect x="1019.8" y="1221" width="0.7" height="15.0" fill="rgb(214,213,8)" rx="2" ry="2" />
<text x="1022.84" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (361 samples, 0.02%)</title><rect x="1188.9" y="405" width="0.2" height="15.0" fill="rgb(253,72,47)" rx="2" ry="2" />
<text x="1191.85" y="415.5" ></text>
</g>
<g >
<title>camlIndex_unix__sync_inner_2153 (504 samples, 0.02%)</title><rect x="701.4" y="1909" width="0.3" height="15.0" fill="rgb(236,209,17)" rx="2" ry="2" />
<text x="704.45" y="1919.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (451 samples, 0.02%)</title><rect x="1059.9" y="1237" width="0.3" height="15.0" fill="rgb(247,217,38)" rx="2" ry="2" />
<text x="1062.90" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (181 samples, 0.01%)</title><rect x="987.9" y="1413" width="0.1" height="15.0" fill="rgb(249,107,2)" rx="2" ry="2" />
<text x="990.85" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_188 (692 samples, 0.03%)</title><rect x="867.9" y="1461" width="0.4" height="15.0" fill="rgb(233,137,16)" rx="2" ry="2" />
<text x="870.90" y="1471.5" ></text>
</g>
<g >
<title>caml_hash (37,902 samples, 1.85%)</title><rect x="363.5" y="1893" width="21.8" height="15.0" fill="rgb(233,214,21)" rx="2" ry="2" />
<text x="366.48" y="1903.5" >c..</text>
</g>
<g >
<title>__pthread_cond_wait_common (1,094 samples, 0.05%)</title><rect x="853.8" y="1301" width="0.6" height="15.0" fill="rgb(229,81,43)" rx="2" ry="2" />
<text x="856.79" y="1311.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,382 samples, 0.07%)</title><rect x="768.4" y="1317" width="0.8" height="15.0" fill="rgb(218,226,16)" rx="2" ry="2" />
<text x="771.39" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (2,246 samples, 0.11%)</title><rect x="778.8" y="1269" width="1.3" height="15.0" fill="rgb(246,13,52)" rx="2" ry="2" />
<text x="781.80" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (5,252 samples, 0.26%)</title><rect x="734.9" y="1509" width="3.1" height="15.0" fill="rgb(251,72,33)" rx="2" ry="2" />
<text x="737.93" y="1519.5" ></text>
</g>
<g >
<title>caml_call_gc (1,410 samples, 0.07%)</title><rect x="706.6" y="1845" width="0.8" height="15.0" fill="rgb(236,160,9)" rx="2" ry="2" />
<text x="709.57" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (501 samples, 0.02%)</title><rect x="720.0" y="1381" width="0.3" height="15.0" fill="rgb(208,171,54)" rx="2" ry="2" />
<text x="722.99" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__int32_856 (178 samples, 0.01%)</title><rect x="1054.2" y="1253" width="0.1" height="15.0" fill="rgb(247,85,36)" rx="2" ry="2" />
<text x="1057.24" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (523 samples, 0.03%)</title><rect x="1181.6" y="1221" width="0.3" height="15.0" fill="rgb(222,128,26)" rx="2" ry="2" />
<text x="1184.56" y="1231.5" ></text>
</g>
<g >
<title>caml_thread_yield (7,816 samples, 0.38%)</title><rect x="920.5" y="1253" width="4.5" height="15.0" fill="rgb(254,227,9)" rx="2" ry="2" />
<text x="923.48" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_513 (2,506 samples, 0.12%)</title><rect x="1183.3" y="1269" width="1.5" height="15.0" fill="rgb(244,125,22)" rx="2" ry="2" />
<text x="1186.33" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (906 samples, 0.04%)</title><rect x="1170.1" y="1189" width="0.5" height="15.0" fill="rgb(247,93,24)" rx="2" ry="2" />
<text x="1173.05" y="1199.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,185 samples, 0.30%)</title><rect x="31.4" y="1973" width="3.6" height="15.0" fill="rgb(240,229,11)" rx="2" ry="2" />
<text x="34.41" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="837" width="0.3" height="15.0" fill="rgb(228,162,44)" rx="2" ry="2" />
<text x="1191.59" y="847.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (487 samples, 0.02%)</title><rect x="231.9" y="1861" width="0.3" height="15.0" fill="rgb(211,173,46)" rx="2" ry="2" />
<text x="234.88" y="1871.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (485 samples, 0.02%)</title><rect x="838.2" y="1253" width="0.2" height="15.0" fill="rgb(244,127,22)" rx="2" ry="2" />
<text x="841.15" y="1263.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (508 samples, 0.02%)</title><rect x="882.3" y="1285" width="0.2" height="15.0" fill="rgb(226,53,31)" rx="2" ry="2" />
<text x="885.25" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="997" width="0.3" height="15.0" fill="rgb(242,228,28)" rx="2" ry="2" />
<text x="1191.59" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (257 samples, 0.01%)</title><rect x="1158.6" y="1253" width="0.1" height="15.0" fill="rgb(236,208,14)" rx="2" ry="2" />
<text x="1161.57" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (191 samples, 0.01%)</title><rect x="958.7" y="1237" width="0.1" height="15.0" fill="rgb(249,66,4)" rx="2" ry="2" />
<text x="961.71" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_1921 (340 samples, 0.02%)</title><rect x="1156.8" y="1285" width="0.2" height="15.0" fill="rgb(233,200,26)" rx="2" ry="2" />
<text x="1159.79" y="1295.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (220 samples, 0.01%)</title><rect x="1166.7" y="1093" width="0.1" height="15.0" fill="rgb(217,166,50)" rx="2" ry="2" />
<text x="1169.71" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1173" width="0.3" height="15.0" fill="rgb(219,167,43)" rx="2" ry="2" />
<text x="1191.59" y="1183.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (767 samples, 0.04%)</title><rect x="312.1" y="1797" width="0.5" height="15.0" fill="rgb(248,229,16)" rx="2" ry="2" />
<text x="315.11" y="1807.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (731 samples, 0.04%)</title><rect x="742.3" y="1381" width="0.4" height="15.0" fill="rgb(245,12,44)" rx="2" ry="2" />
<text x="745.30" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (470 samples, 0.02%)</title><rect x="1189.7" y="437" width="0.3" height="15.0" fill="rgb(240,228,42)" rx="2" ry="2" />
<text x="1192.69" y="447.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,360 samples, 0.07%)</title><rect x="1101.6" y="1317" width="0.8" height="15.0" fill="rgb(220,85,40)" rx="2" ry="2" />
<text x="1104.63" y="1327.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (177 samples, 0.01%)</title><rect x="722.1" y="1365" width="0.1" height="15.0" fill="rgb(247,95,30)" rx="2" ry="2" />
<text x="725.11" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (2,801 samples, 0.14%)</title><rect x="823.1" y="1397" width="1.6" height="15.0" fill="rgb(209,145,28)" rx="2" ry="2" />
<text x="826.09" y="1407.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (270 samples, 0.01%)</title><rect x="669.0" y="1781" width="0.1" height="15.0" fill="rgb(232,105,37)" rx="2" ry="2" />
<text x="671.95" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (457 samples, 0.02%)</title><rect x="1188.6" y="1093" width="0.3" height="15.0" fill="rgb(208,46,33)" rx="2" ry="2" />
<text x="1191.59" y="1103.5" ></text>
</g>
<g >
<title>caml_string_equal (193 samples, 0.01%)</title><rect x="727.9" y="1429" width="0.1" height="15.0" fill="rgb(207,74,28)" rx="2" ry="2" />
<text x="730.94" y="1439.5" ></text>
</g>
<g >
<title>caml_hash (248 samples, 0.01%)</title><rect x="1026.6" y="1317" width="0.2" height="15.0" fill="rgb(231,51,41)" rx="2" ry="2" />
<text x="1029.65" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (680 samples, 0.03%)</title><rect x="965.2" y="1269" width="0.4" height="15.0" fill="rgb(218,103,3)" rx="2" ry="2" />
<text x="968.16" y="1279.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (363 samples, 0.02%)</title><rect x="828.1" y="1285" width="0.2" height="15.0" fill="rgb(232,202,44)" rx="2" ry="2" />
<text x="831.10" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_789 (351 samples, 0.02%)</title><rect x="1155.3" y="1269" width="0.2" height="15.0" fill="rgb(229,8,1)" rx="2" ry="2" />
<text x="1158.27" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (53,353 samples, 2.60%)</title><rect x="1044.1" y="1381" width="30.7" height="15.0" fill="rgb(210,200,6)" rx="2" ry="2" />
<text x="1047.09" y="1391.5" >ca..</text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_219 (301 samples, 0.01%)</title><rect x="843.7" y="1397" width="0.2" height="15.0" fill="rgb(229,58,12)" rx="2" ry="2" />
<text x="846.73" y="1407.5" ></text>
</g>
<g >
<title>caml_modify (2,289 samples, 0.11%)</title><rect x="445.4" y="1925" width="1.4" height="15.0" fill="rgb(208,141,27)" rx="2" ry="2" />
<text x="448.45" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_225 (186 samples, 0.01%)</title><rect x="1147.7" y="1253" width="0.1" height="15.0" fill="rgb(219,44,22)" rx="2" ry="2" />
<text x="1150.68" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,056 samples, 0.05%)</title><rect x="324.4" y="1813" width="0.6" height="15.0" fill="rgb(216,33,50)" rx="2" ry="2" />
<text x="327.40" y="1823.5" ></text>
</g>
<g >
<title>caml_obj_tag (244 samples, 0.01%)</title><rect x="926.4" y="1285" width="0.1" height="15.0" fill="rgb(247,43,14)" rx="2" ry="2" />
<text x="929.38" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_5754 (881 samples, 0.04%)</title><rect x="1185.6" y="1349" width="0.5" height="15.0" fill="rgb(241,59,2)" rx="2" ry="2" />
<text x="1188.56" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__string_inner_2127 (1,032 samples, 0.05%)</title><rect x="1000.2" y="1269" width="0.6" height="15.0" fill="rgb(247,69,49)" rx="2" ry="2" />
<text x="1003.22" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__string_328 (6,037 samples, 0.29%)</title><rect x="450.0" y="1941" width="3.5" height="15.0" fill="rgb(205,73,24)" rx="2" ry="2" />
<text x="453.03" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,436 samples, 0.07%)</title><rect x="834.1" y="1317" width="0.8" height="15.0" fill="rgb(219,124,25)" rx="2" ry="2" />
<text x="837.08" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__offset_687 (223 samples, 0.01%)</title><rect x="88.2" y="1925" width="0.1" height="15.0" fill="rgb(222,52,25)" rx="2" ry="2" />
<text x="91.21" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_782 (775 samples, 0.04%)</title><rect x="1118.5" y="1349" width="0.5" height="15.0" fill="rgb(209,130,30)" rx="2" ry="2" />
<text x="1121.52" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_1603 (871 samples, 0.04%)</title><rect x="727.8" y="1493" width="0.5" height="15.0" fill="rgb(234,214,14)" rx="2" ry="2" />
<text x="730.78" y="1503.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (2,608 samples, 0.13%)</title><rect x="915.0" y="1269" width="1.5" height="15.0" fill="rgb(231,129,24)" rx="2" ry="2" />
<text x="918.03" y="1279.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (464 samples, 0.02%)</title><rect x="232.6" y="1845" width="0.3" height="15.0" fill="rgb(221,73,11)" rx="2" ry="2" />
<text x="235.64" y="1855.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_483 (1,041 samples, 0.05%)</title><rect x="749.8" y="1301" width="0.6" height="15.0" fill="rgb(206,91,38)" rx="2" ry="2" />
<text x="752.77" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4876 (393 samples, 0.02%)</title><rect x="1173.5" y="1237" width="0.3" height="15.0" fill="rgb(212,11,14)" rx="2" ry="2" />
<text x="1176.53" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_4779 (19,271 samples, 0.94%)</title><rect x="716.3" y="1605" width="11.1" height="15.0" fill="rgb(239,140,25)" rx="2" ry="2" />
<text x="719.34" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="277" width="0.2" height="15.0" fill="rgb(209,140,39)" rx="2" ry="2" />
<text x="1191.85" y="287.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_p_163 (947 samples, 0.05%)</title><rect x="1141.6" y="1477" width="0.5" height="15.0" fill="rgb(237,183,18)" rx="2" ry="2" />
<text x="1144.58" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (528 samples, 0.03%)</title><rect x="1189.1" y="1893" width="0.3" height="15.0" fill="rgb(252,37,16)" rx="2" ry="2" />
<text x="1192.06" y="1903.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (474 samples, 0.02%)</title><rect x="802.7" y="1221" width="0.3" height="15.0" fill="rgb(240,126,44)" rx="2" ry="2" />
<text x="805.72" y="1231.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (229 samples, 0.01%)</title><rect x="1025.7" y="1381" width="0.1" height="15.0" fill="rgb(243,74,38)" rx="2" ry="2" />
<text x="1028.68" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (355 samples, 0.02%)</title><rect x="822.1" y="1429" width="0.2" height="15.0" fill="rgb(231,27,36)" rx="2" ry="2" />
<text x="825.10" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (437 samples, 0.02%)</title><rect x="867.3" y="1269" width="0.3" height="15.0" fill="rgb(232,2,19)" rx="2" ry="2" />
<text x="870.32" y="1279.5" ></text>
</g>
<g >
<title>compare_val (226 samples, 0.01%)</title><rect x="839.3" y="1333" width="0.2" height="15.0" fill="rgb(226,123,0)" rx="2" ry="2" />
<text x="842.34" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (364 samples, 0.02%)</title><rect x="1177.5" y="1285" width="0.2" height="15.0" fill="rgb(241,79,44)" rx="2" ry="2" />
<text x="1180.53" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__aux_335 (1,480 samples, 0.07%)</title><rect x="941.8" y="1349" width="0.8" height="15.0" fill="rgb(214,40,48)" rx="2" ry="2" />
<text x="944.75" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (451 samples, 0.02%)</title><rect x="808.2" y="1349" width="0.3" height="15.0" fill="rgb(239,96,50)" rx="2" ry="2" />
<text x="811.20" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (361 samples, 0.02%)</title><rect x="1188.9" y="1141" width="0.2" height="15.0" fill="rgb(209,23,5)" rx="2" ry="2" />
<text x="1191.85" y="1151.5" ></text>
</g>
<g >
<title>caml_thread_yield (256 samples, 0.01%)</title><rect x="815.3" y="1317" width="0.1" height="15.0" fill="rgb(230,162,17)" rx="2" ry="2" />
<text x="818.27" y="1327.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (496 samples, 0.02%)</title><rect x="1022.1" y="1205" width="0.3" height="15.0" fill="rgb(218,5,23)" rx="2" ry="2" />
<text x="1025.15" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (283 samples, 0.01%)</title><rect x="833.8" y="1285" width="0.2" height="15.0" fill="rgb(239,181,17)" rx="2" ry="2" />
<text x="836.80" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__bind_1215 (280 samples, 0.01%)</title><rect x="1028.8" y="1445" width="0.2" height="15.0" fill="rgb(221,107,46)" rx="2" ry="2" />
<text x="1031.79" y="1455.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,669 samples, 0.13%)</title><rect x="769.2" y="1317" width="1.5" height="15.0" fill="rgb(254,14,1)" rx="2" ry="2" />
<text x="772.18" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (316 samples, 0.02%)</title><rect x="886.9" y="1461" width="0.2" height="15.0" fill="rgb(224,98,43)" rx="2" ry="2" />
<text x="889.93" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (311 samples, 0.02%)</title><rect x="1006.4" y="1205" width="0.1" height="15.0" fill="rgb(232,12,54)" rx="2" ry="2" />
<text x="1009.35" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__tuple_965 (923 samples, 0.04%)</title><rect x="781.1" y="1237" width="0.5" height="15.0" fill="rgb(235,147,0)" rx="2" ry="2" />
<text x="784.05" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__apply_1991 (268 samples, 0.01%)</title><rect x="886.4" y="1477" width="0.2" height="15.0" fill="rgb(216,72,52)" rx="2" ry="2" />
<text x="889.41" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_1466 (7,240 samples, 0.35%)</title><rect x="407.2" y="1909" width="4.2" height="15.0" fill="rgb(228,129,54)" rx="2" ry="2" />
<text x="410.22" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="725" width="0.3" height="15.0" fill="rgb(253,83,52)" rx="2" ry="2" />
<text x="1192.06" y="735.5" ></text>
</g>
<g >
<title>sweep_slice (249 samples, 0.01%)</title><rect x="335.1" y="1813" width="0.1" height="15.0" fill="rgb(234,46,21)" rx="2" ry="2" />
<text x="338.10" y="1823.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (385 samples, 0.02%)</title><rect x="770.0" y="1205" width="0.2" height="15.0" fill="rgb(241,76,2)" rx="2" ry="2" />
<text x="773.01" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="645" width="0.3" height="15.0" fill="rgb(247,13,11)" rx="2" ry="2" />
<text x="1192.06" y="655.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (406 samples, 0.02%)</title><rect x="1118.0" y="1317" width="0.2" height="15.0" fill="rgb(205,109,43)" rx="2" ry="2" />
<text x="1120.98" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_ordered__variant_618 (567 samples, 0.03%)</title><rect x="1144.9" y="1461" width="0.3" height="15.0" fill="rgb(214,174,6)" rx="2" ry="2" />
<text x="1147.86" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (528 samples, 0.03%)</title><rect x="1189.1" y="1125" width="0.3" height="15.0" fill="rgb(225,129,37)" rx="2" ry="2" />
<text x="1192.06" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2180 (195 samples, 0.01%)</title><rect x="755.4" y="1333" width="0.1" height="15.0" fill="rgb(252,172,0)" rx="2" ry="2" />
<text x="758.40" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (375 samples, 0.02%)</title><rect x="709.6" y="1829" width="0.3" height="15.0" fill="rgb(225,140,46)" rx="2" ry="2" />
<text x="712.65" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (527 samples, 0.03%)</title><rect x="1171.2" y="1205" width="0.3" height="15.0" fill="rgb(247,66,40)" rx="2" ry="2" />
<text x="1174.23" y="1215.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (396 samples, 0.02%)</title><rect x="792.4" y="1269" width="0.2" height="15.0" fill="rgb(216,80,26)" rx="2" ry="2" />
<text x="795.40" y="1279.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (1,200 samples, 0.06%)</title><rect x="923.6" y="1205" width="0.7" height="15.0" fill="rgb(246,14,27)" rx="2" ry="2" />
<text x="926.59" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,126 samples, 0.05%)</title><rect x="744.5" y="1253" width="0.6" height="15.0" fill="rgb(245,197,28)" rx="2" ry="2" />
<text x="747.47" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2208 (421 samples, 0.02%)</title><rect x="954.2" y="1237" width="0.2" height="15.0" fill="rgb(230,14,41)" rx="2" ry="2" />
<text x="957.20" y="1247.5" ></text>
</g>
<g >
<title>camlFiber__apply_703 (409 samples, 0.02%)</title><rect x="10.2" y="1541" width="0.2" height="15.0" fill="rgb(239,74,14)" rx="2" ry="2" />
<text x="13.16" y="1551.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (389 samples, 0.02%)</title><rect x="853.0" y="1253" width="0.2" height="15.0" fill="rgb(229,196,40)" rx="2" ry="2" />
<text x="855.96" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (1,714 samples, 0.08%)</title><rect x="180.4" y="1893" width="0.9" height="15.0" fill="rgb(240,170,40)" rx="2" ry="2" />
<text x="183.36" y="1903.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_1314 (3,026 samples, 0.15%)</title><rect x="1130.7" y="1285" width="1.8" height="15.0" fill="rgb(222,225,7)" rx="2" ry="2" />
<text x="1133.73" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (200 samples, 0.01%)</title><rect x="843.4" y="1317" width="0.1" height="15.0" fill="rgb(209,160,31)" rx="2" ry="2" />
<text x="846.42" y="1327.5" ></text>
</g>
<g >
<title>caml_apply2 (219 samples, 0.01%)</title><rect x="813.9" y="1301" width="0.1" height="15.0" fill="rgb(249,137,12)" rx="2" ry="2" />
<text x="816.86" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (1,624 samples, 0.08%)</title><rect x="958.3" y="1253" width="1.0" height="15.0" fill="rgb(250,81,22)" rx="2" ry="2" />
<text x="961.33" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (265 samples, 0.01%)</title><rect x="1075.2" y="1349" width="0.2" height="15.0" fill="rgb(205,85,16)" rx="2" ry="2" />
<text x="1078.24" y="1359.5" ></text>
</g>
<g >
<title>mark_slice_darken (455 samples, 0.02%)</title><rect x="196.3" y="1797" width="0.2" height="15.0" fill="rgb(235,95,43)" rx="2" ry="2" />
<text x="199.27" y="1807.5" ></text>
</g>
<g >
<title>caml_thread_yield (4,974 samples, 0.24%)</title><rect x="1068.9" y="1285" width="2.8" height="15.0" fill="rgb(241,106,8)" rx="2" ry="2" />
<text x="1071.88" y="1295.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (7,306 samples, 0.36%)</title><rect x="1178.1" y="1285" width="4.2" height="15.0" fill="rgb(232,20,43)" rx="2" ry="2" />
<text x="1181.08" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__map_966 (337 samples, 0.02%)</title><rect x="748.6" y="1285" width="0.2" height="15.0" fill="rgb(248,173,43)" rx="2" ry="2" />
<text x="751.62" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (261 samples, 0.01%)</title><rect x="1026.6" y="1333" width="0.2" height="15.0" fill="rgb(212,178,31)" rx="2" ry="2" />
<text x="1029.64" y="1343.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (20,035 samples, 0.98%)</title><rect x="657.6" y="1877" width="11.5" height="15.0" fill="rgb(216,108,9)" rx="2" ry="2" />
<text x="660.59" y="1887.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (946 samples, 0.05%)</title><rect x="675.1" y="1749" width="0.6" height="15.0" fill="rgb(251,197,35)" rx="2" ry="2" />
<text x="678.12" y="1759.5" ></text>
</g>
<g >
<title>camlLwt__resolve_916 (777,798 samples, 37.91%)</title><rect x="741.1" y="1797" width="447.4" height="15.0" fill="rgb(214,126,19)" rx="2" ry="2" />
<text x="744.11" y="1807.5" >camlLwt__resolve_916</text>
</g>
<g >
<title>caml_apply2 (583 samples, 0.03%)</title><rect x="1010.2" y="1301" width="0.3" height="15.0" fill="rgb(218,202,22)" rx="2" ry="2" />
<text x="1013.18" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (597 samples, 0.03%)</title><rect x="1014.3" y="1301" width="0.3" height="15.0" fill="rgb(248,195,4)" rx="2" ry="2" />
<text x="1017.29" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_744 (2,343 samples, 0.11%)</title><rect x="928.1" y="1365" width="1.3" height="15.0" fill="rgb(223,155,53)" rx="2" ry="2" />
<text x="931.10" y="1375.5" ></text>
</g>
<g >
<title>caml_modify (1,065 samples, 0.05%)</title><rect x="713.4" y="1925" width="0.6" height="15.0" fill="rgb(252,101,2)" rx="2" ry="2" />
<text x="716.38" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__unsafe_read_348 (801 samples, 0.04%)</title><rect x="788.4" y="1317" width="0.5" height="15.0" fill="rgb(230,181,54)" rx="2" ry="2" />
<text x="791.43" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,940 samples, 0.09%)</title><rect x="334.1" y="1829" width="1.1" height="15.0" fill="rgb(226,43,37)" rx="2" ry="2" />
<text x="337.13" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_212 (226 samples, 0.01%)</title><rect x="727.1" y="1445" width="0.1" height="15.0" fill="rgb(209,37,0)" rx="2" ry="2" />
<text x="730.12" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_679 (1,239 samples, 0.06%)</title><rect x="703.4" y="1861" width="0.7" height="15.0" fill="rgb(212,176,28)" rx="2" ry="2" />
<text x="706.37" y="1871.5" ></text>
</g>
<g >
<title>caml_thread_yield (2,094 samples, 0.10%)</title><rect x="802.6" y="1285" width="1.2" height="15.0" fill="rgb(211,73,22)" rx="2" ry="2" />
<text x="805.63" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_4927 (1,031 samples, 0.05%)</title><rect x="851.2" y="1349" width="0.6" height="15.0" fill="rgb(214,53,48)" rx="2" ry="2" />
<text x="854.16" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (407 samples, 0.02%)</title><rect x="886.1" y="1461" width="0.2" height="15.0" fill="rgb(239,146,53)" rx="2" ry="2" />
<text x="889.07" y="1471.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_981 (744 samples, 0.04%)</title><rect x="1145.8" y="1381" width="0.4" height="15.0" fill="rgb(243,137,27)" rx="2" ry="2" />
<text x="1148.76" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (457 samples, 0.02%)</title><rect x="1188.6" y="1765" width="0.3" height="15.0" fill="rgb(216,118,38)" rx="2" ry="2" />
<text x="1191.59" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__v_11991 (14,654 samples, 0.71%)</title><rect x="1129.9" y="1381" width="8.4" height="15.0" fill="rgb(226,21,10)" rx="2" ry="2" />
<text x="1132.90" y="1391.5" ></text>
</g>
<g >
<title>caml_thread_yield (666 samples, 0.03%)</title><rect x="1097.4" y="1285" width="0.4" height="15.0" fill="rgb(205,145,38)" rx="2" ry="2" />
<text x="1100.41" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (457 samples, 0.02%)</title><rect x="1188.6" y="1557" width="0.3" height="15.0" fill="rgb(238,47,11)" rx="2" ry="2" />
<text x="1191.59" y="1567.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (647 samples, 0.03%)</title><rect x="1032.0" y="1253" width="0.3" height="15.0" fill="rgb(250,154,43)" rx="2" ry="2" />
<text x="1034.96" y="1263.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (564 samples, 0.03%)</title><rect x="785.6" y="1253" width="0.3" height="15.0" fill="rgb(223,134,36)" rx="2" ry="2" />
<text x="788.58" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (528 samples, 0.03%)</title><rect x="1189.1" y="1557" width="0.3" height="15.0" fill="rgb(231,207,28)" rx="2" ry="2" />
<text x="1192.06" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1269" width="0.2" height="15.0" fill="rgb(239,48,19)" rx="2" ry="2" />
<text x="1191.85" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_92 (392 samples, 0.02%)</title><rect x="1129.3" y="1365" width="0.2" height="15.0" fill="rgb(207,28,43)" rx="2" ry="2" />
<text x="1132.31" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (302 samples, 0.01%)</title><rect x="801.1" y="1285" width="0.1" height="15.0" fill="rgb(206,175,11)" rx="2" ry="2" />
<text x="804.06" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (181 samples, 0.01%)</title><rect x="746.4" y="1253" width="0.1" height="15.0" fill="rgb(243,169,39)" rx="2" ry="2" />
<text x="749.40" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7383 (466 samples, 0.02%)</title><rect x="805.9" y="1365" width="0.3" height="15.0" fill="rgb(240,200,4)" rx="2" ry="2" />
<text x="808.92" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (257 samples, 0.01%)</title><rect x="875.6" y="1333" width="0.2" height="15.0" fill="rgb(252,218,39)" rx="2" ry="2" />
<text x="878.63" y="1343.5" ></text>
</g>
<g >
<title>unix_lseek_64 (727 samples, 0.04%)</title><rect x="788.5" y="1285" width="0.4" height="15.0" fill="rgb(249,36,45)" rx="2" ry="2" />
<text x="791.46" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (212 samples, 0.01%)</title><rect x="708.2" y="1813" width="0.1" height="15.0" fill="rgb(222,196,13)" rx="2" ry="2" />
<text x="711.16" y="1823.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_5777 (33,026 samples, 1.61%)</title><rect x="753.2" y="1429" width="19.0" height="15.0" fill="rgb(246,147,45)" rx="2" ry="2" />
<text x="756.18" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (209 samples, 0.01%)</title><rect x="816.0" y="1317" width="0.1" height="15.0" fill="rgb(208,184,38)" rx="2" ry="2" />
<text x="818.97" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (470 samples, 0.02%)</title><rect x="1189.7" y="1365" width="0.3" height="15.0" fill="rgb(224,89,23)" rx="2" ry="2" />
<text x="1192.69" y="1375.5" ></text>
</g>
<g >
<title>caml_modify (269 samples, 0.01%)</title><rect x="1134.5" y="1285" width="0.2" height="15.0" fill="rgb(233,132,14)" rx="2" ry="2" />
<text x="1137.52" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (214 samples, 0.01%)</title><rect x="907.8" y="1189" width="0.1" height="15.0" fill="rgb(230,167,27)" rx="2" ry="2" />
<text x="910.81" y="1199.5" ></text>
</g>
<g >
<title>futex_wait (426 samples, 0.02%)</title><rect x="618.5" y="1861" width="0.3" height="15.0" fill="rgb(208,112,19)" rx="2" ry="2" />
<text x="621.54" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (1,438 samples, 0.07%)</title><rect x="761.3" y="1269" width="0.9" height="15.0" fill="rgb(218,164,6)" rx="2" ry="2" />
<text x="764.34" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_919 (3,640 samples, 0.18%)</title><rect x="935.0" y="1333" width="2.1" height="15.0" fill="rgb(206,52,9)" rx="2" ry="2" />
<text x="938.01" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (375 samples, 0.02%)</title><rect x="885.5" y="1429" width="0.3" height="15.0" fill="rgb(221,81,47)" rx="2" ry="2" />
<text x="888.54" y="1439.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_1412 (368 samples, 0.02%)</title><rect x="1188.3" y="1669" width="0.2" height="15.0" fill="rgb(251,181,6)" rx="2" ry="2" />
<text x="1191.26" y="1679.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (2,018 samples, 0.10%)</title><rect x="784.8" y="1285" width="1.1" height="15.0" fill="rgb(206,32,46)" rx="2" ry="2" />
<text x="787.75" y="1295.5" ></text>
</g>
<g >
<title>caml_hash (584 samples, 0.03%)</title><rect x="834.3" y="1285" width="0.4" height="15.0" fill="rgb(254,42,7)" rx="2" ry="2" />
<text x="837.34" y="1295.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (252 samples, 0.01%)</title><rect x="733.1" y="1381" width="0.1" height="15.0" fill="rgb(218,7,15)" rx="2" ry="2" />
<text x="736.09" y="1391.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (246 samples, 0.01%)</title><rect x="1136.3" y="1253" width="0.2" height="15.0" fill="rgb(244,69,18)" rx="2" ry="2" />
<text x="1139.32" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,212 samples, 0.06%)</title><rect x="231.2" y="1829" width="0.7" height="15.0" fill="rgb(205,78,27)" rx="2" ry="2" />
<text x="234.18" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (553 samples, 0.03%)</title><rect x="1189.4" y="709" width="0.3" height="15.0" fill="rgb(216,83,52)" rx="2" ry="2" />
<text x="1192.37" y="719.5" ></text>
</g>
<g >
<title>digestif_sha1_finalize (244 samples, 0.01%)</title><rect x="1189.2" y="69" width="0.1" height="15.0" fill="rgb(228,0,28)" rx="2" ry="2" />
<text x="1192.16" y="79.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_4069 (361 samples, 0.02%)</title><rect x="1188.9" y="293" width="0.2" height="15.0" fill="rgb(219,191,4)" rx="2" ry="2" />
<text x="1191.85" y="303.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (226 samples, 0.01%)</title><rect x="1186.2" y="1381" width="0.1" height="15.0" fill="rgb(251,140,26)" rx="2" ry="2" />
<text x="1189.22" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (3,391 samples, 0.17%)</title><rect x="956.4" y="1253" width="1.9" height="15.0" fill="rgb(242,125,50)" rx="2" ry="2" />
<text x="959.38" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (563 samples, 0.03%)</title><rect x="196.2" y="1829" width="0.4" height="15.0" fill="rgb(207,142,17)" rx="2" ry="2" />
<text x="199.25" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__stack__pop_93 (229 samples, 0.01%)</title><rect x="888.5" y="1477" width="0.2" height="15.0" fill="rgb(249,19,38)" rx="2" ry="2" />
<text x="891.53" y="1487.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (459 samples, 0.02%)</title><rect x="1022.2" y="1157" width="0.2" height="15.0" fill="rgb(241,130,23)" rx="2" ry="2" />
<text x="1025.17" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (330 samples, 0.02%)</title><rect x="945.3" y="1269" width="0.2" height="15.0" fill="rgb(215,205,23)" rx="2" ry="2" />
<text x="948.34" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (806 samples, 0.04%)</title><rect x="105.2" y="1877" width="0.5" height="15.0" fill="rgb(213,47,8)" rx="2" ry="2" />
<text x="108.24" y="1887.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (523 samples, 0.03%)</title><rect x="769.5" y="1269" width="0.3" height="15.0" fill="rgb(226,4,19)" rx="2" ry="2" />
<text x="772.54" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (835 samples, 0.04%)</title><rect x="1026.5" y="1365" width="0.5" height="15.0" fill="rgb(233,149,5)" rx="2" ry="2" />
<text x="1029.50" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (188 samples, 0.01%)</title><rect x="206.2" y="1845" width="0.1" height="15.0" fill="rgb(243,97,14)" rx="2" ry="2" />
<text x="209.15" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (186 samples, 0.01%)</title><rect x="754.5" y="1237" width="0.1" height="15.0" fill="rgb(216,160,18)" rx="2" ry="2" />
<text x="757.48" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (277 samples, 0.01%)</title><rect x="1057.4" y="1221" width="0.2" height="15.0" fill="rgb(234,111,36)" rx="2" ry="2" />
<text x="1060.39" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (553 samples, 0.03%)</title><rect x="1189.4" y="613" width="0.3" height="15.0" fill="rgb(238,217,34)" rx="2" ry="2" />
<text x="1192.37" y="623.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__to_bin_1086 (1,088 samples, 0.05%)</title><rect x="1154.6" y="1253" width="0.6" height="15.0" fill="rgb(238,70,0)" rx="2" ry="2" />
<text x="1157.56" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2190 (228 samples, 0.01%)</title><rect x="879.7" y="1365" width="0.2" height="15.0" fill="rgb(211,150,25)" rx="2" ry="2" />
<text x="882.74" y="1375.5" ></text>
</g>
<g >
<title>layered_bench.e (2,050,771 samples, 99.96%)</title><rect x="10.4" y="2069" width="1179.6" height="15.0" fill="rgb(250,16,45)" rx="2" ry="2" />
<text x="13.44" y="2079.5" >layered_bench.e</text>
</g>
<g >
<title>camlIrmin_type__Type_binary__$3e$3e$3d_835 (456 samples, 0.02%)</title><rect x="1049.2" y="1253" width="0.2" height="15.0" fill="rgb(219,124,9)" rx="2" ry="2" />
<text x="1052.16" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (7,947 samples, 0.39%)</title><rect x="743.9" y="1317" width="4.5" height="15.0" fill="rgb(231,158,26)" rx="2" ry="2" />
<text x="746.86" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_4101 (361 samples, 0.02%)</title><rect x="1188.9" y="1349" width="0.2" height="15.0" fill="rgb(243,162,35)" rx="2" ry="2" />
<text x="1191.85" y="1359.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (510 samples, 0.02%)</title><rect x="702.4" y="1797" width="0.3" height="15.0" fill="rgb(235,9,30)" rx="2" ry="2" />
<text x="705.41" y="1807.5" ></text>
</g>
<g >
<title>__condvar_dec_grefs (986 samples, 0.05%)</title><rect x="1070.8" y="1237" width="0.5" height="15.0" fill="rgb(220,160,20)" rx="2" ry="2" />
<text x="1073.76" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__underlying_588 (176 samples, 0.01%)</title><rect x="1140.3" y="1445" width="0.1" height="15.0" fill="rgb(207,18,37)" rx="2" ry="2" />
<text x="1143.29" y="1455.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (337 samples, 0.02%)</title><rect x="750.2" y="1221" width="0.2" height="15.0" fill="rgb(223,11,49)" rx="2" ry="2" />
<text x="753.17" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (572 samples, 0.03%)</title><rect x="905.3" y="1221" width="0.3" height="15.0" fill="rgb(233,57,39)" rx="2" ry="2" />
<text x="908.26" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__fun_1746 (249 samples, 0.01%)</title><rect x="1074.0" y="1317" width="0.1" height="15.0" fill="rgb(213,83,1)" rx="2" ry="2" />
<text x="1077.00" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__triple_941 (477 samples, 0.02%)</title><rect x="1181.1" y="1221" width="0.3" height="15.0" fill="rgb(225,81,5)" rx="2" ry="2" />
<text x="1184.08" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_6834 (219 samples, 0.01%)</title><rect x="1188.9" y="165" width="0.2" height="15.0" fill="rgb(244,209,21)" rx="2" ry="2" />
<text x="1191.93" y="175.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1,096 samples, 0.05%)</title><rect x="1069.1" y="1237" width="0.6" height="15.0" fill="rgb(251,53,3)" rx="2" ry="2" />
<text x="1072.06" y="1247.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (365 samples, 0.02%)</title><rect x="854.2" y="1237" width="0.2" height="15.0" fill="rgb(217,79,36)" rx="2" ry="2" />
<text x="857.19" y="1247.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_155 (8,210 samples, 0.40%)</title><rect x="778.2" y="1317" width="4.8" height="15.0" fill="rgb(237,222,24)" rx="2" ry="2" />
<text x="781.23" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type__short_hash_265 (1,126 samples, 0.05%)</title><rect x="1172.6" y="1221" width="0.7" height="15.0" fill="rgb(247,205,20)" rx="2" ry="2" />
<text x="1175.63" y="1231.5" ></text>
</g>
<g >
<title>caml_thread_yield (1,579 samples, 0.08%)</title><rect x="750.6" y="1285" width="0.9" height="15.0" fill="rgb(249,222,50)" rx="2" ry="2" />
<text x="753.61" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (367 samples, 0.02%)</title><rect x="220.1" y="1845" width="0.2" height="15.0" fill="rgb(225,172,43)" rx="2" ry="2" />
<text x="223.12" y="1855.5" ></text>
</g>
<g >
<title>sha1_do_chunk (244 samples, 0.01%)</title><rect x="1189.2" y="37" width="0.1" height="15.0" fill="rgb(205,155,20)" rx="2" ry="2" />
<text x="1192.16" y="47.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7383 (286 samples, 0.01%)</title><rect x="1145.9" y="1237" width="0.1" height="15.0" fill="rgb(227,113,43)" rx="2" ry="2" />
<text x="1148.87" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (553 samples, 0.03%)</title><rect x="1189.4" y="1845" width="0.3" height="15.0" fill="rgb(205,205,48)" rx="2" ry="2" />
<text x="1192.37" y="1855.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (796 samples, 0.04%)</title><rect x="1107.6" y="1205" width="0.4" height="15.0" fill="rgb(224,45,41)" rx="2" ry="2" />
<text x="1110.56" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_1594 (352 samples, 0.02%)</title><rect x="734.7" y="1493" width="0.2" height="15.0" fill="rgb(227,178,28)" rx="2" ry="2" />
<text x="737.73" y="1503.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (241 samples, 0.01%)</title><rect x="754.4" y="1269" width="0.2" height="15.0" fill="rgb(252,62,1)" rx="2" ry="2" />
<text x="757.45" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_798 (242 samples, 0.01%)</title><rect x="860.3" y="1429" width="0.1" height="15.0" fill="rgb(218,62,49)" rx="2" ry="2" />
<text x="863.26" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (470 samples, 0.02%)</title><rect x="1189.7" y="1989" width="0.3" height="15.0" fill="rgb(239,193,31)" rx="2" ry="2" />
<text x="1192.69" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode_layers__fun_15238 (782 samples, 0.04%)</title><rect x="1147.7" y="1333" width="0.4" height="15.0" fill="rgb(232,120,22)" rx="2" ry="2" />
<text x="1150.66" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_323 (178 samples, 0.01%)</title><rect x="731.6" y="1445" width="0.1" height="15.0" fill="rgb(218,54,14)" rx="2" ry="2" />
<text x="734.64" y="1455.5" ></text>
</g>
<g >
<title>camlLayered_bench__with_timer_26561 (43,338 samples, 2.11%)</title><rect x="716.1" y="1765" width="24.9" height="15.0" fill="rgb(221,7,42)" rx="2" ry="2" />
<text x="719.10" y="1775.5" >c..</text>
</g>
<g >
<title>camlFiber__exec_in_479 (424 samples, 0.02%)</title><rect x="10.2" y="1701" width="0.2" height="15.0" fill="rgb(219,163,41)" rx="2" ry="2" />
<text x="13.16" y="1711.5" ></text>
</g>
<g >
<title>caml_compare (233 samples, 0.01%)</title><rect x="770.8" y="1333" width="0.1" height="15.0" fill="rgb(206,35,20)" rx="2" ry="2" />
<text x="773.81" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_4108 (361 samples, 0.02%)</title><rect x="1188.9" y="1877" width="0.2" height="15.0" fill="rgb(243,84,24)" rx="2" ry="2" />
<text x="1191.85" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__really_read_478 (756 samples, 0.04%)</title><rect x="1097.4" y="1301" width="0.4" height="15.0" fill="rgb(210,57,3)" rx="2" ry="2" />
<text x="1100.36" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (623 samples, 0.03%)</title><rect x="814.4" y="1301" width="0.4" height="15.0" fill="rgb(246,63,43)" rx="2" ry="2" />
<text x="817.39" y="1311.5" ></text>
</g>
<g >
<title>caml_thread_yield (247 samples, 0.01%)</title><rect x="850.2" y="1317" width="0.1" height="15.0" fill="rgb(242,194,33)" rx="2" ry="2" />
<text x="853.20" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_250 (470 samples, 0.02%)</title><rect x="1189.7" y="1013" width="0.3" height="15.0" fill="rgb(241,37,15)" rx="2" ry="2" />
<text x="1192.69" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_102 (199 samples, 0.01%)</title><rect x="1113.3" y="1317" width="0.1" height="15.0" fill="rgb(246,13,43)" rx="2" ry="2" />
<text x="1116.26" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__aux_872 (275 samples, 0.01%)</title><rect x="1034.7" y="1301" width="0.1" height="15.0" fill="rgb(247,50,41)" rx="2" ry="2" />
<text x="1037.68" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Layered__find_uppers_7368 (18,875 samples, 0.92%)</title><rect x="776.4" y="1445" width="10.8" height="15.0" fill="rgb(251,47,21)" rx="2" ry="2" />
<text x="779.39" y="1455.5" ></text>
</g>
<g >
<title>caml_mutex_lock (282 samples, 0.01%)</title><rect x="1111.2" y="1381" width="0.2" height="15.0" fill="rgb(230,184,18)" rx="2" ry="2" />
<text x="1114.20" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_426 (6,785 samples, 0.33%)</title><rect x="1099.0" y="1349" width="3.9" height="15.0" fill="rgb(228,72,28)" rx="2" ry="2" />
<text x="1101.98" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_716 (309 samples, 0.02%)</title><rect x="859.1" y="1365" width="0.2" height="15.0" fill="rgb(247,69,20)" rx="2" ry="2" />
<text x="862.15" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__variant_970 (256 samples, 0.01%)</title><rect x="790.7" y="1365" width="0.2" height="15.0" fill="rgb(220,95,47)" rx="2" ry="2" />
<text x="793.74" y="1375.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (174 samples, 0.01%)</title><rect x="733.3" y="1301" width="0.1" height="15.0" fill="rgb(233,14,9)" rx="2" ry="2" />
<text x="736.31" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__t_964 (227 samples, 0.01%)</title><rect x="1007.0" y="1269" width="0.1" height="15.0" fill="rgb(227,1,44)" rx="2" ry="2" />
<text x="1010.02" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_type__Type_binary__fun_2134 (224 samples, 0.01%)</title><rect x="1098.1" y="1285" width="0.1" height="15.0" fill="rgb(240,138,32)" rx="2" ry="2"
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment