491 lines
339 KiB
XML
491 lines
339 KiB
XML
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="1686" onload="init(evt)" viewBox="0 0 1200 1686" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
|
|
text { font-family:monospace; font-size:12px }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#matched { text-anchor:end; }
|
|
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style><script type="text/ecmascript"><![CDATA[
|
|
var nametype = 'Function:';
|
|
var fontsize = 12;
|
|
var fontwidth = 0.59;
|
|
var xpad = 10;
|
|
var inverted = false;
|
|
var searchcolor = 'rgb(230,0,230)';
|
|
var fluiddrawing = true;
|
|
var truncate_text_right = false;
|
|
]]><![CDATA["use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
frames = document.getElementById("frames");
|
|
known_font_width = get_monospace_width(frames);
|
|
total_samples = parseInt(frames.attributes.total_samples.value);
|
|
searching = 0;
|
|
|
|
// Use GET parameters to restore a flamegraph's state.
|
|
var restore_state = function() {
|
|
var params = get_params();
|
|
if (params.x && params.y)
|
|
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
|
|
if (params.s)
|
|
search(params.s);
|
|
};
|
|
|
|
if (fluiddrawing) {
|
|
// Make width dynamic so the SVG fits its parent's width.
|
|
svg.removeAttribute("width");
|
|
// Edge requires us to have a viewBox that gets updated with size changes.
|
|
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
|
|
if (!isEdge) {
|
|
svg.removeAttribute("viewBox");
|
|
}
|
|
var update_for_width_change = function() {
|
|
if (isEdge) {
|
|
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
|
|
}
|
|
|
|
// Keep consistent padding on left and right of frames container.
|
|
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
|
|
|
|
// Text truncation needs to be adjusted for the current width.
|
|
update_text_for_elements(frames.children);
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad;
|
|
};
|
|
window.addEventListener('resize', function() {
|
|
update_for_width_change();
|
|
});
|
|
// This needs to be done asynchronously for Safari to work.
|
|
setTimeout(function() {
|
|
unzoom();
|
|
update_for_width_change();
|
|
restore_state();
|
|
}, 0);
|
|
} else {
|
|
restore_state();
|
|
}
|
|
}
|
|
// event listeners
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
|
|
// set parameters for zoom state
|
|
var el = target.querySelector("rect");
|
|
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
|
|
var params = get_params()
|
|
params.x = el.attributes["fg:x"].value;
|
|
params.y = el.attributes.y.value;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
}
|
|
else if (e.target.id == "unzoom") {
|
|
unzoom();
|
|
|
|
// remove zoom state
|
|
var params = get_params();
|
|
if (params.x) delete params.x;
|
|
if (params.y) delete params.y;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
else if (e.target.id == "search") search_prompt();
|
|
}, false)
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = nametype + " " + g_to_text(target);
|
|
}, false)
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
// functions
|
|
function get_params() {
|
|
var params = {};
|
|
var paramsarr = window.location.search.substr(1).split('&');
|
|
for (var i = 0; i < paramsarr.length; ++i) {
|
|
var tmp = paramsarr[i].split("=");
|
|
if (!tmp[0] || !tmp[1]) continue;
|
|
params[tmp[0]] = decodeURIComponent(tmp[1]);
|
|
}
|
|
return params;
|
|
}
|
|
function parse_params(params) {
|
|
var uri = "?";
|
|
for (var key in params) {
|
|
uri += key + '=' + encodeURIComponent(params[key]) + '&';
|
|
}
|
|
if (uri.slice(-1) == "&")
|
|
uri = uri.substring(0, uri.length - 1);
|
|
if (uri == '?')
|
|
uri = window.location.href.split('?')[0];
|
|
return uri;
|
|
}
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
function orig_save(e, attr, val) {
|
|
if (e.attributes["fg:orig_" + attr] != undefined) return;
|
|
if (e.attributes[attr] == undefined) return;
|
|
if (val == undefined) val = e.attributes[attr].value;
|
|
e.setAttribute("fg:orig_" + attr, val);
|
|
}
|
|
function orig_load(e, attr) {
|
|
if (e.attributes["fg:orig_"+attr] == undefined) return;
|
|
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
|
|
e.removeAttribute("fg:orig_" + attr);
|
|
}
|
|
function g_to_text(e) {
|
|
var text = find_child(e, "title").firstChild.nodeValue;
|
|
return (text)
|
|
}
|
|
function g_to_func(e) {
|
|
var func = g_to_text(e);
|
|
// if there's any manipulation we want to do to the function
|
|
// name before it's searched, do it here before returning.
|
|
return (func);
|
|
}
|
|
function get_monospace_width(frames) {
|
|
// Given the id="frames" element, return the width of text characters if
|
|
// this is a monospace font, otherwise return 0.
|
|
text = find_child(frames.children[0], "text");
|
|
originalContent = text.textContent;
|
|
text.textContent = "!";
|
|
bangWidth = text.getComputedTextLength();
|
|
text.textContent = "W";
|
|
wWidth = text.getComputedTextLength();
|
|
text.textContent = originalContent;
|
|
if (bangWidth === wWidth) {
|
|
return bangWidth;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
function update_text_for_elements(elements) {
|
|
// In order to render quickly in the browser, you want to do one pass of
|
|
// reading attributes, and one pass of mutating attributes. See
|
|
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
|
|
|
|
// Fall back to inefficient calculation, if we're variable-width font.
|
|
// TODO This should be optimized somehow too.
|
|
if (known_font_width === 0) {
|
|
for (var i = 0; i < elements.length; i++) {
|
|
update_text(elements[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
var textElemNewAttributes = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * known_font_width) {
|
|
textElemNewAttributes.push([newX, ""]);
|
|
continue;
|
|
}
|
|
|
|
// Fit in full text width
|
|
if (txt.length * known_font_width < w) {
|
|
textElemNewAttributes.push([newX, txt]);
|
|
continue;
|
|
}
|
|
|
|
var substringLength = Math.floor(w / known_font_width) - 2;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
|
|
continue;
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
|
|
|
|
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var values = textElemNewAttributes[i];
|
|
var t = find_child(e, "text");
|
|
t.attributes.x.value = values[0];
|
|
t.textContent = values[1];
|
|
}
|
|
}
|
|
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * fontsize * fontwidth) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (t.getComputedTextLength() < w)
|
|
return;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
for (var x = 2; x < txt.length; x++) {
|
|
if (t.getSubStringLength(x - 2, txt.length) <= w) {
|
|
t.textContent = ".." + txt.substring(x, txt.length);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, zoomed_width_samples) {
|
|
if (e.tagName == "text") {
|
|
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
|
|
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
|
|
} else if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_child(c[i], x, zoomed_width_samples);
|
|
}
|
|
}
|
|
function zoom_parent(e) {
|
|
if (e.attributes) {
|
|
if (e.attributes.x != undefined) {
|
|
e.attributes.x.value = "0.0%";
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
e.attributes.width.value = "100.0%";
|
|
}
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_parent(c[i]);
|
|
}
|
|
}
|
|
function zoom(node) {
|
|
var attr = find_child(node, "rect").attributes;
|
|
var width = parseInt(attr["fg:w"].value);
|
|
var xmin = parseInt(attr["fg:x"].value);
|
|
var xmax = xmin + width;
|
|
var ymin = parseFloat(attr.y.value);
|
|
unzoombtn.classList.remove("hide");
|
|
var el = frames.children;
|
|
var to_update_text = [];
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var a = find_child(e, "rect").attributes;
|
|
var ex = parseInt(a["fg:x"].value);
|
|
var ew = parseInt(a["fg:w"].value);
|
|
// Is it an ancestor
|
|
if (!inverted) {
|
|
var upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
var upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
to_update_text.push(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, width);
|
|
to_update_text.push(e);
|
|
}
|
|
}
|
|
}
|
|
update_text_for_elements(to_update_text);
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = frames.children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
}
|
|
update_text_for_elements(el);
|
|
}
|
|
// search
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames rect");
|
|
for (var i = 0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
var params = get_params();
|
|
delete params.s;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
function search_prompt() {
|
|
if (!searching) {
|
|
var term = prompt("Enter a search term (regexp " +
|
|
"allowed, eg: ^ext4_)", "");
|
|
if (term != null) {
|
|
search(term)
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
searchbtn.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
var re = new RegExp(term);
|
|
var el = frames.children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
// Skip over frames which are either not visible, or below the zoomed-to frame
|
|
if (e.classList.contains("hide") || e.classList.contains("parent")) {
|
|
continue;
|
|
}
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (func == null || rect == null)
|
|
continue;
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseInt(rect.attributes["fg:w"].value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseInt(rect.attributes["fg:x"].value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes.fill.value = searchcolor;
|
|
// remember matches
|
|
if (matches[x] == undefined) {
|
|
matches[x] = w;
|
|
} else {
|
|
if (w > matches[x]) {
|
|
// overwrite with parent
|
|
matches[x] = w;
|
|
}
|
|
}
|
|
searching = 1;
|
|
}
|
|
}
|
|
if (!searching)
|
|
return;
|
|
var params = get_params();
|
|
params.s = term;
|
|
history.replaceState(null, null, parse_params(params));
|
|
|
|
searchbtn.classList.add("show");
|
|
searchbtn.firstChild.nodeValue = "Reset Search";
|
|
// calculate percent matched, excluding vertical overlap
|
|
var count = 0;
|
|
var lastx = -1;
|
|
var lastw = 0;
|
|
var keys = Array();
|
|
for (k in matches) {
|
|
if (matches.hasOwnProperty(k))
|
|
keys.push(k);
|
|
}
|
|
// sort the matched frames by their x location
|
|
// ascending, then width descending
|
|
keys.sort(function(a, b){
|
|
return a - b;
|
|
});
|
|
// Step through frames saving only the biggest bottom-up frames
|
|
// thanks to the sort order. This relies on the tree property
|
|
// where children are always smaller than their parents.
|
|
for (var k in keys) {
|
|
var x = parseInt(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1);
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
function format_percent(n) {
|
|
return n.toFixed(4) + "%";
|
|
}
|
|
]]></script><rect x="0" y="0" width="100%" height="1686" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="1669.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="1669.00"> </text><svg id="frames" x="10" width="1180" total_samples="4151"><g><title>aiken`aiken::cmd::uplc::exec (1 samples, 0.02%)</title><rect x="0.0000%" y="1621" width="0.0241%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1631.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (1 samples, 0.02%)</title><rect x="0.0000%" y="1605" width="0.0241%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1615.50"></text></g><g><title>aiken`uplc::machine::Machine::run (1 samples, 0.02%)</title><rect x="0.0000%" y="1589" width="0.0241%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1599.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (1 samples, 0.02%)</title><rect x="0.0000%" y="1573" width="0.0241%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1583.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1557" width="0.0241%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1567.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1541" width="0.0241%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1551.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1525" width="0.0241%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1509" width="0.0241%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1493" width="0.0241%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1477" width="0.0241%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1461" width="0.0241%" height="15" fill="rgb(250,228,42)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1445" width="0.0241%" height="15" fill="rgb(240,193,28)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1429" width="0.0241%" height="15" fill="rgb(216,20,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1413" width="0.0241%" height="15" fill="rgb(206,188,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1397" width="0.0241%" height="15" fill="rgb(217,207,13)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1381" width="0.0241%" height="15" fill="rgb(231,73,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1365" width="0.0241%" height="15" fill="rgb(225,20,46)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1349" width="0.0241%" height="15" fill="rgb(210,31,41)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1333" width="0.0241%" height="15" fill="rgb(221,200,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1317" width="0.0241%" height="15" fill="rgb(226,26,5)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1301" width="0.0241%" height="15" fill="rgb(249,33,26)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1285" width="0.0241%" height="15" fill="rgb(235,183,28)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1269" width="0.0241%" height="15" fill="rgb(221,5,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1253" width="0.0241%" height="15" fill="rgb(247,18,42)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1237" width="0.0241%" height="15" fill="rgb(241,131,45)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1221" width="0.0241%" height="15" fill="rgb(249,31,29)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1205" width="0.0241%" height="15" fill="rgb(225,111,53)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1189" width="0.0241%" height="15" fill="rgb(238,160,17)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1173" width="0.0241%" height="15" fill="rgb(214,148,48)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1157" width="0.0241%" height="15" fill="rgb(232,36,49)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1141" width="0.0241%" height="15" fill="rgb(209,103,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1125" width="0.0241%" height="15" fill="rgb(229,88,8)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1109" width="0.0241%" height="15" fill="rgb(213,181,19)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1093" width="0.0241%" height="15" fill="rgb(254,191,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1077" width="0.0241%" height="15" fill="rgb(241,83,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1061" width="0.0241%" height="15" fill="rgb(233,36,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1045" width="0.0241%" height="15" fill="rgb(226,3,54)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1029" width="0.0241%" height="15" fill="rgb(245,192,40)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="1013" width="0.0241%" height="15" fill="rgb(238,167,29)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="997" width="0.0241%" height="15" fill="rgb(232,182,51)" fg:x="0" fg:w="1"/><text x="0.2500%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="981" width="0.0241%" height="15" fill="rgb(231,60,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="965" width="0.0241%" height="15" fill="rgb(208,69,12)" fg:x="0" fg:w="1"/><text x="0.2500%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="949" width="0.0241%" height="15" fill="rgb(235,93,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="933" width="0.0241%" height="15" fill="rgb(213,116,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="917" width="0.0241%" height="15" fill="rgb(222,207,29)" fg:x="0" fg:w="1"/><text x="0.2500%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="901" width="0.0241%" height="15" fill="rgb(206,96,30)" fg:x="0" fg:w="1"/><text x="0.2500%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="885" width="0.0241%" height="15" fill="rgb(218,138,4)" fg:x="0" fg:w="1"/><text x="0.2500%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="869" width="0.0241%" height="15" fill="rgb(250,191,14)" fg:x="0" fg:w="1"/><text x="0.2500%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="853" width="0.0241%" height="15" fill="rgb(239,60,40)" fg:x="0" fg:w="1"/><text x="0.2500%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="837" width="0.0241%" height="15" fill="rgb(206,27,48)" fg:x="0" fg:w="1"/><text x="0.2500%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="821" width="0.0241%" height="15" fill="rgb(225,35,8)" fg:x="0" fg:w="1"/><text x="0.2500%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="805" width="0.0241%" height="15" fill="rgb(250,213,24)" fg:x="0" fg:w="1"/><text x="0.2500%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="789" width="0.0241%" height="15" fill="rgb(247,123,22)" fg:x="0" fg:w="1"/><text x="0.2500%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="773" width="0.0241%" height="15" fill="rgb(231,138,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="757" width="0.0241%" height="15" fill="rgb(231,145,46)" fg:x="0" fg:w="1"/><text x="0.2500%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="741" width="0.0241%" height="15" fill="rgb(251,118,11)" fg:x="0" fg:w="1"/><text x="0.2500%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="725" width="0.0241%" height="15" fill="rgb(217,147,25)" fg:x="0" fg:w="1"/><text x="0.2500%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="709" width="0.0241%" height="15" fill="rgb(247,81,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="693" width="0.0241%" height="15" fill="rgb(209,12,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="677" width="0.0241%" height="15" fill="rgb(227,1,9)" fg:x="0" fg:w="1"/><text x="0.2500%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="661" width="0.0241%" height="15" fill="rgb(248,47,43)" fg:x="0" fg:w="1"/><text x="0.2500%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="645" width="0.0241%" height="15" fill="rgb(221,10,30)" fg:x="0" fg:w="1"/><text x="0.2500%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="629" width="0.0241%" height="15" fill="rgb(210,229,1)" fg:x="0" fg:w="1"/><text x="0.2500%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="613" width="0.0241%" height="15" fill="rgb(222,148,37)" fg:x="0" fg:w="1"/><text x="0.2500%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="597" width="0.0241%" height="15" fill="rgb(234,67,33)" fg:x="0" fg:w="1"/><text x="0.2500%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="581" width="0.0241%" height="15" fill="rgb(247,98,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="565" width="0.0241%" height="15" fill="rgb(247,138,52)" fg:x="0" fg:w="1"/><text x="0.2500%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="549" width="0.0241%" height="15" fill="rgb(213,79,30)" fg:x="0" fg:w="1"/><text x="0.2500%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="533" width="0.0241%" height="15" fill="rgb(246,177,23)" fg:x="0" fg:w="1"/><text x="0.2500%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="517" width="0.0241%" height="15" fill="rgb(230,62,27)" fg:x="0" fg:w="1"/><text x="0.2500%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="501" width="0.0241%" height="15" fill="rgb(216,154,8)" fg:x="0" fg:w="1"/><text x="0.2500%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="485" width="0.0241%" height="15" fill="rgb(244,35,45)" fg:x="0" fg:w="1"/><text x="0.2500%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="469" width="0.0241%" height="15" fill="rgb(251,115,12)" fg:x="0" fg:w="1"/><text x="0.2500%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="453" width="0.0241%" height="15" fill="rgb(240,54,50)" fg:x="0" fg:w="1"/><text x="0.2500%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="437" width="0.0241%" height="15" fill="rgb(233,84,52)" fg:x="0" fg:w="1"/><text x="0.2500%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="421" width="0.0241%" height="15" fill="rgb(207,117,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="405" width="0.0241%" height="15" fill="rgb(249,43,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="389" width="0.0241%" height="15" fill="rgb(209,38,44)" fg:x="0" fg:w="1"/><text x="0.2500%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="373" width="0.0241%" height="15" fill="rgb(236,212,23)" fg:x="0" fg:w="1"/><text x="0.2500%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="357" width="0.0241%" height="15" fill="rgb(242,79,21)" fg:x="0" fg:w="1"/><text x="0.2500%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="341" width="0.0241%" height="15" fill="rgb(211,96,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="325" width="0.0241%" height="15" fill="rgb(253,215,40)" fg:x="0" fg:w="1"/><text x="0.2500%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="309" width="0.0241%" height="15" fill="rgb(211,81,21)" fg:x="0" fg:w="1"/><text x="0.2500%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="293" width="0.0241%" height="15" fill="rgb(208,190,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="277" width="0.0241%" height="15" fill="rgb(235,213,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="261" width="0.0241%" height="15" fill="rgb(237,122,38)" fg:x="0" fg:w="1"/><text x="0.2500%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="245" width="0.0241%" height="15" fill="rgb(244,218,35)" fg:x="0" fg:w="1"/><text x="0.2500%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="229" width="0.0241%" height="15" fill="rgb(240,68,47)" fg:x="0" fg:w="1"/><text x="0.2500%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="213" width="0.0241%" height="15" fill="rgb(210,16,53)" fg:x="0" fg:w="1"/><text x="0.2500%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="197" width="0.0241%" height="15" fill="rgb(235,124,12)" fg:x="0" fg:w="1"/><text x="0.2500%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="181" width="0.0241%" height="15" fill="rgb(224,169,11)" fg:x="0" fg:w="1"/><text x="0.2500%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="165" width="0.0241%" height="15" fill="rgb(250,166,2)" fg:x="0" fg:w="1"/><text x="0.2500%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="149" width="0.0241%" height="15" fill="rgb(242,216,29)" fg:x="0" fg:w="1"/><text x="0.2500%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="133" width="0.0241%" height="15" fill="rgb(230,116,27)" fg:x="0" fg:w="1"/><text x="0.2500%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="117" width="0.0241%" height="15" fill="rgb(228,99,48)" fg:x="0" fg:w="1"/><text x="0.2500%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="101" width="0.0241%" height="15" fill="rgb(253,11,6)" fg:x="0" fg:w="1"/><text x="0.2500%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="85" width="0.0241%" height="15" fill="rgb(247,143,39)" fg:x="0" fg:w="1"/><text x="0.2500%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="69" width="0.0241%" height="15" fill="rgb(236,97,10)" fg:x="0" fg:w="1"/><text x="0.2500%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="53" width="0.0241%" height="15" fill="rgb(233,208,19)" fg:x="0" fg:w="1"/><text x="0.2500%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0000%" y="37" width="0.0241%" height="15" fill="rgb(216,164,2)" fg:x="0" fg:w="1"/><text x="0.2500%" y="47.50"></text></g><g><title>aiken`aiken::main (1 samples, 0.02%)</title><rect x="0.0241%" y="1621" width="0.0241%" height="15" fill="rgb(220,129,5)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1631.50"></text></g><g><title>aiken`aiken::cmd::uplc::exec (1 samples, 0.02%)</title><rect x="0.0241%" y="1605" width="0.0241%" height="15" fill="rgb(242,17,10)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1615.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (1 samples, 0.02%)</title><rect x="0.0241%" y="1589" width="0.0241%" height="15" fill="rgb(242,107,0)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1599.50"></text></g><g><title>aiken`uplc::machine::Machine::run (1 samples, 0.02%)</title><rect x="0.0241%" y="1573" width="0.0241%" height="15" fill="rgb(251,28,31)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1583.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (1 samples, 0.02%)</title><rect x="0.0241%" y="1557" width="0.0241%" height="15" fill="rgb(233,223,10)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1567.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1541" width="0.0241%" height="15" fill="rgb(215,21,27)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1551.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1525" width="0.0241%" height="15" fill="rgb(232,23,21)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1509" width="0.0241%" height="15" fill="rgb(244,5,23)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1493" width="0.0241%" height="15" fill="rgb(226,81,46)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1477" width="0.0241%" height="15" fill="rgb(247,70,30)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1461" width="0.0241%" height="15" fill="rgb(212,68,19)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1445" width="0.0241%" height="15" fill="rgb(240,187,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1429" width="0.0241%" height="15" fill="rgb(223,113,26)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1413" width="0.0241%" height="15" fill="rgb(206,192,2)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1397" width="0.0241%" height="15" fill="rgb(241,108,4)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1381" width="0.0241%" height="15" fill="rgb(247,173,49)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1365" width="0.0241%" height="15" fill="rgb(224,114,35)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1349" width="0.0241%" height="15" fill="rgb(245,159,27)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1333" width="0.0241%" height="15" fill="rgb(245,172,44)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1317" width="0.0241%" height="15" fill="rgb(236,23,11)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1301" width="0.0241%" height="15" fill="rgb(205,117,38)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1285" width="0.0241%" height="15" fill="rgb(237,72,25)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1269" width="0.0241%" height="15" fill="rgb(244,70,9)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1253" width="0.0241%" height="15" fill="rgb(217,125,39)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1237" width="0.0241%" height="15" fill="rgb(235,36,10)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1221" width="0.0241%" height="15" fill="rgb(251,123,47)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1205" width="0.0241%" height="15" fill="rgb(221,13,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1189" width="0.0241%" height="15" fill="rgb(238,131,9)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1173" width="0.0241%" height="15" fill="rgb(211,50,8)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1157" width="0.0241%" height="15" fill="rgb(245,182,24)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1141" width="0.0241%" height="15" fill="rgb(242,14,37)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1125" width="0.0241%" height="15" fill="rgb(246,228,12)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1109" width="0.0241%" height="15" fill="rgb(213,55,15)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1093" width="0.0241%" height="15" fill="rgb(209,9,3)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1077" width="0.0241%" height="15" fill="rgb(230,59,30)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1061" width="0.0241%" height="15" fill="rgb(209,121,21)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1045" width="0.0241%" height="15" fill="rgb(220,109,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1029" width="0.0241%" height="15" fill="rgb(232,18,1)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="1013" width="0.0241%" height="15" fill="rgb(215,41,42)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="997" width="0.0241%" height="15" fill="rgb(224,123,36)" fg:x="1" fg:w="1"/><text x="0.2741%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="981" width="0.0241%" height="15" fill="rgb(240,125,3)" fg:x="1" fg:w="1"/><text x="0.2741%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="965" width="0.0241%" height="15" fill="rgb(205,98,50)" fg:x="1" fg:w="1"/><text x="0.2741%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="949" width="0.0241%" height="15" fill="rgb(205,185,37)" fg:x="1" fg:w="1"/><text x="0.2741%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="933" width="0.0241%" height="15" fill="rgb(238,207,15)" fg:x="1" fg:w="1"/><text x="0.2741%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="917" width="0.0241%" height="15" fill="rgb(213,199,42)" fg:x="1" fg:w="1"/><text x="0.2741%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="901" width="0.0241%" height="15" fill="rgb(235,201,11)" fg:x="1" fg:w="1"/><text x="0.2741%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="885" width="0.0241%" height="15" fill="rgb(207,46,11)" fg:x="1" fg:w="1"/><text x="0.2741%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="869" width="0.0241%" height="15" fill="rgb(241,35,35)" fg:x="1" fg:w="1"/><text x="0.2741%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="853" width="0.0241%" height="15" fill="rgb(243,32,47)" fg:x="1" fg:w="1"/><text x="0.2741%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="837" width="0.0241%" height="15" fill="rgb(247,202,23)" fg:x="1" fg:w="1"/><text x="0.2741%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="821" width="0.0241%" height="15" fill="rgb(219,102,11)" fg:x="1" fg:w="1"/><text x="0.2741%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="805" width="0.0241%" height="15" fill="rgb(243,110,44)" fg:x="1" fg:w="1"/><text x="0.2741%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="789" width="0.0241%" height="15" fill="rgb(222,74,54)" fg:x="1" fg:w="1"/><text x="0.2741%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="773" width="0.0241%" height="15" fill="rgb(216,99,12)" fg:x="1" fg:w="1"/><text x="0.2741%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="757" width="0.0241%" height="15" fill="rgb(226,22,26)" fg:x="1" fg:w="1"/><text x="0.2741%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="741" width="0.0241%" height="15" fill="rgb(217,163,10)" fg:x="1" fg:w="1"/><text x="0.2741%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="725" width="0.0241%" height="15" fill="rgb(213,25,53)" fg:x="1" fg:w="1"/><text x="0.2741%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="709" width="0.0241%" height="15" fill="rgb(252,105,26)" fg:x="1" fg:w="1"/><text x="0.2741%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="693" width="0.0241%" height="15" fill="rgb(220,39,43)" fg:x="1" fg:w="1"/><text x="0.2741%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="677" width="0.0241%" height="15" fill="rgb(229,68,48)" fg:x="1" fg:w="1"/><text x="0.2741%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="661" width="0.0241%" height="15" fill="rgb(252,8,32)" fg:x="1" fg:w="1"/><text x="0.2741%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="645" width="0.0241%" height="15" fill="rgb(223,20,43)" fg:x="1" fg:w="1"/><text x="0.2741%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="629" width="0.0241%" height="15" fill="rgb(229,81,49)" fg:x="1" fg:w="1"/><text x="0.2741%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="613" width="0.0241%" height="15" fill="rgb(236,28,36)" fg:x="1" fg:w="1"/><text x="0.2741%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="597" width="0.0241%" height="15" fill="rgb(249,185,26)" fg:x="1" fg:w="1"/><text x="0.2741%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="581" width="0.0241%" height="15" fill="rgb(249,174,33)" fg:x="1" fg:w="1"/><text x="0.2741%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="565" width="0.0241%" height="15" fill="rgb(233,201,37)" fg:x="1" fg:w="1"/><text x="0.2741%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="549" width="0.0241%" height="15" fill="rgb(221,78,26)" fg:x="1" fg:w="1"/><text x="0.2741%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="533" width="0.0241%" height="15" fill="rgb(250,127,30)" fg:x="1" fg:w="1"/><text x="0.2741%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="517" width="0.0241%" height="15" fill="rgb(230,49,44)" fg:x="1" fg:w="1"/><text x="0.2741%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="501" width="0.0241%" height="15" fill="rgb(229,67,23)" fg:x="1" fg:w="1"/><text x="0.2741%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="485" width="0.0241%" height="15" fill="rgb(249,83,47)" fg:x="1" fg:w="1"/><text x="0.2741%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="469" width="0.0241%" height="15" fill="rgb(215,43,3)" fg:x="1" fg:w="1"/><text x="0.2741%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="453" width="0.0241%" height="15" fill="rgb(238,154,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="437" width="0.0241%" height="15" fill="rgb(219,56,2)" fg:x="1" fg:w="1"/><text x="0.2741%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="421" width="0.0241%" height="15" fill="rgb(233,0,4)" fg:x="1" fg:w="1"/><text x="0.2741%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="405" width="0.0241%" height="15" fill="rgb(235,30,7)" fg:x="1" fg:w="1"/><text x="0.2741%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="389" width="0.0241%" height="15" fill="rgb(250,79,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="373" width="0.0241%" height="15" fill="rgb(211,146,34)" fg:x="1" fg:w="1"/><text x="0.2741%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="357" width="0.0241%" height="15" fill="rgb(228,22,38)" fg:x="1" fg:w="1"/><text x="0.2741%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="341" width="0.0241%" height="15" fill="rgb(235,168,5)" fg:x="1" fg:w="1"/><text x="0.2741%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="325" width="0.0241%" height="15" fill="rgb(221,155,16)" fg:x="1" fg:w="1"/><text x="0.2741%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="309" width="0.0241%" height="15" fill="rgb(215,215,53)" fg:x="1" fg:w="1"/><text x="0.2741%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="293" width="0.0241%" height="15" fill="rgb(223,4,10)" fg:x="1" fg:w="1"/><text x="0.2741%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="277" width="0.0241%" height="15" fill="rgb(234,103,6)" fg:x="1" fg:w="1"/><text x="0.2741%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="261" width="0.0241%" height="15" fill="rgb(227,97,0)" fg:x="1" fg:w="1"/><text x="0.2741%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="245" width="0.0241%" height="15" fill="rgb(234,150,53)" fg:x="1" fg:w="1"/><text x="0.2741%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="229" width="0.0241%" height="15" fill="rgb(228,201,54)" fg:x="1" fg:w="1"/><text x="0.2741%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="213" width="0.0241%" height="15" fill="rgb(222,22,37)" fg:x="1" fg:w="1"/><text x="0.2741%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="197" width="0.0241%" height="15" fill="rgb(237,53,32)" fg:x="1" fg:w="1"/><text x="0.2741%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="181" width="0.0241%" height="15" fill="rgb(233,25,53)" fg:x="1" fg:w="1"/><text x="0.2741%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="165" width="0.0241%" height="15" fill="rgb(210,40,34)" fg:x="1" fg:w="1"/><text x="0.2741%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="149" width="0.0241%" height="15" fill="rgb(241,220,44)" fg:x="1" fg:w="1"/><text x="0.2741%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="133" width="0.0241%" height="15" fill="rgb(235,28,35)" fg:x="1" fg:w="1"/><text x="0.2741%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="117" width="0.0241%" height="15" fill="rgb(210,56,17)" fg:x="1" fg:w="1"/><text x="0.2741%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="101" width="0.0241%" height="15" fill="rgb(224,130,29)" fg:x="1" fg:w="1"/><text x="0.2741%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="85" width="0.0241%" height="15" fill="rgb(235,212,8)" fg:x="1" fg:w="1"/><text x="0.2741%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="69" width="0.0241%" height="15" fill="rgb(223,33,50)" fg:x="1" fg:w="1"/><text x="0.2741%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="53" width="0.0241%" height="15" fill="rgb(219,149,13)" fg:x="1" fg:w="1"/><text x="0.2741%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="0.0241%" y="37" width="0.0241%" height="15" fill="rgb(250,156,29)" fg:x="1" fg:w="1"/><text x="0.2741%" y="47.50"></text></g><g><title>aiken`DYLD-STUB$$free (76 samples, 1.83%)</title><rect x="0.0482%" y="37" width="1.8309%" height="15" fill="rgb(216,193,19)" fg:x="2" fg:w="76"/><text x="0.2982%" y="47.50">a..</text></g><g><title>aiken`__rdl_dealloc (10 samples, 0.24%)</title><rect x="1.8791%" y="37" width="0.2409%" height="15" fill="rgb(216,135,14)" fg:x="78" fg:w="10"/><text x="2.1291%" y="47.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (619 samples, 14.91%)</title><rect x="2.1200%" y="37" width="14.9121%" height="15" fill="rgb(241,47,5)" fg:x="88" fg:w="619"/><text x="2.3700%" y="47.50">aiken`core::ptr::drop_i..</text></g><g><title>libsystem_malloc.dylib`DYLD-STUB$$_platform_bzero (33 samples, 0.79%)</title><rect x="17.0320%" y="37" width="0.7950%" height="15" fill="rgb(233,42,35)" fg:x="707" fg:w="33"/><text x="17.2820%" y="47.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (557 samples, 13.42%)</title><rect x="17.8270%" y="37" width="13.4185%" height="15" fill="rgb(231,13,6)" fg:x="740" fg:w="557"/><text x="18.0770%" y="47.50">libsystem_malloc.dyl..</text></g><g><title>libsystem_malloc.dylib`free (303 samples, 7.30%)</title><rect x="31.2455%" y="37" width="7.2994%" height="15" fill="rgb(207,181,40)" fg:x="1297" fg:w="303"/><text x="31.4955%" y="47.50">libsystem_..</text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (1 samples, 0.02%)</title><rect x="38.5449%" y="37" width="0.0241%" height="15" fill="rgb(254,173,49)" fg:x="1600" fg:w="1"/><text x="38.7949%" y="47.50"></text></g><g><title>libsystem_platform.dylib`__bzero (35 samples, 0.84%)</title><rect x="38.5690%" y="37" width="0.8432%" height="15" fill="rgb(221,1,38)" fg:x="1601" fg:w="35"/><text x="38.8190%" y="47.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,725 samples, 41.56%)</title><rect x="0.0482%" y="69" width="41.5563%" height="15" fill="rgb(206,124,46)" fg:x="2" fg:w="1725"/><text x="0.2982%" y="79.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBru..</text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,725 samples, 41.56%)</title><rect x="0.0482%" y="53" width="41.5563%" height="15" fill="rgb(249,21,11)" fg:x="2" fg:w="1725"/><text x="0.2982%" y="63.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBru..</text></g><g><title>libsystem_platform.dylib`_platform_memset (91 samples, 2.19%)</title><rect x="39.4122%" y="37" width="2.1922%" height="15" fill="rgb(222,201,40)" fg:x="1636" fg:w="91"/><text x="39.6622%" y="47.50">l..</text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1621" width="47.5548%" height="15" fill="rgb(235,61,29)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1631.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1605" width="47.5548%" height="15" fill="rgb(219,207,3)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1615.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1589" width="47.5548%" height="15" fill="rgb(222,56,46)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1599.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1573" width="47.5548%" height="15" fill="rgb(239,76,54)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1583.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1557" width="47.5548%" height="15" fill="rgb(231,124,27)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1567.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1541" width="47.5548%" height="15" fill="rgb(249,195,6)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1551.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1525" width="47.5548%" height="15" fill="rgb(237,174,47)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1535.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1509" width="47.5548%" height="15" fill="rgb(206,201,31)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1519.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1493" width="47.5548%" height="15" fill="rgb(231,57,52)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1503.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1477" width="47.5548%" height="15" fill="rgb(248,177,22)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1487.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1461" width="47.5548%" height="15" fill="rgb(215,211,37)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1471.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1445" width="47.5548%" height="15" fill="rgb(241,128,51)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1455.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1429" width="47.5548%" height="15" fill="rgb(227,165,31)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1439.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1413" width="47.5548%" height="15" fill="rgb(228,167,24)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1423.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1397" width="47.5548%" height="15" fill="rgb(228,143,12)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1407.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1381" width="47.5548%" height="15" fill="rgb(249,149,8)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1391.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1365" width="47.5548%" height="15" fill="rgb(243,35,44)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1375.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1349" width="47.5548%" height="15" fill="rgb(246,89,9)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1359.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1333" width="47.5548%" height="15" fill="rgb(233,213,13)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1343.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1317" width="47.5548%" height="15" fill="rgb(233,141,41)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1327.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1301" width="47.5548%" height="15" fill="rgb(239,167,4)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1311.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1285" width="47.5548%" height="15" fill="rgb(209,217,16)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1295.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1269" width="47.5548%" height="15" fill="rgb(219,88,35)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1279.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1253" width="47.5548%" height="15" fill="rgb(220,193,23)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1263.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1237" width="47.5548%" height="15" fill="rgb(230,90,52)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1247.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1221" width="47.5548%" height="15" fill="rgb(252,106,19)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1231.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1205" width="47.5548%" height="15" fill="rgb(206,74,20)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1215.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1189" width="47.5548%" height="15" fill="rgb(230,138,44)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1199.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1173" width="47.5548%" height="15" fill="rgb(235,182,43)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1183.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1157" width="47.5548%" height="15" fill="rgb(242,16,51)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1167.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1141" width="47.5548%" height="15" fill="rgb(248,9,4)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1151.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1125" width="47.5548%" height="15" fill="rgb(210,31,22)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1135.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1109" width="47.5548%" height="15" fill="rgb(239,54,39)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1119.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1093" width="47.5548%" height="15" fill="rgb(230,99,41)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1103.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1077" width="47.5548%" height="15" fill="rgb(253,106,12)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1087.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1061" width="47.5548%" height="15" fill="rgb(213,46,41)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1071.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1045" width="47.5548%" height="15" fill="rgb(215,133,35)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1055.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1029" width="47.5548%" height="15" fill="rgb(213,28,5)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1039.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="1013" width="47.5548%" height="15" fill="rgb(215,77,49)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1023.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="997" width="47.5548%" height="15" fill="rgb(248,100,22)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="1007.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="981" width="47.5548%" height="15" fill="rgb(208,67,9)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="991.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="965" width="47.5548%" height="15" fill="rgb(219,133,21)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="975.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="949" width="47.5548%" height="15" fill="rgb(246,46,29)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="959.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="933" width="47.5548%" height="15" fill="rgb(246,185,52)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="943.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="917" width="47.5548%" height="15" fill="rgb(252,136,11)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="927.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="901" width="47.5548%" height="15" fill="rgb(219,138,53)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="911.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="885" width="47.5548%" height="15" fill="rgb(211,51,23)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="895.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="869" width="47.5548%" height="15" fill="rgb(247,221,28)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="879.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="853" width="47.5548%" height="15" fill="rgb(251,222,45)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="863.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="837" width="47.5548%" height="15" fill="rgb(217,162,53)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="847.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="821" width="47.5548%" height="15" fill="rgb(229,93,14)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="831.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="805" width="47.5548%" height="15" fill="rgb(209,67,49)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="815.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="789" width="47.5548%" height="15" fill="rgb(213,87,29)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="799.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="773" width="47.5548%" height="15" fill="rgb(205,151,52)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="783.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="757" width="47.5548%" height="15" fill="rgb(253,215,39)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="767.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="741" width="47.5548%" height="15" fill="rgb(221,220,41)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="751.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="725" width="47.5548%" height="15" fill="rgb(218,133,21)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="735.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="709" width="47.5548%" height="15" fill="rgb(221,193,43)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="719.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="693" width="47.5548%" height="15" fill="rgb(240,128,52)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="703.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="677" width="47.5548%" height="15" fill="rgb(253,114,12)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="687.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="661" width="47.5548%" height="15" fill="rgb(215,223,47)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="671.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="645" width="47.5548%" height="15" fill="rgb(248,225,23)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="655.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="629" width="47.5548%" height="15" fill="rgb(250,108,0)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="639.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="613" width="47.5548%" height="15" fill="rgb(228,208,7)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="623.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="597" width="47.5548%" height="15" fill="rgb(244,45,10)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="607.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="581" width="47.5548%" height="15" fill="rgb(207,125,25)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="591.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="565" width="47.5548%" height="15" fill="rgb(210,195,18)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="575.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="549" width="47.5548%" height="15" fill="rgb(249,80,12)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="559.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="533" width="47.5548%" height="15" fill="rgb(221,65,9)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="543.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="517" width="47.5548%" height="15" fill="rgb(235,49,36)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="527.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="501" width="47.5548%" height="15" fill="rgb(225,32,20)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="511.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="485" width="47.5548%" height="15" fill="rgb(215,141,46)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="495.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="469" width="47.5548%" height="15" fill="rgb(250,160,47)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="479.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="453" width="47.5548%" height="15" fill="rgb(216,222,40)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="463.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="437" width="47.5548%" height="15" fill="rgb(234,217,39)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="447.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="421" width="47.5548%" height="15" fill="rgb(207,178,40)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="431.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="405" width="47.5548%" height="15" fill="rgb(221,136,13)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="415.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="389" width="47.5548%" height="15" fill="rgb(249,199,10)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="399.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="373" width="47.5548%" height="15" fill="rgb(249,222,13)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="383.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="357" width="47.5548%" height="15" fill="rgb(244,185,38)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="367.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="341" width="47.5548%" height="15" fill="rgb(236,202,9)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="351.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="325" width="47.5548%" height="15" fill="rgb(250,229,37)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="335.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="309" width="47.5548%" height="15" fill="rgb(206,174,23)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="319.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="293" width="47.5548%" height="15" fill="rgb(211,33,43)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="303.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="277" width="47.5548%" height="15" fill="rgb(245,58,50)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="287.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="261" width="47.5548%" height="15" fill="rgb(244,68,36)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="271.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="245" width="47.5548%" height="15" fill="rgb(232,229,15)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="255.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="229" width="47.5548%" height="15" fill="rgb(254,30,23)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="239.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="213" width="47.5548%" height="15" fill="rgb(235,160,14)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="223.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="197" width="47.5548%" height="15" fill="rgb(212,155,44)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="207.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="181" width="47.5548%" height="15" fill="rgb(226,2,50)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="191.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="165" width="47.5548%" height="15" fill="rgb(234,177,6)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="175.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="149" width="47.5548%" height="15" fill="rgb(217,24,9)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="159.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="133" width="47.5548%" height="15" fill="rgb(220,13,46)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="143.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="117" width="47.5548%" height="15" fill="rgb(239,221,27)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="127.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="101" width="47.5548%" height="15" fill="rgb(222,198,25)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="111.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1,974 samples, 47.55%)</title><rect x="0.0482%" y="85" width="47.5548%" height="15" fill="rgb(211,99,13)" fg:x="2" fg:w="1974"/><text x="0.2982%" y="95.50">aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (249 samples, 6.00%)</title><rect x="41.6044%" y="69" width="5.9986%" height="15" fill="rgb(232,111,31)" fg:x="1727" fg:w="249"/><text x="41.8544%" y="79.50">libsyste..</text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (249 samples, 6.00%)</title><rect x="41.6044%" y="53" width="5.9986%" height="15" fill="rgb(245,82,37)" fg:x="1727" fg:w="249"/><text x="41.8544%" y="63.50">libsyste..</text></g><g><title>libsystem_kernel.dylib`madvise (249 samples, 6.00%)</title><rect x="41.6044%" y="37" width="5.9986%" height="15" fill="rgb(227,149,46)" fg:x="1727" fg:w="249"/><text x="41.8544%" y="47.50">libsyste..</text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="47.6030%" y="37" width="0.0241%" height="15" fill="rgb(218,36,50)" fg:x="1976" fg:w="1"/><text x="47.8530%" y="47.50"></text></g><g><title>aiken`main (2 samples, 0.05%)</title><rect x="47.6030%" y="1621" width="0.0482%" height="15" fill="rgb(226,80,48)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1631.50"></text></g><g><title>aiken`std::rt::lang_start_internal (2 samples, 0.05%)</title><rect x="47.6030%" y="1605" width="0.0482%" height="15" fill="rgb(238,224,15)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1615.50"></text></g><g><title>aiken`std::rt::lang_start::_{{closure}} (2 samples, 0.05%)</title><rect x="47.6030%" y="1589" width="0.0482%" height="15" fill="rgb(241,136,10)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1599.50"></text></g><g><title>aiken`std::sys_common::backtrace::__rust_begin_short_backtrace (2 samples, 0.05%)</title><rect x="47.6030%" y="1573" width="0.0482%" height="15" fill="rgb(208,32,45)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1583.50"></text></g><g><title>aiken`aiken::main (2 samples, 0.05%)</title><rect x="47.6030%" y="1557" width="0.0482%" height="15" fill="rgb(207,135,9)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1567.50"></text></g><g><title>aiken`aiken::cmd::uplc::exec (2 samples, 0.05%)</title><rect x="47.6030%" y="1541" width="0.0482%" height="15" fill="rgb(206,86,44)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1551.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (2 samples, 0.05%)</title><rect x="47.6030%" y="1525" width="0.0482%" height="15" fill="rgb(245,177,15)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1535.50"></text></g><g><title>aiken`uplc::machine::Machine::run (2 samples, 0.05%)</title><rect x="47.6030%" y="1509" width="0.0482%" height="15" fill="rgb(206,64,50)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1493" width="0.0482%" height="15" fill="rgb(234,36,40)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1477" width="0.0482%" height="15" fill="rgb(213,64,8)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1461" width="0.0482%" height="15" fill="rgb(210,75,36)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1445" width="0.0482%" height="15" fill="rgb(229,88,21)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1429" width="0.0482%" height="15" fill="rgb(252,204,47)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1413" width="0.0482%" height="15" fill="rgb(208,77,27)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1397" width="0.0482%" height="15" fill="rgb(221,76,26)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1381" width="0.0482%" height="15" fill="rgb(225,139,18)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1365" width="0.0482%" height="15" fill="rgb(230,137,11)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1349" width="0.0482%" height="15" fill="rgb(212,28,1)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1333" width="0.0482%" height="15" fill="rgb(248,164,17)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1317" width="0.0482%" height="15" fill="rgb(222,171,42)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1301" width="0.0482%" height="15" fill="rgb(243,84,45)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1285" width="0.0482%" height="15" fill="rgb(252,49,23)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1269" width="0.0482%" height="15" fill="rgb(215,19,7)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1253" width="0.0482%" height="15" fill="rgb(238,81,41)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1237" width="0.0482%" height="15" fill="rgb(210,199,37)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1221" width="0.0482%" height="15" fill="rgb(244,192,49)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1205" width="0.0482%" height="15" fill="rgb(226,211,11)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1189" width="0.0482%" height="15" fill="rgb(236,162,54)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1173" width="0.0482%" height="15" fill="rgb(220,229,9)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1157" width="0.0482%" height="15" fill="rgb(250,87,22)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1141" width="0.0482%" height="15" fill="rgb(239,43,17)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1125" width="0.0482%" height="15" fill="rgb(231,177,25)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1109" width="0.0482%" height="15" fill="rgb(219,179,1)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1093" width="0.0482%" height="15" fill="rgb(238,219,53)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1077" width="0.0482%" height="15" fill="rgb(232,167,36)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1061" width="0.0482%" height="15" fill="rgb(244,19,51)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1045" width="0.0482%" height="15" fill="rgb(224,6,22)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1029" width="0.0482%" height="15" fill="rgb(224,145,5)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="1013" width="0.0482%" height="15" fill="rgb(234,130,49)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="997" width="0.0482%" height="15" fill="rgb(254,6,2)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="981" width="0.0482%" height="15" fill="rgb(208,96,46)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="965" width="0.0482%" height="15" fill="rgb(239,3,39)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="949" width="0.0482%" height="15" fill="rgb(233,210,1)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="933" width="0.0482%" height="15" fill="rgb(244,137,37)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="917" width="0.0482%" height="15" fill="rgb(240,136,2)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="901" width="0.0482%" height="15" fill="rgb(239,18,37)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="885" width="0.0482%" height="15" fill="rgb(218,185,22)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="869" width="0.0482%" height="15" fill="rgb(225,218,4)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="853" width="0.0482%" height="15" fill="rgb(230,182,32)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="837" width="0.0482%" height="15" fill="rgb(242,56,43)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="821" width="0.0482%" height="15" fill="rgb(233,99,24)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="805" width="0.0482%" height="15" fill="rgb(234,209,42)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="789" width="0.0482%" height="15" fill="rgb(227,7,12)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="773" width="0.0482%" height="15" fill="rgb(245,203,43)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="757" width="0.0482%" height="15" fill="rgb(238,205,33)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="741" width="0.0482%" height="15" fill="rgb(231,56,7)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="725" width="0.0482%" height="15" fill="rgb(244,186,29)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="709" width="0.0482%" height="15" fill="rgb(234,111,31)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="693" width="0.0482%" height="15" fill="rgb(241,149,10)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="677" width="0.0482%" height="15" fill="rgb(249,206,44)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="661" width="0.0482%" height="15" fill="rgb(251,153,30)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="645" width="0.0482%" height="15" fill="rgb(239,152,38)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="629" width="0.0482%" height="15" fill="rgb(249,139,47)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="613" width="0.0482%" height="15" fill="rgb(244,64,35)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="597" width="0.0482%" height="15" fill="rgb(216,46,15)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="581" width="0.0482%" height="15" fill="rgb(250,74,19)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="565" width="0.0482%" height="15" fill="rgb(249,42,33)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="549" width="0.0482%" height="15" fill="rgb(242,149,17)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="533" width="0.0482%" height="15" fill="rgb(244,29,21)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="517" width="0.0482%" height="15" fill="rgb(220,130,37)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="501" width="0.0482%" height="15" fill="rgb(211,67,2)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="485" width="0.0482%" height="15" fill="rgb(235,68,52)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="469" width="0.0482%" height="15" fill="rgb(246,142,3)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="453" width="0.0482%" height="15" fill="rgb(241,25,7)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="437" width="0.0482%" height="15" fill="rgb(242,119,39)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="421" width="0.0482%" height="15" fill="rgb(241,98,45)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="405" width="0.0482%" height="15" fill="rgb(254,28,30)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="389" width="0.0482%" height="15" fill="rgb(241,142,54)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="373" width="0.0482%" height="15" fill="rgb(222,85,15)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="357" width="0.0482%" height="15" fill="rgb(210,85,47)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="341" width="0.0482%" height="15" fill="rgb(224,206,25)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="325" width="0.0482%" height="15" fill="rgb(243,201,19)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="309" width="0.0482%" height="15" fill="rgb(236,59,4)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="293" width="0.0482%" height="15" fill="rgb(254,179,45)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="277" width="0.0482%" height="15" fill="rgb(226,14,10)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="261" width="0.0482%" height="15" fill="rgb(244,27,41)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="245" width="0.0482%" height="15" fill="rgb(235,35,32)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="229" width="0.0482%" height="15" fill="rgb(218,68,31)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="213" width="0.0482%" height="15" fill="rgb(207,120,37)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="197" width="0.0482%" height="15" fill="rgb(227,98,0)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="181" width="0.0482%" height="15" fill="rgb(207,7,3)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="165" width="0.0482%" height="15" fill="rgb(206,98,19)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="149" width="0.0482%" height="15" fill="rgb(217,5,26)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="133" width="0.0482%" height="15" fill="rgb(235,190,38)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="117" width="0.0482%" height="15" fill="rgb(247,86,24)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="101" width="0.0482%" height="15" fill="rgb(205,101,16)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="85" width="0.0482%" height="15" fill="rgb(246,168,33)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="69" width="0.0482%" height="15" fill="rgb(231,114,1)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6030%" y="53" width="0.0482%" height="15" fill="rgb(207,184,53)" fg:x="1976" fg:w="2"/><text x="47.8530%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="47.6271%" y="37" width="0.0241%" height="15" fill="rgb(224,95,51)" fg:x="1977" fg:w="1"/><text x="47.8771%" y="47.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1525" width="0.0241%" height="15" fill="rgb(212,188,45)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1509" width="0.0241%" height="15" fill="rgb(223,154,38)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1493" width="0.0241%" height="15" fill="rgb(251,22,52)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1477" width="0.0241%" height="15" fill="rgb(229,209,22)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1461" width="0.0241%" height="15" fill="rgb(234,138,34)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1445" width="0.0241%" height="15" fill="rgb(212,95,11)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1429" width="0.0241%" height="15" fill="rgb(240,179,47)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1413" width="0.0241%" height="15" fill="rgb(240,163,11)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1397" width="0.0241%" height="15" fill="rgb(236,37,12)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1381" width="0.0241%" height="15" fill="rgb(232,164,16)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1365" width="0.0241%" height="15" fill="rgb(244,205,15)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1349" width="0.0241%" height="15" fill="rgb(223,117,47)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1333" width="0.0241%" height="15" fill="rgb(244,107,35)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1317" width="0.0241%" height="15" fill="rgb(205,140,8)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1301" width="0.0241%" height="15" fill="rgb(228,84,46)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1285" width="0.0241%" height="15" fill="rgb(254,188,9)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1269" width="0.0241%" height="15" fill="rgb(206,112,54)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1253" width="0.0241%" height="15" fill="rgb(216,84,49)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1237" width="0.0241%" height="15" fill="rgb(214,194,35)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1221" width="0.0241%" height="15" fill="rgb(249,28,3)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1205" width="0.0241%" height="15" fill="rgb(222,56,52)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1189" width="0.0241%" height="15" fill="rgb(245,217,50)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1173" width="0.0241%" height="15" fill="rgb(213,201,24)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1157" width="0.0241%" height="15" fill="rgb(248,116,28)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1141" width="0.0241%" height="15" fill="rgb(219,72,43)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1125" width="0.0241%" height="15" fill="rgb(209,138,14)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1109" width="0.0241%" height="15" fill="rgb(222,18,33)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1093" width="0.0241%" height="15" fill="rgb(213,199,7)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1077" width="0.0241%" height="15" fill="rgb(250,110,10)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1061" width="0.0241%" height="15" fill="rgb(248,123,6)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1045" width="0.0241%" height="15" fill="rgb(206,91,31)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1029" width="0.0241%" height="15" fill="rgb(211,154,13)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="1013" width="0.0241%" height="15" fill="rgb(225,148,7)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="997" width="0.0241%" height="15" fill="rgb(220,160,43)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="981" width="0.0241%" height="15" fill="rgb(213,52,39)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="965" width="0.0241%" height="15" fill="rgb(243,137,7)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="949" width="0.0241%" height="15" fill="rgb(230,79,13)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="933" width="0.0241%" height="15" fill="rgb(247,105,23)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="917" width="0.0241%" height="15" fill="rgb(223,179,41)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="901" width="0.0241%" height="15" fill="rgb(218,9,34)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="885" width="0.0241%" height="15" fill="rgb(222,106,8)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="869" width="0.0241%" height="15" fill="rgb(211,220,0)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="853" width="0.0241%" height="15" fill="rgb(229,52,16)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="837" width="0.0241%" height="15" fill="rgb(212,155,18)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="821" width="0.0241%" height="15" fill="rgb(242,21,14)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="805" width="0.0241%" height="15" fill="rgb(222,19,48)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="789" width="0.0241%" height="15" fill="rgb(232,45,27)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="773" width="0.0241%" height="15" fill="rgb(249,103,42)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="757" width="0.0241%" height="15" fill="rgb(246,81,33)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="741" width="0.0241%" height="15" fill="rgb(252,33,42)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="725" width="0.0241%" height="15" fill="rgb(209,212,41)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="709" width="0.0241%" height="15" fill="rgb(207,154,6)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="693" width="0.0241%" height="15" fill="rgb(223,64,47)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="677" width="0.0241%" height="15" fill="rgb(211,161,38)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="661" width="0.0241%" height="15" fill="rgb(219,138,40)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="645" width="0.0241%" height="15" fill="rgb(241,228,46)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="629" width="0.0241%" height="15" fill="rgb(223,209,38)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="613" width="0.0241%" height="15" fill="rgb(236,164,45)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="597" width="0.0241%" height="15" fill="rgb(231,15,5)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="581" width="0.0241%" height="15" fill="rgb(252,35,15)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="565" width="0.0241%" height="15" fill="rgb(248,181,18)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="549" width="0.0241%" height="15" fill="rgb(233,39,42)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="533" width="0.0241%" height="15" fill="rgb(238,110,33)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="517" width="0.0241%" height="15" fill="rgb(233,195,10)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="501" width="0.0241%" height="15" fill="rgb(254,105,3)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="485" width="0.0241%" height="15" fill="rgb(221,225,9)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="469" width="0.0241%" height="15" fill="rgb(224,227,45)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="453" width="0.0241%" height="15" fill="rgb(229,198,43)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="437" width="0.0241%" height="15" fill="rgb(206,209,35)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="421" width="0.0241%" height="15" fill="rgb(245,195,53)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="405" width="0.0241%" height="15" fill="rgb(240,92,26)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="389" width="0.0241%" height="15" fill="rgb(207,40,23)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="373" width="0.0241%" height="15" fill="rgb(223,111,35)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="357" width="0.0241%" height="15" fill="rgb(229,147,28)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="341" width="0.0241%" height="15" fill="rgb(211,29,28)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="325" width="0.0241%" height="15" fill="rgb(228,72,33)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="309" width="0.0241%" height="15" fill="rgb(205,214,31)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="293" width="0.0241%" height="15" fill="rgb(224,111,15)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="277" width="0.0241%" height="15" fill="rgb(253,21,26)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="261" width="0.0241%" height="15" fill="rgb(245,139,43)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="245" width="0.0241%" height="15" fill="rgb(252,170,7)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="229" width="0.0241%" height="15" fill="rgb(231,118,14)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="213" width="0.0241%" height="15" fill="rgb(238,83,0)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="197" width="0.0241%" height="15" fill="rgb(221,39,39)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="181" width="0.0241%" height="15" fill="rgb(222,119,46)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="165" width="0.0241%" height="15" fill="rgb(222,165,49)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="149" width="0.0241%" height="15" fill="rgb(219,113,52)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="133" width="0.0241%" height="15" fill="rgb(214,7,15)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="117" width="0.0241%" height="15" fill="rgb(235,32,4)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="101" width="0.0241%" height="15" fill="rgb(238,90,54)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="85" width="0.0241%" height="15" fill="rgb(213,208,19)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="69" width="0.0241%" height="15" fill="rgb(233,156,4)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="53" width="0.0241%" height="15" fill="rgb(207,194,5)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.6512%" y="37" width="0.0241%" height="15" fill="rgb(206,111,30)" fg:x="1978" fg:w="1"/><text x="47.9012%" y="47.50"></text></g><g><title>aiken`std::rt::lang_start::_{{closure}} (3 samples, 0.07%)</title><rect x="47.6512%" y="1621" width="0.0723%" height="15" fill="rgb(243,70,54)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1631.50"></text></g><g><title>aiken`std::sys_common::backtrace::__rust_begin_short_backtrace (3 samples, 0.07%)</title><rect x="47.6512%" y="1605" width="0.0723%" height="15" fill="rgb(242,28,8)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1615.50"></text></g><g><title>aiken`aiken::main (3 samples, 0.07%)</title><rect x="47.6512%" y="1589" width="0.0723%" height="15" fill="rgb(219,106,18)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1599.50"></text></g><g><title>aiken`aiken::cmd::uplc::exec (3 samples, 0.07%)</title><rect x="47.6512%" y="1573" width="0.0723%" height="15" fill="rgb(244,222,10)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1583.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (3 samples, 0.07%)</title><rect x="47.6512%" y="1557" width="0.0723%" height="15" fill="rgb(236,179,52)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1567.50"></text></g><g><title>aiken`uplc::machine::Machine::run (3 samples, 0.07%)</title><rect x="47.6512%" y="1541" width="0.0723%" height="15" fill="rgb(213,23,39)" fg:x="1978" fg:w="3"/><text x="47.9012%" y="1551.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (2 samples, 0.05%)</title><rect x="47.6753%" y="1525" width="0.0482%" height="15" fill="rgb(238,48,10)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1509" width="0.0482%" height="15" fill="rgb(251,196,23)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1493" width="0.0482%" height="15" fill="rgb(250,152,24)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1477" width="0.0482%" height="15" fill="rgb(209,150,17)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1461" width="0.0482%" height="15" fill="rgb(234,202,34)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1445" width="0.0482%" height="15" fill="rgb(253,148,53)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1429" width="0.0482%" height="15" fill="rgb(218,129,16)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1413" width="0.0482%" height="15" fill="rgb(216,85,19)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1397" width="0.0482%" height="15" fill="rgb(235,228,7)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1381" width="0.0482%" height="15" fill="rgb(245,175,0)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1365" width="0.0482%" height="15" fill="rgb(208,168,36)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1349" width="0.0482%" height="15" fill="rgb(246,171,24)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1333" width="0.0482%" height="15" fill="rgb(215,142,24)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1317" width="0.0482%" height="15" fill="rgb(250,187,7)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1301" width="0.0482%" height="15" fill="rgb(228,66,33)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1285" width="0.0482%" height="15" fill="rgb(234,215,21)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1269" width="0.0482%" height="15" fill="rgb(222,191,20)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1253" width="0.0482%" height="15" fill="rgb(245,79,54)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1237" width="0.0482%" height="15" fill="rgb(240,10,37)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1221" width="0.0482%" height="15" fill="rgb(214,192,32)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1205" width="0.0482%" height="15" fill="rgb(209,36,54)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1189" width="0.0482%" height="15" fill="rgb(220,10,11)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1173" width="0.0482%" height="15" fill="rgb(221,106,17)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1157" width="0.0482%" height="15" fill="rgb(251,142,44)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1141" width="0.0482%" height="15" fill="rgb(238,13,15)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1125" width="0.0482%" height="15" fill="rgb(208,107,27)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1109" width="0.0482%" height="15" fill="rgb(205,136,37)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1093" width="0.0482%" height="15" fill="rgb(250,205,27)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1077" width="0.0482%" height="15" fill="rgb(210,80,43)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1061" width="0.0482%" height="15" fill="rgb(247,160,36)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1045" width="0.0482%" height="15" fill="rgb(234,13,49)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1029" width="0.0482%" height="15" fill="rgb(234,122,0)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="1013" width="0.0482%" height="15" fill="rgb(207,146,38)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="997" width="0.0482%" height="15" fill="rgb(207,177,25)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="981" width="0.0482%" height="15" fill="rgb(211,178,42)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="965" width="0.0482%" height="15" fill="rgb(230,69,54)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="949" width="0.0482%" height="15" fill="rgb(214,135,41)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="933" width="0.0482%" height="15" fill="rgb(237,67,25)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="917" width="0.0482%" height="15" fill="rgb(222,189,50)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="901" width="0.0482%" height="15" fill="rgb(245,148,34)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="885" width="0.0482%" height="15" fill="rgb(222,29,6)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="869" width="0.0482%" height="15" fill="rgb(221,189,43)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="853" width="0.0482%" height="15" fill="rgb(207,36,27)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="837" width="0.0482%" height="15" fill="rgb(217,90,24)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="821" width="0.0482%" height="15" fill="rgb(224,66,35)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="805" width="0.0482%" height="15" fill="rgb(221,13,50)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="789" width="0.0482%" height="15" fill="rgb(236,68,49)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="773" width="0.0482%" height="15" fill="rgb(229,146,28)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="757" width="0.0482%" height="15" fill="rgb(225,31,38)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="741" width="0.0482%" height="15" fill="rgb(250,208,3)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="725" width="0.0482%" height="15" fill="rgb(246,54,23)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="709" width="0.0482%" height="15" fill="rgb(243,76,11)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="693" width="0.0482%" height="15" fill="rgb(245,21,50)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="677" width="0.0482%" height="15" fill="rgb(228,9,43)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="661" width="0.0482%" height="15" fill="rgb(208,100,47)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="645" width="0.0482%" height="15" fill="rgb(232,26,8)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="629" width="0.0482%" height="15" fill="rgb(216,166,38)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="613" width="0.0482%" height="15" fill="rgb(251,202,51)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="597" width="0.0482%" height="15" fill="rgb(254,216,34)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="581" width="0.0482%" height="15" fill="rgb(251,32,27)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="565" width="0.0482%" height="15" fill="rgb(208,127,28)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="549" width="0.0482%" height="15" fill="rgb(224,137,22)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="533" width="0.0482%" height="15" fill="rgb(254,70,32)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="517" width="0.0482%" height="15" fill="rgb(229,75,37)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="501" width="0.0482%" height="15" fill="rgb(252,64,23)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="485" width="0.0482%" height="15" fill="rgb(232,162,48)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="469" width="0.0482%" height="15" fill="rgb(246,160,12)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="453" width="0.0482%" height="15" fill="rgb(247,166,0)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="437" width="0.0482%" height="15" fill="rgb(249,219,21)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="421" width="0.0482%" height="15" fill="rgb(205,209,3)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="405" width="0.0482%" height="15" fill="rgb(243,44,1)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="389" width="0.0482%" height="15" fill="rgb(206,159,16)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="373" width="0.0482%" height="15" fill="rgb(244,77,30)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="357" width="0.0482%" height="15" fill="rgb(218,69,12)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="341" width="0.0482%" height="15" fill="rgb(212,87,7)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="325" width="0.0482%" height="15" fill="rgb(245,114,25)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="309" width="0.0482%" height="15" fill="rgb(210,61,42)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="293" width="0.0482%" height="15" fill="rgb(211,52,33)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="277" width="0.0482%" height="15" fill="rgb(234,58,33)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="261" width="0.0482%" height="15" fill="rgb(220,115,36)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="245" width="0.0482%" height="15" fill="rgb(243,153,54)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="229" width="0.0482%" height="15" fill="rgb(251,47,18)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="213" width="0.0482%" height="15" fill="rgb(242,102,42)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="197" width="0.0482%" height="15" fill="rgb(234,31,38)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="181" width="0.0482%" height="15" fill="rgb(221,117,51)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="165" width="0.0482%" height="15" fill="rgb(212,20,18)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="149" width="0.0482%" height="15" fill="rgb(245,133,36)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="133" width="0.0482%" height="15" fill="rgb(212,6,19)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="117" width="0.0482%" height="15" fill="rgb(218,1,36)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="101" width="0.0482%" height="15" fill="rgb(246,84,54)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="85" width="0.0482%" height="15" fill="rgb(242,110,6)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="69" width="0.0482%" height="15" fill="rgb(214,47,5)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="53" width="0.0482%" height="15" fill="rgb(218,159,25)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="47.6753%" y="37" width="0.0482%" height="15" fill="rgb(215,211,28)" fg:x="1979" fg:w="2"/><text x="47.9253%" y="47.50"></text></g><g><title>aiken`std::rt::lang_start_internal (1 samples, 0.02%)</title><rect x="47.7234%" y="1621" width="0.0241%" height="15" fill="rgb(238,59,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1631.50"></text></g><g><title>aiken`std::rt::lang_start::_{{closure}} (1 samples, 0.02%)</title><rect x="47.7234%" y="1605" width="0.0241%" height="15" fill="rgb(226,82,3)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1615.50"></text></g><g><title>aiken`std::sys_common::backtrace::__rust_begin_short_backtrace (1 samples, 0.02%)</title><rect x="47.7234%" y="1589" width="0.0241%" height="15" fill="rgb(240,164,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1599.50"></text></g><g><title>aiken`aiken::main (1 samples, 0.02%)</title><rect x="47.7234%" y="1573" width="0.0241%" height="15" fill="rgb(232,46,7)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1583.50"></text></g><g><title>aiken`aiken::cmd::uplc::exec (1 samples, 0.02%)</title><rect x="47.7234%" y="1557" width="0.0241%" height="15" fill="rgb(229,129,53)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1567.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (1 samples, 0.02%)</title><rect x="47.7234%" y="1541" width="0.0241%" height="15" fill="rgb(234,188,29)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1551.50"></text></g><g><title>aiken`uplc::machine::Machine::run (1 samples, 0.02%)</title><rect x="47.7234%" y="1525" width="0.0241%" height="15" fill="rgb(246,141,4)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1535.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (1 samples, 0.02%)</title><rect x="47.7234%" y="1509" width="0.0241%" height="15" fill="rgb(229,23,39)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1493" width="0.0241%" height="15" fill="rgb(206,12,3)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1477" width="0.0241%" height="15" fill="rgb(252,226,20)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1461" width="0.0241%" height="15" fill="rgb(216,123,35)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1445" width="0.0241%" height="15" fill="rgb(212,68,40)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1429" width="0.0241%" height="15" fill="rgb(254,125,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1413" width="0.0241%" height="15" fill="rgb(253,97,22)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1397" width="0.0241%" height="15" fill="rgb(241,101,14)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1381" width="0.0241%" height="15" fill="rgb(238,103,29)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1365" width="0.0241%" height="15" fill="rgb(233,195,47)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1349" width="0.0241%" height="15" fill="rgb(246,218,30)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1333" width="0.0241%" height="15" fill="rgb(219,145,47)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1317" width="0.0241%" height="15" fill="rgb(243,12,26)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1301" width="0.0241%" height="15" fill="rgb(214,87,16)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1285" width="0.0241%" height="15" fill="rgb(208,99,42)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1269" width="0.0241%" height="15" fill="rgb(253,99,2)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1253" width="0.0241%" height="15" fill="rgb(220,168,23)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1237" width="0.0241%" height="15" fill="rgb(242,38,24)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1221" width="0.0241%" height="15" fill="rgb(225,182,9)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1205" width="0.0241%" height="15" fill="rgb(243,178,37)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1189" width="0.0241%" height="15" fill="rgb(232,139,19)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1173" width="0.0241%" height="15" fill="rgb(225,201,24)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1157" width="0.0241%" height="15" fill="rgb(221,47,46)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1141" width="0.0241%" height="15" fill="rgb(249,23,13)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1125" width="0.0241%" height="15" fill="rgb(219,9,5)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1109" width="0.0241%" height="15" fill="rgb(254,171,16)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1093" width="0.0241%" height="15" fill="rgb(230,171,20)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1077" width="0.0241%" height="15" fill="rgb(210,71,41)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1061" width="0.0241%" height="15" fill="rgb(206,173,20)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1045" width="0.0241%" height="15" fill="rgb(233,88,34)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1029" width="0.0241%" height="15" fill="rgb(223,209,46)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="1013" width="0.0241%" height="15" fill="rgb(250,43,18)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="997" width="0.0241%" height="15" fill="rgb(208,13,10)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="981" width="0.0241%" height="15" fill="rgb(212,200,36)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="965" width="0.0241%" height="15" fill="rgb(225,90,30)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="949" width="0.0241%" height="15" fill="rgb(236,182,39)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="933" width="0.0241%" height="15" fill="rgb(212,144,35)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="917" width="0.0241%" height="15" fill="rgb(228,63,44)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="901" width="0.0241%" height="15" fill="rgb(228,109,6)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="885" width="0.0241%" height="15" fill="rgb(238,117,24)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="869" width="0.0241%" height="15" fill="rgb(242,26,26)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="853" width="0.0241%" height="15" fill="rgb(221,92,48)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="837" width="0.0241%" height="15" fill="rgb(209,209,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="821" width="0.0241%" height="15" fill="rgb(221,70,22)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="805" width="0.0241%" height="15" fill="rgb(248,145,5)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="789" width="0.0241%" height="15" fill="rgb(226,116,26)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="773" width="0.0241%" height="15" fill="rgb(244,5,17)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="757" width="0.0241%" height="15" fill="rgb(252,159,33)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="741" width="0.0241%" height="15" fill="rgb(206,71,0)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="725" width="0.0241%" height="15" fill="rgb(233,118,54)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="709" width="0.0241%" height="15" fill="rgb(234,83,48)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="693" width="0.0241%" height="15" fill="rgb(228,3,54)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="677" width="0.0241%" height="15" fill="rgb(226,155,13)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="661" width="0.0241%" height="15" fill="rgb(241,28,37)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="645" width="0.0241%" height="15" fill="rgb(233,93,10)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="629" width="0.0241%" height="15" fill="rgb(225,113,19)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="613" width="0.0241%" height="15" fill="rgb(241,2,18)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="597" width="0.0241%" height="15" fill="rgb(228,207,21)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="581" width="0.0241%" height="15" fill="rgb(213,211,35)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="565" width="0.0241%" height="15" fill="rgb(209,83,10)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="549" width="0.0241%" height="15" fill="rgb(209,164,1)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="533" width="0.0241%" height="15" fill="rgb(213,184,43)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="517" width="0.0241%" height="15" fill="rgb(231,61,34)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="501" width="0.0241%" height="15" fill="rgb(235,75,3)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="485" width="0.0241%" height="15" fill="rgb(220,106,47)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="469" width="0.0241%" height="15" fill="rgb(210,196,33)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="453" width="0.0241%" height="15" fill="rgb(229,154,42)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="437" width="0.0241%" height="15" fill="rgb(228,114,26)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="421" width="0.0241%" height="15" fill="rgb(208,144,1)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="405" width="0.0241%" height="15" fill="rgb(239,112,37)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="389" width="0.0241%" height="15" fill="rgb(210,96,50)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="373" width="0.0241%" height="15" fill="rgb(222,178,2)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="357" width="0.0241%" height="15" fill="rgb(226,74,18)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="341" width="0.0241%" height="15" fill="rgb(225,67,54)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="325" width="0.0241%" height="15" fill="rgb(251,92,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="309" width="0.0241%" height="15" fill="rgb(228,149,22)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="293" width="0.0241%" height="15" fill="rgb(243,54,13)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="277" width="0.0241%" height="15" fill="rgb(243,180,28)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="261" width="0.0241%" height="15" fill="rgb(208,167,24)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="245" width="0.0241%" height="15" fill="rgb(245,73,45)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="229" width="0.0241%" height="15" fill="rgb(237,203,48)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="213" width="0.0241%" height="15" fill="rgb(211,197,16)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="197" width="0.0241%" height="15" fill="rgb(243,99,51)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="181" width="0.0241%" height="15" fill="rgb(215,123,29)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="165" width="0.0241%" height="15" fill="rgb(239,186,37)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="149" width="0.0241%" height="15" fill="rgb(252,136,39)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="133" width="0.0241%" height="15" fill="rgb(223,213,32)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="117" width="0.0241%" height="15" fill="rgb(233,115,5)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="101" width="0.0241%" height="15" fill="rgb(207,226,44)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="85" width="0.0241%" height="15" fill="rgb(208,126,0)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="69" width="0.0241%" height="15" fill="rgb(244,66,21)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7234%" y="53" width="0.0241%" height="15" fill="rgb(222,97,12)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="47.7234%" y="37" width="0.0241%" height="15" fill="rgb(219,213,19)" fg:x="1981" fg:w="1"/><text x="47.9734%" y="47.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.7475%" y="37" width="0.0241%" height="15" fill="rgb(252,169,30)" fg:x="1982" fg:w="1"/><text x="47.9975%" y="47.50"></text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (3 samples, 0.07%)</title><rect x="47.7475%" y="1621" width="0.0723%" height="15" fill="rgb(206,32,51)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1631.50"></text></g><g><title>aiken`uplc::machine::Machine::run (3 samples, 0.07%)</title><rect x="47.7475%" y="1605" width="0.0723%" height="15" fill="rgb(250,172,42)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1615.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1589" width="0.0723%" height="15" fill="rgb(209,34,43)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1599.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1573" width="0.0723%" height="15" fill="rgb(223,11,35)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1583.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1557" width="0.0723%" height="15" fill="rgb(251,219,26)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1567.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1541" width="0.0723%" height="15" fill="rgb(231,119,3)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1551.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1525" width="0.0723%" height="15" fill="rgb(216,97,11)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1509" width="0.0723%" height="15" fill="rgb(223,59,9)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1493" width="0.0723%" height="15" fill="rgb(233,93,31)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1477" width="0.0723%" height="15" fill="rgb(239,81,33)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1461" width="0.0723%" height="15" fill="rgb(213,120,34)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1445" width="0.0723%" height="15" fill="rgb(243,49,53)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1429" width="0.0723%" height="15" fill="rgb(247,216,33)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1413" width="0.0723%" height="15" fill="rgb(226,26,14)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1397" width="0.0723%" height="15" fill="rgb(215,49,53)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1381" width="0.0723%" height="15" fill="rgb(245,162,40)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1365" width="0.0723%" height="15" fill="rgb(229,68,17)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1349" width="0.0723%" height="15" fill="rgb(213,182,10)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1333" width="0.0723%" height="15" fill="rgb(245,125,30)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1317" width="0.0723%" height="15" fill="rgb(232,202,2)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1301" width="0.0723%" height="15" fill="rgb(237,140,51)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1285" width="0.0723%" height="15" fill="rgb(236,157,25)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1269" width="0.0723%" height="15" fill="rgb(219,209,0)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1253" width="0.0723%" height="15" fill="rgb(240,116,54)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1237" width="0.0723%" height="15" fill="rgb(216,10,36)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1221" width="0.0723%" height="15" fill="rgb(222,72,44)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1205" width="0.0723%" height="15" fill="rgb(232,159,9)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1189" width="0.0723%" height="15" fill="rgb(210,39,32)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1173" width="0.0723%" height="15" fill="rgb(216,194,45)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1157" width="0.0723%" height="15" fill="rgb(218,18,35)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1141" width="0.0723%" height="15" fill="rgb(207,83,51)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1125" width="0.0723%" height="15" fill="rgb(225,63,43)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1109" width="0.0723%" height="15" fill="rgb(207,57,36)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1093" width="0.0723%" height="15" fill="rgb(216,99,33)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1077" width="0.0723%" height="15" fill="rgb(225,42,16)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1061" width="0.0723%" height="15" fill="rgb(220,201,45)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1045" width="0.0723%" height="15" fill="rgb(225,33,4)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1029" width="0.0723%" height="15" fill="rgb(224,33,50)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="1013" width="0.0723%" height="15" fill="rgb(246,198,51)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="997" width="0.0723%" height="15" fill="rgb(205,22,4)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="981" width="0.0723%" height="15" fill="rgb(206,3,8)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="965" width="0.0723%" height="15" fill="rgb(251,23,15)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="949" width="0.0723%" height="15" fill="rgb(252,88,28)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="933" width="0.0723%" height="15" fill="rgb(212,127,14)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="917" width="0.0723%" height="15" fill="rgb(247,145,37)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="901" width="0.0723%" height="15" fill="rgb(209,117,53)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="885" width="0.0723%" height="15" fill="rgb(212,90,42)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="869" width="0.0723%" height="15" fill="rgb(218,164,37)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="853" width="0.0723%" height="15" fill="rgb(246,65,34)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="837" width="0.0723%" height="15" fill="rgb(231,100,33)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="821" width="0.0723%" height="15" fill="rgb(228,126,14)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="805" width="0.0723%" height="15" fill="rgb(215,173,21)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="789" width="0.0723%" height="15" fill="rgb(210,6,40)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="773" width="0.0723%" height="15" fill="rgb(212,48,18)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="757" width="0.0723%" height="15" fill="rgb(230,214,11)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="741" width="0.0723%" height="15" fill="rgb(254,105,39)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="725" width="0.0723%" height="15" fill="rgb(245,158,5)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="709" width="0.0723%" height="15" fill="rgb(249,208,11)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="693" width="0.0723%" height="15" fill="rgb(210,39,28)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="677" width="0.0723%" height="15" fill="rgb(211,56,53)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="661" width="0.0723%" height="15" fill="rgb(226,201,30)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="645" width="0.0723%" height="15" fill="rgb(239,101,34)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="629" width="0.0723%" height="15" fill="rgb(226,209,5)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="613" width="0.0723%" height="15" fill="rgb(250,105,47)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="597" width="0.0723%" height="15" fill="rgb(230,72,3)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="581" width="0.0723%" height="15" fill="rgb(232,218,39)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="565" width="0.0723%" height="15" fill="rgb(248,166,6)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="549" width="0.0723%" height="15" fill="rgb(247,89,20)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="533" width="0.0723%" height="15" fill="rgb(248,130,54)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="517" width="0.0723%" height="15" fill="rgb(234,196,4)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="501" width="0.0723%" height="15" fill="rgb(250,143,31)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="485" width="0.0723%" height="15" fill="rgb(211,110,34)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="469" width="0.0723%" height="15" fill="rgb(215,124,48)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="453" width="0.0723%" height="15" fill="rgb(216,46,13)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="437" width="0.0723%" height="15" fill="rgb(205,184,25)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="421" width="0.0723%" height="15" fill="rgb(228,1,10)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="405" width="0.0723%" height="15" fill="rgb(213,116,27)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="389" width="0.0723%" height="15" fill="rgb(241,95,50)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="373" width="0.0723%" height="15" fill="rgb(238,48,32)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="357" width="0.0723%" height="15" fill="rgb(235,113,49)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="341" width="0.0723%" height="15" fill="rgb(205,127,43)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="325" width="0.0723%" height="15" fill="rgb(250,162,2)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="309" width="0.0723%" height="15" fill="rgb(220,13,41)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="293" width="0.0723%" height="15" fill="rgb(249,221,25)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="277" width="0.0723%" height="15" fill="rgb(215,208,19)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="261" width="0.0723%" height="15" fill="rgb(236,175,2)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="245" width="0.0723%" height="15" fill="rgb(241,52,2)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="229" width="0.0723%" height="15" fill="rgb(248,140,14)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="213" width="0.0723%" height="15" fill="rgb(253,22,42)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="197" width="0.0723%" height="15" fill="rgb(234,61,47)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="181" width="0.0723%" height="15" fill="rgb(208,226,15)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="165" width="0.0723%" height="15" fill="rgb(217,221,4)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="149" width="0.0723%" height="15" fill="rgb(212,174,34)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="133" width="0.0723%" height="15" fill="rgb(253,83,4)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="117" width="0.0723%" height="15" fill="rgb(250,195,49)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="101" width="0.0723%" height="15" fill="rgb(241,192,25)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="85" width="0.0723%" height="15" fill="rgb(208,124,10)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="69" width="0.0723%" height="15" fill="rgb(222,33,0)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="47.7475%" y="53" width="0.0723%" height="15" fill="rgb(234,209,28)" fg:x="1982" fg:w="3"/><text x="47.9975%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (2 samples, 0.05%)</title><rect x="47.7716%" y="37" width="0.0482%" height="15" fill="rgb(224,11,23)" fg:x="1983" fg:w="2"/><text x="48.0216%" y="47.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (1 samples, 0.02%)</title><rect x="47.8198%" y="1621" width="0.0241%" height="15" fill="rgb(232,99,1)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1631.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1605" width="0.0241%" height="15" fill="rgb(237,95,45)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1615.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1589" width="0.0241%" height="15" fill="rgb(208,109,11)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1599.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1573" width="0.0241%" height="15" fill="rgb(216,190,48)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1583.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1557" width="0.0241%" height="15" fill="rgb(251,171,36)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1567.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1541" width="0.0241%" height="15" fill="rgb(230,62,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1551.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1525" width="0.0241%" height="15" fill="rgb(225,114,35)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1509" width="0.0241%" height="15" fill="rgb(215,118,42)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1493" width="0.0241%" height="15" fill="rgb(243,119,21)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1477" width="0.0241%" height="15" fill="rgb(252,177,53)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1461" width="0.0241%" height="15" fill="rgb(237,209,29)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1445" width="0.0241%" height="15" fill="rgb(212,65,23)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1429" width="0.0241%" height="15" fill="rgb(230,222,46)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1413" width="0.0241%" height="15" fill="rgb(215,135,32)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1397" width="0.0241%" height="15" fill="rgb(246,101,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1381" width="0.0241%" height="15" fill="rgb(206,107,13)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1365" width="0.0241%" height="15" fill="rgb(250,100,44)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1349" width="0.0241%" height="15" fill="rgb(231,147,38)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1333" width="0.0241%" height="15" fill="rgb(229,8,40)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1317" width="0.0241%" height="15" fill="rgb(221,135,30)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1301" width="0.0241%" height="15" fill="rgb(249,193,18)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1285" width="0.0241%" height="15" fill="rgb(209,133,39)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1269" width="0.0241%" height="15" fill="rgb(232,100,14)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1253" width="0.0241%" height="15" fill="rgb(224,185,1)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1237" width="0.0241%" height="15" fill="rgb(223,139,8)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1221" width="0.0241%" height="15" fill="rgb(232,213,38)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1205" width="0.0241%" height="15" fill="rgb(207,94,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1189" width="0.0241%" height="15" fill="rgb(219,183,54)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1173" width="0.0241%" height="15" fill="rgb(216,185,54)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1157" width="0.0241%" height="15" fill="rgb(254,217,39)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1141" width="0.0241%" height="15" fill="rgb(240,178,23)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1125" width="0.0241%" height="15" fill="rgb(218,11,47)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1109" width="0.0241%" height="15" fill="rgb(218,51,51)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1093" width="0.0241%" height="15" fill="rgb(238,126,27)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1077" width="0.0241%" height="15" fill="rgb(249,202,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1061" width="0.0241%" height="15" fill="rgb(254,195,49)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1045" width="0.0241%" height="15" fill="rgb(208,123,14)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1029" width="0.0241%" height="15" fill="rgb(224,200,8)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="1013" width="0.0241%" height="15" fill="rgb(217,61,36)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="997" width="0.0241%" height="15" fill="rgb(206,35,45)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="981" width="0.0241%" height="15" fill="rgb(217,65,33)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="965" width="0.0241%" height="15" fill="rgb(222,158,48)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="949" width="0.0241%" height="15" fill="rgb(254,2,54)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="933" width="0.0241%" height="15" fill="rgb(250,143,38)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="917" width="0.0241%" height="15" fill="rgb(248,25,0)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="901" width="0.0241%" height="15" fill="rgb(206,152,27)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="885" width="0.0241%" height="15" fill="rgb(240,77,30)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="869" width="0.0241%" height="15" fill="rgb(231,5,3)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="853" width="0.0241%" height="15" fill="rgb(207,226,32)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="837" width="0.0241%" height="15" fill="rgb(222,207,47)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="821" width="0.0241%" height="15" fill="rgb(229,115,45)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="805" width="0.0241%" height="15" fill="rgb(224,191,6)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="789" width="0.0241%" height="15" fill="rgb(230,227,24)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="773" width="0.0241%" height="15" fill="rgb(228,80,19)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="757" width="0.0241%" height="15" fill="rgb(247,229,0)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="741" width="0.0241%" height="15" fill="rgb(237,194,15)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="725" width="0.0241%" height="15" fill="rgb(219,203,20)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="709" width="0.0241%" height="15" fill="rgb(234,128,8)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="693" width="0.0241%" height="15" fill="rgb(248,202,8)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="677" width="0.0241%" height="15" fill="rgb(206,104,37)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="661" width="0.0241%" height="15" fill="rgb(223,8,27)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="645" width="0.0241%" height="15" fill="rgb(216,217,28)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="629" width="0.0241%" height="15" fill="rgb(249,199,1)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="613" width="0.0241%" height="15" fill="rgb(240,85,17)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="597" width="0.0241%" height="15" fill="rgb(206,108,45)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="581" width="0.0241%" height="15" fill="rgb(245,210,41)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="565" width="0.0241%" height="15" fill="rgb(206,13,37)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="549" width="0.0241%" height="15" fill="rgb(250,61,18)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="533" width="0.0241%" height="15" fill="rgb(235,172,48)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="517" width="0.0241%" height="15" fill="rgb(249,201,17)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="501" width="0.0241%" height="15" fill="rgb(219,208,6)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="485" width="0.0241%" height="15" fill="rgb(248,31,23)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="469" width="0.0241%" height="15" fill="rgb(245,15,42)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="453" width="0.0241%" height="15" fill="rgb(222,217,39)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="437" width="0.0241%" height="15" fill="rgb(210,219,27)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="421" width="0.0241%" height="15" fill="rgb(252,166,36)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="405" width="0.0241%" height="15" fill="rgb(245,132,34)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="389" width="0.0241%" height="15" fill="rgb(236,54,3)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="373" width="0.0241%" height="15" fill="rgb(241,173,43)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="357" width="0.0241%" height="15" fill="rgb(215,190,9)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="341" width="0.0241%" height="15" fill="rgb(242,101,16)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="325" width="0.0241%" height="15" fill="rgb(223,190,21)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="309" width="0.0241%" height="15" fill="rgb(215,228,25)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="293" width="0.0241%" height="15" fill="rgb(225,36,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="277" width="0.0241%" height="15" fill="rgb(251,106,46)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="261" width="0.0241%" height="15" fill="rgb(208,90,1)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="245" width="0.0241%" height="15" fill="rgb(243,10,4)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="229" width="0.0241%" height="15" fill="rgb(212,137,27)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="213" width="0.0241%" height="15" fill="rgb(231,220,49)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="197" width="0.0241%" height="15" fill="rgb(237,96,20)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="181" width="0.0241%" height="15" fill="rgb(239,229,30)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="165" width="0.0241%" height="15" fill="rgb(219,65,33)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="149" width="0.0241%" height="15" fill="rgb(243,134,7)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="133" width="0.0241%" height="15" fill="rgb(216,177,54)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="117" width="0.0241%" height="15" fill="rgb(211,160,20)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="101" width="0.0241%" height="15" fill="rgb(239,85,39)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="85" width="0.0241%" height="15" fill="rgb(232,125,22)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="69" width="0.0241%" height="15" fill="rgb(244,57,34)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="53" width="0.0241%" height="15" fill="rgb(214,203,32)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8198%" y="37" width="0.0241%" height="15" fill="rgb(207,58,43)" fg:x="1985" fg:w="1"/><text x="48.0698%" y="47.50"></text></g><g><title>aiken`uplc::machine::Machine::run (1 samples, 0.02%)</title><rect x="47.8439%" y="1621" width="0.0241%" height="15" fill="rgb(215,193,15)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1631.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1605" width="0.0241%" height="15" fill="rgb(232,15,44)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1615.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1589" width="0.0241%" height="15" fill="rgb(212,3,48)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1599.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1573" width="0.0241%" height="15" fill="rgb(218,128,7)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1583.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1557" width="0.0241%" height="15" fill="rgb(226,216,39)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1567.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1541" width="0.0241%" height="15" fill="rgb(243,47,51)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1551.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1525" width="0.0241%" height="15" fill="rgb(241,183,40)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1535.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1509" width="0.0241%" height="15" fill="rgb(231,217,32)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1519.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1493" width="0.0241%" height="15" fill="rgb(229,61,38)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1503.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1477" width="0.0241%" height="15" fill="rgb(225,210,5)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1461" width="0.0241%" height="15" fill="rgb(231,79,45)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1445" width="0.0241%" height="15" fill="rgb(224,100,7)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1429" width="0.0241%" height="15" fill="rgb(241,198,18)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1413" width="0.0241%" height="15" fill="rgb(252,97,53)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1397" width="0.0241%" height="15" fill="rgb(220,88,7)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1381" width="0.0241%" height="15" fill="rgb(213,176,14)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1365" width="0.0241%" height="15" fill="rgb(246,73,7)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1349" width="0.0241%" height="15" fill="rgb(245,64,36)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1333" width="0.0241%" height="15" fill="rgb(245,80,10)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1317" width="0.0241%" height="15" fill="rgb(232,107,50)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1301" width="0.0241%" height="15" fill="rgb(253,3,0)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1285" width="0.0241%" height="15" fill="rgb(212,99,53)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1269" width="0.0241%" height="15" fill="rgb(249,111,54)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1253" width="0.0241%" height="15" fill="rgb(249,55,30)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1237" width="0.0241%" height="15" fill="rgb(237,47,42)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1221" width="0.0241%" height="15" fill="rgb(211,20,18)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1205" width="0.0241%" height="15" fill="rgb(231,203,46)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1189" width="0.0241%" height="15" fill="rgb(237,142,3)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1173" width="0.0241%" height="15" fill="rgb(241,107,1)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1157" width="0.0241%" height="15" fill="rgb(229,83,13)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1141" width="0.0241%" height="15" fill="rgb(241,91,40)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1125" width="0.0241%" height="15" fill="rgb(225,3,45)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1109" width="0.0241%" height="15" fill="rgb(244,223,14)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1093" width="0.0241%" height="15" fill="rgb(224,124,37)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1077" width="0.0241%" height="15" fill="rgb(251,171,30)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1061" width="0.0241%" height="15" fill="rgb(236,46,54)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1045" width="0.0241%" height="15" fill="rgb(245,213,5)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1029" width="0.0241%" height="15" fill="rgb(230,144,27)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="1013" width="0.0241%" height="15" fill="rgb(220,86,6)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="997" width="0.0241%" height="15" fill="rgb(240,20,13)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="981" width="0.0241%" height="15" fill="rgb(217,89,34)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="965" width="0.0241%" height="15" fill="rgb(229,13,5)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="949" width="0.0241%" height="15" fill="rgb(244,67,35)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="933" width="0.0241%" height="15" fill="rgb(221,40,2)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="917" width="0.0241%" height="15" fill="rgb(237,157,21)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="901" width="0.0241%" height="15" fill="rgb(222,94,11)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="885" width="0.0241%" height="15" fill="rgb(249,113,6)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="869" width="0.0241%" height="15" fill="rgb(238,137,36)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="853" width="0.0241%" height="15" fill="rgb(210,102,26)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="837" width="0.0241%" height="15" fill="rgb(218,30,30)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="821" width="0.0241%" height="15" fill="rgb(214,67,26)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="805" width="0.0241%" height="15" fill="rgb(251,9,53)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="789" width="0.0241%" height="15" fill="rgb(228,204,25)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="773" width="0.0241%" height="15" fill="rgb(207,153,8)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="757" width="0.0241%" height="15" fill="rgb(242,9,16)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="741" width="0.0241%" height="15" fill="rgb(217,211,10)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="725" width="0.0241%" height="15" fill="rgb(219,228,52)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="709" width="0.0241%" height="15" fill="rgb(231,92,29)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="693" width="0.0241%" height="15" fill="rgb(232,8,23)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="677" width="0.0241%" height="15" fill="rgb(216,211,34)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="661" width="0.0241%" height="15" fill="rgb(236,151,0)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="645" width="0.0241%" height="15" fill="rgb(209,168,3)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="629" width="0.0241%" height="15" fill="rgb(208,129,28)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="613" width="0.0241%" height="15" fill="rgb(229,78,22)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="597" width="0.0241%" height="15" fill="rgb(228,187,13)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="581" width="0.0241%" height="15" fill="rgb(240,119,24)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="565" width="0.0241%" height="15" fill="rgb(209,194,42)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="549" width="0.0241%" height="15" fill="rgb(247,200,46)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="533" width="0.0241%" height="15" fill="rgb(218,76,16)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="517" width="0.0241%" height="15" fill="rgb(225,21,48)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="501" width="0.0241%" height="15" fill="rgb(239,223,50)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="511.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="485" width="0.0241%" height="15" fill="rgb(244,45,21)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="469" width="0.0241%" height="15" fill="rgb(232,33,43)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="453" width="0.0241%" height="15" fill="rgb(209,8,3)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="437" width="0.0241%" height="15" fill="rgb(214,25,53)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="421" width="0.0241%" height="15" fill="rgb(254,186,54)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="405" width="0.0241%" height="15" fill="rgb(208,174,49)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="389" width="0.0241%" height="15" fill="rgb(233,191,51)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="373" width="0.0241%" height="15" fill="rgb(222,134,10)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="357" width="0.0241%" height="15" fill="rgb(230,226,20)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="341" width="0.0241%" height="15" fill="rgb(251,111,25)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="325" width="0.0241%" height="15" fill="rgb(224,40,46)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="309" width="0.0241%" height="15" fill="rgb(236,108,47)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="293" width="0.0241%" height="15" fill="rgb(234,93,0)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="277" width="0.0241%" height="15" fill="rgb(224,213,32)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="261" width="0.0241%" height="15" fill="rgb(251,11,48)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="245" width="0.0241%" height="15" fill="rgb(236,173,5)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="229" width="0.0241%" height="15" fill="rgb(230,95,12)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="213" width="0.0241%" height="15" fill="rgb(232,209,1)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="197" width="0.0241%" height="15" fill="rgb(232,6,1)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="181" width="0.0241%" height="15" fill="rgb(210,224,50)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="165" width="0.0241%" height="15" fill="rgb(228,127,35)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="149" width="0.0241%" height="15" fill="rgb(245,102,45)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="133" width="0.0241%" height="15" fill="rgb(214,1,49)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="117" width="0.0241%" height="15" fill="rgb(226,163,40)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="101" width="0.0241%" height="15" fill="rgb(239,212,28)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="85" width="0.0241%" height="15" fill="rgb(220,20,13)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="69" width="0.0241%" height="15" fill="rgb(210,164,35)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="47.8439%" y="53" width="0.0241%" height="15" fill="rgb(248,109,41)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="63.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="47.8439%" y="37" width="0.0241%" height="15" fill="rgb(238,23,50)" fg:x="1986" fg:w="1"/><text x="48.0939%" y="47.50"></text></g><g><title>aiken`<alloc::rc::Rc<T> as core::ops::drop::Drop>::drop (3 samples, 0.07%)</title><rect x="47.8680%" y="1477" width="0.0723%" height="15" fill="rgb(211,48,49)" fg:x="1987" fg:w="3"/><text x="48.1180%" y="1487.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (1 samples, 0.02%)</title><rect x="47.9162%" y="1461" width="0.0241%" height="15" fill="rgb(223,36,21)" fg:x="1989" fg:w="1"/><text x="48.1662%" y="1471.50"></text></g><g><title>aiken`<uplc::ast::Term<T> as core::clone::Clone>::clone (17 samples, 0.41%)</title><rect x="47.9403%" y="1477" width="0.4095%" height="15" fill="rgb(207,123,46)" fg:x="1990" fg:w="17"/><text x="48.1903%" y="1487.50"></text></g><g><title>aiken`DYLD-STUB$$free (1 samples, 0.02%)</title><rect x="48.3498%" y="1477" width="0.0241%" height="15" fill="rgb(240,218,32)" fg:x="2007" fg:w="1"/><text x="48.5998%" y="1487.50"></text></g><g><title>aiken`DYLD-STUB$$malloc (37 samples, 0.89%)</title><rect x="48.3739%" y="1477" width="0.8914%" height="15" fill="rgb(252,5,43)" fg:x="2008" fg:w="37"/><text x="48.6239%" y="1487.50"></text></g><g><title>aiken`__rdl_alloc (35 samples, 0.84%)</title><rect x="49.2652%" y="1477" width="0.8432%" height="15" fill="rgb(252,84,19)" fg:x="2045" fg:w="35"/><text x="49.5152%" y="1487.50"></text></g><g><title>aiken`__rust_alloc (1 samples, 0.02%)</title><rect x="50.1084%" y="1477" width="0.0241%" height="15" fill="rgb(243,152,39)" fg:x="2080" fg:w="1"/><text x="50.3584%" y="1487.50"></text></g><g><title>aiken`core::option::Option<&T>::cloned (1 samples, 0.02%)</title><rect x="50.1325%" y="1477" width="0.0241%" height="15" fill="rgb(234,160,15)" fg:x="2081" fg:w="1"/><text x="50.3825%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.1807%" y="85" width="0.0241%" height="15" fill="rgb(237,34,20)" fg:x="2083" fg:w="1"/><text x="50.4307%" y="95.50"></text></g><g><title>aiken`DYLD-STUB$$free (1 samples, 0.02%)</title><rect x="50.1807%" y="69" width="0.0241%" height="15" fill="rgb(229,97,13)" fg:x="2083" fg:w="1"/><text x="50.4307%" y="79.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.1807%" y="133" width="0.0482%" height="15" fill="rgb(234,71,50)" fg:x="2083" fg:w="2"/><text x="50.4307%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.1807%" y="117" width="0.0482%" height="15" fill="rgb(253,155,4)" fg:x="2083" fg:w="2"/><text x="50.4307%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.1807%" y="101" width="0.0482%" height="15" fill="rgb(222,185,37)" fg:x="2083" fg:w="2"/><text x="50.4307%" y="111.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="50.2048%" y="85" width="0.0241%" height="15" fill="rgb(251,177,13)" fg:x="2084" fg:w="1"/><text x="50.4548%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="50.1807%" y="197" width="0.0723%" height="15" fill="rgb(250,179,40)" fg:x="2083" fg:w="3"/><text x="50.4307%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="50.1807%" y="181" width="0.0723%" height="15" fill="rgb(242,44,2)" fg:x="2083" fg:w="3"/><text x="50.4307%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="50.1807%" y="165" width="0.0723%" height="15" fill="rgb(216,177,13)" fg:x="2083" fg:w="3"/><text x="50.4307%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="50.1807%" y="149" width="0.0723%" height="15" fill="rgb(216,106,43)" fg:x="2083" fg:w="3"/><text x="50.4307%" y="159.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block (1 samples, 0.02%)</title><rect x="50.2289%" y="133" width="0.0241%" height="15" fill="rgb(216,183,2)" fg:x="2085" fg:w="1"/><text x="50.4789%" y="143.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_madvise_block_locked (1 samples, 0.02%)</title><rect x="50.2289%" y="117" width="0.0241%" height="15" fill="rgb(249,75,3)" fg:x="2085" fg:w="1"/><text x="50.4789%" y="127.50"></text></g><g><title>libsystem_kernel.dylib`madvise (1 samples, 0.02%)</title><rect x="50.2289%" y="101" width="0.0241%" height="15" fill="rgb(219,67,39)" fg:x="2085" fg:w="1"/><text x="50.4789%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.1807%" y="277" width="0.0964%" height="15" fill="rgb(253,228,2)" fg:x="2083" fg:w="4"/><text x="50.4307%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.1807%" y="261" width="0.0964%" height="15" fill="rgb(235,138,27)" fg:x="2083" fg:w="4"/><text x="50.4307%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.1807%" y="245" width="0.0964%" height="15" fill="rgb(236,97,51)" fg:x="2083" fg:w="4"/><text x="50.4307%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.1807%" y="229" width="0.0964%" height="15" fill="rgb(240,80,30)" fg:x="2083" fg:w="4"/><text x="50.4307%" y="239.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.1807%" y="213" width="0.0964%" height="15" fill="rgb(230,178,19)" fg:x="2083" fg:w="4"/><text x="50.4307%" y="223.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="50.2530%" y="197" width="0.0241%" height="15" fill="rgb(210,190,27)" fg:x="2086" fg:w="1"/><text x="50.5030%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="405" width="0.1205%" height="15" fill="rgb(222,107,31)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="389" width="0.1205%" height="15" fill="rgb(216,127,34)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="373" width="0.1205%" height="15" fill="rgb(234,116,52)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="357" width="0.1205%" height="15" fill="rgb(222,124,15)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="341" width="0.1205%" height="15" fill="rgb(231,179,28)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="325" width="0.1205%" height="15" fill="rgb(226,93,45)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="309" width="0.1205%" height="15" fill="rgb(215,8,51)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.1807%" y="293" width="0.1205%" height="15" fill="rgb(223,106,5)" fg:x="2083" fg:w="5"/><text x="50.4307%" y="303.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="50.2770%" y="277" width="0.0241%" height="15" fill="rgb(250,191,5)" fg:x="2087" fg:w="1"/><text x="50.5270%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.1807%" y="485" width="0.1445%" height="15" fill="rgb(242,132,44)" fg:x="2083" fg:w="6"/><text x="50.4307%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.1807%" y="469" width="0.1445%" height="15" fill="rgb(251,152,29)" fg:x="2083" fg:w="6"/><text x="50.4307%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.1807%" y="453" width="0.1445%" height="15" fill="rgb(218,179,5)" fg:x="2083" fg:w="6"/><text x="50.4307%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.1807%" y="437" width="0.1445%" height="15" fill="rgb(227,67,19)" fg:x="2083" fg:w="6"/><text x="50.4307%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.1807%" y="421" width="0.1445%" height="15" fill="rgb(233,119,31)" fg:x="2083" fg:w="6"/><text x="50.4307%" y="431.50"></text></g><g><title>libsystem_platform.dylib`_platform_memset (1 samples, 0.02%)</title><rect x="50.3011%" y="405" width="0.0241%" height="15" fill="rgb(241,120,22)" fg:x="2088" fg:w="1"/><text x="50.5511%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.1807%" y="517" width="0.1686%" height="15" fill="rgb(224,102,30)" fg:x="2083" fg:w="7"/><text x="50.4307%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.1807%" y="501" width="0.1686%" height="15" fill="rgb(210,164,37)" fg:x="2083" fg:w="7"/><text x="50.4307%" y="511.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="50.3252%" y="485" width="0.0241%" height="15" fill="rgb(226,191,16)" fg:x="2089" fg:w="1"/><text x="50.5752%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="613" width="0.1927%" height="15" fill="rgb(214,40,45)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="597" width="0.1927%" height="15" fill="rgb(244,29,26)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="581" width="0.1927%" height="15" fill="rgb(216,16,5)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="565" width="0.1927%" height="15" fill="rgb(249,76,35)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="549" width="0.1927%" height="15" fill="rgb(207,11,44)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.1807%" y="533" width="0.1927%" height="15" fill="rgb(228,190,49)" fg:x="2083" fg:w="8"/><text x="50.4307%" y="543.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="50.3493%" y="517" width="0.0241%" height="15" fill="rgb(214,173,12)" fg:x="2090" fg:w="1"/><text x="50.5993%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1477" width="0.2409%" height="15" fill="rgb(218,26,35)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1487.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1461" width="0.2409%" height="15" fill="rgb(220,200,19)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1445" width="0.2409%" height="15" fill="rgb(239,95,49)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1429" width="0.2409%" height="15" fill="rgb(235,85,53)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1413" width="0.2409%" height="15" fill="rgb(233,133,31)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1397" width="0.2409%" height="15" fill="rgb(218,25,20)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1381" width="0.2409%" height="15" fill="rgb(252,210,38)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1365" width="0.2409%" height="15" fill="rgb(242,134,21)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1349" width="0.2409%" height="15" fill="rgb(213,28,48)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1333" width="0.2409%" height="15" fill="rgb(250,196,2)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1317" width="0.2409%" height="15" fill="rgb(227,5,17)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1301" width="0.2409%" height="15" fill="rgb(221,226,24)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1285" width="0.2409%" height="15" fill="rgb(211,5,48)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1269" width="0.2409%" height="15" fill="rgb(219,150,6)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1253" width="0.2409%" height="15" fill="rgb(251,46,16)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1237" width="0.2409%" height="15" fill="rgb(220,204,40)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1221" width="0.2409%" height="15" fill="rgb(211,85,2)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1205" width="0.2409%" height="15" fill="rgb(229,17,7)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1189" width="0.2409%" height="15" fill="rgb(239,72,28)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1173" width="0.2409%" height="15" fill="rgb(230,47,54)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1157" width="0.2409%" height="15" fill="rgb(214,50,8)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1141" width="0.2409%" height="15" fill="rgb(216,198,43)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1125" width="0.2409%" height="15" fill="rgb(234,20,35)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1109" width="0.2409%" height="15" fill="rgb(254,45,19)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1093" width="0.2409%" height="15" fill="rgb(219,14,44)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1077" width="0.2409%" height="15" fill="rgb(217,220,26)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1061" width="0.2409%" height="15" fill="rgb(213,158,28)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1045" width="0.2409%" height="15" fill="rgb(252,51,52)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1029" width="0.2409%" height="15" fill="rgb(246,89,16)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="1013" width="0.2409%" height="15" fill="rgb(216,158,49)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="997" width="0.2409%" height="15" fill="rgb(236,107,19)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="981" width="0.2409%" height="15" fill="rgb(228,185,30)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="965" width="0.2409%" height="15" fill="rgb(246,134,8)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="949" width="0.2409%" height="15" fill="rgb(214,143,50)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="933" width="0.2409%" height="15" fill="rgb(228,75,8)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="917" width="0.2409%" height="15" fill="rgb(207,175,4)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="901" width="0.2409%" height="15" fill="rgb(205,108,24)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="885" width="0.2409%" height="15" fill="rgb(244,120,49)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="869" width="0.2409%" height="15" fill="rgb(223,47,38)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="853" width="0.2409%" height="15" fill="rgb(229,179,11)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="837" width="0.2409%" height="15" fill="rgb(231,122,1)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="821" width="0.2409%" height="15" fill="rgb(245,119,9)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="805" width="0.2409%" height="15" fill="rgb(241,163,25)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="815.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (10 samples, 0.24%)</title><rect x="50.1566%" y="789" width="0.2409%" height="15" fill="rgb(217,214,3)" fg:x="2082" fg:w="10"/><text x="50.4066%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="773" width="0.2168%" height="15" fill="rgb(240,86,28)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="757" width="0.2168%" height="15" fill="rgb(215,47,9)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="741" width="0.2168%" height="15" fill="rgb(252,25,45)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="725" width="0.2168%" height="15" fill="rgb(251,164,9)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="709" width="0.2168%" height="15" fill="rgb(233,194,0)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="693" width="0.2168%" height="15" fill="rgb(249,111,24)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="677" width="0.2168%" height="15" fill="rgb(250,223,3)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="661" width="0.2168%" height="15" fill="rgb(236,178,37)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="645" width="0.2168%" height="15" fill="rgb(241,158,50)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (9 samples, 0.22%)</title><rect x="50.1807%" y="629" width="0.2168%" height="15" fill="rgb(213,121,41)" fg:x="2083" fg:w="9"/><text x="50.4307%" y="639.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="50.3734%" y="613" width="0.0241%" height="15" fill="rgb(240,92,3)" fg:x="2091" fg:w="1"/><text x="50.6234%" y="623.50"></text></g><g><title>aiken`DYLD-STUB$$free (1 samples, 0.02%)</title><rect x="50.4457%" y="197" width="0.0241%" height="15" fill="rgb(205,123,3)" fg:x="2094" fg:w="1"/><text x="50.6957%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="50.4457%" y="213" width="0.0723%" height="15" fill="rgb(205,97,47)" fg:x="2094" fg:w="3"/><text x="50.6957%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.4698%" y="197" width="0.0482%" height="15" fill="rgb(247,152,14)" fg:x="2095" fg:w="2"/><text x="50.7198%" y="207.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.4698%" y="181" width="0.0482%" height="15" fill="rgb(248,195,53)" fg:x="2095" fg:w="2"/><text x="50.7198%" y="191.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (2 samples, 0.05%)</title><rect x="50.4698%" y="165" width="0.0482%" height="15" fill="rgb(226,201,16)" fg:x="2095" fg:w="2"/><text x="50.7198%" y="175.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="149" width="0.0241%" height="15" fill="rgb(205,98,0)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="159.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="133" width="0.0241%" height="15" fill="rgb(214,191,48)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="143.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="117" width="0.0241%" height="15" fill="rgb(237,112,39)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="127.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="101" width="0.0241%" height="15" fill="rgb(247,203,27)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="111.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="85" width="0.0241%" height="15" fill="rgb(235,124,28)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="95.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (1 samples, 0.02%)</title><rect x="50.4939%" y="69" width="0.0241%" height="15" fill="rgb(208,207,46)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="79.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="50.4939%" y="53" width="0.0241%" height="15" fill="rgb(234,176,4)" fg:x="2096" fg:w="1"/><text x="50.7439%" y="63.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="485" width="0.0964%" height="15" fill="rgb(230,133,28)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="469" width="0.0964%" height="15" fill="rgb(211,137,40)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="479.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="453" width="0.0964%" height="15" fill="rgb(254,35,13)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="463.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="437" width="0.0964%" height="15" fill="rgb(225,49,51)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="447.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="421" width="0.0964%" height="15" fill="rgb(251,10,15)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="431.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="405" width="0.0964%" height="15" fill="rgb(228,207,15)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="415.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="389" width="0.0964%" height="15" fill="rgb(241,99,19)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="399.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="373" width="0.0964%" height="15" fill="rgb(207,104,49)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="383.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="357" width="0.0964%" height="15" fill="rgb(234,99,18)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="367.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="341" width="0.0964%" height="15" fill="rgb(213,191,49)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="351.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="325" width="0.0964%" height="15" fill="rgb(210,226,19)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="335.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="309" width="0.0964%" height="15" fill="rgb(229,97,18)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="319.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="293" width="0.0964%" height="15" fill="rgb(211,167,15)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="303.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="277" width="0.0964%" height="15" fill="rgb(210,169,34)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="287.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="261" width="0.0964%" height="15" fill="rgb(241,121,31)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="271.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="245" width="0.0964%" height="15" fill="rgb(232,40,11)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="255.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (4 samples, 0.10%)</title><rect x="50.4457%" y="229" width="0.0964%" height="15" fill="rgb(205,86,26)" fg:x="2094" fg:w="4"/><text x="50.6957%" y="239.50"></text></g><g><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="50.5179%" y="213" width="0.0241%" height="15" fill="rgb(231,126,28)" fg:x="2097" fg:w="1"/><text x="50.7679%" y="223.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="789" width="0.1686%" height="15" fill="rgb(219,221,18)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="799.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="773" width="0.1686%" height="15" fill="rgb(211,40,0)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="783.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="757" width="0.1686%" height="15" fill="rgb(239,85,43)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="767.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="741" width="0.1686%" height="15" fill="rgb(231,55,21)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="751.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="725" width="0.1686%" height="15" fill="rgb(225,184,43)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="735.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="709" width="0.1686%" height="15" fill="rgb(251,158,41)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="719.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="693" width="0.1686%" height="15" fill="rgb(234,159,37)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="703.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (7 samples, 0.17%)</title><rect x="50.3975%" y="677" width="0.1686%" height="15" fill="rgb(216,204,22)" fg:x="2092" fg:w="7"/><text x="50.6475%" y="687.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="661" width="0.1445%" height="15" fill="rgb(214,17,3)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="671.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="645" width="0.1445%" height="15" fill="rgb(212,111,17)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="655.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="629" width="0.1445%" height="15" fill="rgb(221,157,24)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="639.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="613" width="0.1445%" height="15" fill="rgb(252,16,13)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="623.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="597" width="0.1445%" height="15" fill="rgb(221,62,2)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="607.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="581" width="0.1445%" height="15" fill="rgb(247,87,22)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="591.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="565" width="0.1445%" height="15" fill="rgb(215,73,9)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="575.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="549" width="0.1445%" height="15" fill="rgb(207,175,33)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="559.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (6 samples, 0.14%)</title><rect x="50.4216%" y="533" width="0.1445%" height="15" fill="rgb(243,129,54)" fg:x="2093" fg:w="6"/><text x="50.6716%" y="543.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.4457%" y="517" width="0.1205%" height="15" fill="rgb(227,119,45)" fg:x="2094" fg:w="5"/><text x="50.6957%" y="527.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (5 samples, 0.12%)</title><rect x="50.4457%" y="501" width="0.1205%" height="15" fill="rgb(205,109,36)" fg:x="2094" fg:w="5"/><text x="50.6957%" y="511.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="50.5420%" y="485" width="0.0241%" height="15" fill="rgb(205,6,39)" fg:x="2098" fg:w="1"/><text x="50.7920%" y="495.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1461" width="0.1927%" height="15" fill="rgb(221,32,16)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1445" width="0.1927%" height="15" fill="rgb(228,144,50)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1455.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1429" width="0.1927%" height="15" fill="rgb(229,201,53)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1439.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1413" width="0.1927%" height="15" fill="rgb(249,153,27)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1423.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1397" width="0.1927%" height="15" fill="rgb(227,106,25)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1407.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1381" width="0.1927%" height="15" fill="rgb(230,65,29)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1391.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1365" width="0.1927%" height="15" fill="rgb(221,57,46)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1375.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1349" width="0.1927%" height="15" fill="rgb(229,161,17)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1359.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1333" width="0.1927%" height="15" fill="rgb(222,213,11)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1343.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1317" width="0.1927%" height="15" fill="rgb(235,35,13)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1327.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1301" width="0.1927%" height="15" fill="rgb(233,158,34)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1311.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1285" width="0.1927%" height="15" fill="rgb(215,151,48)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1295.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1269" width="0.1927%" height="15" fill="rgb(229,84,14)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1279.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1253" width="0.1927%" height="15" fill="rgb(229,68,14)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1263.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1237" width="0.1927%" height="15" fill="rgb(243,106,26)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1247.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1221" width="0.1927%" height="15" fill="rgb(206,45,38)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1231.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1205" width="0.1927%" height="15" fill="rgb(226,6,15)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1215.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1189" width="0.1927%" height="15" fill="rgb(232,22,54)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1199.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1173" width="0.1927%" height="15" fill="rgb(229,222,32)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1183.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1157" width="0.1927%" height="15" fill="rgb(228,62,29)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1167.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1141" width="0.1927%" height="15" fill="rgb(251,103,34)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1151.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1125" width="0.1927%" height="15" fill="rgb(233,12,30)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1135.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1109" width="0.1927%" height="15" fill="rgb(238,52,0)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1119.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1093" width="0.1927%" height="15" fill="rgb(223,98,5)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1103.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1077" width="0.1927%" height="15" fill="rgb(228,75,37)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1087.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1061" width="0.1927%" height="15" fill="rgb(205,115,49)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1071.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1045" width="0.1927%" height="15" fill="rgb(250,154,43)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1055.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1029" width="0.1927%" height="15" fill="rgb(226,43,29)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1039.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="1013" width="0.1927%" height="15" fill="rgb(249,228,39)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1023.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="997" width="0.1927%" height="15" fill="rgb(216,79,43)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="1007.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="981" width="0.1927%" height="15" fill="rgb(228,95,12)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="991.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="965" width="0.1927%" height="15" fill="rgb(249,221,15)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="975.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="949" width="0.1927%" height="15" fill="rgb(233,34,13)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="959.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="933" width="0.1927%" height="15" fill="rgb(214,103,39)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="943.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="917" width="0.1927%" height="15" fill="rgb(251,126,39)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="927.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="901" width="0.1927%" height="15" fill="rgb(214,216,36)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="911.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="885" width="0.1927%" height="15" fill="rgb(220,221,8)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="895.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="869" width="0.1927%" height="15" fill="rgb(240,216,3)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="879.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="853" width="0.1927%" height="15" fill="rgb(232,218,17)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="863.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="837" width="0.1927%" height="15" fill="rgb(229,163,45)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="847.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="821" width="0.1927%" height="15" fill="rgb(231,110,42)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="831.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (8 samples, 0.19%)</title><rect x="50.3975%" y="805" width="0.1927%" height="15" fill="rgb(208,170,48)" fg:x="2092" fg:w="8"/><text x="50.6475%" y="815.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (1 samples, 0.02%)</title><rect x="50.5661%" y="789" width="0.0241%" height="15" fill="rgb(239,116,25)" fg:x="2099" fg:w="1"/><text x="50.8161%" y="799.50"></text></g><g><title>aiken`uplc::machine::Machine::eval_builtin_app (9 samples, 0.22%)</title><rect x="50.3975%" y="1477" width="0.2168%" height="15" fill="rgb(219,200,50)" fg:x="2092" fg:w="9"/><text x="50.6475%" y="1487.50"></text></g><g><title>aiken`uplc::machine::runtime::_<impl uplc::builtins::DefaultFunction>::call (1 samples, 0.02%)</title><rect x="50.5902%" y="1461" width="0.0241%" height="15" fill="rgb(245,200,0)" fg:x="2100" fg:w="1"/><text x="50.8402%" y="1471.50"></text></g><g><title>aiken`<alloc::rc::Rc<T> as core::ops::drop::Drop>::drop (24 samples, 0.58%)</title><rect x="65.3577%" y="1461" width="0.5782%" height="15" fill="rgb(245,119,33)" fg:x="2713" fg:w="24"/><text x="65.6077%" y="1471.50"></text></g><g><title>aiken`core::option::Option<&T>::cloned (5 samples, 0.12%)</title><rect x="65.9359%" y="1461" width="0.1205%" height="15" fill="rgb(231,125,12)" fg:x="2737" fg:w="5"/><text x="66.1859%" y="1471.50"></text></g><g><title>aiken`core::ptr::drop_in_place<uplc::ast::Term<uplc::ast::NamedDeBruijn>> (3 samples, 0.07%)</title><rect x="66.0564%" y="1461" width="0.0723%" height="15" fill="rgb(216,96,41)" fg:x="2742" fg:w="3"/><text x="66.3064%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`_nanov2_free (3 samples, 0.07%)</title><rect x="66.1286%" y="1461" width="0.0723%" height="15" fill="rgb(248,43,45)" fg:x="2745" fg:w="3"/><text x="66.3786%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_allocate_outlined (790 samples, 19.03%)</title><rect x="66.2009%" y="1461" width="19.0316%" height="15" fill="rgb(217,222,7)" fg:x="2748" fg:w="790"/><text x="66.4509%" y="1471.50">libsystem_malloc.dylib`nanov2_..</text></g><g><title>libsystem_malloc.dylib`nanov2_find_block_and_allocate (485 samples, 11.68%)</title><rect x="73.5485%" y="1445" width="11.6839%" height="15" fill="rgb(233,28,6)" fg:x="3053" fg:w="485"/><text x="73.7985%" y="1455.50">libsystem_malloc...</text></g><g><title>aiken`uplc::machine::discharge_value (1,438 samples, 34.64%)</title><rect x="50.6143%" y="1477" width="34.6423%" height="15" fill="rgb(231,218,15)" fg:x="2101" fg:w="1438"/><text x="50.8643%" y="1487.50">aiken`uplc::machine::discharge_value</text></g><g><title>libsystem_platform.dylib`_platform_memset (1 samples, 0.02%)</title><rect x="85.2325%" y="1461" width="0.0241%" height="15" fill="rgb(226,171,48)" fg:x="3538" fg:w="1"/><text x="85.4825%" y="1471.50"></text></g><g><title>libsystem_malloc.dylib`_malloc_zone_malloc (258 samples, 6.22%)</title><rect x="85.2566%" y="1477" width="6.2154%" height="15" fill="rgb(235,201,9)" fg:x="3539" fg:w="258"/><text x="85.5066%" y="1487.50">libsyste..</text></g><g><title>libsystem_malloc.dylib`free (2 samples, 0.05%)</title><rect x="91.4719%" y="1477" width="0.0482%" height="15" fill="rgb(217,80,15)" fg:x="3797" fg:w="2"/><text x="91.7219%" y="1487.50"></text></g><g><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="91.5201%" y="1477" width="0.0241%" height="15" fill="rgb(219,152,8)" fg:x="3799" fg:w="1"/><text x="91.7701%" y="1487.50"></text></g><g><title>libsystem_malloc.dylib`nanov2_allocate_outlined (2 samples, 0.05%)</title><rect x="91.5442%" y="1477" width="0.0482%" height="15" fill="rgb(243,107,38)" fg:x="3800" fg:w="2"/><text x="91.7942%" y="1487.50"></text></g><g><title>aiken`aiken::cmd::uplc::exec (2,136 samples, 51.46%)</title><rect x="47.8680%" y="1525" width="51.4575%" height="15" fill="rgb(231,17,5)" fg:x="1987" fg:w="2136"/><text x="48.1180%" y="1535.50">aiken`aiken::cmd::uplc::exec</text></g><g><title>aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval (2,136 samples, 51.46%)</title><rect x="47.8680%" y="1509" width="51.4575%" height="15" fill="rgb(209,25,54)" fg:x="1987" fg:w="2136"/><text x="48.1180%" y="1519.50">aiken`uplc::ast::Program<uplc::ast::NamedDeBruijn>::eval</text></g><g><title>aiken`uplc::machine::Machine::run (2,136 samples, 51.46%)</title><rect x="47.8680%" y="1493" width="51.4575%" height="15" fill="rgb(219,0,2)" fg:x="1987" fg:w="2136"/><text x="48.1180%" y="1503.50">aiken`uplc::machine::Machine::run</text></g><g><title>libsystem_malloc.dylib`nanov2_malloc (321 samples, 7.73%)</title><rect x="91.5924%" y="1477" width="7.7331%" height="15" fill="rgb(246,9,5)" fg:x="3802" fg:w="321"/><text x="91.8424%" y="1487.50">libsystem_m..</text></g><g><title>aiken`main (2,137 samples, 51.48%)</title><rect x="47.8680%" y="1605" width="51.4816%" height="15" fill="rgb(226,159,4)" fg:x="1987" fg:w="2137"/><text x="48.1180%" y="1615.50">aiken`main</text></g><g><title>aiken`std::rt::lang_start_internal (2,137 samples, 51.48%)</title><rect x="47.8680%" y="1589" width="51.4816%" height="15" fill="rgb(219,175,34)" fg:x="1987" fg:w="2137"/><text x="48.1180%" y="1599.50">aiken`std::rt::lang_start_internal</text></g><g><title>aiken`std::rt::lang_start::_{{closure}} (2,137 samples, 51.48%)</title><rect x="47.8680%" y="1573" width="51.4816%" height="15" fill="rgb(236,10,46)" fg:x="1987" fg:w="2137"/><text x="48.1180%" y="1583.50">aiken`std::rt::lang_start::_{{closure}}</text></g><g><title>aiken`std::sys_common::backtrace::__rust_begin_short_backtrace (2,137 samples, 51.48%)</title><rect x="47.8680%" y="1557" width="51.4816%" height="15" fill="rgb(240,211,16)" fg:x="1987" fg:w="2137"/><text x="48.1180%" y="1567.50">aiken`std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>aiken`aiken::main (2,137 samples, 51.48%)</title><rect x="47.8680%" y="1541" width="51.4816%" height="15" fill="rgb(205,3,43)" fg:x="1987" fg:w="2137"/><text x="48.1180%" y="1551.50">aiken`aiken::main</text></g><g><title>aiken`clap_lex::RawArgs::cursor (1 samples, 0.02%)</title><rect x="99.3255%" y="1525" width="0.0241%" height="15" fill="rgb(245,7,22)" fg:x="4123" fg:w="1"/><text x="99.5755%" y="1535.50"></text></g><g><title>dyld`start (2,138 samples, 51.51%)</title><rect x="47.8680%" y="1621" width="51.5057%" height="15" fill="rgb(239,132,32)" fg:x="1987" fg:w="2138"/><text x="48.1180%" y="1631.50">dyld`start</text></g><g><title>libdyld.dylib`dyld4::LibSystemHelpers::getenv (1 samples, 0.02%)</title><rect x="99.3496%" y="1605" width="0.0241%" height="15" fill="rgb(228,202,34)" fg:x="4124" fg:w="1"/><text x="99.5996%" y="1615.50"></text></g><g><title>libsystem_kernel.dylib`__exit (1 samples, 0.02%)</title><rect x="99.3496%" y="1589" width="0.0241%" height="15" fill="rgb(254,200,22)" fg:x="4124" fg:w="1"/><text x="99.5996%" y="1599.50"></text></g><g><title>all (4,151 samples, 100%)</title><rect x="0.0000%" y="1637" width="100.0000%" height="15" fill="rgb(219,10,39)" fg:x="0" fg:w="4151"/><text x="0.2500%" y="1647.50"></text></g><g><title>libsystem_kernel.dylib`__exit (26 samples, 0.63%)</title><rect x="99.3736%" y="1621" width="0.6264%" height="15" fill="rgb(226,210,39)" fg:x="4125" fg:w="26"/><text x="99.6236%" y="1631.50"></text></g></svg></svg> |