Skip to content

Instantly share code, notes, and snippets.

@yosiat
Created December 7, 2018 19:49
Show Gist options
  • Save yosiat/190868de7ad2a8211fa3a4c7aade6098 to your computer and use it in GitHub Desktop.
Save yosiat/190868de7ad2a8211fa3a4c7aade6098 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1446" onload="init(evt)" viewBox="0 0 1200 1446" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1446.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1429" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1429" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (1) (2 ms, 0.01%)</title><rect x="1057.8" y="597" width="0.1" height="15.0" fill="rgb(237,56,32)" rx="2" ry="2" />
<text text-anchor="" x="1060.76" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (16002) (12 ms, 0.06%)</title><rect x="669.4" y="1173" width="0.7" height="15.0" fill="rgb(225,68,54)" rx="2" ry="2" />
<text text-anchor="" x="672.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (31) (36 ms, 0.18%)</title><rect x="17.6" y="613" width="2.2" height="15.0" fill="rgb(220,171,5)" rx="2" ry="2" />
<text text-anchor="" x="20.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#arel_attribute (8001) (34 ms, 0.17%)</title><rect x="97.8" y="997" width="2.1" height="15.0" fill="rgb(235,222,41)" rx="2" ry="2" />
<text text-anchor="" x="100.81" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (16002) (3 ms, 0.02%)</title><rect x="101.6" y="1045" width="0.2" height="15.0" fill="rgb(243,154,13)" rx="2" ry="2" />
<text text-anchor="" x="104.63" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (24003) (3 ms, 0.02%)</title><rect x="759.3" y="1125" width="0.2" height="15.0" fill="rgb(241,155,40)" rx="2" ry="2" />
<text text-anchor="" x="762.25" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (16002) (113 ms, 0.58%)</title><rect x="1182.7" y="1013" width="6.8" height="15.0" fill="rgb(239,39,11)" rx="2" ry="2" />
<text text-anchor="" x="1185.72" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (1) (3 ms, 0.02%)</title><rect x="14.7" y="1093" width="0.2" height="15.0" fill="rgb(223,43,34)" rx="2" ry="2" />
<text text-anchor="" x="17.68" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (2) (8 ms, 0.04%)</title><rect x="1107.9" y="661" width="0.5" height="15.0" fill="rgb(247,69,32)" rx="2" ry="2" />
<text text-anchor="" x="1110.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::PerThreadRegistry#instance (16002) (14 ms, 0.07%)</title><rect x="115.5" y="1045" width="0.8" height="15.0" fill="rgb(242,202,49)" rx="2" ry="2" />
<text text-anchor="" x="118.47" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ClassMethods#current_scope (8001) (105 ms, 0.54%)</title><rect x="123.0" y="1141" width="6.4" height="15.0" fill="rgb(227,156,31)" rx="2" ry="2" />
<text text-anchor="" x="126.01" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (32004) (31 ms, 0.16%)</title><rect x="574.8" y="997" width="1.9" height="15.0" fill="rgb(234,203,35)" rx="2" ry="2" />
<text text-anchor="" x="577.79" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8001) (9 ms, 0.05%)</title><rect x="1031.5" y="1061" width="0.5" height="15.0" fill="rgb(212,38,5)" rx="2" ry="2" />
<text text-anchor="" x="1034.47" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (48006) (15 ms, 0.08%)</title><rect x="917.3" y="1109" width="0.9" height="15.0" fill="rgb(220,93,2)" rx="2" ry="2" />
<text text-anchor="" x="920.31" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8000) (9 ms, 0.05%)</title><rect x="1151.0" y="613" width="0.5" height="15.0" fill="rgb(241,68,46)" rx="2" ry="2" />
<text text-anchor="" x="1154.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#value_for (8001) (77 ms, 0.39%)</title><rect x="124.1" y="1109" width="4.6" height="15.0" fill="rgb(247,42,46)" rx="2" ry="2" />
<text text-anchor="" x="127.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#merge (24003) (22 ms, 0.11%)</title><rect x="743.1" y="1189" width="1.3" height="15.0" fill="rgb(207,12,0)" rx="2" ry="2" />
<text text-anchor="" x="746.07" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#define_attribute_methods (1) (2 ms, 0.01%)</title><rect x="10.6" y="997" width="0.1" height="15.0" fill="rgb(234,219,41)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#polymorphic? (8000) (3 ms, 0.02%)</title><rect x="1131.0" y="709" width="0.2" height="15.0" fill="rgb(232,33,34)" rx="2" ry="2" />
<text text-anchor="" x="1134.00" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (1) (2 ms, 0.01%)</title><rect x="10.1" y="1013" width="0.1" height="15.0" fill="rgb(235,144,41)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ApplicationController#current_user (1) (7 ms, 0.04%)</title><rect x="10.5" y="1269" width="0.4" height="15.0" fill="rgb(223,47,53)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#deserialize (2659) (8 ms, 0.04%)</title><rect x="18.8" y="133" width="0.5" height="15.0" fill="rgb(208,221,51)" rx="2" ry="2" />
<text text-anchor="" x="21.82" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#interpolate (24003) (11 ms, 0.06%)</title><rect x="787.5" y="1141" width="0.7" height="15.0" fill="rgb(230,11,4)" rx="2" ry="2" />
<text text-anchor="" x="790.51" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (8001) (4 ms, 0.02%)</title><rect x="56.7" y="1093" width="0.2" height="15.0" fill="rgb(245,215,10)" rx="2" ry="2" />
<text text-anchor="" x="59.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#polymorphic? (16002) (5 ms, 0.03%)</title><rect x="1057.9" y="997" width="0.3" height="15.0" fill="rgb(252,225,48)" rx="2" ry="2" />
<text text-anchor="" x="1060.89" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (24001) (3 ms, 0.02%)</title><rect x="35.8" y="1173" width="0.2" height="15.0" fill="rgb(232,48,12)" rx="2" ry="2" />
<text text-anchor="" x="38.77" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (3 ms, 0.02%)</title><rect x="28.9" y="1173" width="0.1" height="15.0" fill="rgb(213,52,44)" rx="2" ry="2" />
<text text-anchor="" x="31.89" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#config (24003) (17 ms, 0.09%)</title><rect x="758.4" y="1141" width="1.1" height="15.0" fill="rgb(235,19,0)" rx="2" ry="2" />
<text text-anchor="" x="761.41" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (4) (3 ms, 0.02%)</title><rect x="20.1" y="949" width="0.2" height="15.0" fill="rgb(222,19,9)" rx="2" ry="2" />
<text text-anchor="" x="23.13" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (12 ms, 0.06%)</title><rect x="986.5" y="1077" width="0.7" height="15.0" fill="rgb(209,31,35)" rx="2" ry="2" />
<text text-anchor="" x="989.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (24001) (4 ms, 0.02%)</title><rect x="684.2" y="1093" width="0.3" height="15.0" fill="rgb(221,37,17)" rx="2" ry="2" />
<text text-anchor="" x="687.22" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8001) (3 ms, 0.02%)</title><rect x="700.2" y="1045" width="0.2" height="15.0" fill="rgb(224,226,28)" rx="2" ry="2" />
<text text-anchor="" x="703.21" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#time_with_zone (24003) (102 ms, 0.52%)</title><rect x="895.4" y="1141" width="6.2" height="15.0" fill="rgb(243,101,11)" rx="2" ry="2" />
<text text-anchor="" x="898.45" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Mutex_m#mu_synchronize (1) (2 ms, 0.01%)</title><rect x="10.6" y="981" width="0.1" height="15.0" fill="rgb(220,107,15)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (89 ms, 0.46%)</title><rect x="714.6" y="1173" width="5.4" height="15.0" fill="rgb(247,116,36)" rx="2" ry="2" />
<text text-anchor="" x="717.64" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (3 ms, 0.02%)</title><rect x="33.9" y="1157" width="0.1" height="15.0" fill="rgb(223,74,34)" rx="2" ry="2" />
<text text-anchor="" x="36.86" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (48 ms, 0.25%)</title><rect x="143.8" y="1125" width="2.9" height="15.0" fill="rgb(226,110,17)" rx="2" ry="2" />
<text text-anchor="" x="146.82" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#deserialize (8001) (21 ms, 0.11%)</title><rect x="699.1" y="1077" width="1.3" height="15.0" fill="rgb(240,225,4)" rx="2" ry="2" />
<text text-anchor="" x="702.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (1) (7 ms, 0.04%)</title><rect x="11.6" y="1173" width="0.4" height="15.0" fill="rgb(218,204,54)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (31 ms, 0.16%)</title><rect x="1041.5" y="1061" width="1.8" height="15.0" fill="rgb(208,71,43)" rx="2" ry="2" />
<text text-anchor="" x="1044.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#casecmp (24001) (4 ms, 0.02%)</title><rect x="36.0" y="1173" width="0.2" height="15.0" fill="rgb(228,114,42)" rx="2" ry="2" />
<text text-anchor="" x="38.97" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#initialize_copy (24003) (28 ms, 0.14%)</title><rect x="840.6" y="1141" width="1.6" height="15.0" fill="rgb(205,61,25)" rx="2" ry="2" />
<text text-anchor="" x="843.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (4 ms, 0.02%)</title><rect x="987.2" y="1093" width="0.2" height="15.0" fill="rgb(236,168,52)" rx="2" ry="2" />
<text text-anchor="" x="990.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#now (24003) (29 ms, 0.15%)</title><rect x="890.2" y="1141" width="1.7" height="15.0" fill="rgb(250,104,49)" rx="2" ry="2" />
<text text-anchor="" x="893.17" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (1) (2 ms, 0.01%)</title><rect x="1057.8" y="613" width="0.1" height="15.0" fill="rgb(222,125,2)" rx="2" ry="2" />
<text text-anchor="" x="1060.76" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#&lt;= (16002) (12 ms, 0.06%)</title><rect x="55.3" y="1093" width="0.7" height="15.0" fill="rgb(209,147,17)" rx="2" ry="2" />
<text text-anchor="" x="58.31" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#find_or_create_by (1) (7 ms, 0.04%)</title><rect x="10.5" y="1237" width="0.4" height="15.0" fill="rgb(238,219,30)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (2) (7 ms, 0.04%)</title><rect x="10.9" y="1109" width="0.4" height="15.0" fill="rgb(215,27,2)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Persistence::ClassMethods#instantiate (1) (3 ms, 0.02%)</title><rect x="10.6" y="1029" width="0.2" height="15.0" fill="rgb(233,163,31)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#load (31) (68 ms, 0.35%)</title><rect x="15.7" y="741" width="4.1" height="15.0" fill="rgb(213,55,20)" rx="2" ry="2" />
<text text-anchor="" x="18.68" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#_reflections (8000) (2 ms, 0.01%)</title><rect x="1131.7" y="709" width="0.1" height="15.0" fill="rgb(219,113,13)" rx="2" ry="2" />
<text text-anchor="" x="1134.70" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator#each (2) (256 ms, 1.31%)</title><rect x="1077.7" y="597" width="15.5" height="15.0" fill="rgb(247,182,22)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#raise_invalid_scope_type! (8001) (5 ms, 0.03%)</title><rect x="111.1" y="1029" width="0.4" height="15.0" fill="rgb(211,110,50)" rx="2" ry="2" />
<text text-anchor="" x="114.14" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#delete (72009) (16 ms, 0.08%)</title><rect x="751.0" y="1173" width="0.9" height="15.0" fill="rgb(210,22,52)" rx="2" ry="2" />
<text text-anchor="" x="753.98" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (24001) (4 ms, 0.02%)</title><rect x="710.3" y="1173" width="0.3" height="15.0" fill="rgb(214,80,1)" rx="2" ry="2" />
<text text-anchor="" x="713.32" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8000) (7 ms, 0.04%)</title><rect x="1162.7" y="629" width="0.5" height="15.0" fill="rgb(229,171,3)" rx="2" ry="2" />
<text text-anchor="" x="1165.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (1) (2 ms, 0.01%)</title><rect x="14.7" y="869" width="0.2" height="15.0" fill="rgb(233,111,37)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (2) (2 ms, 0.01%)</title><rect x="12.9" y="853" width="0.2" height="15.0" fill="rgb(217,224,31)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#deserialize (8001) (29 ms, 0.15%)</title><rect x="715.6" y="1109" width="1.8" height="15.0" fill="rgb(223,21,12)" rx="2" ry="2" />
<text text-anchor="" x="718.65" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_object (74) (4 ms, 0.02%)</title><rect x="15.4" y="613" width="0.2" height="15.0" fill="rgb(225,196,33)" rx="2" ry="2" />
<text text-anchor="" x="18.39" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#instrument (2) (153 ms, 0.78%)</title><rect x="1100.1" y="741" width="9.2" height="15.0" fill="rgb(225,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::PerThreadRegistry#instance (8001) (11 ms, 0.06%)</title><rect x="56.2" y="1109" width="0.7" height="15.0" fill="rgb(240,61,22)" rx="2" ry="2" />
<text text-anchor="" x="59.23" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_variable_defined? (8001) (2 ms, 0.01%)</title><rect x="1028.3" y="1045" width="0.2" height="15.0" fill="rgb(242,167,43)" rx="2" ry="2" />
<text text-anchor="" x="1031.34" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#shift (24003) (7 ms, 0.04%)</title><rect x="750.6" y="1173" width="0.4" height="15.0" fill="rgb(226,155,3)" rx="2" ry="2" />
<text text-anchor="" x="753.58" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#all (8001) (7 ms, 0.04%)</title><rect x="682.4" y="1125" width="0.4" height="15.0" fill="rgb(212,87,42)" rx="2" ry="2" />
<text text-anchor="" x="685.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (16002) (2 ms, 0.01%)</title><rect x="1084.0" y="373" width="0.1" height="15.0" fill="rgb(208,52,12)" rx="2" ry="2" />
<text text-anchor="" x="1086.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#const_get (5) (2 ms, 0.01%)</title><rect x="1057.7" y="773" width="0.2" height="15.0" fill="rgb(244,73,37)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#utc? (24003) (4 ms, 0.02%)</title><rect x="901.0" y="1077" width="0.3" height="15.0" fill="rgb(251,170,41)" rx="2" ry="2" />
<text text-anchor="" x="904.03" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (2) (2,385 ms, 12.20%)</title><rect x="1045.6" y="1173" width="143.9" height="15.0" fill="rgb(246,30,28)" rx="2" ry="2" />
<text text-anchor="" x="1048.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#flat_ma..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#skip_query_cache_if_necessary (1) (5 ms, 0.03%)</title><rect x="10.5" y="1125" width="0.3" height="15.0" fill="rgb(244,7,17)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (96012) (18 ms, 0.09%)</title><rect x="518.4" y="1061" width="1.1" height="15.0" fill="rgb(213,17,33)" rx="2" ry="2" />
<text text-anchor="" x="521.43" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey#id (96012) (466 ms, 2.38%)</title><rect x="489.2" y="1061" width="28.2" height="15.0" fill="rgb(241,39,50)" rx="2" ry="2" />
<text text-anchor="" x="492.20" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#acts_as_nested_set_options (8001) (2 ms, 0.01%)</title><rect x="117.2" y="1045" width="0.1" height="15.0" fill="rgb(234,222,51)" rx="2" ry="2" />
<text text-anchor="" x="120.20" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#relation_class_for (8001) (13 ms, 0.07%)</title><rect x="118.8" y="1109" width="0.8" height="15.0" fill="rgb(250,224,50)" rx="2" ry="2" />
<text text-anchor="" x="121.78" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (8001) (2 ms, 0.01%)</title><rect x="31.4" y="1205" width="0.1" height="15.0" fill="rgb(221,104,45)" rx="2" ry="2" />
<text text-anchor="" x="34.36" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#has_cached_counter? (8001) (10 ms, 0.05%)</title><rect x="64.3" y="1205" width="0.5" height="15.0" fill="rgb(243,145,12)" rx="2" ry="2" />
<text text-anchor="" x="67.26" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__07167656f5c61697f65747 (8001) (117 ms, 0.60%)</title><rect x="674.7" y="1141" width="7.1" height="15.0" fill="rgb(220,99,21)" rx="2" ry="2" />
<text text-anchor="" x="677.67" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#restricted (8001) (143 ms, 0.73%)</title><rect x="711.6" y="1269" width="8.6" height="15.0" fill="rgb(250,94,44)" rx="2" ry="2" />
<text text-anchor="" x="714.61" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Set#include? (8001) (3 ms, 0.02%)</title><rect x="717.1" y="1061" width="0.2" height="15.0" fill="rgb(206,46,30)" rx="2" ry="2" />
<text text-anchor="" x="720.13" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (2) (2,144 ms, 10.97%)</title><rect x="1060.1" y="1093" width="129.4" height="15.0" fill="rgb(244,191,4)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Hash#each (2)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (48006) (8 ms, 0.04%)</title><rect x="928.4" y="1109" width="0.5" height="15.0" fill="rgb(238,172,2)" rx="2" ry="2" />
<text text-anchor="" x="931.41" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (4) (41 ms, 0.21%)</title><rect x="12.0" y="1125" width="2.5" height="15.0" fill="rgb(207,44,26)" rx="2" ry="2" />
<text text-anchor="" x="15.04" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;Class:0x00007f9056328ac8&gt;#deserialize (8001) (33 ms, 0.17%)</title><rect x="698.4" y="1093" width="2.0" height="15.0" fill="rgb(228,114,4)" rx="2" ry="2" />
<text text-anchor="" x="701.37" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (5) (7 ms, 0.04%)</title><rect x="12.4" y="869" width="0.4" height="15.0" fill="rgb(229,206,0)" rx="2" ry="2" />
<text text-anchor="" x="15.43" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (8001) (122 ms, 0.62%)</title><rect x="139.7" y="1205" width="7.3" height="15.0" fill="rgb(253,27,28)" rx="2" ry="2" />
<text text-anchor="" x="142.68" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::Named::ClassMethods#default_extensions (8001) (153 ms, 0.78%)</title><rect x="122.1" y="1157" width="9.3" height="15.0" fill="rgb(245,50,25)" rx="2" ry="2" />
<text text-anchor="" x="125.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#visit (16002) (71 ms, 0.36%)</title><rect x="1079.8" y="389" width="4.3" height="15.0" fill="rgb(222,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1082.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#key_conversion_required? (16002) (6 ms, 0.03%)</title><rect x="1181.3" y="997" width="0.4" height="15.0" fill="rgb(221,107,38)" rx="2" ry="2" />
<text text-anchor="" x="1184.30" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="1058.3" y="1061" width="0.2" height="15.0" fill="rgb(205,115,23)" rx="2" ry="2" />
<text text-anchor="" x="1061.31" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#to_time (8001) (88 ms, 0.45%)</title><rect x="688.4" y="1173" width="5.2" height="15.0" fill="rgb(243,25,7)" rx="2" ry="2" />
<text text-anchor="" x="691.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#kind_of? (8001) (2 ms, 0.01%)</title><rect x="89.4" y="1029" width="0.2" height="15.0" fill="rgb(251,0,39)" rx="2" ry="2" />
<text text-anchor="" x="92.42" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Railties::ControllerRuntime#cleanup_view_runtime (1) (5 ms, 0.03%)</title><rect x="10.0" y="1301" width="0.3" height="15.0" fill="rgb(226,15,7)" rx="2" ry="2" />
<text text-anchor="" x="13.01" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (14 ms, 0.07%)</title><rect x="33.2" y="1189" width="0.8" height="15.0" fill="rgb(225,67,29)" rx="2" ry="2" />
<text text-anchor="" x="36.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8001) (4 ms, 0.02%)</title><rect x="142.0" y="1157" width="0.3" height="15.0" fill="rgb(224,116,12)" rx="2" ry="2" />
<text text-anchor="" x="145.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::QueryAttribute#value_for_database (16002) (107 ms, 0.55%)</title><rect x="1086.0" y="469" width="6.5" height="15.0" fill="rgb(212,57,11)" rx="2" ry="2" />
<text text-anchor="" x="1089.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (2,385 ms, 12.20%)</title><rect x="1045.6" y="1157" width="143.9" height="15.0" fill="rgb(236,76,44)" rx="2" ry="2" />
<text text-anchor="" x="1048.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array#each (2)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (107 ms, 0.55%)</title><rect x="981.0" y="1173" width="6.5" height="15.0" fill="rgb(211,154,1)" rx="2" ry="2" />
<text text-anchor="" x="984.04" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#records_for (2) (1,703 ms, 8.71%)</title><rect x="1069.5" y="949" width="102.9" height="15.0" fill="rgb(234,28,33)" rx="2" ry="2" />
<text text-anchor="" x="1072.55" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (17 ms, 0.09%)</title><rect x="702.3" y="1093" width="1.0" height="15.0" fill="rgb(217,126,43)" rx="2" ry="2" />
<text text-anchor="" x="705.25" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#present? (24003) (19 ms, 0.10%)</title><rect x="738.0" y="1173" width="1.1" height="15.0" fill="rgb(216,86,37)" rx="2" ry="2" />
<text text-anchor="" x="740.98" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#matches_conditions? (48006) (641 ms, 3.28%)</title><rect x="561.7" y="1109" width="38.7" height="15.0" fill="rgb(227,28,40)" rx="2" ry="2" />
<text text-anchor="" x="564.71" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Can..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#revive_hash (31) (35 ms, 0.18%)</title><rect x="17.6" y="581" width="2.2" height="15.0" fill="rgb(212,83,37)" rx="2" ry="2" />
<text text-anchor="" x="20.63" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#relation (8001) (71 ms, 0.36%)</title><rect x="117.7" y="1141" width="4.3" height="15.0" fill="rgb(214,23,15)" rx="2" ry="2" />
<text text-anchor="" x="120.72" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#utc? (24003) (5 ms, 0.03%)</title><rect x="901.3" y="1125" width="0.3" height="15.0" fill="rgb(229,107,36)" rx="2" ry="2" />
<text text-anchor="" x="904.29" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#locked? (24003) (208 ms, 1.06%)</title><rect x="869.6" y="1205" width="12.6" height="15.0" fill="rgb(207,164,41)" rx="2" ry="2" />
<text text-anchor="" x="872.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::I18n&gt;#translate (1) (77 ms, 0.39%)</title><rect x="15.3" y="965" width="4.6" height="15.0" fill="rgb(249,170,6)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#owners_by_key (8000) (4 ms, 0.02%)</title><rect x="1155.6" y="773" width="0.2" height="15.0" fill="rgb(246,85,52)" rx="2" ry="2" />
<text text-anchor="" x="1158.61" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (16002) (514 ms, 2.63%)</title><rect x="639.1" y="1189" width="31.0" height="15.0" fill="rgb(230,31,16)" rx="2" ry="2" />
<text text-anchor="" x="642.06" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#__callbacks (8001) (14 ms, 0.07%)</title><rect x="1026.2" y="1061" width="0.9" height="15.0" fill="rgb(254,115,27)" rx="2" ry="2" />
<text text-anchor="" x="1029.23" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#require (1) (6 ms, 0.03%)</title><rect x="1051.1" y="1013" width="0.4" height="15.0" fill="rgb(248,184,19)" rx="2" ry="2" />
<text text-anchor="" x="1054.15" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#get_value (8001) (6 ms, 0.03%)</title><rect x="75.8" y="1141" width="0.3" height="15.0" fill="rgb(242,132,22)" rx="2" ry="2" />
<text text-anchor="" x="78.77" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#available_locales_set (1) (76 ms, 0.39%)</title><rect x="15.3" y="901" width="4.6" height="15.0" fill="rgb(251,33,36)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#discriminate_class_for_record (8000) (43 ms, 0.22%)</title><rect x="1169.5" y="789" width="2.6" height="15.0" fill="rgb(206,32,32)" rx="2" ry="2" />
<text text-anchor="" x="1172.51" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (24003) (10 ms, 0.05%)</title><rect x="879.6" y="1077" width="0.5" height="15.0" fill="rgb(241,133,10)" rx="2" ry="2" />
<text text-anchor="" x="882.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (8001) (8 ms, 0.04%)</title><rect x="88.8" y="997" width="0.4" height="15.0" fill="rgb(245,200,22)" rx="2" ry="2" />
<text text-anchor="" x="91.76" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8001) (139 ms, 0.71%)</title><rect x="979.4" y="1189" width="8.3" height="15.0" fill="rgb(244,63,42)" rx="2" ry="2" />
<text text-anchor="" x="982.35" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (48006) (11 ms, 0.06%)</title><rect x="735.3" y="1173" width="0.6" height="15.0" fill="rgb(229,20,16)" rx="2" ry="2" />
<text text-anchor="" x="738.31" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks#run_callbacks (8000) (25 ms, 0.13%)</title><rect x="1166.3" y="757" width="1.5" height="15.0" fill="rgb(206,212,49)" rx="2" ry="2" />
<text text-anchor="" x="1169.28" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (2) (1,704 ms, 8.72%)</title><rect x="1069.5" y="981" width="102.9" height="15.0" fill="rgb(209,201,0)" rx="2" ry="2" />
<text text-anchor="" x="1072.52" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#to_a (8001) (4 ms, 0.02%)</title><rect x="76.9" y="1125" width="0.2" height="15.0" fill="rgb(227,222,48)" rx="2" ry="2" />
<text text-anchor="" x="79.88" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_index (2) (105 ms, 0.54%)</title><rect x="1077.7" y="421" width="6.4" height="15.0" fill="rgb(217,103,46)" rx="2" ry="2" />
<text text-anchor="" x="1080.75" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (1) (3 ms, 0.02%)</title><rect x="1057.7" y="933" width="0.2" height="15.0" fill="rgb(217,143,20)" rx="2" ry="2" />
<text text-anchor="" x="1060.72" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ControllerAdditions#authorize! (1) (181 ms, 0.93%)</title><rect x="10.4" y="1317" width="10.9" height="15.0" fill="rgb(239,139,3)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#foreign_key (8000) (4 ms, 0.02%)</title><rect x="1154.9" y="741" width="0.2" height="15.0" fill="rgb(228,121,35)" rx="2" ry="2" />
<text text-anchor="" x="1157.89" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (32004) (95 ms, 0.49%)</title><rect x="1037.6" y="1109" width="5.7" height="15.0" fill="rgb(228,163,7)" rx="2" ry="2" />
<text text-anchor="" x="1040.58" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (27 ms, 0.14%)</title><rect x="634.1" y="1173" width="1.6" height="15.0" fill="rgb(222,194,52)" rx="2" ry="2" />
<text text-anchor="" x="637.12" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#reset (8000) (9 ms, 0.05%)</title><rect x="1133.5" y="677" width="0.5" height="15.0" fill="rgb(207,159,46)" rx="2" ry="2" />
<text text-anchor="" x="1136.50" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Querying#find_or_create_by (1) (7 ms, 0.04%)</title><rect x="10.5" y="1253" width="0.4" height="15.0" fill="rgb(244,224,35)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#visible? (8001) (160 ms, 0.82%)</title><rect x="978.1" y="1253" width="9.6" height="15.0" fill="rgb(239,160,24)" rx="2" ry="2" />
<text text-anchor="" x="981.07" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (4) (41 ms, 0.21%)</title><rect x="12.1" y="1045" width="2.4" height="15.0" fill="rgb(212,219,20)" rx="2" ry="2" />
<text text-anchor="" x="15.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (8000) (4 ms, 0.02%)</title><rect x="1135.5" y="645" width="0.2" height="15.0" fill="rgb(216,50,3)" rx="2" ry="2" />
<text text-anchor="" x="1138.47" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_sym (120015) (19 ms, 0.10%)</title><rect x="809.5" y="1093" width="1.2" height="15.0" fill="rgb(210,161,12)" rx="2" ry="2" />
<text text-anchor="" x="812.53" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::ControllerActions#current_alchemy_user (1) (7 ms, 0.04%)</title><rect x="10.4" y="1285" width="0.5" height="15.0" fill="rgb(235,32,0)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8001) (154 ms, 0.79%)</title><rect x="694.6" y="1205" width="9.3" height="15.0" fill="rgb(245,140,12)" rx="2" ry="2" />
<text text-anchor="" x="697.63" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Aggregations#init_internals (8001) (24 ms, 0.12%)</title><rect x="1024.0" y="1093" width="1.4" height="15.0" fill="rgb(232,106,8)" rx="2" ry="2" />
<text text-anchor="" x="1026.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (1) (2 ms, 0.01%)</title><rect x="15.1" y="885" width="0.1" height="15.0" fill="rgb(242,99,44)" rx="2" ry="2" />
<text text-anchor="" x="18.12" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#| (16002) (6 ms, 0.03%)</title><rect x="131.4" y="1157" width="0.4" height="15.0" fill="rgb(247,44,49)" rx="2" ry="2" />
<text text-anchor="" x="134.38" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#compute_type (1) (3 ms, 0.02%)</title><rect x="1057.7" y="901" width="0.2" height="15.0" fill="rgb(243,126,52)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder::ArrayHandler#call (2) (134 ms, 0.69%)</title><rect x="1069.6" y="805" width="8.1" height="15.0" fill="rgb(205,141,13)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (77) (5 ms, 0.03%)</title><rect x="18.4" y="117" width="0.3" height="15.0" fill="rgb(230,44,43)" rx="2" ry="2" />
<text text-anchor="" x="21.43" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Lazy#map (48006) (185 ms, 0.95%)</title><rect x="608.8" y="1221" width="11.2" height="15.0" fill="rgb(230,6,25)" rx="2" ry="2" />
<text text-anchor="" x="611.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::QueryAttribute#type_cast (16002) (4 ms, 0.02%)</title><rect x="1087.9" y="421" width="0.2" height="15.0" fill="rgb(233,176,7)" rx="2" ry="2" />
<text text-anchor="" x="1090.89" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#build_bind_attribute (16002) (88 ms, 0.45%)</title><rect x="1071.7" y="773" width="5.4" height="15.0" fill="rgb(230,160,17)" rx="2" ry="2" />
<text text-anchor="" x="1074.73" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Type::Internal::Timezone#default_timezone (8001) (36 ms, 0.18%)</title><rect x="653.0" y="981" width="2.2" height="15.0" fill="rgb(245,96,44)" rx="2" ry="2" />
<text text-anchor="" x="655.99" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_one (6) (3 ms, 0.02%)</title><rect x="14.0" y="981" width="0.1" height="15.0" fill="rgb(249,180,31)" rx="2" ry="2" />
<text text-anchor="" x="16.99" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability#can? (48006) (7,856 ms, 40.18%)</title><rect x="154.4" y="1237" width="474.1" height="15.0" fill="rgb(214,183,0)" rx="2" ry="2" />
<text text-anchor="" x="157.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanCan::Ability#can? (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#locale_available? (24003) (59 ms, 0.30%)</title><rect x="757.1" y="1157" width="3.6" height="15.0" fill="rgb(209,129,29)" rx="2" ry="2" />
<text text-anchor="" x="760.11" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#klass (8001) (6 ms, 0.03%)</title><rect x="49.2" y="1157" width="0.4" height="15.0" fill="rgb(207,114,11)" rx="2" ry="2" />
<text text-anchor="" x="52.21" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#respond_to? (24003) (7 ms, 0.04%)</title><rect x="902.6" y="1125" width="0.4" height="15.0" fill="rgb(214,61,45)" rx="2" ry="2" />
<text text-anchor="" x="905.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#localtime (24003) (60 ms, 0.31%)</title><rect x="945.3" y="1109" width="3.6" height="15.0" fill="rgb(211,27,23)" rx="2" ry="2" />
<text text-anchor="" x="948.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (6 ms, 0.03%)</title><rect x="721.7" y="1189" width="0.3" height="15.0" fill="rgb(220,67,17)" rx="2" ry="2" />
<text text-anchor="" x="724.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (8001) (2 ms, 0.01%)</title><rect x="42.1" y="1221" width="0.1" height="15.0" fill="rgb(250,83,48)" rx="2" ry="2" />
<text text-anchor="" x="45.10" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#abstract_class? (8001) (3 ms, 0.02%)</title><rect x="131.0" y="1125" width="0.1" height="15.0" fill="rgb(236,111,30)" rx="2" ry="2" />
<text text-anchor="" x="133.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (76 ms, 0.39%)</title><rect x="15.3" y="821" width="4.6" height="15.0" fill="rgb(211,12,13)" rx="2" ry="2" />
<text text-anchor="" x="18.27" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#predicate_builder (8001) (3 ms, 0.02%)</title><rect x="59.2" y="1173" width="0.1" height="15.0" fill="rgb(216,145,26)" rx="2" ry="2" />
<text text-anchor="" x="62.15" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#association_key_name (8000) (10 ms, 0.05%)</title><rect x="1172.7" y="981" width="0.5" height="15.0" fill="rgb(252,225,17)" rx="2" ry="2" />
<text text-anchor="" x="1175.65" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#abstract_class? (8001) (3 ms, 0.02%)</title><rect x="58.4" y="1125" width="0.2" height="15.0" fill="rgb(207,39,36)" rx="2" ry="2" />
<text text-anchor="" x="61.39" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ClassMethods#current_scope (8001) (41 ms, 0.21%)</title><rect x="109.8" y="1077" width="2.5" height="15.0" fill="rgb(248,208,27)" rx="2" ry="2" />
<text text-anchor="" x="112.77" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#initialize (8001) (227 ms, 1.16%)</title><rect x="47.0" y="1189" width="13.7" height="15.0" fill="rgb(217,82,10)" rx="2" ry="2" />
<text text-anchor="" x="50.01" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (32004) (5 ms, 0.03%)</title><rect x="1059.8" y="1077" width="0.3" height="15.0" fill="rgb(213,188,15)" rx="2" ry="2" />
<text text-anchor="" x="1062.83" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (32004) (14 ms, 0.07%)</title><rect x="573.9" y="997" width="0.9" height="15.0" fill="rgb(225,114,36)" rx="2" ry="2" />
<text text-anchor="" x="576.94" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Lazy#reject (48006) (142 ms, 0.73%)</title><rect x="620.0" y="1221" width="8.5" height="15.0" fill="rgb(235,185,24)" rx="2" ry="2" />
<text text-anchor="" x="622.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet::Builder#build_from_database (8000) (28 ms, 0.14%)</title><rect x="1121.2" y="789" width="1.7" height="15.0" fill="rgb(221,53,44)" rx="2" ry="2" />
<text text-anchor="" x="1124.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Scoping::ScopeRegistry&gt;#set_value_for (16002) (54 ms, 0.28%)</title><rect x="113.1" y="1061" width="3.2" height="15.0" fill="rgb(237,95,48)" rx="2" ry="2" />
<text text-anchor="" x="116.08" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (8001) (2 ms, 0.01%)</title><rect x="661.6" y="1061" width="0.1" height="15.0" fill="rgb(216,211,20)" rx="2" ry="2" />
<text text-anchor="" x="664.59" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (482) (4 ms, 0.02%)</title><rect x="18.5" y="69" width="0.2" height="15.0" fill="rgb(226,169,22)" rx="2" ry="2" />
<text text-anchor="" x="21.48" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AutosaveAssociation::ClassMethods#add_autosave_association_callbacks (4) (3 ms, 0.02%)</title><rect x="13.6" y="869" width="0.2" height="15.0" fill="rgb(207,189,0)" rx="2" ry="2" />
<text text-anchor="" x="16.62" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#include? (8001) (2 ms, 0.01%)</title><rect x="127.4" y="1077" width="0.1" height="15.0" fill="rgb(237,108,49)" rx="2" ry="2" />
<text text-anchor="" x="130.40" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#block_given? (8001) (2 ms, 0.01%)</title><rect x="40.9" y="1237" width="0.1" height="15.0" fill="rgb(232,101,54)" rx="2" ry="2" />
<text text-anchor="" x="43.88" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (5) (3 ms, 0.02%)</title><rect x="12.6" y="805" width="0.1" height="15.0" fill="rgb(250,189,54)" rx="2" ry="2" />
<text text-anchor="" x="15.55" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Array (2) (105 ms, 0.54%)</title><rect x="1077.7" y="485" width="6.4" height="15.0" fill="rgb(236,28,41)" rx="2" ry="2" />
<text text-anchor="" x="1080.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (33 ms, 0.17%)</title><rect x="715.4" y="1125" width="2.0" height="15.0" fill="rgb(251,3,17)" rx="2" ry="2" />
<text text-anchor="" x="718.41" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (1) (3 ms, 0.02%)</title><rect x="10.6" y="1077" width="0.2" height="15.0" fill="rgb(206,33,25)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#== (8001) (2 ms, 0.01%)</title><rect x="717.0" y="1045" width="0.1" height="15.0" fill="rgb(224,74,47)" rx="2" ry="2" />
<text text-anchor="" x="720.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (1448) (33 ms, 0.17%)</title><rect x="17.7" y="309" width="2.0" height="15.0" fill="rgb(245,128,28)" rx="2" ry="2" />
<text text-anchor="" x="20.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Panko::ArraySerializer#to_json (1) (19,363 ms, 99.04%)</title><rect x="21.3" y="1317" width="1168.7" height="15.0" fill="rgb(234,39,2)" rx="2" ry="2" />
<text text-anchor="" x="24.34" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Panko::ArraySerializer#to_json (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (16002) (27 ms, 0.14%)</title><rect x="1066.7" y="901" width="1.6" height="15.0" fill="rgb(248,100,6)" rx="2" ry="2" />
<text text-anchor="" x="1069.70" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (1) (6 ms, 0.03%)</title><rect x="11.6" y="1141" width="0.4" height="15.0" fill="rgb(225,29,7)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (48006) (10 ms, 0.05%)</title><rect x="836.7" y="1141" width="0.6" height="15.0" fill="rgb(231,137,13)" rx="2" ry="2" />
<text text-anchor="" x="839.73" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#run (2) (2,142 ms, 10.96%)</title><rect x="1060.2" y="1045" width="129.3" height="15.0" fill="rgb(239,123,16)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::As..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (4695) (7 ms, 0.04%)</title><rect x="16.6" y="661" width="0.5" height="15.0" fill="rgb(249,20,8)" rx="2" ry="2" />
<text text-anchor="" x="19.64" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#binary? (16002) (3 ms, 0.02%)</title><rect x="1103.6" y="581" width="0.2" height="15.0" fill="rgb(254,124,11)" rx="2" ry="2" />
<text text-anchor="" x="1106.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (3 ms, 0.02%)</title><rect x="146.8" y="1157" width="0.2" height="15.0" fill="rgb(242,100,26)" rx="2" ry="2" />
<text text-anchor="" x="149.79" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::PerThreadRegistry#instance (8001) (12 ms, 0.06%)</title><rect x="128.7" y="1109" width="0.7" height="15.0" fill="rgb(247,49,12)" rx="2" ry="2" />
<text text-anchor="" x="131.68" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (16002) (3 ms, 0.02%)</title><rect x="642.2" y="1157" width="0.1" height="15.0" fill="rgb(233,153,20)" rx="2" ry="2" />
<text text-anchor="" x="645.16" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (2) (7 ms, 0.04%)</title><rect x="10.9" y="1077" width="0.4" height="15.0" fill="rgb(252,145,13)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (16002) (186 ms, 0.95%)</title><rect x="1047.3" y="1077" width="11.3" height="15.0" fill="rgb(224,21,3)" rx="2" ry="2" />
<text text-anchor="" x="1050.34" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (10 ms, 0.05%)</title><rect x="149.7" y="1157" width="0.6" height="15.0" fill="rgb(222,228,32)" rx="2" ry="2" />
<text text-anchor="" x="152.66" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1109" width="7.6" height="15.0" fill="rgb(224,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (8001) (2 ms, 0.01%)</title><rect x="49.4" y="1141" width="0.2" height="15.0" fill="rgb(210,41,33)" rx="2" ry="2" />
<text text-anchor="" x="52.42" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#inject_join (2) (105 ms, 0.54%)</title><rect x="1077.7" y="469" width="6.4" height="15.0" fill="rgb(209,31,29)" rx="2" ry="2" />
<text text-anchor="" x="1080.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (16002) (37 ms, 0.19%)</title><rect x="1066.2" y="917" width="2.3" height="15.0" fill="rgb(213,148,17)" rx="2" ry="2" />
<text text-anchor="" x="1069.25" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (8001) (4 ms, 0.02%)</title><rect x="129.1" y="1093" width="0.3" height="15.0" fill="rgb(219,131,27)" rx="2" ry="2" />
<text text-anchor="" x="132.13" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (16002) (113 ms, 0.58%)</title><rect x="1051.5" y="1061" width="6.8" height="15.0" fill="rgb(248,215,16)" rx="2" ry="2" />
<text text-anchor="" x="1054.51" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (4712678) (585 ms, 2.99%)</title><rect x="519.5" y="1077" width="35.3" height="15.0" fill="rgb(223,170,5)" rx="2" ry="2" />
<text text-anchor="" x="522.50" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#reset_scope (16002) (6 ms, 0.03%)</title><rect x="1052.9" y="1029" width="0.4" height="15.0" fill="rgb(223,36,18)" rx="2" ry="2" />
<text text-anchor="" x="1055.92" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (8001) (25 ms, 0.13%)</title><rect x="34.7" y="1205" width="1.5" height="15.0" fill="rgb(233,128,20)" rx="2" ry="2" />
<text text-anchor="" x="37.70" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (16000) (22 ms, 0.11%)</title><rect x="1121.6" y="773" width="1.3" height="15.0" fill="rgb(207,62,4)" rx="2" ry="2" />
<text text-anchor="" x="1124.57" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (8 ms, 0.04%)</title><rect x="702.8" y="1061" width="0.5" height="15.0" fill="rgb(215,29,3)" rx="2" ry="2" />
<text text-anchor="" x="705.77" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (31) (35 ms, 0.18%)</title><rect x="17.7" y="453" width="2.1" height="15.0" fill="rgb(223,63,0)" rx="2" ry="2" />
<text text-anchor="" x="20.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (71 ms, 0.36%)</title><rect x="1172.4" y="997" width="4.3" height="15.0" fill="rgb(213,23,33)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (16004) (6 ms, 0.03%)</title><rect x="1056.6" y="981" width="0.3" height="15.0" fill="rgb(252,212,37)" rx="2" ry="2" />
<text text-anchor="" x="1059.56" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (24003) (10 ms, 0.05%)</title><rect x="976.8" y="1221" width="0.6" height="15.0" fill="rgb(216,184,48)" rx="2" ry="2" />
<text text-anchor="" x="979.80" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ddb::Userstamp::Stampable::ClassMethods#stampable (2) (3 ms, 0.02%)</title><rect x="14.2" y="981" width="0.1" height="15.0" fill="rgb(250,109,50)" rx="2" ry="2" />
<text text-anchor="" x="17.17" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Admin::PagesController#tree (1) (19,551 ms, 100.00%)</title><rect x="10.0" y="1333" width="1180.0" height="15.0" fill="rgb(209,97,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::Admin::PagesController#tree (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#has_inverse? (16002) (15 ms, 0.08%)</title><rect x="1057.0" y="997" width="0.9" height="15.0" fill="rgb(217,41,8)" rx="2" ry="2" />
<text text-anchor="" x="1059.97" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#deserialize (8001) (10 ms, 0.05%)</title><rect x="26.3" y="1269" width="0.6" height="15.0" fill="rgb(215,144,16)" rx="2" ry="2" />
<text text-anchor="" x="29.31" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#default_scope_override (16002) (6 ms, 0.03%)</title><rect x="130.6" y="1125" width="0.4" height="15.0" fill="rgb(205,129,4)" rx="2" ry="2" />
<text text-anchor="" x="133.59" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Rule#relevant? (392049) (814 ms, 4.16%)</title><rect x="264.2" y="1093" width="49.2" height="15.0" fill="rgb(229,74,6)" rx="2" ry="2" />
<text text-anchor="" x="267.24" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanC..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#initialize (8001) (19 ms, 0.10%)</title><rect x="634.6" y="1157" width="1.1" height="15.0" fill="rgb(206,147,20)" rx="2" ry="2" />
<text text-anchor="" x="637.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (96012) (175 ms, 0.90%)</title><rect x="501.1" y="1029" width="10.6" height="15.0" fill="rgb(221,184,7)" rx="2" ry="2" />
<text text-anchor="" x="504.13" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#enforce_available_locales! (1) (76 ms, 0.39%)</title><rect x="15.3" y="933" width="4.6" height="15.0" fill="rgb(211,106,36)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Visitor#dispatch (16002) (4 ms, 0.02%)</title><rect x="1083.6" y="373" width="0.2" height="15.0" fill="rgb(233,86,23)" rx="2" ry="2" />
<text text-anchor="" x="1086.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (8001) (150 ms, 0.77%)</title><rect x="978.7" y="1221" width="9.0" height="15.0" fill="rgb(244,30,43)" rx="2" ry="2" />
<text text-anchor="" x="981.65" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#_deep_transform_keys_in_object (1368) (2 ms, 0.01%)</title><rect x="15.4" y="581" width="0.2" height="15.0" fill="rgb(208,205,50)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (24003) (166 ms, 0.85%)</title><rect x="872.2" y="1157" width="10.0" height="15.0" fill="rgb(239,1,36)" rx="2" ry="2" />
<text text-anchor="" x="875.17" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (96012) (44 ms, 0.23%)</title><rect x="495.3" y="1045" width="2.7" height="15.0" fill="rgb(237,156,29)" rx="2" ry="2" />
<text text-anchor="" x="498.34" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (48 ms, 0.25%)</title><rect x="981.5" y="1141" width="3.0" height="15.0" fill="rgb(232,97,40)" rx="2" ry="2" />
<text text-anchor="" x="984.55" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#instrument (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1061" width="7.6" height="15.0" fill="rgb(216,61,13)" rx="2" ry="2" />
<text text-anchor="" x="1007.87" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#pop (24003) (6 ms, 0.03%)</title><rect x="741.4" y="1173" width="0.4" height="15.0" fill="rgb(232,191,26)" rx="2" ry="2" />
<text text-anchor="" x="744.42" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (24003) (185 ms, 0.95%)</title><rect x="858.4" y="1189" width="11.2" height="15.0" fill="rgb(241,92,32)" rx="2" ry="2" />
<text text-anchor="" x="861.44" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#hash (16002) (204 ms, 1.04%)</title><rect x="1033.3" y="1157" width="12.3" height="15.0" fill="rgb(207,94,37)" rx="2" ry="2" />
<text text-anchor="" x="1036.25" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::Default::ClassMethods#build_default_scope (8001) (31 ms, 0.16%)</title><rect x="56.9" y="1141" width="1.9" height="15.0" fill="rgb(215,98,40)" rx="2" ry="2" />
<text text-anchor="" x="59.92" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (32004) (33 ms, 0.17%)</title><rect x="1074.9" y="757" width="2.0" height="15.0" fill="rgb(213,192,9)" rx="2" ry="2" />
<text text-anchor="" x="1077.93" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (2) (19 ms, 0.10%)</title><rect x="1069.6" y="757" width="1.2" height="15.0" fill="rgb(240,54,23)" rx="2" ry="2" />
<text text-anchor="" x="1072.61" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_object (41) (5 ms, 0.03%)</title><rect x="15.3" y="661" width="0.3" height="15.0" fill="rgb(254,6,0)" rx="2" ry="2" />
<text text-anchor="" x="18.32" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (24003) (146 ms, 0.75%)</title><rect x="848.6" y="1157" width="8.8" height="15.0" fill="rgb(253,11,52)" rx="2" ry="2" />
<text text-anchor="" x="851.62" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (6 ms, 0.03%)</title><rect x="33.6" y="1173" width="0.4" height="15.0" fill="rgb(214,143,14)" rx="2" ry="2" />
<text text-anchor="" x="36.64" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#== (8001) (2 ms, 0.01%)</title><rect x="185.7" y="1077" width="0.2" height="15.0" fill="rgb(205,169,12)" rx="2" ry="2" />
<text text-anchor="" x="188.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#load_file (31) (76 ms, 0.39%)</title><rect x="15.3" y="805" width="4.6" height="15.0" fill="rgb(214,31,4)" rx="2" ry="2" />
<text text-anchor="" x="18.27" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (1) (4 ms, 0.02%)</title><rect x="11.4" y="1125" width="0.2" height="15.0" fill="rgb(251,51,28)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (32004) (96 ms, 0.49%)</title><rect x="580.9" y="1013" width="5.8" height="15.0" fill="rgb(218,3,37)" rx="2" ry="2" />
<text text-anchor="" x="583.92" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc_offset (8001) (54 ms, 0.28%)</title><rect x="690.2" y="1157" width="3.3" height="15.0" fill="rgb(220,174,52)" rx="2" ry="2" />
<text text-anchor="" x="693.21" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8000) (11 ms, 0.06%)</title><rect x="1157.0" y="741" width="0.7" height="15.0" fill="rgb(241,76,49)" rx="2" ry="2" />
<text text-anchor="" x="1160.02" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#any? (8001) (64 ms, 0.33%)</title><rect x="37.1" y="1253" width="3.9" height="15.0" fill="rgb(251,33,29)" rx="2" ry="2" />
<text text-anchor="" x="40.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Persistence::ClassMethods#instantiate (8001) (226 ms, 1.16%)</title><rect x="1019.1" y="1125" width="13.7" height="15.0" fill="rgb(238,119,1)" rx="2" ry="2" />
<text text-anchor="" x="1022.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (16002) (3 ms, 0.02%)</title><rect x="630.7" y="1205" width="0.2" height="15.0" fill="rgb(205,57,30)" rx="2" ry="2" />
<text text-anchor="" x="633.75" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_i (48006) (11 ms, 0.06%)</title><rect x="658.8" y="997" width="0.6" height="15.0" fill="rgb(207,73,31)" rx="2" ry="2" />
<text text-anchor="" x="661.78" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded? (8001) (2 ms, 0.01%)</title><rect x="40.1" y="1141" width="0.1" height="15.0" fill="rgb(243,98,3)" rx="2" ry="2" />
<text text-anchor="" x="43.11" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#any? (8001) (2 ms, 0.01%)</title><rect x="58.6" y="1125" width="0.1" height="15.0" fill="rgb(205,74,53)" rx="2" ry="2" />
<text text-anchor="" x="61.56" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#join_foreign_key (16002) (11 ms, 0.06%)</title><rect x="1182.1" y="997" width="0.6" height="15.0" fill="rgb(234,8,16)" rx="2" ry="2" />
<text text-anchor="" x="1185.07" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#extending_values (8001) (11 ms, 0.06%)</title><rect x="75.5" y="1157" width="0.6" height="15.0" fill="rgb(235,48,52)" rx="2" ry="2" />
<text text-anchor="" x="78.47" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (1) (2 ms, 0.01%)</title><rect x="1057.7" y="741" width="0.2" height="15.0" fill="rgb(216,182,47)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#owner_key_name (16002) (17 ms, 0.09%)</title><rect x="1181.7" y="1013" width="1.0" height="15.0" fill="rgb(205,65,19)" rx="2" ry="2" />
<text text-anchor="" x="1184.66" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#block_given? (8001) (2 ms, 0.01%)</title><rect x="122.0" y="1141" width="0.1" height="15.0" fill="rgb(207,192,12)" rx="2" ry="2" />
<text text-anchor="" x="125.02" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MonitorMixin#mon_synchronize (2) (349 ms, 1.79%)</title><rect x="1093.2" y="837" width="21.0" height="15.0" fill="rgb(251,158,49)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#eql? (112014) (43 ms, 0.22%)</title><rect x="228.8" y="1077" width="2.7" height="15.0" fill="rgb(216,27,15)" rx="2" ry="2" />
<text text-anchor="" x="231.84" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#locked_by? (8001) (70 ms, 0.36%)</title><rect x="147.6" y="1237" width="4.3" height="15.0" fill="rgb(233,83,30)" rx="2" ry="2" />
<text text-anchor="" x="150.65" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (69 ms, 0.35%)</title><rect x="142.5" y="1141" width="4.2" height="15.0" fill="rgb(240,163,4)" rx="2" ry="2" />
<text text-anchor="" x="145.54" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::BelongsToAssociation#replace_keys (8000) (135 ms, 0.69%)</title><rect x="1146.1" y="741" width="8.2" height="15.0" fill="rgb(205,228,16)" rx="2" ry="2" />
<text text-anchor="" x="1149.11" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#inverse_reflection_for (8000) (10 ms, 0.05%)</title><rect x="1136.1" y="741" width="0.6" height="15.0" fill="rgb(236,187,45)" rx="2" ry="2" />
<text text-anchor="" x="1139.10" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Panko::ArraySerializer#serialize_to_json (1) (19,363 ms, 99.04%)</title><rect x="21.3" y="1301" width="1168.7" height="15.0" fill="rgb(253,175,22)" rx="2" ry="2" />
<text text-anchor="" x="24.34" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Panko::ArraySerializer#serialize_to_json (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#hash (16002) (76 ms, 0.39%)</title><rect x="1109.7" y="805" width="4.5" height="15.0" fill="rgb(247,144,5)" rx="2" ry="2" />
<text text-anchor="" x="1112.66" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Querying#find_by_sql (2) (1,568 ms, 8.02%)</title><rect x="1077.7" y="885" width="94.7" height="15.0" fill="rgb(207,167,47)" rx="2" ry="2" />
<text text-anchor="" x="1080.71" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (8001) (660 ms, 3.38%)</title><rect x="77.5" y="1141" width="39.8" height="15.0" fill="rgb(240,40,45)" rx="2" ry="2" />
<text text-anchor="" x="80.48" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Bas..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#inverse_reflection_for (8000) (14 ms, 0.07%)</title><rect x="1139.2" y="725" width="0.8" height="15.0" fill="rgb(225,123,27)" rx="2" ry="2" />
<text text-anchor="" x="1142.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8000) (12 ms, 0.06%)</title><rect x="1143.8" y="597" width="0.7" height="15.0" fill="rgb(213,206,27)" rx="2" ry="2" />
<text text-anchor="" x="1146.75" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::AbstractAdapter#log (2) (153 ms, 0.78%)</title><rect x="1100.1" y="757" width="9.2" height="15.0" fill="rgb(247,74,49)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#build (1) (2 ms, 0.01%)</title><rect x="14.7" y="837" width="0.2" height="15.0" fill="rgb(243,148,20)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#reader (8001) (1,117 ms, 5.71%)</title><rect x="66.3" y="1237" width="67.4" height="15.0" fill="rgb(212,107,5)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#abstract_class? (8001) (4 ms, 0.02%)</title><rect x="126.4" y="1077" width="0.2" height="15.0" fill="rgb(241,84,32)" rx="2" ry="2" />
<text text-anchor="" x="129.36" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#step (8002) (56 ms, 0.29%)</title><rect x="1104.5" y="629" width="3.4" height="15.0" fill="rgb(206,123,4)" rx="2" ry="2" />
<text text-anchor="" x="1107.49" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (17 ms, 0.09%)</title><rect x="145.5" y="1077" width="1.0" height="15.0" fill="rgb(226,113,5)" rx="2" ry="2" />
<text text-anchor="" x="148.47" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (16002) (4 ms, 0.02%)</title><rect x="630.9" y="1205" width="0.3" height="15.0" fill="rgb(222,6,48)" rx="2" ry="2" />
<text text-anchor="" x="633.92" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (8001) (5 ms, 0.03%)</title><rect x="685.2" y="1109" width="0.3" height="15.0" fill="rgb(205,45,27)" rx="2" ry="2" />
<text text-anchor="" x="688.17" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#redirects_to_external (8001) (105 ms, 0.54%)</title><rect x="705.3" y="1269" width="6.3" height="15.0" fill="rgb(247,33,52)" rx="2" ry="2" />
<text text-anchor="" x="708.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeDecorators::ClassMethods#load_schema! (1) (2 ms, 0.01%)</title><rect x="14.7" y="741" width="0.2" height="15.0" fill="rgb(240,180,18)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (14 ms, 0.07%)</title><rect x="721.2" y="1205" width="0.8" height="15.0" fill="rgb(248,185,49)" rx="2" ry="2" />
<text text-anchor="" x="724.21" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#initialize_copy (24003) (7 ms, 0.04%)</title><rect x="836.3" y="1109" width="0.4" height="15.0" fill="rgb(205,116,25)" rx="2" ry="2" />
<text text-anchor="" x="839.30" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (64 ms, 0.33%)</title><rect x="1159.6" y="709" width="3.9" height="15.0" fill="rgb(239,3,40)" rx="2" ry="2" />
<text text-anchor="" x="1162.61" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (8001) (154 ms, 0.79%)</title><rect x="978.4" y="1237" width="9.3" height="15.0" fill="rgb(232,222,39)" rx="2" ry="2" />
<text text-anchor="" x="981.42" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (24003) (6 ms, 0.03%)</title><rect x="852.1" y="1109" width="0.4" height="15.0" fill="rgb(207,136,35)" rx="2" ry="2" />
<text text-anchor="" x="855.13" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability#extract_subjects (48006) (95 ms, 0.49%)</title><rect x="158.2" y="1221" width="5.7" height="15.0" fill="rgb(222,35,36)" rx="2" ry="2" />
<text text-anchor="" x="161.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (32004) (4 ms, 0.02%)</title><rect x="1069.1" y="917" width="0.3" height="15.0" fill="rgb(242,32,5)" rx="2" ry="2" />
<text text-anchor="" x="1072.11" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (40 ms, 0.20%)</title><rect x="985.0" y="1109" width="2.4" height="15.0" fill="rgb(217,201,11)" rx="2" ry="2" />
<text text-anchor="" x="988.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#inject (2) (105 ms, 0.54%)</title><rect x="1077.7" y="453" width="6.4" height="15.0" fill="rgb(250,83,49)" rx="2" ry="2" />
<text text-anchor="" x="1080.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Scoping::ScopeRegistry&gt;#value_for (8001) (97 ms, 0.50%)</title><rect x="123.5" y="1125" width="5.9" height="15.0" fill="rgb(219,168,0)" rx="2" ry="2" />
<text text-anchor="" x="126.52" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FalseClass#to_s (16002) (8 ms, 0.04%)</title><rect x="976.3" y="1221" width="0.5" height="15.0" fill="rgb(244,80,12)" rx="2" ry="2" />
<text text-anchor="" x="979.34" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Helpers::Numeric#cast (8000) (29 ms, 0.15%)</title><rect x="1143.1" y="613" width="1.8" height="15.0" fill="rgb(227,208,40)" rx="2" ry="2" />
<text text-anchor="" x="1146.09" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_sym (8001) (2 ms, 0.01%)</title><rect x="705.1" y="1173" width="0.1" height="15.0" fill="rgb(252,143,27)" rx="2" ry="2" />
<text text-anchor="" x="708.10" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (4 ms, 0.02%)</title><rect x="595.2" y="1077" width="0.3" height="15.0" fill="rgb(210,213,15)" rx="2" ry="2" />
<text text-anchor="" x="598.23" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#compare_with_coercion (8001) (105 ms, 0.54%)</title><rect x="687.5" y="1189" width="6.4" height="15.0" fill="rgb(216,16,32)" rx="2" ry="2" />
<text text-anchor="" x="690.54" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#available_locales_set (24003) (10 ms, 0.05%)</title><rect x="759.5" y="1141" width="0.6" height="15.0" fill="rgb(212,158,4)" rx="2" ry="2" />
<text text-anchor="" x="762.45" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#_run_find_callbacks (8001) (30 ms, 0.15%)</title><rect x="1025.5" y="1093" width="1.8" height="15.0" fill="rgb(239,88,53)" rx="2" ry="2" />
<text text-anchor="" x="1028.53" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#attribute_fixed? (48006) (133 ms, 0.68%)</title><rect x="930.8" y="1157" width="8.0" height="15.0" fill="rgb(227,9,41)" rx="2" ry="2" />
<text text-anchor="" x="933.77" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8000) (21 ms, 0.11%)</title><rect x="1152.8" y="725" width="1.3" height="15.0" fill="rgb(223,217,0)" rx="2" ry="2" />
<text text-anchor="" x="1155.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16000) (3 ms, 0.02%)</title><rect x="1152.6" y="693" width="0.1" height="15.0" fill="rgb(245,136,43)" rx="2" ry="2" />
<text text-anchor="" x="1155.58" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__4656074786 (8001) (23 ms, 0.12%)</title><rect x="720.7" y="1237" width="1.4" height="15.0" fill="rgb(206,119,34)" rx="2" ry="2" />
<text text-anchor="" x="723.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Fanout#finish (2) (66 ms, 0.34%)</title><rect x="1100.1" y="709" width="4.0" height="15.0" fill="rgb(225,205,39)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8001) (25 ms, 0.13%)</title><rect x="715.9" y="1093" width="1.5" height="15.0" fill="rgb(224,41,35)" rx="2" ry="2" />
<text text-anchor="" x="718.88" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#convert_key (8000) (7 ms, 0.04%)</title><rect x="1173.2" y="981" width="0.5" height="15.0" fill="rgb(245,175,40)" rx="2" ry="2" />
<text text-anchor="" x="1176.24" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MonitorMixin#mon_synchronize (2) (87 ms, 0.44%)</title><rect x="1104.1" y="725" width="5.2" height="15.0" fill="rgb(245,140,2)" rx="2" ry="2" />
<text text-anchor="" x="1107.07" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#flatten! (48006) (423 ms, 2.16%)</title><rect x="326.0" y="1093" width="25.6" height="15.0" fill="rgb(223,36,4)" rx="2" ry="2" />
<text text-anchor="" x="329.03" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::QueryCache#cache_sql (2) (349 ms, 1.79%)</title><rect x="1093.2" y="853" width="21.0" height="15.0" fill="rgb(211,97,13)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (3 ms, 0.02%)</title><rect x="28.5" y="1189" width="0.2" height="15.0" fill="rgb(223,1,18)" rx="2" ry="2" />
<text text-anchor="" x="31.51" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (96012) (38 ms, 0.19%)</title><rect x="504.4" y="1013" width="2.3" height="15.0" fill="rgb(215,133,51)" rx="2" ry="2" />
<text text-anchor="" x="507.39" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (31) (35 ms, 0.18%)</title><rect x="17.7" y="437" width="2.1" height="15.0" fill="rgb(234,228,20)" rx="2" ry="2" />
<text text-anchor="" x="20.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (16002) (117 ms, 0.60%)</title><rect x="997.8" y="1237" width="7.0" height="15.0" fill="rgb(224,68,52)" rx="2" ry="2" />
<text text-anchor="" x="1000.78" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (16002) (6 ms, 0.03%)</title><rect x="1187.2" y="949" width="0.4" height="15.0" fill="rgb(240,128,1)" rx="2" ry="2" />
<text text-anchor="" x="1190.18" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#base_class (8001) (25 ms, 0.13%)</title><rect x="125.6" y="1093" width="1.5" height="15.0" fill="rgb(206,10,40)" rx="2" ry="2" />
<text text-anchor="" x="128.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#load (2) (1,569 ms, 8.03%)</title><rect x="1077.7" y="933" width="94.7" height="15.0" fill="rgb(216,12,48)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#has_limited_editors? (32004) (403 ms, 2.06%)</title><rect x="566.5" y="1077" width="24.3" height="15.0" fill="rgb(236,178,51)" rx="2" ry="2" />
<text text-anchor="" x="569.51" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (2) (7 ms, 0.04%)</title><rect x="10.9" y="1189" width="0.5" height="15.0" fill="rgb(227,129,11)" rx="2" ry="2" />
<text text-anchor="" x="13.92" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#any? (8001) (50 ms, 0.26%)</title><rect x="37.9" y="1237" width="3.0" height="15.0" fill="rgb(223,30,3)" rx="2" ry="2" />
<text text-anchor="" x="40.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#initialize_copy (24003) (26 ms, 0.13%)</title><rect x="785.9" y="1093" width="1.6" height="15.0" fill="rgb(215,20,49)" rx="2" ry="2" />
<text text-anchor="" x="788.91" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#inherited (4) (2 ms, 0.01%)</title><rect x="14.4" y="981" width="0.1" height="15.0" fill="rgb(251,221,23)" rx="2" ry="2" />
<text text-anchor="" x="17.39" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (48006) (684 ms, 3.50%)</title><rect x="559.2" y="1125" width="41.2" height="15.0" fill="rgb(230,48,25)" rx="2" ry="2" />
<text text-anchor="" x="562.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Arr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (31 ms, 0.16%)</title><rect x="136.5" y="1173" width="1.9" height="15.0" fill="rgb(240,217,50)" rx="2" ry="2" />
<text text-anchor="" x="139.49" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (24003) (153 ms, 0.78%)</title><rect x="860.4" y="1157" width="9.2" height="15.0" fill="rgb(232,55,11)" rx="2" ry="2" />
<text text-anchor="" x="863.39" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#abstract_class? (8001) (4 ms, 0.02%)</title><rect x="54.3" y="1077" width="0.2" height="15.0" fill="rgb(238,95,41)" rx="2" ry="2" />
<text text-anchor="" x="57.30" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Config&gt;#alchemy_config (1) (3 ms, 0.02%)</title><rect x="15.1" y="949" width="0.1" height="15.0" fill="rgb(243,21,28)" rx="2" ry="2" />
<text text-anchor="" x="18.05" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#nil? (8001) (2 ms, 0.01%)</title><rect x="700.1" y="1029" width="0.1" height="15.0" fill="rgb(230,37,26)" rx="2" ry="2" />
<text text-anchor="" x="703.10" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (24003) (4 ms, 0.02%)</title><rect x="756.9" y="1141" width="0.2" height="15.0" fill="rgb(215,11,11)" rx="2" ry="2" />
<text text-anchor="" x="759.90" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#visible (8001) (167 ms, 0.85%)</title><rect x="977.7" y="1269" width="10.0" height="15.0" fill="rgb(213,159,50)" rx="2" ry="2" />
<text text-anchor="" x="980.68" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (24003) (3 ms, 0.02%)</title><rect x="759.1" y="1125" width="0.2" height="15.0" fill="rgb(234,36,22)" rx="2" ry="2" />
<text text-anchor="" x="762.07" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (42 ms, 0.21%)</title><rect x="717.4" y="1141" width="2.5" height="15.0" fill="rgb(220,93,14)" rx="2" ry="2" />
<text text-anchor="" x="720.39" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded! (16002) (12 ms, 0.06%)</title><rect x="1179.7" y="997" width="0.7" height="15.0" fill="rgb(252,20,29)" rx="2" ry="2" />
<text text-anchor="" x="1182.68" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::QueryCache#select_all (1) (126 ms, 0.64%)</title><rect x="1004.8" y="1189" width="7.7" height="15.0" fill="rgb(229,124,53)" rx="2" ry="2" />
<text text-anchor="" x="1007.84" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#set_value (8001) (16 ms, 0.08%)</title><rect x="83.8" y="1061" width="0.9" height="15.0" fill="rgb(246,227,6)" rx="2" ry="2" />
<text text-anchor="" x="86.78" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#extractable_options? (24003) (16 ms, 0.08%)</title><rect x="741.8" y="1173" width="0.9" height="15.0" fill="rgb(205,41,14)" rx="2" ry="2" />
<text text-anchor="" x="744.79" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#raise_invalid_scope_type! (8001) (6 ms, 0.03%)</title><rect x="54.9" y="1093" width="0.3" height="15.0" fill="rgb(214,55,0)" rx="2" ry="2" />
<text text-anchor="" x="57.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::FinderMethods#take (1) (5 ms, 0.03%)</title><rect x="10.5" y="1205" width="0.3" height="15.0" fill="rgb(213,101,6)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Inflector#safe_constantize (2) (2 ms, 0.01%)</title><rect x="1057.7" y="837" width="0.2" height="15.0" fill="rgb(225,13,15)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (48006) (89 ms, 0.46%)</title><rect x="351.6" y="1093" width="5.3" height="15.0" fill="rgb(231,85,13)" rx="2" ry="2" />
<text text-anchor="" x="354.56" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (3 ms, 0.02%)</title><rect x="33.4" y="1173" width="0.2" height="15.0" fill="rgb(229,148,21)" rx="2" ry="2" />
<text text-anchor="" x="36.44" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (24003) (20 ms, 0.10%)</title><rect x="880.1" y="1077" width="1.2" height="15.0" fill="rgb(249,1,3)" rx="2" ry="2" />
<text text-anchor="" x="883.14" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::ActiveRecord_Relation#order_column (8001) (149 ms, 0.76%)</title><rect x="108.4" y="1109" width="8.9" height="15.0" fill="rgb(225,160,45)" rx="2" ry="2" />
<text text-anchor="" x="111.36" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#inverse_of (8000) (7 ms, 0.04%)</title><rect x="1136.3" y="725" width="0.4" height="15.0" fill="rgb(214,33,44)" rx="2" ry="2" />
<text text-anchor="" x="1139.29" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#attribute_types (16002) (18 ms, 0.09%)</title><rect x="1073.7" y="725" width="1.1" height="15.0" fill="rgb(216,218,43)" rx="2" ry="2" />
<text text-anchor="" x="1076.74" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (16002) (105 ms, 0.54%)</title><rect x="998.5" y="1221" width="6.3" height="15.0" fill="rgb(220,7,40)" rx="2" ry="2" />
<text text-anchor="" x="1001.51" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#inject (2) (2 ms, 0.01%)</title><rect x="1057.7" y="805" width="0.2" height="15.0" fill="rgb(208,105,43)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#inject (24003) (266 ms, 1.36%)</title><rect x="794.6" y="1125" width="16.1" height="15.0" fill="rgb(209,137,6)" rx="2" ry="2" />
<text text-anchor="" x="797.63" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (2) (3 ms, 0.02%)</title><rect x="13.3" y="789" width="0.1" height="15.0" fill="rgb(231,116,52)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions::MemberUser#alchemy_member_rules (1) (111 ms, 0.57%)</title><rect x="14.6" y="1157" width="6.7" height="15.0" fill="rgb(212,172,4)" rx="2" ry="2" />
<text text-anchor="" x="17.58" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::LogSubscriber#render_bind (16002) (18 ms, 0.09%)</title><rect x="1102.9" y="597" width="1.0" height="15.0" fill="rgb(210,131,31)" rx="2" ry="2" />
<text text-anchor="" x="1105.88" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (16002) (12 ms, 0.06%)</title><rect x="1087.4" y="437" width="0.7" height="15.0" fill="rgb(248,111,28)" rx="2" ry="2" />
<text text-anchor="" x="1090.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#redirects_to_external? (8001) (79 ms, 0.40%)</title><rect x="31.9" y="1253" width="4.8" height="15.0" fill="rgb(226,155,22)" rx="2" ry="2" />
<text text-anchor="" x="34.94" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (19 ms, 0.10%)</title><rect x="721.0" y="1221" width="1.1" height="15.0" fill="rgb(217,187,3)" rx="2" ry="2" />
<text text-anchor="" x="723.97" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#convert_key (16002) (14 ms, 0.07%)</title><rect x="1180.8" y="1013" width="0.9" height="15.0" fill="rgb(219,192,12)" rx="2" ry="2" />
<text text-anchor="" x="1183.84" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (154 ms, 0.79%)</title><rect x="1060.2" y="965" width="9.3" height="15.0" fill="rgb(220,58,46)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Set#include? (8001) (3 ms, 0.02%)</title><rect x="984.2" y="1061" width="0.2" height="15.0" fill="rgb(206,225,31)" rx="2" ry="2" />
<text text-anchor="" x="987.17" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#build_from_hash (1) (2 ms, 0.01%)</title><rect x="14.7" y="901" width="0.2" height="15.0" fill="rgb(222,215,52)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (340 ms, 1.74%)</title><rect x="645.0" y="1125" width="20.5" height="15.0" fill="rgb(212,18,24)" rx="2" ry="2" />
<text text-anchor="" x="647.98" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (48006) (51 ms, 0.26%)</title><rect x="160.8" y="1205" width="3.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text text-anchor="" x="163.83" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#read_definitions_file (1) (2 ms, 0.01%)</title><rect x="682.6" y="1109" width="0.2" height="15.0" fill="rgb(249,129,20)" rx="2" ry="2" />
<text text-anchor="" x="685.63" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#superclass (8000) (3 ms, 0.02%)</title><rect x="1171.4" y="741" width="0.2" height="15.0" fill="rgb(245,94,24)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (16002) (27 ms, 0.14%)</title><rect x="1186.7" y="965" width="1.6" height="15.0" fill="rgb(253,143,4)" rx="2" ry="2" />
<text text-anchor="" x="1189.69" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#visible? (24003) (202 ms, 1.03%)</title><rect x="857.4" y="1205" width="12.2" height="15.0" fill="rgb(246,87,16)" rx="2" ry="2" />
<text text-anchor="" x="860.42" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::Quoting#types_which_need_no_typecasting (16002) (5 ms, 0.03%)</title><rect x="1097.5" y="693" width="0.3" height="15.0" fill="rgb(247,46,54)" rx="2" ry="2" />
<text text-anchor="" x="1100.52" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (48006) (16 ms, 0.08%)</title><rect x="929.8" y="1125" width="1.0" height="15.0" fill="rgb(223,192,52)" rx="2" ry="2" />
<text text-anchor="" x="932.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#load_schema (1) (2 ms, 0.01%)</title><rect x="14.7" y="773" width="0.2" height="15.0" fill="rgb(242,57,34)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#any? (8001) (2 ms, 0.01%)</title><rect x="133.6" y="1173" width="0.1" height="15.0" fill="rgb(223,47,23)" rx="2" ry="2" />
<text text-anchor="" x="136.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#in_time_zone (8001) (53 ms, 0.27%)</title><rect x="661.7" y="1077" width="3.2" height="15.0" fill="rgb(223,218,23)" rx="2" ry="2" />
<text text-anchor="" x="664.72" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#translate (1) (77 ms, 0.39%)</title><rect x="15.3" y="949" width="4.6" height="15.0" fill="rgb(242,49,28)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#conditions_empty? (8001) (7 ms, 0.04%)</title><rect x="185.4" y="1093" width="0.5" height="15.0" fill="rgb(224,200,54)" rx="2" ry="2" />
<text text-anchor="" x="188.44" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#deserialize (1369) (4 ms, 0.02%)</title><rect x="19.4" y="245" width="0.3" height="15.0" fill="rgb(222,213,0)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#reader (8001) (307 ms, 1.57%)</title><rect x="42.2" y="1237" width="18.5" height="15.0" fill="rgb(223,19,7)" rx="2" ry="2" />
<text text-anchor="" x="45.20" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (20 ms, 0.10%)</title><rect x="29.9" y="1205" width="1.2" height="15.0" fill="rgb(241,191,50)" rx="2" ry="2" />
<text text-anchor="" x="32.91" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (24003) (11 ms, 0.06%)</title><rect x="966.9" y="1125" width="0.6" height="15.0" fill="rgb(205,14,21)" rx="2" ry="2" />
<text text-anchor="" x="969.89" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (48006) (73 ms, 0.37%)</title><rect x="182.1" y="1125" width="4.4" height="15.0" fill="rgb(227,164,7)" rx="2" ry="2" />
<text text-anchor="" x="185.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (43 ms, 0.22%)</title><rect x="981.8" y="1125" width="2.7" height="15.0" fill="rgb(237,216,53)" rx="2" ry="2" />
<text text-anchor="" x="984.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Config&gt;#show (1) (3 ms, 0.02%)</title><rect x="15.1" y="965" width="0.2" height="15.0" fill="rgb(207,33,2)" rx="2" ry="2" />
<text text-anchor="" x="18.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#active_record_primary_key (16002) (5 ms, 0.03%)</title><rect x="1182.4" y="981" width="0.3" height="15.0" fill="rgb(236,22,38)" rx="2" ry="2" />
<text text-anchor="" x="1185.44" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#nil? (16002) (2 ms, 0.01%)</title><rect x="1058.5" y="1061" width="0.1" height="15.0" fill="rgb(209,170,7)" rx="2" ry="2" />
<text text-anchor="" x="1061.45" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#exec_queries (1) (3,061 ms, 15.66%)</title><rect x="1004.8" y="1237" width="184.8" height="15.0" fill="rgb(213,186,25)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Relation#e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (24003) (176 ms, 0.90%)</title><rect x="961.6" y="1157" width="10.6" height="15.0" fill="rgb(212,17,5)" rx="2" ry="2" />
<text text-anchor="" x="964.63" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8000) (55 ms, 0.28%)</title><rect x="1142.0" y="677" width="3.3" height="15.0" fill="rgb(254,118,47)" rx="2" ry="2" />
<text text-anchor="" x="1144.96" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (32004) (8 ms, 0.04%)</title><rect x="1059.3" y="1061" width="0.5" height="15.0" fill="rgb(208,124,45)" rx="2" ry="2" />
<text text-anchor="" x="1062.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (32004) (114 ms, 0.58%)</title><rect x="1036.7" y="1125" width="6.9" height="15.0" fill="rgb(238,7,7)" rx="2" ry="2" />
<text text-anchor="" x="1039.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (2) (100 ms, 0.51%)</title><rect x="14.9" y="1093" width="6.1" height="15.0" fill="rgb(244,228,42)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (16002) (3 ms, 0.02%)</title><rect x="686.3" y="1173" width="0.2" height="15.0" fill="rgb(250,8,36)" rx="2" ry="2" />
<text text-anchor="" x="689.32" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Serialization#build_json_serializer (1) (3 ms, 0.02%)</title><rect x="10.1" y="1125" width="0.2" height="15.0" fill="rgb(247,170,23)" rx="2" ry="2" />
<text text-anchor="" x="13.09" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Nodes::Unary#initialize (8001) (10 ms, 0.05%)</title><rect x="100.5" y="981" width="0.6" height="15.0" fill="rgb(225,46,0)" rx="2" ry="2" />
<text text-anchor="" x="103.55" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (1) (4 ms, 0.02%)</title><rect x="11.4" y="1173" width="0.2" height="15.0" fill="rgb(211,156,39)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#level (8001) (27 ms, 0.14%)</title><rect x="720.5" y="1253" width="1.6" height="15.0" fill="rgb(208,136,44)" rx="2" ry="2" />
<text text-anchor="" x="723.46" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (8001) (3 ms, 0.02%)</title><rect x="1135.1" y="645" width="0.2" height="15.0" fill="rgb(233,25,0)" rx="2" ry="2" />
<text text-anchor="" x="1138.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (24003) (174 ms, 0.89%)</title><rect x="859.1" y="1173" width="10.5" height="15.0" fill="rgb(216,7,29)" rx="2" ry="2" />
<text text-anchor="" x="862.10" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#define_attribute_methods (8000) (2 ms, 0.01%)</title><rect x="1163.7" y="773" width="0.2" height="15.0" fill="rgb(237,214,9)" rx="2" ry="2" />
<text text-anchor="" x="1166.74" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (2) (134 ms, 0.69%)</title><rect x="1069.6" y="837" width="8.1" height="15.0" fill="rgb(251,135,29)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (24003) (36 ms, 0.18%)</title><rect x="964.7" y="1125" width="2.2" height="15.0" fill="rgb(222,214,46)" rx="2" ry="2" />
<text text-anchor="" x="967.72" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::PerThreadRegistry#instance (8001) (10 ms, 0.05%)</title><rect x="111.7" y="1045" width="0.6" height="15.0" fill="rgb(247,131,5)" rx="2" ry="2" />
<text text-anchor="" x="114.67" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (32004) (12 ms, 0.06%)</title><rect x="1036.0" y="1125" width="0.7" height="15.0" fill="rgb(225,203,47)" rx="2" ry="2" />
<text text-anchor="" x="1038.98" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#public_send (8001) (27 ms, 0.14%)</title><rect x="655.2" y="981" width="1.7" height="15.0" fill="rgb(251,110,2)" rx="2" ry="2" />
<text text-anchor="" x="658.25" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::LogSubscriber#sql (2) (65 ms, 0.33%)</title><rect x="1100.1" y="629" width="3.9" height="15.0" fill="rgb(212,94,33)" rx="2" ry="2" />
<text text-anchor="" x="1103.09" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MonitorMixin#mon_synchronize (1) (2 ms, 0.01%)</title><rect x="14.7" y="757" width="0.2" height="15.0" fill="rgb(244,58,5)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (3 ms, 0.02%)</title><rect x="721.5" y="1189" width="0.2" height="15.0" fill="rgb(224,130,15)" rx="2" ry="2" />
<text text-anchor="" x="724.47" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (84) (35 ms, 0.18%)</title><rect x="17.7" y="389" width="2.1" height="15.0" fill="rgb(235,124,17)" rx="2" ry="2" />
<text text-anchor="" x="20.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (2) (3 ms, 0.02%)</title><rect x="1057.7" y="965" width="0.2" height="15.0" fill="rgb(245,151,17)" rx="2" ry="2" />
<text text-anchor="" x="1060.72" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (16002) (27 ms, 0.14%)</title><rect x="1020.4" y="1093" width="1.6" height="15.0" fill="rgb(219,190,11)" rx="2" ry="2" />
<text text-anchor="" x="1023.44" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8000) (10 ms, 0.05%)</title><rect x="1170.8" y="741" width="0.6" height="15.0" fill="rgb(210,225,49)" rx="2" ry="2" />
<text text-anchor="" x="1173.82" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (16002) (13 ms, 0.07%)</title><rect x="1067.6" y="885" width="0.7" height="15.0" fill="rgb(229,203,0)" rx="2" ry="2" />
<text text-anchor="" x="1070.56" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#^ (48006) (11 ms, 0.06%)</title><rect x="517.4" y="1061" width="0.6" height="15.0" fill="rgb(250,146,37)" rx="2" ry="2" />
<text text-anchor="" x="520.35" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (2 ms, 0.01%)</title><rect x="696.0" y="1157" width="0.2" height="15.0" fill="rgb(229,135,21)" rx="2" ry="2" />
<text text-anchor="" x="699.04" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#exec_queries (1) (5 ms, 0.03%)</title><rect x="10.5" y="1141" width="0.3" height="15.0" fill="rgb(238,107,16)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Arel::Nodes&gt;#build_quoted (16002) (9 ms, 0.05%)</title><rect x="1070.2" y="725" width="0.6" height="15.0" fill="rgb(217,25,18)" rx="2" ry="2" />
<text text-anchor="" x="1073.24" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (8001) (15 ms, 0.08%)</title><rect x="65.4" y="1237" width="0.9" height="15.0" fill="rgb(209,54,49)" rx="2" ry="2" />
<text text-anchor="" x="68.39" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8001) (6 ms, 0.03%)</title><rect x="699.9" y="1045" width="0.3" height="15.0" fill="rgb(218,31,15)" rx="2" ry="2" />
<text text-anchor="" x="702.87" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (8001) (2 ms, 0.01%)</title><rect x="58.7" y="1125" width="0.1" height="15.0" fill="rgb(226,148,26)" rx="2" ry="2" />
<text text-anchor="" x="61.70" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (1448) (32 ms, 0.16%)</title><rect x="17.8" y="277" width="1.9" height="15.0" fill="rgb(242,24,38)" rx="2" ry="2" />
<text text-anchor="" x="20.82" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (16002) (8 ms, 0.04%)</title><rect x="642.8" y="1173" width="0.5" height="15.0" fill="rgb(236,0,29)" rx="2" ry="2" />
<text text-anchor="" x="645.77" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#has_inverse? (8000) (7 ms, 0.04%)</title><rect x="1135.3" y="661" width="0.4" height="15.0" fill="rgb(251,23,53)" rx="2" ry="2" />
<text text-anchor="" x="1138.26" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (48006) (7 ms, 0.04%)</title><rect x="918.2" y="1109" width="0.5" height="15.0" fill="rgb(252,24,30)" rx="2" ry="2" />
<text text-anchor="" x="921.22" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (24003) (4 ms, 0.02%)</title><rect x="1029.2" y="1093" width="0.2" height="15.0" fill="rgb(210,119,15)" rx="2" ry="2" />
<text text-anchor="" x="1032.17" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (8 ms, 0.04%)</title><rect x="146.0" y="1045" width="0.5" height="15.0" fill="rgb(237,195,9)" rx="2" ry="2" />
<text text-anchor="" x="149.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#name (8001) (3 ms, 0.02%)</title><rect x="56.0" y="1093" width="0.2" height="15.0" fill="rgb(206,41,44)" rx="2" ry="2" />
<text text-anchor="" x="59.03" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (4) (41 ms, 0.21%)</title><rect x="12.0" y="1061" width="2.5" height="15.0" fill="rgb(216,198,50)" rx="2" ry="2" />
<text text-anchor="" x="15.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::PlainString#&lt;&lt; (16000) (6 ms, 0.03%)</title><rect x="1079.4" y="373" width="0.4" height="15.0" fill="rgb(245,47,4)" rx="2" ry="2" />
<text text-anchor="" x="1082.41" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::FinderMethods#find_take (1) (5 ms, 0.03%)</title><rect x="10.5" y="1189" width="0.3" height="15.0" fill="rgb(209,69,38)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::ClassMethods#_reflect_on_association (8000) (11 ms, 0.06%)</title><rect x="1131.4" y="725" width="0.6" height="15.0" fill="rgb(230,5,24)" rx="2" ry="2" />
<text text-anchor="" x="1134.35" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#definition (32004) (351 ms, 1.80%)</title><rect x="568.1" y="1061" width="21.2" height="15.0" fill="rgb(205,185,27)" rx="2" ry="2" />
<text text-anchor="" x="571.11" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (24003) (4 ms, 0.02%)</title><rect x="966.1" y="1109" width="0.2" height="15.0" fill="rgb(239,79,42)" rx="2" ry="2" />
<text text-anchor="" x="969.08" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Result#each (1) (3 ms, 0.02%)</title><rect x="10.6" y="1061" width="0.2" height="15.0" fill="rgb(236,224,17)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet::YAMLEncoder#decode (8000) (4 ms, 0.02%)</title><rect x="1125.8" y="773" width="0.3" height="15.0" fill="rgb(223,4,33)" rx="2" ry="2" />
<text text-anchor="" x="1128.82" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#records (1) (3,062 ms, 15.66%)</title><rect x="1004.8" y="1269" width="184.8" height="15.0" fill="rgb(226,119,51)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Relation#r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Predications#quoted_node (16002) (15 ms, 0.08%)</title><rect x="1069.9" y="741" width="0.9" height="15.0" fill="rgb(235,65,44)" rx="2" ry="2" />
<text text-anchor="" x="1072.87" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#acts_like? (8001) (5 ms, 0.03%)</title><rect x="664.6" y="1061" width="0.3" height="15.0" fill="rgb(250,44,54)" rx="2" ry="2" />
<text text-anchor="" x="667.63" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromUser#type_cast (8000) (33 ms, 0.17%)</title><rect x="1142.8" y="629" width="2.1" height="15.0" fill="rgb(224,91,26)" rx="2" ry="2" />
<text text-anchor="" x="1145.84" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::SQLite3::Quoting#_type_cast (16002) (88 ms, 0.45%)</title><rect x="1094.3" y="725" width="5.3" height="15.0" fill="rgb(228,117,24)" rx="2" ry="2" />
<text text-anchor="" x="1097.34" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#accept (2) (256 ms, 1.31%)</title><rect x="1077.7" y="821" width="15.5" height="15.0" fill="rgb(246,79,25)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (16002) (524 ms, 2.68%)</title><rect x="638.5" y="1205" width="31.6" height="15.0" fill="rgb(220,186,14)" rx="2" ry="2" />
<text text-anchor="" x="641.46" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8001) (16 ms, 0.08%)</title><rect x="1031.2" y="1077" width="0.9" height="15.0" fill="rgb(210,136,54)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#scoping (1) (3 ms, 0.02%)</title><rect x="14.7" y="1061" width="0.2" height="15.0" fill="rgb(205,169,23)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8001) (3 ms, 0.02%)</title><rect x="714.4" y="1173" width="0.2" height="15.0" fill="rgb(229,102,38)" rx="2" ry="2" />
<text text-anchor="" x="717.44" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#zone (8001) (9 ms, 0.05%)</title><rect x="661.1" y="1077" width="0.6" height="15.0" fill="rgb(215,121,28)" rx="2" ry="2" />
<text text-anchor="" x="664.15" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8000) (2 ms, 0.01%)</title><rect x="1157.4" y="725" width="0.1" height="15.0" fill="rgb(244,69,18)" rx="2" ry="2" />
<text text-anchor="" x="1160.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (2 ms, 0.01%)</title><rect x="1077.4" y="757" width="0.2" height="15.0" fill="rgb(216,25,36)" rx="2" ry="2" />
<text text-anchor="" x="1080.43" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Instrumentation#cleanup_view_runtime (1) (4 ms, 0.02%)</title><rect x="10.0" y="1285" width="0.3" height="15.0" fill="rgb(253,228,12)" rx="2" ry="2" />
<text text-anchor="" x="13.03" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#normalize_key (72009) (249 ms, 1.27%)</title><rect x="819.8" y="1109" width="15.1" height="15.0" fill="rgb(253,121,37)" rx="2" ry="2" />
<text text-anchor="" x="822.83" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#is_a? (8001) (3 ms, 0.02%)</title><rect x="688.2" y="1173" width="0.2" height="15.0" fill="rgb(211,125,54)" rx="2" ry="2" />
<text text-anchor="" x="691.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#bind_params (2) (14 ms, 0.07%)</title><rect x="1108.4" y="677" width="0.8" height="15.0" fill="rgb(252,194,23)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#call (1) (3 ms, 0.02%)</title><rect x="20.8" y="933" width="0.2" height="15.0" fill="rgb(237,146,44)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Comparable#&lt;= (8001) (119 ms, 0.61%)</title><rect x="686.7" y="1221" width="7.2" height="15.0" fill="rgb(251,55,54)" rx="2" ry="2" />
<text text-anchor="" x="689.72" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#sync_with_transaction_state (96012) (64 ms, 0.33%)</title><rect x="512.6" y="1045" width="3.9" height="15.0" fill="rgb(242,109,4)" rx="2" ry="2" />
<text text-anchor="" x="515.61" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (56 ms, 0.29%)</title><rect x="678.3" y="1093" width="3.4" height="15.0" fill="rgb(221,84,23)" rx="2" ry="2" />
<text text-anchor="" x="681.30" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8001) (25 ms, 0.13%)</title><rect x="676.8" y="1045" width="1.5" height="15.0" fill="rgb(214,215,52)" rx="2" ry="2" />
<text text-anchor="" x="679.78" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#create (8001) (1,064 ms, 5.44%)</title><rect x="69.5" y="1221" width="64.2" height="15.0" fill="rgb(219,225,39)" rx="2" ry="2" />
<text text-anchor="" x="72.46" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#attributes (48006) (15 ms, 0.08%)</title><rect x="936.2" y="1125" width="1.0" height="15.0" fill="rgb(243,62,13)" rx="2" ry="2" />
<text text-anchor="" x="939.23" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (62) (35 ms, 0.18%)</title><rect x="17.6" y="517" width="2.2" height="15.0" fill="rgb(242,49,45)" rx="2" ry="2" />
<text text-anchor="" x="20.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (8001) (129 ms, 0.66%)</title><rect x="712.5" y="1221" width="7.7" height="15.0" fill="rgb(208,38,3)" rx="2" ry="2" />
<text text-anchor="" x="715.47" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (51 ms, 0.26%)</title><rect x="697.6" y="1125" width="3.0" height="15.0" fill="rgb(245,111,3)" rx="2" ry="2" />
<text text-anchor="" x="700.56" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (96012) (15 ms, 0.08%)</title><rect x="511.7" y="1029" width="0.9" height="15.0" fill="rgb(205,36,52)" rx="2" ry="2" />
<text text-anchor="" x="514.68" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Admin::PagesController#serialized_page_tree (1) (2 ms, 0.01%)</title><rect x="10.3" y="1317" width="0.1" height="15.0" fill="rgb(247,141,26)" rx="2" ry="2" />
<text text-anchor="" x="13.31" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (3 ms, 0.02%)</title><rect x="10.6" y="1045" width="0.2" height="15.0" fill="rgb(230,202,11)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ClassCache#safe_get (2) (2 ms, 0.01%)</title><rect x="1057.7" y="853" width="0.2" height="15.0" fill="rgb(232,80,10)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::LogSubscriber#finish (4) (66 ms, 0.34%)</title><rect x="1100.1" y="661" width="4.0" height="15.0" fill="rgb(241,83,26)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Boolean#cast_value (8001) (23 ms, 0.12%)</title><rect x="983.0" y="1077" width="1.4" height="15.0" fill="rgb(215,29,20)" rx="2" ry="2" />
<text text-anchor="" x="985.96" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8000) (65 ms, 0.33%)</title><rect x="1132.0" y="725" width="3.9" height="15.0" fill="rgb(228,40,38)" rx="2" ry="2" />
<text text-anchor="" x="1135.03" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (24003) (5 ms, 0.03%)</title><rect x="742.7" y="1173" width="0.4" height="15.0" fill="rgb(245,50,9)" rx="2" ry="2" />
<text text-anchor="" x="745.74" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8000) (2 ms, 0.01%)</title><rect x="1125.7" y="757" width="0.1" height="15.0" fill="rgb(211,79,7)" rx="2" ry="2" />
<text text-anchor="" x="1128.71" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (45 ms, 0.23%)</title><rect x="984.7" y="1125" width="2.7" height="15.0" fill="rgb(214,221,31)" rx="2" ry="2" />
<text text-anchor="" x="987.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (2736) (20 ms, 0.10%)</title><rect x="18.1" y="181" width="1.3" height="15.0" fill="rgb(210,108,34)" rx="2" ry="2" />
<text text-anchor="" x="21.15" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#matches_conditions_hash? (8001) (4 ms, 0.02%)</title><rect x="592.9" y="1077" width="0.2" height="15.0" fill="rgb(226,2,53)" rx="2" ry="2" />
<text text-anchor="" x="595.90" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="1083.8" y="373" width="0.2" height="15.0" fill="rgb(240,41,3)" rx="2" ry="2" />
<text text-anchor="" x="1086.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TrueClass#=== (8000) (2 ms, 0.01%)</title><rect x="1144.7" y="597" width="0.2" height="15.0" fill="rgb(230,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1147.74" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#owner_key_name (16002) (16 ms, 0.08%)</title><rect x="1061.9" y="949" width="1.0" height="15.0" fill="rgb(234,181,18)" rx="2" ry="2" />
<text text-anchor="" x="1064.90" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (2) (100 ms, 0.51%)</title><rect x="14.9" y="1077" width="6.1" height="15.0" fill="rgb(230,152,38)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (40005) (8 ms, 0.04%)</title><rect x="185.9" y="1093" width="0.4" height="15.0" fill="rgb(209,46,46)" rx="2" ry="2" />
<text text-anchor="" x="188.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#association_key_name (8000) (14 ms, 0.07%)</title><rect x="1154.3" y="773" width="0.8" height="15.0" fill="rgb(249,220,34)" rx="2" ry="2" />
<text text-anchor="" x="1157.28" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#all (8001) (4 ms, 0.02%)</title><rect x="708.6" y="1205" width="0.3" height="15.0" fill="rgb(249,217,36)" rx="2" ry="2" />
<text text-anchor="" x="711.63" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#reset (16002) (15 ms, 0.08%)</title><rect x="1053.9" y="1013" width="0.9" height="15.0" fill="rgb(240,57,24)" rx="2" ry="2" />
<text text-anchor="" x="1056.93" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#resolve_class (2659) (2 ms, 0.01%)</title><rect x="19.2" y="117" width="0.1" height="15.0" fill="rgb(222,225,26)" rx="2" ry="2" />
<text text-anchor="" x="22.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Helpers::TimeValue#new_time (8001) (77 ms, 0.39%)</title><rect x="652.3" y="997" width="4.6" height="15.0" fill="rgb(208,161,12)" rx="2" ry="2" />
<text text-anchor="" x="655.25" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#type_for_attribute (16002) (31 ms, 0.16%)</title><rect x="1073.0" y="741" width="1.9" height="15.0" fill="rgb(210,68,54)" rx="2" ry="2" />
<text text-anchor="" x="1076.04" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#hash (16002) (26 ms, 0.13%)</title><rect x="1112.1" y="757" width="1.5" height="15.0" fill="rgb(212,29,26)" rx="2" ry="2" />
<text text-anchor="" x="1115.06" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (41) (34 ms, 0.17%)</title><rect x="17.7" y="341" width="2.0" height="15.0" fill="rgb(240,218,38)" rx="2" ry="2" />
<text text-anchor="" x="20.68" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Serialization#default_serializer (1) (3 ms, 0.02%)</title><rect x="10.1" y="1109" width="0.2" height="15.0" fill="rgb(240,114,33)" rx="2" ry="2" />
<text text-anchor="" x="13.09" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::QueryCache#cache_sql (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1173" width="7.6" height="15.0" fill="rgb(229,55,38)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#all (8001) (3 ms, 0.02%)</title><rect x="34.5" y="1205" width="0.2" height="15.0" fill="rgb(234,219,54)" rx="2" ry="2" />
<text text-anchor="" x="37.54" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (1) (6 ms, 0.03%)</title><rect x="11.6" y="1061" width="0.4" height="15.0" fill="rgb(234,27,36)" rx="2" ry="2" />
<text text-anchor="" x="14.64" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8000) (93 ms, 0.48%)</title><rect x="1157.9" y="741" width="5.6" height="15.0" fill="rgb(214,200,10)" rx="2" ry="2" />
<text text-anchor="" x="1160.90" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions::EditorUser#alchemy_editor_rules (1) (160 ms, 0.82%)</title><rect x="11.6" y="1189" width="9.7" height="15.0" fill="rgb(221,223,47)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#get_value (8001) (7 ms, 0.04%)</title><rect x="82.9" y="1061" width="0.4" height="15.0" fill="rgb(253,117,16)" rx="2" ry="2" />
<text text-anchor="" x="85.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#stale_target? (8001) (11 ms, 0.06%)</title><rect x="44.0" y="1221" width="0.7" height="15.0" fill="rgb(220,171,47)" rx="2" ry="2" />
<text text-anchor="" x="47.02" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (482) (4 ms, 0.02%)</title><rect x="18.5" y="85" width="0.2" height="15.0" fill="rgb(224,35,44)" rx="2" ry="2" />
<text text-anchor="" x="21.46" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#initialize_copy (8001) (2 ms, 0.01%)</title><rect x="108.2" y="997" width="0.2" height="15.0" fill="rgb(234,110,43)" rx="2" ry="2" />
<text text-anchor="" x="111.25" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#initialize (8001) (9 ms, 0.05%)</title><rect x="1021.5" y="1077" width="0.5" height="15.0" fill="rgb(226,112,25)" rx="2" ry="2" />
<text text-anchor="" x="1024.49" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (24003) (7 ms, 0.04%)</title><rect x="971.8" y="1125" width="0.4" height="15.0" fill="rgb(249,201,44)" rx="2" ry="2" />
<text text-anchor="" x="974.80" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#initialize (8001) (1,031 ms, 5.27%)</title><rect x="71.4" y="1189" width="62.3" height="15.0" fill="rgb(224,132,3)" rx="2" ry="2" />
<text text-anchor="" x="74.44" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Active..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#=== (8) (2 ms, 0.01%)</title><rect x="1100.2" y="597" width="0.1" height="15.0" fill="rgb(253,149,32)" rx="2" ry="2" />
<text text-anchor="" x="1103.20" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (24003) (139 ms, 0.71%)</title><rect x="873.8" y="1125" width="8.4" height="15.0" fill="rgb(209,159,37)" rx="2" ry="2" />
<text text-anchor="" x="876.78" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator#each (48006) (7,114 ms, 36.39%)</title><rect x="174.6" y="1173" width="429.4" height="15.0" fill="rgb(209,8,50)" rx="2" ry="2" />
<text text-anchor="" x="177.58" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerator#each (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (15 ms, 0.08%)</title><rect x="150.7" y="1141" width="0.9" height="15.0" fill="rgb(209,4,8)" rx="2" ry="2" />
<text text-anchor="" x="153.74" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#require (1) (3 ms, 0.02%)</title><rect x="1131.2" y="709" width="0.2" height="15.0" fill="rgb(223,141,25)" rx="2" ry="2" />
<text text-anchor="" x="1134.19" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#order! (8001) (371 ms, 1.90%)</title><rect x="81.3" y="1093" width="22.4" height="15.0" fill="rgb(244,36,11)" rx="2" ry="2" />
<text text-anchor="" x="84.32" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (48006) (8 ms, 0.04%)</title><rect x="887.0" y="1157" width="0.5" height="15.0" fill="rgb(221,19,39)" rx="2" ry="2" />
<text text-anchor="" x="890.04" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8001) (122 ms, 0.62%)</title><rect x="712.9" y="1205" width="7.3" height="15.0" fill="rgb(238,158,43)" rx="2" ry="2" />
<text text-anchor="" x="715.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#ensure_in_range (16002) (17 ms, 0.09%)</title><rect x="1091.4" y="421" width="1.1" height="15.0" fill="rgb(227,117,8)" rx="2" ry="2" />
<text text-anchor="" x="1094.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#acts_like? (8001) (8 ms, 0.04%)</title><rect x="635.8" y="1189" width="0.5" height="15.0" fill="rgb(220,105,31)" rx="2" ry="2" />
<text text-anchor="" x="638.84" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#fixed? (8001) (14 ms, 0.07%)</title><rect x="704.4" y="1189" width="0.8" height="15.0" fill="rgb(243,85,4)" rx="2" ry="2" />
<text text-anchor="" x="707.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Sanitization::ClassMethods#sanitize_sql_for_order (8001) (7 ms, 0.04%)</title><rect x="95.6" y="1045" width="0.4" height="15.0" fill="rgb(207,211,51)" rx="2" ry="2" />
<text text-anchor="" x="98.56" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (104 ms, 0.53%)</title><rect x="675.4" y="1109" width="6.3" height="15.0" fill="rgb(244,27,13)" rx="2" ry="2" />
<text text-anchor="" x="678.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#initialize (2) (8 ms, 0.04%)</title><rect x="1107.9" y="645" width="0.5" height="15.0" fill="rgb(223,89,8)" rx="2" ry="2" />
<text text-anchor="" x="1110.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions#initialize (1) (165 ms, 0.84%)</title><rect x="11.4" y="1269" width="9.9" height="15.0" fill="rgb(252,14,36)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#raise_invalid_scope_type! (16002) (8 ms, 0.04%)</title><rect x="114.7" y="1029" width="0.5" height="15.0" fill="rgb(211,1,2)" rx="2" ry="2" />
<text text-anchor="" x="117.66" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#find_zone! (8001) (8 ms, 0.04%)</title><rect x="633.3" y="1189" width="0.4" height="15.0" fill="rgb(240,203,7)" rx="2" ry="2" />
<text text-anchor="" x="636.26" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (41) (5 ms, 0.03%)</title><rect x="15.3" y="645" width="0.3" height="15.0" fill="rgb(235,42,7)" rx="2" ry="2" />
<text text-anchor="" x="18.32" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#&lt;=&gt; (8001) (2 ms, 0.01%)</title><rect x="693.7" y="1173" width="0.2" height="15.0" fill="rgb(210,64,52)" rx="2" ry="2" />
<text text-anchor="" x="696.74" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::SpawnMethods#merge! (1) (2 ms, 0.01%)</title><rect x="21.0" y="1029" width="0.2" height="15.0" fill="rgb(228,184,51)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (1) (2 ms, 0.01%)</title><rect x="1057.7" y="709" width="0.2" height="15.0" fill="rgb(250,81,26)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#records (1) (5 ms, 0.03%)</title><rect x="10.5" y="1173" width="0.3" height="15.0" fill="rgb(244,146,20)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Persistence::ClassMethods#discriminate_class_for_record (8001) (2 ms, 0.01%)</title><rect x="1032.4" y="1093" width="0.2" height="15.0" fill="rgb(252,135,50)" rx="2" ry="2" />
<text text-anchor="" x="1035.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (16002) (3 ms, 0.02%)</title><rect x="1179.5" y="981" width="0.2" height="15.0" fill="rgb(212,134,6)" rx="2" ry="2" />
<text text-anchor="" x="1182.53" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (32004) (17 ms, 0.09%)</title><rect x="587.9" y="1013" width="1.1" height="15.0" fill="rgb(238,45,16)" rx="2" ry="2" />
<text text-anchor="" x="590.93" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (2 ms, 0.01%)</title><rect x="1057.7" y="789" width="0.2" height="15.0" fill="rgb(251,159,8)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (120015) (24 ms, 0.12%)</title><rect x="837.3" y="1141" width="1.5" height="15.0" fill="rgb(229,132,13)" rx="2" ry="2" />
<text text-anchor="" x="840.35" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::DateTime#cast_value (8001) (197 ms, 1.01%)</title><rect x="648.2" y="1029" width="11.8" height="15.0" fill="rgb(217,25,22)" rx="2" ry="2" />
<text text-anchor="" x="651.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc (24003) (8 ms, 0.04%)</title><rect x="946.2" y="1093" width="0.5" height="15.0" fill="rgb(228,123,24)" rx="2" ry="2" />
<text text-anchor="" x="949.21" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#assert_mutability! (8001) (6 ms, 0.03%)</title><rect x="84.4" y="1045" width="0.3" height="15.0" fill="rgb(220,119,30)" rx="2" ry="2" />
<text text-anchor="" x="87.39" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (28 ms, 0.14%)</title><rect x="683.1" y="1109" width="1.7" height="15.0" fill="rgb(249,66,43)" rx="2" ry="2" />
<text text-anchor="" x="686.13" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (24003) (10 ms, 0.05%)</title><rect x="856.0" y="1077" width="0.6" height="15.0" fill="rgb(231,199,33)" rx="2" ry="2" />
<text text-anchor="" x="859.01" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (31) (36 ms, 0.18%)</title><rect x="17.6" y="709" width="2.2" height="15.0" fill="rgb(243,89,5)" rx="2" ry="2" />
<text text-anchor="" x="20.61" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Result#each (1) (336 ms, 1.72%)</title><rect x="1012.5" y="1157" width="20.3" height="15.0" fill="rgb(223,195,7)" rx="2" ry="2" />
<text text-anchor="" x="1015.48" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#matches_non_block_conditions (16002) (77 ms, 0.39%)</title><rect x="590.8" y="1093" width="4.7" height="15.0" fill="rgb(227,134,43)" rx="2" ry="2" />
<text text-anchor="" x="593.82" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (62) (35 ms, 0.18%)</title><rect x="17.6" y="533" width="2.2" height="15.0" fill="rgb(249,31,43)" rx="2" ry="2" />
<text text-anchor="" x="20.64" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#public_until (24003) (254 ms, 1.30%)</title><rect x="960.7" y="1173" width="15.3" height="15.0" fill="rgb(229,147,47)" rx="2" ry="2" />
<text text-anchor="" x="963.70" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks#run_callbacks (8001) (26 ms, 0.13%)</title><rect x="1025.7" y="1077" width="1.6" height="15.0" fill="rgb(252,27,35)" rx="2" ry="2" />
<text text-anchor="" x="1028.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#present? (8001) (5 ms, 0.03%)</title><rect x="1032.1" y="1077" width="0.3" height="15.0" fill="rgb(248,128,51)" rx="2" ry="2" />
<text text-anchor="" x="1035.13" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (57 ms, 0.29%)</title><rect x="697.2" y="1141" width="3.4" height="15.0" fill="rgb(228,8,18)" rx="2" ry="2" />
<text text-anchor="" x="700.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#instrument (1) (3 ms, 0.02%)</title><rect x="10.6" y="1093" width="0.2" height="15.0" fill="rgb(250,119,21)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_of? (8001) (2 ms, 0.01%)</title><rect x="635.5" y="1125" width="0.1" height="15.0" fill="rgb(218,100,27)" rx="2" ry="2" />
<text text-anchor="" x="638.53" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::BelongsToAssociation#stale_state (8000) (77 ms, 0.39%)</title><rect x="1141.4" y="693" width="4.7" height="15.0" fill="rgb(251,6,42)" rx="2" ry="2" />
<text text-anchor="" x="1144.45" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Persistence::ClassMethods#discriminate_class_for_record (8000) (2 ms, 0.01%)</title><rect x="1172.0" y="773" width="0.1" height="15.0" fill="rgb(212,99,4)" rx="2" ry="2" />
<text text-anchor="" x="1174.97" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#_deep_transform_keys_in_object (724) (4 ms, 0.02%)</title><rect x="15.4" y="629" width="0.2" height="15.0" fill="rgb(220,195,44)" rx="2" ry="2" />
<text text-anchor="" x="18.36" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#utc (8001) (22 ms, 0.11%)</title><rect x="655.6" y="965" width="1.3" height="15.0" fill="rgb(239,161,8)" rx="2" ry="2" />
<text text-anchor="" x="658.55" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#inverse_of (8000) (10 ms, 0.05%)</title><rect x="1139.4" y="709" width="0.6" height="15.0" fill="rgb(253,36,2)" rx="2" ry="2" />
<text text-anchor="" x="1142.43" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Serializer&gt;#serializer_for (1) (3 ms, 0.02%)</title><rect x="10.1" y="1093" width="0.2" height="15.0" fill="rgb(248,194,0)" rx="2" ry="2" />
<text text-anchor="" x="13.09" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (8001) (3 ms, 0.02%)</title><rect x="112.1" y="1029" width="0.2" height="15.0" fill="rgb(205,88,44)" rx="2" ry="2" />
<text text-anchor="" x="115.07" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Result#hash_rows (2) (90 ms, 0.46%)</title><rect x="1114.3" y="821" width="5.4" height="15.0" fill="rgb(223,168,6)" rx="2" ry="2" />
<text text-anchor="" x="1117.25" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (24000) (4 ms, 0.02%)</title><rect x="1168.0" y="773" width="0.3" height="15.0" fill="rgb(206,173,8)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1065.8" y="901" width="0.1" height="15.0" fill="rgb(212,186,33)" rx="2" ry="2" />
<text text-anchor="" x="1068.75" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (14 ms, 0.07%)</title><rect x="1108.4" y="661" width="0.8" height="15.0" fill="rgb(230,161,49)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (50 ms, 0.26%)</title><rect x="678.7" y="1077" width="3.0" height="15.0" fill="rgb(224,32,39)" rx="2" ry="2" />
<text text-anchor="" x="681.66" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (32004) (6 ms, 0.03%)</title><rect x="589.0" y="1045" width="0.3" height="15.0" fill="rgb(237,193,11)" rx="2" ry="2" />
<text text-anchor="" x="591.96" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#locked? (8001) (138 ms, 0.71%)</title><rect x="138.7" y="1253" width="8.3" height="15.0" fill="rgb(248,162,36)" rx="2" ry="2" />
<text text-anchor="" x="141.70" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16000) (4 ms, 0.02%)</title><rect x="1163.2" y="661" width="0.3" height="15.0" fill="rgb(216,28,8)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader#preloader_for (2) (2 ms, 0.01%)</title><rect x="1060.1" y="1045" width="0.1" height="15.0" fill="rgb(214,146,50)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#nil? (8001) (2 ms, 0.01%)</title><rect x="143.7" y="1077" width="0.1" height="15.0" fill="rgb(238,65,28)" rx="2" ry="2" />
<text text-anchor="" x="146.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (32004) (4 ms, 0.02%)</title><rect x="1189.1" y="981" width="0.3" height="15.0" fill="rgb(223,176,40)" rx="2" ry="2" />
<text text-anchor="" x="1192.10" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (8001) (2 ms, 0.01%)</title><rect x="131.3" y="1125" width="0.1" height="15.0" fill="rgb(249,20,43)" rx="2" ry="2" />
<text text-anchor="" x="134.26" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#load_translations (1) (76 ms, 0.39%)</title><rect x="15.3" y="837" width="4.6" height="15.0" fill="rgb(252,79,17)" rx="2" ry="2" />
<text text-anchor="" x="18.27" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (5 ms, 0.03%)</title><rect x="681.4" y="1045" width="0.3" height="15.0" fill="rgb(233,192,15)" rx="2" ry="2" />
<text text-anchor="" x="684.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#enforce_raw_sql_whitelist (8001) (70 ms, 0.36%)</title><rect x="86.8" y="1061" width="4.2" height="15.0" fill="rgb(242,222,10)" rx="2" ry="2" />
<text text-anchor="" x="89.79" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MonitorMixin#mon_synchronize (1) (125 ms, 0.64%)</title><rect x="1004.9" y="1045" width="7.6" height="15.0" fill="rgb(249,27,20)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (16002) (6 ms, 0.03%)</title><rect x="1048.9" y="1061" width="0.4" height="15.0" fill="rgb(223,14,14)" rx="2" ry="2" />
<text text-anchor="" x="1051.93" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8000) (13 ms, 0.07%)</title><rect x="1150.8" y="629" width="0.7" height="15.0" fill="rgb(242,229,47)" rx="2" ry="2" />
<text text-anchor="" x="1153.76" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (38 ms, 0.19%)</title><rect x="666.6" y="1109" width="2.3" height="15.0" fill="rgb(206,156,30)" rx="2" ry="2" />
<text text-anchor="" x="669.62" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (7 ms, 0.04%)</title><rect x="137.8" y="1125" width="0.4" height="15.0" fill="rgb(233,186,41)" rx="2" ry="2" />
<text text-anchor="" x="140.75" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#__callbacks (8000) (13 ms, 0.07%)</title><rect x="1166.8" y="741" width="0.8" height="15.0" fill="rgb(241,184,41)" rx="2" ry="2" />
<text text-anchor="" x="1169.77" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (12 ms, 0.06%)</title><rect x="695.7" y="1173" width="0.8" height="15.0" fill="rgb(222,138,18)" rx="2" ry="2" />
<text text-anchor="" x="698.72" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (16002) (349 ms, 1.79%)</title><rect x="644.4" y="1141" width="21.1" height="15.0" fill="rgb(221,164,6)" rx="2" ry="2" />
<text text-anchor="" x="647.40" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#key? (8000) (5 ms, 0.03%)</title><rect x="1138.6" y="677" width="0.3" height="15.0" fill="rgb(248,89,32)" rx="2" ry="2" />
<text text-anchor="" x="1141.61" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::TableMetadata#type (1) (2 ms, 0.01%)</title><rect x="14.7" y="821" width="0.2" height="15.0" fill="rgb(243,65,31)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#to_i (8001) (2 ms, 0.01%)</title><rect x="26.7" y="1253" width="0.1" height="15.0" fill="rgb(230,226,21)" rx="2" ry="2" />
<text text-anchor="" x="29.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#transfer_time_values_to_utc_constructor (8001) (7 ms, 0.04%)</title><rect x="664.1" y="1013" width="0.4" height="15.0" fill="rgb(246,164,54)" rx="2" ry="2" />
<text text-anchor="" x="667.08" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#initialize (8001) (4 ms, 0.02%)</title><rect x="672.0" y="1157" width="0.2" height="15.0" fill="rgb(220,82,11)" rx="2" ry="2" />
<text text-anchor="" x="674.98" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (32004) (56 ms, 0.29%)</title><rect x="1040.0" y="1093" width="3.3" height="15.0" fill="rgb(221,200,33)" rx="2" ry="2" />
<text text-anchor="" x="1042.96" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Persistence::ClassMethods#instantiate (8000) (865 ms, 4.42%)</title><rect x="1120.1" y="805" width="52.3" height="15.0" fill="rgb(220,59,29)" rx="2" ry="2" />
<text text-anchor="" x="1123.12" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Activ..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8001) (3 ms, 0.02%)</title><rect x="980.8" y="1173" width="0.2" height="15.0" fill="rgb(212,21,41)" rx="2" ry="2" />
<text text-anchor="" x="983.83" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions#user_role_rules (1) (165 ms, 0.84%)</title><rect x="11.4" y="1253" width="9.9" height="15.0" fill="rgb(247,220,40)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#lookup (24003) (708 ms, 3.62%)</title><rect x="792.1" y="1141" width="42.8" height="15.0" fill="rgb(216,88,21)" rx="2" ry="2" />
<text text-anchor="" x="795.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I18n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#include? (784098) (129 ms, 0.66%)</title><rect x="289.9" y="1061" width="7.8" height="15.0" fill="rgb(232,209,51)" rx="2" ry="2" />
<text text-anchor="" x="292.92" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (3 ms, 0.02%)</title><rect x="98.7" y="965" width="0.2" height="15.0" fill="rgb(226,28,11)" rx="2" ry="2" />
<text text-anchor="" x="101.70" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (12 ms, 0.06%)</title><rect x="594.2" y="1061" width="0.7" height="15.0" fill="rgb(218,10,52)" rx="2" ry="2" />
<text text-anchor="" x="597.16" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#Array (8001) (7 ms, 0.04%)</title><rect x="49.9" y="1141" width="0.4" height="15.0" fill="rgb(223,28,12)" rx="2" ry="2" />
<text text-anchor="" x="52.86" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#relation_class_for (8001) (17 ms, 0.09%)</title><rect x="69.9" y="1205" width="1.0" height="15.0" fill="rgb(239,16,23)" rx="2" ry="2" />
<text text-anchor="" x="72.89" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8000) (3 ms, 0.02%)</title><rect x="1175.1" y="949" width="0.2" height="15.0" fill="rgb(251,130,3)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (27 ms, 0.14%)</title><rect x="709.2" y="1189" width="1.7" height="15.0" fill="rgb(207,143,44)" rx="2" ry="2" />
<text text-anchor="" x="712.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#deserialize (8001) (7 ms, 0.04%)</title><rect x="1039.5" y="1061" width="0.5" height="15.0" fill="rgb(248,191,22)" rx="2" ry="2" />
<text text-anchor="" x="1042.53" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#skip_query_cache_if_necessary (1) (3,061 ms, 15.66%)</title><rect x="1004.8" y="1221" width="184.8" height="15.0" fill="rgb(226,196,52)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Relation#s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (2) (2,144 ms, 10.97%)</title><rect x="1060.1" y="1077" width="129.4" height="15.0" fill="rgb(232,46,44)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#map (2)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (2) (2 ms, 0.01%)</title><rect x="12.9" y="869" width="0.2" height="15.0" fill="rgb(219,118,17)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#finish_with_state (2) (66 ms, 0.34%)</title><rect x="1100.1" y="725" width="4.0" height="15.0" fill="rgb(248,53,30)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::TreeBuilder#set_location (4695) (7 ms, 0.04%)</title><rect x="17.1" y="661" width="0.4" height="15.0" fill="rgb(219,193,17)" rx="2" ry="2" />
<text text-anchor="" x="20.05" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Parser#parse (31) (31 ms, 0.16%)</title><rect x="15.7" y="693" width="1.9" height="15.0" fill="rgb(230,71,43)" rx="2" ry="2" />
<text text-anchor="" x="18.72" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (19 ms, 0.10%)</title><rect x="680.2" y="1045" width="1.2" height="15.0" fill="rgb(206,140,40)" rx="2" ry="2" />
<text text-anchor="" x="683.23" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (2) (100 ms, 0.51%)</title><rect x="15.0" y="997" width="6.0" height="15.0" fill="rgb(217,34,18)" rx="2" ry="2" />
<text text-anchor="" x="17.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (24003) (171 ms, 0.87%)</title><rect x="847.1" y="1189" width="10.3" height="15.0" fill="rgb(240,200,15)" rx="2" ry="2" />
<text text-anchor="" x="850.08" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#_run_find_callbacks (8000) (36 ms, 0.18%)</title><rect x="1163.9" y="773" width="2.2" height="15.0" fill="rgb(233,81,21)" rx="2" ry="2" />
<text text-anchor="" x="1166.88" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (16 ms, 0.08%)</title><rect x="142.8" y="1125" width="1.0" height="15.0" fill="rgb(245,28,12)" rx="2" ry="2" />
<text text-anchor="" x="145.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#_exec_scope (1) (3 ms, 0.02%)</title><rect x="14.7" y="1029" width="0.2" height="15.0" fill="rgb(233,16,18)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8000) (18 ms, 0.09%)</title><rect x="1158.5" y="709" width="1.1" height="15.0" fill="rgb(252,85,19)" rx="2" ry="2" />
<text text-anchor="" x="1161.50" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (2) (100 ms, 0.51%)</title><rect x="15.0" y="1013" width="6.0" height="15.0" fill="rgb(223,183,18)" rx="2" ry="2" />
<text text-anchor="" x="17.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (1) (6 ms, 0.03%)</title><rect x="11.6" y="1093" width="0.4" height="15.0" fill="rgb(250,148,48)" rx="2" ry="2" />
<text text-anchor="" x="14.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (24003) (10 ms, 0.05%)</title><rect x="969.1" y="1093" width="0.6" height="15.0" fill="rgb(239,85,18)" rx="2" ry="2" />
<text text-anchor="" x="972.11" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (35 ms, 0.18%)</title><rect x="676.2" y="1077" width="2.1" height="15.0" fill="rgb(251,11,17)" rx="2" ry="2" />
<text text-anchor="" x="679.17" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (24003) (122 ms, 0.62%)</title><rect x="777.4" y="1109" width="7.4" height="15.0" fill="rgb(228,65,21)" rx="2" ry="2" />
<text text-anchor="" x="780.44" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Nodes::Node#to_ruby (31) (36 ms, 0.18%)</title><rect x="17.6" y="725" width="2.2" height="15.0" fill="rgb(223,89,16)" rx="2" ry="2" />
<text text-anchor="" x="20.58" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded! (8001) (9 ms, 0.05%)</title><rect x="40.2" y="1157" width="0.6" height="15.0" fill="rgb(237,191,0)" rx="2" ry="2" />
<text text-anchor="" x="43.22" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (4) (10 ms, 0.05%)</title><rect x="1077.1" y="773" width="0.6" height="15.0" fill="rgb(207,45,6)" rx="2" ry="2" />
<text text-anchor="" x="1080.07" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (2 ms, 0.01%)</title><rect x="150.0" y="1141" width="0.1" height="15.0" fill="rgb(236,81,14)" rx="2" ry="2" />
<text text-anchor="" x="152.99" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (2) (7 ms, 0.04%)</title><rect x="10.9" y="1157" width="0.4" height="15.0" fill="rgb(231,192,45)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (8001) (2 ms, 0.01%)</title><rect x="83.2" y="1045" width="0.1" height="15.0" fill="rgb(209,112,42)" rx="2" ry="2" />
<text text-anchor="" x="86.22" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#locked_by? (8001) (132 ms, 0.68%)</title><rect x="139.1" y="1237" width="7.9" height="15.0" fill="rgb(225,14,4)" rx="2" ry="2" />
<text text-anchor="" x="142.07" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="151.7" y="1157" width="0.1" height="15.0" fill="rgb(216,184,4)" rx="2" ry="2" />
<text text-anchor="" x="154.69" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Nodes::BindParam#initialize (16002) (9 ms, 0.05%)</title><rect x="1076.4" y="741" width="0.5" height="15.0" fill="rgb(205,38,29)" rx="2" ry="2" />
<text text-anchor="" x="1079.38" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Content&gt;#published (1) (3 ms, 0.02%)</title><rect x="14.7" y="1045" width="0.2" height="15.0" fill="rgb(212,159,16)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#&lt;=&gt; (24003) (329 ms, 1.68%)</title><rect x="939.6" y="1157" width="19.9" height="15.0" fill="rgb(236,109,41)" rx="2" ry="2" />
<text text-anchor="" x="942.61" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (2) (2 ms, 0.01%)</title><rect x="12.9" y="805" width="0.2" height="15.0" fill="rgb(240,133,51)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet::Builder#build_from_database (8001) (32 ms, 0.16%)</title><rect x="1020.1" y="1109" width="1.9" height="15.0" fill="rgb(236,184,41)" rx="2" ry="2" />
<text text-anchor="" x="1023.11" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#revive_hash (41) (34 ms, 0.17%)</title><rect x="17.7" y="357" width="2.0" height="15.0" fill="rgb(210,125,41)" rx="2" ry="2" />
<text text-anchor="" x="20.68" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#transfer_time_values_to_utc_constructor (24003) (23 ms, 0.12%)</title><rect x="899.9" y="1093" width="1.4" height="15.0" fill="rgb(241,163,52)" rx="2" ry="2" />
<text text-anchor="" x="902.89" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (5 ms, 0.03%)</title><rect x="593.8" y="1061" width="0.4" height="15.0" fill="rgb(233,110,40)" rx="2" ry="2" />
<text text-anchor="" x="596.84" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Predications#in (2) (19 ms, 0.10%)</title><rect x="1069.6" y="789" width="1.2" height="15.0" fill="rgb(232,0,33)" rx="2" ry="2" />
<text text-anchor="" x="1072.61" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8000) (88 ms, 0.45%)</title><rect x="1158.2" y="725" width="5.3" height="15.0" fill="rgb(216,68,24)" rx="2" ry="2" />
<text text-anchor="" x="1161.17" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (40005) (10 ms, 0.05%)</title><rect x="597.5" y="1077" width="0.6" height="15.0" fill="rgb(244,88,9)" rx="2" ry="2" />
<text text-anchor="" x="600.46" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#empty? (8001) (2 ms, 0.01%)</title><rect x="81.2" y="1077" width="0.1" height="15.0" fill="rgb(250,124,16)" rx="2" ry="2" />
<text text-anchor="" x="84.20" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (4) (2 ms, 0.01%)</title><rect x="20.1" y="917" width="0.1" height="15.0" fill="rgb(233,73,29)" rx="2" ry="2" />
<text text-anchor="" x="23.13" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;Class:0x00007f9056328ac8&gt;#__getobj__ (8001) (4 ms, 0.02%)</title><rect x="698.8" y="1077" width="0.3" height="15.0" fill="rgb(222,69,38)" rx="2" ry="2" />
<text text-anchor="" x="701.84" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#fixed_attributes (24003) (8 ms, 0.04%)</title><rect x="973.0" y="1141" width="0.6" height="15.0" fill="rgb(237,126,4)" rx="2" ry="2" />
<text text-anchor="" x="976.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#stale_state (16002) (3 ms, 0.02%)</title><rect x="1180.3" y="981" width="0.1" height="15.0" fill="rgb(242,6,26)" rx="2" ry="2" />
<text text-anchor="" x="1183.28" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::BelongsToAssociation#inversed_from (8000) (236 ms, 1.21%)</title><rect x="1140.0" y="757" width="14.3" height="15.0" fill="rgb(228,51,42)" rx="2" ry="2" />
<text text-anchor="" x="1143.02" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (3 ms, 0.02%)</title><rect x="1071.0" y="773" width="0.2" height="15.0" fill="rgb(226,227,41)" rx="2" ry="2" />
<text text-anchor="" x="1074.02" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (4 ms, 0.02%)</title><rect x="971.1" y="1109" width="0.3" height="15.0" fill="rgb(225,114,29)" rx="2" ry="2" />
<text text-anchor="" x="974.12" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#=== (16002) (13 ms, 0.07%)</title><rect x="1096.8" y="693" width="0.7" height="15.0" fill="rgb(219,192,18)" rx="2" ry="2" />
<text text-anchor="" x="1099.76" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#get (32004) (198 ms, 1.01%)</title><rect x="577.0" y="1045" width="12.0" height="15.0" fill="rgb(241,151,8)" rx="2" ry="2" />
<text text-anchor="" x="580.03" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#definition_missing (8001) (78 ms, 0.40%)</title><rect x="27.0" y="1269" width="4.7" height="15.0" fill="rgb(243,88,35)" rx="2" ry="2" />
<text text-anchor="" x="29.98" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_object (2) (154 ms, 0.79%)</title><rect x="1060.2" y="981" width="9.3" height="15.0" fill="rgb(254,165,33)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#safe_load (1) (3 ms, 0.02%)</title><rect x="15.1" y="917" width="0.1" height="15.0" fill="rgb(208,51,22)" rx="2" ry="2" />
<text text-anchor="" x="18.06" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#convert_key (8000) (8 ms, 0.04%)</title><rect x="1155.1" y="773" width="0.5" height="15.0" fill="rgb(236,65,44)" rx="2" ry="2" />
<text text-anchor="" x="1158.11" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#catch (24003) (1,249 ms, 6.39%)</title><rect x="763.8" y="1173" width="75.3" height="15.0" fill="rgb(217,203,27)" rx="2" ry="2" />
<text text-anchor="" x="766.77" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kernel#c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#inverse_of (8000) (8 ms, 0.04%)</title><rect x="1134.8" y="661" width="0.5" height="15.0" fill="rgb(250,139,44)" rx="2" ry="2" />
<text text-anchor="" x="1137.76" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks::CallbackChain#empty? (8001) (2 ms, 0.01%)</title><rect x="1028.7" y="1061" width="0.1" height="15.0" fill="rgb(237,188,8)" rx="2" ry="2" />
<text text-anchor="" x="1031.70" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (16002) (105 ms, 0.54%)</title><rect x="1183.2" y="997" width="6.3" height="15.0" fill="rgb(230,137,13)" rx="2" ry="2" />
<text text-anchor="" x="1186.16" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#blank? (8001) (11 ms, 0.06%)</title><rect x="684.8" y="1125" width="0.7" height="15.0" fill="rgb(222,221,36)" rx="2" ry="2" />
<text text-anchor="" x="687.83" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (4) (41 ms, 0.21%)</title><rect x="12.0" y="1109" width="2.5" height="15.0" fill="rgb(238,9,6)" rx="2" ry="2" />
<text text-anchor="" x="15.04" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (74) (3 ms, 0.02%)</title><rect x="15.4" y="597" width="0.2" height="15.0" fill="rgb(218,223,52)" rx="2" ry="2" />
<text text-anchor="" x="18.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (2) (2 ms, 0.01%)</title><rect x="11.2" y="949" width="0.1" height="15.0" fill="rgb(214,203,3)" rx="2" ry="2" />
<text text-anchor="" x="14.15" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#using_single_table_inheritance? (8001) (27 ms, 0.14%)</title><rect x="1030.8" y="1093" width="1.6" height="15.0" fill="rgb(241,88,8)" rx="2" ry="2" />
<text text-anchor="" x="1033.80" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (32004) (13 ms, 0.07%)</title><rect x="575.9" y="981" width="0.8" height="15.0" fill="rgb(240,190,46)" rx="2" ry="2" />
<text text-anchor="" x="578.89" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#klass (8001) (8 ms, 0.04%)</title><rect x="43.5" y="1221" width="0.5" height="15.0" fill="rgb(253,169,51)" rx="2" ry="2" />
<text text-anchor="" x="46.53" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#casecmp (96004) (20 ms, 0.10%)</title><rect x="585.5" y="997" width="1.2" height="15.0" fill="rgb(253,217,28)" rx="2" ry="2" />
<text text-anchor="" x="588.50" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (2) (2 ms, 0.01%)</title><rect x="12.9" y="773" width="0.2" height="15.0" fill="rgb(249,118,45)" rx="2" ry="2" />
<text text-anchor="" x="15.95" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DatabaseStatements#select (2) (268 ms, 1.37%)</title><rect x="1093.2" y="805" width="16.1" height="15.0" fill="rgb(231,222,41)" rx="2" ry="2" />
<text text-anchor="" x="1096.19" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#select (48006) (2,012 ms, 10.29%)</title><rect x="191.9" y="1109" width="121.5" height="15.0" fill="rgb(212,82,11)" rx="2" ry="2" />
<text text-anchor="" x="194.94" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array#select (4..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#initialize_dup (8001) (4 ms, 0.02%)</title><rect x="108.1" y="1013" width="0.3" height="15.0" fill="rgb(225,37,12)" rx="2" ry="2" />
<text text-anchor="" x="111.09" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Oj::StringWriter#push_value (144018) (277 ms, 1.42%)</title><rect x="988.1" y="1269" width="16.7" height="15.0" fill="rgb(225,129,37)" rx="2" ry="2" />
<text text-anchor="" x="991.09" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#sync_with_transaction_state (32004) (20 ms, 0.10%)</title><rect x="1043.6" y="1125" width="1.2" height="15.0" fill="rgb(208,110,28)" rx="2" ry="2" />
<text text-anchor="" x="1046.57" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::QueryAttribute#boundable? (16002) (136 ms, 0.70%)</title><rect x="1084.7" y="501" width="8.2" height="15.0" fill="rgb(215,205,1)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (24003) (163 ms, 0.83%)</title><rect x="962.4" y="1141" width="9.8" height="15.0" fill="rgb(238,41,37)" rx="2" ry="2" />
<text text-anchor="" x="965.37" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (15 ms, 0.08%)</title><rect x="680.5" y="1029" width="0.9" height="15.0" fill="rgb(248,45,34)" rx="2" ry="2" />
<text text-anchor="" x="683.46" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (1) (4 ms, 0.02%)</title><rect x="11.4" y="1189" width="0.2" height="15.0" fill="rgb(224,78,0)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (24003) (11 ms, 0.06%)</title><rect x="970.5" y="1077" width="0.6" height="15.0" fill="rgb(210,95,43)" rx="2" ry="2" />
<text text-anchor="" x="973.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#allocate (8001) (9 ms, 0.05%)</title><rect x="1029.9" y="1093" width="0.5" height="15.0" fill="rgb(228,87,42)" rx="2" ry="2" />
<text text-anchor="" x="1032.88" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (8001) (3 ms, 0.02%)</title><rect x="41.9" y="1221" width="0.2" height="15.0" fill="rgb(237,219,39)" rx="2" ry="2" />
<text text-anchor="" x="44.92" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (3 ms, 0.02%)</title><rect x="1145.1" y="629" width="0.1" height="15.0" fill="rgb(206,197,4)" rx="2" ry="2" />
<text text-anchor="" x="1148.06" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#public (8001) (1,269 ms, 6.49%)</title><rect x="628.7" y="1269" width="76.6" height="15.0" fill="rgb(218,115,20)" rx="2" ry="2" />
<text text-anchor="" x="631.73" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#hash (392054) (436 ms, 2.23%)</title><rect x="231.5" y="1077" width="26.2" height="15.0" fill="rgb(229,112,2)" rx="2" ry="2" />
<text text-anchor="" x="234.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#order_values= (8001) (23 ms, 0.12%)</title><rect x="83.3" y="1077" width="1.4" height="15.0" fill="rgb(223,101,36)" rx="2" ry="2" />
<text text-anchor="" x="86.34" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (24003) (3 ms, 0.02%)</title><rect x="864.6" y="1109" width="0.2" height="15.0" fill="rgb(224,182,52)" rx="2" ry="2" />
<text text-anchor="" x="867.60" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (48006) (9 ms, 0.05%)</title><rect x="754.0" y="1157" width="0.6" height="15.0" fill="rgb(242,158,41)" rx="2" ry="2" />
<text text-anchor="" x="756.99" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (96012) (37 ms, 0.19%)</title><rect x="509.5" y="997" width="2.2" height="15.0" fill="rgb(248,20,28)" rx="2" ry="2" />
<text text-anchor="" x="512.47" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#extensions (8001) (16 ms, 0.08%)</title><rect x="76.1" y="1157" width="1.0" height="15.0" fill="rgb(208,224,25)" rx="2" ry="2" />
<text text-anchor="" x="79.11" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_variable_defined? (8001) (3 ms, 0.02%)</title><rect x="1026.6" y="1045" width="0.2" height="15.0" fill="rgb(217,49,11)" rx="2" ry="2" />
<text text-anchor="" x="1029.63" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (2 ms, 0.01%)</title><rect x="40.8" y="1205" width="0.1" height="15.0" fill="rgb(211,132,5)" rx="2" ry="2" />
<text text-anchor="" x="43.75" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#=== (1586) (2 ms, 0.01%)</title><rect x="19.1" y="101" width="0.1" height="15.0" fill="rgb(253,75,52)" rx="2" ry="2" />
<text text-anchor="" x="22.11" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#base_class (8001) (21 ms, 0.11%)</title><rect x="53.6" y="1093" width="1.3" height="15.0" fill="rgb(208,7,54)" rx="2" ry="2" />
<text text-anchor="" x="56.60" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_set (8000) (5 ms, 0.03%)</title><rect x="1130.4" y="725" width="0.3" height="15.0" fill="rgb(250,149,25)" rx="2" ry="2" />
<text text-anchor="" x="1133.38" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (24003) (6 ms, 0.03%)</title><rect x="864.2" y="1109" width="0.4" height="15.0" fill="rgb(245,226,47)" rx="2" ry="2" />
<text text-anchor="" x="867.23" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#grep (8001) (12 ms, 0.06%)</title><rect x="103.0" y="1061" width="0.7" height="15.0" fill="rgb(217,204,49)" rx="2" ry="2" />
<text text-anchor="" x="105.99" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (4 ms, 0.02%)</title><rect x="89.2" y="1029" width="0.2" height="15.0" fill="rgb(238,180,29)" rx="2" ry="2" />
<text text-anchor="" x="92.21" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#reject (8001) (56 ms, 0.29%)</title><rect x="87.2" y="1045" width="3.4" height="15.0" fill="rgb(239,66,10)" rx="2" ry="2" />
<text text-anchor="" x="90.23" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (31) (36 ms, 0.18%)</title><rect x="17.6" y="645" width="2.2" height="15.0" fill="rgb(219,203,25)" rx="2" ry="2" />
<text text-anchor="" x="20.62" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (2) (7 ms, 0.04%)</title><rect x="10.9" y="1141" width="0.4" height="15.0" fill="rgb(211,43,22)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Helpers::TimeValue#fast_string_to_time (8001) (185 ms, 0.95%)</title><rect x="648.8" y="1013" width="11.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text text-anchor="" x="651.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#extensions (8001) (975 ms, 4.99%)</title><rect x="72.9" y="1173" width="58.9" height="15.0" fill="rgb(209,54,45)" rx="2" ry="2" />
<text text-anchor="" x="75.94" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Active..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#redirects_to_external? (8001) (100 ms, 0.51%)</title><rect x="705.6" y="1253" width="6.0" height="15.0" fill="rgb(220,2,17)" rx="2" ry="2" />
<text text-anchor="" x="708.56" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (31) (6 ms, 0.03%)</title><rect x="15.3" y="789" width="0.4" height="15.0" fill="rgb(222,90,33)" rx="2" ry="2" />
<text text-anchor="" x="18.28" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[]= (8000) (93 ms, 0.48%)</title><rect x="1147.2" y="725" width="5.6" height="15.0" fill="rgb(246,203,24)" rx="2" ry="2" />
<text text-anchor="" x="1150.20" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#where! (2) (134 ms, 0.69%)</title><rect x="1069.6" y="917" width="8.1" height="15.0" fill="rgb(229,81,5)" rx="2" ry="2" />
<text text-anchor="" x="1072.59" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (8001) (3 ms, 0.02%)</title><rect x="64.1" y="1189" width="0.2" height="15.0" fill="rgb(242,182,54)" rx="2" ry="2" />
<text text-anchor="" x="67.10" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions::GuestUser#alchemy_guest_user_rules (1) (109 ms, 0.56%)</title><rect x="14.7" y="1141" width="6.6" height="15.0" fill="rgb(216,6,29)" rx="2" ry="2" />
<text text-anchor="" x="17.68" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Renderers#_render_to_body_with_renderer (1) (3 ms, 0.02%)</title><rect x="10.1" y="1189" width="0.2" height="15.0" fill="rgb(237,177,10)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Serializable::Utils#_const_get (1) (3 ms, 0.02%)</title><rect x="10.1" y="1045" width="0.2" height="15.0" fill="rgb(234,28,26)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (2) (3 ms, 0.02%)</title><rect x="11.1" y="965" width="0.2" height="15.0" fill="rgb(254,29,29)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#permit_concurrent_loads (1) (125 ms, 0.64%)</title><rect x="1004.9" y="1029" width="7.6" height="15.0" fill="rgb(209,14,5)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#as_json (24003) (7 ms, 0.04%)</title><rect x="1002.0" y="1205" width="0.4" height="15.0" fill="rgb(219,28,43)" rx="2" ry="2" />
<text text-anchor="" x="1005.03" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (16002) (427 ms, 2.18%)</title><rect x="643.3" y="1173" width="25.8" height="15.0" fill="rgb(253,60,23)" rx="2" ry="2" />
<text text-anchor="" x="646.28" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#to_i (8001) (2 ms, 0.01%)</title><rect x="135.8" y="1157" width="0.1" height="15.0" fill="rgb(214,198,7)" rx="2" ry="2" />
<text text-anchor="" x="138.75" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#include? (16002) (2 ms, 0.01%)</title><rect x="115.0" y="1013" width="0.2" height="15.0" fill="rgb(243,66,47)" rx="2" ry="2" />
<text text-anchor="" x="118.02" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Scalar (472) (2 ms, 0.01%)</title><rect x="18.6" y="37" width="0.1" height="15.0" fill="rgb(239,58,45)" rx="2" ry="2" />
<text text-anchor="" x="21.59" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (48006) (24 ms, 0.12%)</title><rect x="372.3" y="1077" width="1.4" height="15.0" fill="rgb(222,74,8)" rx="2" ry="2" />
<text text-anchor="" x="375.28" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8000) (126 ms, 0.64%)</title><rect x="1156.1" y="757" width="7.6" height="15.0" fill="rgb(225,44,7)" rx="2" ry="2" />
<text text-anchor="" x="1159.11" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#arel_attribute (8001) (43 ms, 0.22%)</title><rect x="97.3" y="1013" width="2.6" height="15.0" fill="rgb(236,2,13)" rx="2" ry="2" />
<text text-anchor="" x="100.32" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#dup (8001) (8 ms, 0.04%)</title><rect x="107.9" y="1029" width="0.5" height="15.0" fill="rgb(212,167,52)" rx="2" ry="2" />
<text text-anchor="" x="110.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#type_for_attribute (1) (2 ms, 0.01%)</title><rect x="14.7" y="805" width="0.2" height="15.0" fill="rgb(214,216,35)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#_run_initialize_callbacks (8000) (29 ms, 0.15%)</title><rect x="1166.1" y="773" width="1.7" height="15.0" fill="rgb(236,203,0)" rx="2" ry="2" />
<text text-anchor="" x="1169.07" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::Composite#add_bind (16002) (36 ms, 0.18%)</title><rect x="1081.4" y="357" width="2.2" height="15.0" fill="rgb(241,46,9)" rx="2" ry="2" />
<text text-anchor="" x="1084.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#klass (32004) (21 ms, 0.11%)</title><rect x="1058.6" y="1077" width="1.2" height="15.0" fill="rgb(206,97,47)" rx="2" ry="2" />
<text text-anchor="" x="1061.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (16002) (7 ms, 0.04%)</title><rect x="642.3" y="1157" width="0.5" height="15.0" fill="rgb(232,93,36)" rx="2" ry="2" />
<text text-anchor="" x="645.32" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#profile (1) (19,551 ms, 100.00%)</title><rect x="10.0" y="1349" width="1180.0" height="15.0" fill="rgb(242,175,22)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Object#profile (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#enforce_available_locales! (24003) (111 ms, 0.57%)</title><rect x="754.6" y="1173" width="6.7" height="15.0" fill="rgb(232,210,46)" rx="2" ry="2" />
<text text-anchor="" x="757.55" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (62) (35 ms, 0.18%)</title><rect x="17.6" y="501" width="2.2" height="15.0" fill="rgb(215,42,4)" rx="2" ry="2" />
<text text-anchor="" x="20.64" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#key? (8000) (21 ms, 0.11%)</title><rect x="1137.7" y="693" width="1.2" height="15.0" fill="rgb(226,194,14)" rx="2" ry="2" />
<text text-anchor="" x="1140.65" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (7 ms, 0.04%)</title><rect x="1042.7" y="1013" width="0.4" height="15.0" fill="rgb(238,72,41)" rx="2" ry="2" />
<text text-anchor="" x="1045.67" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all (2) (268 ms, 1.37%)</title><rect x="1093.2" y="821" width="16.1" height="15.0" fill="rgb(226,113,38)" rx="2" ry="2" />
<text text-anchor="" x="1096.19" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8001) (4 ms, 0.02%)</title><rect x="150.3" y="1157" width="0.2" height="15.0" fill="rgb(235,217,35)" rx="2" ry="2" />
<text text-anchor="" x="153.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (48006) (371 ms, 1.90%)</title><rect x="908.4" y="1157" width="22.4" height="15.0" fill="rgb(249,133,47)" rx="2" ry="2" />
<text text-anchor="" x="911.39" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#where (1) (3 ms, 0.02%)</title><rect x="14.7" y="949" width="0.2" height="15.0" fill="rgb(242,47,21)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TimezonePeriod#utc_total_offset (24003) (8 ms, 0.04%)</title><rect x="957.7" y="1093" width="0.5" height="15.0" fill="rgb(248,98,27)" rx="2" ry="2" />
<text text-anchor="" x="960.71" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::SpawnMethods#merge (1) (2 ms, 0.01%)</title><rect x="21.0" y="1045" width="0.2" height="15.0" fill="rgb(217,102,54)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (24003) (41 ms, 0.21%)</title><rect x="866.3" y="1109" width="2.5" height="15.0" fill="rgb(236,51,18)" rx="2" ry="2" />
<text text-anchor="" x="869.29" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1069.4" y="917" width="0.1" height="15.0" fill="rgb(217,37,35)" rx="2" ry="2" />
<text text-anchor="" x="1072.37" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#superclass (16002) (4 ms, 0.02%)</title><rect x="126.6" y="1077" width="0.3" height="15.0" fill="rgb(246,42,30)" rx="2" ry="2" />
<text text-anchor="" x="129.61" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (10 ms, 0.05%)</title><rect x="1042.4" y="1029" width="0.7" height="15.0" fill="rgb(253,30,31)" rx="2" ry="2" />
<text text-anchor="" x="1045.45" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#instrument (2) (963 ms, 4.93%)</title><rect x="1114.3" y="869" width="58.1" height="15.0" fill="rgb(242,8,12)" rx="2" ry="2" />
<text text-anchor="" x="1117.25" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Active..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Scalar (1369) (5 ms, 0.03%)</title><rect x="19.4" y="261" width="0.3" height="15.0" fill="rgb(242,152,45)" rx="2" ry="2" />
<text text-anchor="" x="22.38" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#to_s (48006) (29 ms, 0.15%)</title><rect x="382.6" y="1077" width="1.7" height="15.0" fill="rgb(221,138,0)" rx="2" ry="2" />
<text text-anchor="" x="385.59" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (32004) (5 ms, 0.03%)</title><rect x="1099.3" y="709" width="0.3" height="15.0" fill="rgb(233,170,26)" rx="2" ry="2" />
<text text-anchor="" x="1102.32" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#initialize (8000) (60 ms, 0.31%)</title><rect x="1132.3" y="709" width="3.6" height="15.0" fill="rgb(212,127,10)" rx="2" ry="2" />
<text text-anchor="" x="1135.29" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (8001) (3 ms, 0.02%)</title><rect x="68.1" y="1205" width="0.2" height="15.0" fill="rgb(252,163,20)" rx="2" ry="2" />
<text text-anchor="" x="71.08" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::InfoTimezone#info (8001) (2 ms, 0.01%)</title><rect x="691.5" y="1093" width="0.2" height="15.0" fill="rgb(231,161,20)" rx="2" ry="2" />
<text text-anchor="" x="694.54" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TrueClass#to_s (8001) (4 ms, 0.02%)</title><rect x="977.4" y="1221" width="0.3" height="15.0" fill="rgb(221,192,0)" rx="2" ry="2" />
<text text-anchor="" x="980.42" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#split (8001) (15 ms, 0.08%)</title><rect x="89.6" y="1029" width="0.9" height="15.0" fill="rgb(249,95,36)" rx="2" ry="2" />
<text text-anchor="" x="92.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (2736) (22 ms, 0.11%)</title><rect x="18.1" y="197" width="1.3" height="15.0" fill="rgb(254,29,18)" rx="2" ry="2" />
<text text-anchor="" x="21.06" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveRecord::AutosaveAssociation::AssociationBuilderExtension&gt;#build (4) (3 ms, 0.02%)</title><rect x="13.6" y="885" width="0.2" height="15.0" fill="rgb(205,216,12)" rx="2" ry="2" />
<text text-anchor="" x="16.62" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (8001) (3 ms, 0.02%)</title><rect x="696.3" y="1157" width="0.2" height="15.0" fill="rgb(249,161,16)" rx="2" ry="2" />
<text text-anchor="" x="699.25" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (8001) (3 ms, 0.02%)</title><rect x="36.5" y="1189" width="0.2" height="15.0" fill="rgb(218,63,47)" rx="2" ry="2" />
<text text-anchor="" x="39.49" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#foreign_key_for? (8000) (36 ms, 0.18%)</title><rect x="1137.0" y="725" width="2.2" height="15.0" fill="rgb(226,195,7)" rx="2" ry="2" />
<text text-anchor="" x="1140.02" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (40 ms, 0.20%)</title><rect x="136.0" y="1205" width="2.4" height="15.0" fill="rgb(219,217,31)" rx="2" ry="2" />
<text text-anchor="" x="138.96" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#expand_from_hash (1) (2 ms, 0.01%)</title><rect x="14.7" y="885" width="0.2" height="15.0" fill="rgb(221,89,24)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (16002) (2 ms, 0.01%)</title><rect x="1065.6" y="901" width="0.2" height="15.0" fill="rgb(230,225,45)" rx="2" ry="2" />
<text text-anchor="" x="1068.64" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#inject (2) (256 ms, 1.31%)</title><rect x="1077.7" y="757" width="15.5" height="15.0" fill="rgb(249,167,18)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#definition (8001) (192 ms, 0.98%)</title><rect x="674.0" y="1157" width="11.6" height="15.0" fill="rgb(250,175,24)" rx="2" ry="2" />
<text text-anchor="" x="677.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#get (8001) (42 ms, 0.21%)</title><rect x="34.1" y="1221" width="2.6" height="15.0" fill="rgb(218,208,44)" rx="2" ry="2" />
<text text-anchor="" x="37.11" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (48006) (75 ms, 0.38%)</title><rect x="915.2" y="1125" width="4.5" height="15.0" fill="rgb(207,222,32)" rx="2" ry="2" />
<text text-anchor="" x="918.21" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#value_for (8001) (17 ms, 0.09%)</title><rect x="110.6" y="1045" width="1.1" height="15.0" fill="rgb(246,42,2)" rx="2" ry="2" />
<text text-anchor="" x="113.63" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (32004) (4 ms, 0.02%)</title><rect x="1044.8" y="1125" width="0.2" height="15.0" fill="rgb(211,85,33)" rx="2" ry="2" />
<text text-anchor="" x="1047.78" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#== (8001) (2 ms, 0.01%)</title><rect x="592.8" y="1061" width="0.1" height="15.0" fill="rgb(242,52,25)" rx="2" ry="2" />
<text text-anchor="" x="595.78" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#cast_value (16002) (9 ms, 0.05%)</title><rect x="1090.3" y="389" width="0.6" height="15.0" fill="rgb(208,19,22)" rx="2" ry="2" />
<text text-anchor="" x="1093.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#definition (8001) (70 ms, 0.36%)</title><rect x="27.3" y="1253" width="4.3" height="15.0" fill="rgb(226,130,13)" rx="2" ry="2" />
<text text-anchor="" x="30.35" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveRecord::LegacyYamlAdapter&gt;#convert (8001) (5 ms, 0.03%)</title><rect x="1023.5" y="1093" width="0.2" height="15.0" fill="rgb(221,138,26)" rx="2" ry="2" />
<text text-anchor="" x="1026.46" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability#alternative_subjects (48006) (398 ms, 2.04%)</title><rect x="360.3" y="1093" width="24.0" height="15.0" fill="rgb(221,33,14)" rx="2" ry="2" />
<text text-anchor="" x="363.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (2) (20 ms, 0.10%)</title><rect x="12.2" y="885" width="1.3" height="15.0" fill="rgb(240,37,34)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#size (8001) (13 ms, 0.07%)</title><rect x="63.3" y="1189" width="0.8" height="15.0" fill="rgb(225,198,20)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#localtime (8001) (20 ms, 0.10%)</title><rect x="689.0" y="1157" width="1.2" height="15.0" fill="rgb(226,155,7)" rx="2" ry="2" />
<text text-anchor="" x="691.99" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8001) (3 ms, 0.02%)</title><rect x="660.1" y="1045" width="0.2" height="15.0" fill="rgb(226,37,19)" rx="2" ry="2" />
<text text-anchor="" x="663.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#any? (8001) (2 ms, 0.01%)</title><rect x="131.1" y="1125" width="0.2" height="15.0" fill="rgb(233,137,9)" rx="2" ry="2" />
<text text-anchor="" x="134.13" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#locale_available? (1) (76 ms, 0.39%)</title><rect x="15.3" y="917" width="4.6" height="15.0" fill="rgb(224,157,14)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::PlainString#&lt;&lt; (16002) (6 ms, 0.03%)</title><rect x="1083.2" y="325" width="0.4" height="15.0" fill="rgb(218,96,6)" rx="2" ry="2" />
<text text-anchor="" x="1086.21" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#deserialize (8001) (6 ms, 0.03%)</title><rect x="143.5" y="1093" width="0.3" height="15.0" fill="rgb(240,176,4)" rx="2" ry="2" />
<text text-anchor="" x="146.47" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (1) (6 ms, 0.03%)</title><rect x="11.6" y="1077" width="0.4" height="15.0" fill="rgb(229,151,49)" rx="2" ry="2" />
<text text-anchor="" x="14.64" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Content::GeneratedRelationMethods#not_restricted (1) (3 ms, 0.02%)</title><rect x="21.0" y="1125" width="0.2" height="15.0" fill="rgb(214,97,17)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (2) (21 ms, 0.11%)</title><rect x="12.2" y="965" width="1.3" height="15.0" fill="rgb(235,186,23)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (16002) (3 ms, 0.02%)</title><rect x="1058.2" y="997" width="0.1" height="15.0" fill="rgb(230,57,32)" rx="2" ry="2" />
<text text-anchor="" x="1061.16" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#load_yml (31) (70 ms, 0.36%)</title><rect x="15.7" y="789" width="4.2" height="15.0" fill="rgb(221,98,44)" rx="2" ry="2" />
<text text-anchor="" x="18.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1188.3" y="965" width="0.2" height="15.0" fill="rgb(207,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.34" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#__callbacks (8000) (2 ms, 0.01%)</title><rect x="1167.4" y="709" width="0.2" height="15.0" fill="rgb(210,81,5)" rx="2" ry="2" />
<text text-anchor="" x="1170.45" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TrueClass#=== (16002) (3 ms, 0.02%)</title><rect x="1091.3" y="405" width="0.1" height="15.0" fill="rgb(215,80,28)" rx="2" ry="2" />
<text text-anchor="" x="1094.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (19,551 ms, 100%)</title><rect x="10.0" y="1397" width="1180.0" height="15.0" fill="rgb(214,111,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#_run_initialize_callbacks (8001) (27 ms, 0.14%)</title><rect x="1027.3" y="1093" width="1.7" height="15.0" fill="rgb(245,14,51)" rx="2" ry="2" />
<text text-anchor="" x="1030.31" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (15 ms, 0.08%)</title><rect x="137.3" y="1157" width="0.9" height="15.0" fill="rgb(208,154,10)" rx="2" ry="2" />
<text text-anchor="" x="140.28" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8001) (110 ms, 0.56%)</title><rect x="140.4" y="1173" width="6.6" height="15.0" fill="rgb(218,50,28)" rx="2" ry="2" />
<text text-anchor="" x="143.42" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#folded (8001) (398 ms, 2.04%)</title><rect x="36.7" y="1269" width="24.0" height="15.0" fill="rgb(253,205,17)" rx="2" ry="2" />
<text text-anchor="" x="39.73" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#foreign_key (8000) (3 ms, 0.02%)</title><rect x="1145.3" y="677" width="0.2" height="15.0" fill="rgb(234,204,15)" rx="2" ry="2" />
<text text-anchor="" x="1148.30" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_variable_defined? (8000) (2 ms, 0.01%)</title><rect x="1167.2" y="725" width="0.1" height="15.0" fill="rgb(247,143,24)" rx="2" ry="2" />
<text text-anchor="" x="1170.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (24003) (10 ms, 0.05%)</title><rect x="966.3" y="1109" width="0.6" height="15.0" fill="rgb(238,153,16)" rx="2" ry="2" />
<text text-anchor="" x="969.29" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#yield_shares (2) (87 ms, 0.44%)</title><rect x="1104.1" y="693" width="5.2" height="15.0" fill="rgb(205,209,38)" rx="2" ry="2" />
<text text-anchor="" x="1107.08" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Querying#find_by_sql (1) (463 ms, 2.37%)</title><rect x="1004.8" y="1205" width="28.0" height="15.0" fill="rgb(243,59,12)" rx="2" ry="2" />
<text text-anchor="" x="1007.84" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (2) (8 ms, 0.04%)</title><rect x="10.9" y="1221" width="0.5" height="15.0" fill="rgb(236,207,43)" rx="2" ry="2" />
<text text-anchor="" x="13.89" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#compute_class (1) (3 ms, 0.02%)</title><rect x="1057.7" y="917" width="0.2" height="15.0" fill="rgb(234,56,11)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8001) (119 ms, 0.61%)</title><rect x="713.1" y="1189" width="7.1" height="15.0" fill="rgb(243,120,47)" rx="2" ry="2" />
<text text-anchor="" x="716.06" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#require (1) (6 ms, 0.03%)</title><rect x="1051.1" y="1045" width="0.4" height="15.0" fill="rgb(219,59,16)" rx="2" ry="2" />
<text text-anchor="" x="1054.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Mapping (31) (35 ms, 0.18%)</title><rect x="17.7" y="485" width="2.1" height="15.0" fill="rgb(220,72,4)" rx="2" ry="2" />
<text text-anchor="" x="20.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (24003) (64 ms, 0.33%)</title><rect x="967.5" y="1125" width="3.9" height="15.0" fill="rgb(236,119,52)" rx="2" ry="2" />
<text text-anchor="" x="970.53" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#parse_stream (31) (31 ms, 0.16%)</title><rect x="15.7" y="709" width="1.9" height="15.0" fill="rgb(237,114,33)" rx="2" ry="2" />
<text text-anchor="" x="18.69" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (16002) (57 ms, 0.29%)</title><rect x="665.5" y="1141" width="3.4" height="15.0" fill="rgb(246,208,28)" rx="2" ry="2" />
<text text-anchor="" x="668.48" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (9 ms, 0.05%)</title><rect x="680.8" y="1013" width="0.6" height="15.0" fill="rgb(216,139,8)" rx="2" ry="2" />
<text text-anchor="" x="683.83" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CollectiveIdea::Acts::NestedSet::Columns#order_column (8001) (16 ms, 0.08%)</title><rect x="116.3" y="1077" width="1.0" height="15.0" fill="rgb(252,60,15)" rx="2" ry="2" />
<text text-anchor="" x="119.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Inflector#constantize (2) (2 ms, 0.01%)</title><rect x="1057.7" y="821" width="0.2" height="15.0" fill="rgb(206,189,5)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#collect_nodes_for (8) (256 ms, 1.31%)</title><rect x="1077.7" y="709" width="15.5" height="15.0" fill="rgb(242,60,32)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::AbilityHelper#current_ability (1) (180 ms, 0.92%)</title><rect x="10.4" y="1301" width="10.9" height="15.0" fill="rgb(212,79,36)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#ancestors (48006) (147 ms, 0.75%)</title><rect x="373.7" y="1077" width="8.9" height="15.0" fill="rgb(248,90,52)" rx="2" ry="2" />
<text text-anchor="" x="376.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::Default::ClassMethods#unscoped (8001) (80 ms, 0.41%)</title><rect x="117.3" y="1157" width="4.8" height="15.0" fill="rgb(238,7,22)" rx="2" ry="2" />
<text text-anchor="" x="120.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#public_on (16002) (813 ms, 4.16%)</title><rect x="637.7" y="1221" width="49.0" height="15.0" fill="rgb(208,215,29)" rx="2" ry="2" />
<text text-anchor="" x="640.67" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alch..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (16002) (2 ms, 0.01%)</title><rect x="1090.9" y="389" width="0.1" height="15.0" fill="rgb(227,15,30)" rx="2" ry="2" />
<text text-anchor="" x="1093.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#already_public_for? (24003) (910 ms, 4.65%)</title><rect x="904.8" y="1189" width="54.9" height="15.0" fill="rgb(228,194,48)" rx="2" ry="2" />
<text text-anchor="" x="907.80" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (1) (4 ms, 0.02%)</title><rect x="11.4" y="1141" width="0.2" height="15.0" fill="rgb(218,0,5)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (7 ms, 0.04%)</title><rect x="151.2" y="1125" width="0.4" height="15.0" fill="rgb(245,47,48)" rx="2" ry="2" />
<text text-anchor="" x="154.20" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#Array (8001) (11 ms, 0.06%)</title><rect x="76.4" y="1141" width="0.7" height="15.0" fill="rgb(218,42,26)" rx="2" ry="2" />
<text text-anchor="" x="79.43" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#include (5) (3 ms, 0.02%)</title><rect x="13.2" y="869" width="0.3" height="15.0" fill="rgb(253,50,0)" rx="2" ry="2" />
<text text-anchor="" x="16.25" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (24003) (4 ms, 0.02%)</title><rect x="975.5" y="1125" width="0.2" height="15.0" fill="rgb(216,19,48)" rx="2" ry="2" />
<text text-anchor="" x="978.49" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#status_title (24003) (4,215 ms, 21.56%)</title><rect x="723.3" y="1237" width="254.4" height="15.0" fill="rgb(220,158,50)" rx="2" ry="2" />
<text text-anchor="" x="726.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::Page::PageNatures#status..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (2) (3 ms, 0.02%)</title><rect x="13.3" y="773" width="0.1" height="15.0" fill="rgb(241,153,3)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Rack::MiniProfiler::ActiveRecordInstrumentation#log_with_miniprofiler (2) (153 ms, 0.78%)</title><rect x="1100.1" y="773" width="9.2" height="15.0" fill="rgb(234,144,11)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (3 ms, 0.02%)</title><rect x="856.6" y="1109" width="0.2" height="15.0" fill="rgb(241,219,44)" rx="2" ry="2" />
<text text-anchor="" x="859.60" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8000) (40 ms, 0.20%)</title><rect x="1142.5" y="645" width="2.4" height="15.0" fill="rgb(240,128,3)" rx="2" ry="2" />
<text text-anchor="" x="1145.47" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Attributes::ClassMethods#load_schema! (1) (2 ms, 0.01%)</title><rect x="14.7" y="725" width="0.1" height="15.0" fill="rgb(218,61,46)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1185.7" y="965" width="0.1" height="15.0" fill="rgb(254,130,51)" rx="2" ry="2" />
<text text-anchor="" x="1188.69" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#all? (8001) (19 ms, 0.10%)</title><rect x="88.0" y="1029" width="1.2" height="15.0" fill="rgb(235,45,3)" rx="2" ry="2" />
<text text-anchor="" x="91.04" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#parse (31) (31 ms, 0.16%)</title><rect x="15.7" y="725" width="1.9" height="15.0" fill="rgb(205,98,21)" rx="2" ry="2" />
<text text-anchor="" x="18.68" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::Taggable&gt;#included (1) (3 ms, 0.02%)</title><rect x="20.8" y="965" width="0.2" height="15.0" fill="rgb(222,109,31)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (2 ms, 0.01%)</title><rect x="1103.8" y="581" width="0.1" height="15.0" fill="rgb(239,144,1)" rx="2" ry="2" />
<text text-anchor="" x="1106.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Scoping::ScopeRegistry&gt;#value_for (8001) (34 ms, 0.17%)</title><rect x="110.2" y="1061" width="2.1" height="15.0" fill="rgb(249,148,28)" rx="2" ry="2" />
<text text-anchor="" x="113.20" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#initialize (8001) (24 ms, 0.12%)</title><rect x="132.1" y="1173" width="1.5" height="15.0" fill="rgb(218,166,7)" rx="2" ry="2" />
<text text-anchor="" x="135.11" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Oj::StringWriter#push_object (8001) (3 ms, 0.02%)</title><rect x="987.9" y="1269" width="0.2" height="15.0" fill="rgb(221,48,53)" rx="2" ry="2" />
<text text-anchor="" x="990.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8000) (3 ms, 0.02%)</title><rect x="1175.8" y="917" width="0.2" height="15.0" fill="rgb(205,136,39)" rx="2" ry="2" />
<text text-anchor="" x="1178.79" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Oj::StringWriter#pop (8002) (3 ms, 0.02%)</title><rect x="987.7" y="1269" width="0.2" height="15.0" fill="rgb(227,61,49)" rx="2" ry="2" />
<text text-anchor="" x="990.73" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#time_with_zone (8001) (35 ms, 0.18%)</title><rect x="633.7" y="1189" width="2.1" height="15.0" fill="rgb(223,179,4)" rx="2" ry="2" />
<text text-anchor="" x="636.73" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (5) (2 ms, 0.01%)</title><rect x="12.7" y="821" width="0.1" height="15.0" fill="rgb(219,35,54)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#locked (8001) (142 ms, 0.73%)</title><rect x="138.5" y="1269" width="8.5" height="15.0" fill="rgb(246,171,48)" rx="2" ry="2" />
<text text-anchor="" x="141.45" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#arel_table (8001) (3 ms, 0.02%)</title><rect x="59.0" y="1173" width="0.2" height="15.0" fill="rgb(245,196,25)" rx="2" ry="2" />
<text text-anchor="" x="61.97" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#init_internals (8001) (18 ms, 0.09%)</title><rect x="1024.3" y="1077" width="1.1" height="15.0" fill="rgb(219,102,29)" rx="2" ry="2" />
<text text-anchor="" x="1027.27" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#locked? (8001) (76 ms, 0.39%)</title><rect x="147.3" y="1253" width="4.6" height="15.0" fill="rgb(232,119,51)" rx="2" ry="2" />
<text text-anchor="" x="150.32" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::TreeBuilder#event_location (5350) (3 ms, 0.02%)</title><rect x="16.2" y="677" width="0.2" height="15.0" fill="rgb(229,203,40)" rx="2" ry="2" />
<text text-anchor="" x="19.22" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#initialize (8001) (19 ms, 0.10%)</title><rect x="120.6" y="1093" width="1.2" height="15.0" fill="rgb(223,17,50)" rx="2" ry="2" />
<text text-anchor="" x="123.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::Quoting#type_casted_binds (2) (114 ms, 0.58%)</title><rect x="1093.2" y="773" width="6.9" height="15.0" fill="rgb(221,56,7)" rx="2" ry="2" />
<text text-anchor="" x="1096.19" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#casecmp (24001) (5 ms, 0.03%)</title><rect x="710.6" y="1173" width="0.3" height="15.0" fill="rgb(208,178,18)" rx="2" ry="2" />
<text text-anchor="" x="713.56" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#require (2) (5 ms, 0.03%)</title><rect x="1051.2" y="965" width="0.3" height="15.0" fill="rgb(229,141,20)" rx="2" ry="2" />
<text text-anchor="" x="1054.23" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#associate_records_to_owner (16002) (56 ms, 0.29%)</title><rect x="1177.5" y="1013" width="3.3" height="15.0" fill="rgb(252,110,2)" rx="2" ry="2" />
<text text-anchor="" x="1180.45" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (2) (2,144 ms, 10.97%)</title><rect x="1060.1" y="1061" width="129.4" height="15.0" fill="rgb(225,192,18)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Hash#each (2)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (2) (20 ms, 0.10%)</title><rect x="12.2" y="901" width="1.3" height="15.0" fill="rgb(213,47,10)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (2) (114 ms, 0.58%)</title><rect x="1093.2" y="757" width="6.9" height="15.0" fill="rgb(229,201,53)" rx="2" ry="2" />
<text text-anchor="" x="1096.19" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::Merger#merge (1) (2 ms, 0.01%)</title><rect x="21.0" y="1013" width="0.2" height="15.0" fill="rgb(233,29,13)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#except! (24003) (136 ms, 0.70%)</title><rect x="776.6" y="1125" width="8.2" height="15.0" fill="rgb(214,111,12)" rx="2" ry="2" />
<text text-anchor="" x="779.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#respond_to? (8001) (2 ms, 0.01%)</title><rect x="636.2" y="1173" width="0.1" height="15.0" fill="rgb(248,113,42)" rx="2" ry="2" />
<text text-anchor="" x="639.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (7 ms, 0.04%)</title><rect x="1138.2" y="677" width="0.4" height="15.0" fill="rgb(244,123,31)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (48006) (9 ms, 0.05%)</title><rect x="937.2" y="1125" width="0.5" height="15.0" fill="rgb(231,210,8)" rx="2" ry="2" />
<text text-anchor="" x="940.17" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#getlocal (8001) (12 ms, 0.06%)</title><rect x="689.5" y="1141" width="0.7" height="15.0" fill="rgb(241,39,53)" rx="2" ry="2" />
<text text-anchor="" x="692.47" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#serialize (16002) (72 ms, 0.37%)</title><rect x="1088.1" y="437" width="4.4" height="15.0" fill="rgb(254,118,13)" rx="2" ry="2" />
<text text-anchor="" x="1091.12" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#resolve (24003) (66 ms, 0.34%)</title><rect x="788.2" y="1141" width="3.9" height="15.0" fill="rgb(250,38,51)" rx="2" ry="2" />
<text text-anchor="" x="791.16" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Database#encoding (8002) (3 ms, 0.02%)</title><rect x="1012.2" y="933" width="0.2" height="15.0" fill="rgb(233,182,49)" rx="2" ry="2" />
<text text-anchor="" x="1015.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#visit (4) (256 ms, 1.31%)</title><rect x="1077.7" y="661" width="15.5" height="15.0" fill="rgb(210,141,2)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (2) (1,704 ms, 8.72%)</title><rect x="1069.5" y="1013" width="102.9" height="15.0" fill="rgb(254,200,34)" rx="2" ry="2" />
<text text-anchor="" x="1072.52" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (8000) (114 ms, 0.58%)</title><rect x="1129.2" y="741" width="6.9" height="15.0" fill="rgb(248,4,49)" rx="2" ry="2" />
<text text-anchor="" x="1132.21" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map! (24003) (125 ms, 0.64%)</title><rect x="94.3" y="1061" width="7.5" height="15.0" fill="rgb(233,132,34)" rx="2" ry="2" />
<text text-anchor="" x="97.31" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (49 ms, 0.25%)</title><rect x="984.5" y="1141" width="2.9" height="15.0" fill="rgb(213,211,5)" rx="2" ry="2" />
<text text-anchor="" x="987.45" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Rational#* (8001) (5 ms, 0.03%)</title><rect x="656.9" y="997" width="0.3" height="15.0" fill="rgb(216,131,35)" rx="2" ry="2" />
<text text-anchor="" x="659.88" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#eql? (24000) (14 ms, 0.07%)</title><rect x="831.4" y="1061" width="0.9" height="15.0" fill="rgb(223,50,39)" rx="2" ry="2" />
<text text-anchor="" x="834.39" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#to_a (1) (125 ms, 0.64%)</title><rect x="1004.9" y="997" width="7.5" height="15.0" fill="rgb(235,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (84) (35 ms, 0.18%)</title><rect x="17.7" y="405" width="2.1" height="15.0" fill="rgb(245,121,48)" rx="2" ry="2" />
<text text-anchor="" x="20.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__07167656f5c61697f65747 (8001) (25 ms, 0.13%)</title><rect x="706.6" y="1221" width="1.5" height="15.0" fill="rgb(213,170,54)" rx="2" ry="2" />
<text text-anchor="" x="709.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#locked_by? (24003) (190 ms, 0.97%)</title><rect x="870.7" y="1189" width="11.5" height="15.0" fill="rgb(241,99,35)" rx="2" ry="2" />
<text text-anchor="" x="873.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#attributes (8001) (3 ms, 0.02%)</title><rect x="704.8" y="1173" width="0.1" height="15.0" fill="rgb(218,124,54)" rx="2" ry="2" />
<text text-anchor="" x="707.79" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (7 ms, 0.04%)</title><rect x="707.6" y="1173" width="0.4" height="15.0" fill="rgb(220,166,22)" rx="2" ry="2" />
<text text-anchor="" x="710.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#period_for_utc (24003) (115 ms, 0.59%)</title><rect x="950.8" y="1077" width="6.9" height="15.0" fill="rgb(211,85,44)" rx="2" ry="2" />
<text text-anchor="" x="953.78" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (4 ms, 0.02%)</title><rect x="882.0" y="1109" width="0.2" height="15.0" fill="rgb(238,58,48)" rx="2" ry="2" />
<text text-anchor="" x="884.95" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (213 ms, 1.09%)</title><rect x="1176.7" y="1029" width="12.8" height="15.0" fill="rgb(247,209,34)" rx="2" ry="2" />
<text text-anchor="" x="1179.65" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (32004) (4 ms, 0.02%)</title><rect x="1113.7" y="773" width="0.3" height="15.0" fill="rgb(237,3,32)" rx="2" ry="2" />
<text text-anchor="" x="1116.74" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Instrumenter#instrument (1) (336 ms, 1.72%)</title><rect x="1012.5" y="1189" width="20.3" height="15.0" fill="rgb(222,130,41)" rx="2" ry="2" />
<text text-anchor="" x="1015.47" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#fixed? (16002) (241 ms, 1.23%)</title><rect x="672.2" y="1189" width="14.5" height="15.0" fill="rgb(220,226,11)" rx="2" ry="2" />
<text text-anchor="" x="675.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#as_json (16002) (175 ms, 0.90%)</title><rect x="994.3" y="1253" width="10.5" height="15.0" fill="rgb(252,36,12)" rx="2" ry="2" />
<text text-anchor="" x="997.28" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#define_attribute_method (3) (2 ms, 0.01%)</title><rect x="10.6" y="917" width="0.1" height="15.0" fill="rgb(207,162,38)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#load_dependency (1) (3 ms, 0.02%)</title><rect x="1131.2" y="693" width="0.2" height="15.0" fill="rgb(223,68,41)" rx="2" ry="2" />
<text text-anchor="" x="1134.19" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Generator#each (48006) (7,243 ms, 37.05%)</title><rect x="166.8" y="1189" width="437.2" height="15.0" fill="rgb(210,7,10)" rx="2" ry="2" />
<text text-anchor="" x="169.82" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerator::Generator#each (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Arel_Nodes_And (2) (256 ms, 1.31%)</title><rect x="1077.7" y="645" width="15.5" height="15.0" fill="rgb(226,191,29)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (16002) (6 ms, 0.03%)</title><rect x="641.8" y="1157" width="0.4" height="15.0" fill="rgb(254,57,15)" rx="2" ry="2" />
<text text-anchor="" x="644.83" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8001) (51 ms, 0.26%)</title><rect x="148.8" y="1173" width="3.1" height="15.0" fill="rgb(237,16,27)" rx="2" ry="2" />
<text text-anchor="" x="151.79" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (8001) (24 ms, 0.12%)</title><rect x="29.7" y="1221" width="1.4" height="15.0" fill="rgb(212,184,8)" rx="2" ry="2" />
<text text-anchor="" x="32.65" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter#deserialize (8001) (334 ms, 1.71%)</title><rect x="645.3" y="1109" width="20.2" height="15.0" fill="rgb(243,202,4)" rx="2" ry="2" />
<text text-anchor="" x="648.29" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#__callbacks (8001) (2 ms, 0.01%)</title><rect x="1026.9" y="1029" width="0.2" height="15.0" fill="rgb(220,177,35)" rx="2" ry="2" />
<text text-anchor="" x="1029.94" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#utc (8001) (12 ms, 0.06%)</title><rect x="636.3" y="1205" width="0.8" height="15.0" fill="rgb(236,142,50)" rx="2" ry="2" />
<text text-anchor="" x="639.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#raise_invalid_scope_type! (8001) (6 ms, 0.03%)</title><rect x="127.1" y="1093" width="0.4" height="15.0" fill="rgb(206,43,19)" rx="2" ry="2" />
<text text-anchor="" x="130.13" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (68 ms, 0.35%)</title><rect x="134.3" y="1237" width="4.2" height="15.0" fill="rgb(248,102,49)" rx="2" ry="2" />
<text text-anchor="" x="137.32" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (16002) (110 ms, 0.56%)</title><rect x="1062.9" y="949" width="6.6" height="15.0" fill="rgb(249,94,5)" rx="2" ry="2" />
<text text-anchor="" x="1065.88" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (1) (4 ms, 0.02%)</title><rect x="11.4" y="1109" width="0.2" height="15.0" fill="rgb(233,7,29)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (24003) (9 ms, 0.05%)</title><rect x="877.6" y="1109" width="0.6" height="15.0" fill="rgb(211,50,5)" rx="2" ry="2" />
<text text-anchor="" x="880.59" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (8001) (65 ms, 0.33%)</title><rect x="147.9" y="1221" width="4.0" height="15.0" fill="rgb(223,191,35)" rx="2" ry="2" />
<text text-anchor="" x="150.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveRecord::LegacyYamlAdapter&gt;#convert (8000) (6 ms, 0.03%)</title><rect x="1125.5" y="773" width="0.3" height="15.0" fill="rgb(208,121,6)" rx="2" ry="2" />
<text text-anchor="" x="1128.49" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#each (1) (125 ms, 0.64%)</title><rect x="1004.9" y="981" width="7.5" height="15.0" fill="rgb(247,88,11)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#public_on (48006) (537 ms, 2.75%)</title><rect x="906.4" y="1173" width="32.4" height="15.0" fill="rgb(243,95,20)" rx="2" ry="2" />
<text text-anchor="" x="909.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Al..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#sync_with_transaction_state (16002) (10 ms, 0.05%)</title><rect x="1188.5" y="981" width="0.6" height="15.0" fill="rgb(235,197,26)" rx="2" ry="2" />
<text text-anchor="" x="1191.47" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (1) (2 ms, 0.01%)</title><rect x="1057.8" y="629" width="0.1" height="15.0" fill="rgb(244,225,34)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (6) (2 ms, 0.01%)</title><rect x="14.0" y="965" width="0.1" height="15.0" fill="rgb(223,190,24)" rx="2" ry="2" />
<text text-anchor="" x="16.99" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks#run_callbacks (8000) (32 ms, 0.16%)</title><rect x="1164.1" y="757" width="2.0" height="15.0" fill="rgb(252,194,8)" rx="2" ry="2" />
<text text-anchor="" x="1167.14" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Concurrent::Map#fetch (1) (3 ms, 0.02%)</title><rect x="10.1" y="1061" width="0.2" height="15.0" fill="rgb(206,125,22)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (2) (2 ms, 0.01%)</title><rect x="12.9" y="789" width="0.2" height="15.0" fill="rgb(246,199,10)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Boolean#cast_value (8001) (18 ms, 0.09%)</title><rect x="716.2" y="1077" width="1.1" height="15.0" fill="rgb(232,44,35)" rx="2" ry="2" />
<text text-anchor="" x="719.20" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#attribute_fixed? (16002) (275 ms, 1.41%)</title><rect x="670.1" y="1205" width="16.6" height="15.0" fill="rgb(211,77,9)" rx="2" ry="2" />
<text text-anchor="" x="673.11" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (40005) (39 ms, 0.20%)</title><rect x="598.1" y="1077" width="2.3" height="15.0" fill="rgb(211,36,10)" rx="2" ry="2" />
<text text-anchor="" x="601.06" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialized? (8000) (2 ms, 0.01%)</title><rect x="1138.1" y="677" width="0.1" height="15.0" fill="rgb(208,160,3)" rx="2" ry="2" />
<text text-anchor="" x="1141.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Aggregations#init_internals (8000) (26 ms, 0.13%)</title><rect x="1126.1" y="773" width="1.5" height="15.0" fill="rgb(242,96,13)" rx="2" ry="2" />
<text text-anchor="" x="1129.07" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#call (1) (4 ms, 0.02%)</title><rect x="11.1" y="1013" width="0.2" height="15.0" fill="rgb(254,169,36)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#owner_keys (6) (154 ms, 0.79%)</title><rect x="1060.2" y="1013" width="9.3" height="15.0" fill="rgb(223,216,42)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (2) (101 ms, 0.52%)</title><rect x="14.9" y="1125" width="6.1" height="15.0" fill="rgb(248,90,53)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_index (48006) (65 ms, 0.33%)</title><rect x="316.7" y="1093" width="3.9" height="15.0" fill="rgb(253,46,48)" rx="2" ry="2" />
<text text-anchor="" x="319.67" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (16002) (9 ms, 0.05%)</title><rect x="1057.4" y="981" width="0.5" height="15.0" fill="rgb(205,94,24)" rx="2" ry="2" />
<text text-anchor="" x="1060.36" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (42 ms, 0.21%)</title><rect x="679.1" y="1061" width="2.6" height="15.0" fill="rgb(206,213,38)" rx="2" ry="2" />
<text text-anchor="" x="682.11" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#exec_queries (2) (1,568 ms, 8.02%)</title><rect x="1077.7" y="917" width="94.7" height="15.0" fill="rgb(206,54,0)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8000) (131 ms, 0.67%)</title><rect x="1155.8" y="773" width="7.9" height="15.0" fill="rgb(244,19,5)" rx="2" ry="2" />
<text text-anchor="" x="1158.83" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#load_schema (16002) (10 ms, 0.05%)</title><rect x="1074.2" y="709" width="0.6" height="15.0" fill="rgb(240,73,27)" rx="2" ry="2" />
<text text-anchor="" x="1077.21" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#stale_target? (8001) (12 ms, 0.06%)</title><rect x="68.3" y="1221" width="0.7" height="15.0" fill="rgb(225,223,25)" rx="2" ry="2" />
<text text-anchor="" x="71.28" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (16002) (3 ms, 0.02%)</title><rect x="1091.1" y="405" width="0.2" height="15.0" fill="rgb(206,134,1)" rx="2" ry="2" />
<text text-anchor="" x="1094.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Scoping::ScopeRegistry&gt;#value_for (8001) (88 ms, 0.45%)</title><rect x="51.6" y="1125" width="5.3" height="15.0" fill="rgb(221,204,52)" rx="2" ry="2" />
<text text-anchor="" x="54.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#&lt; (8001) (2 ms, 0.01%)</title><rect x="54.7" y="1077" width="0.2" height="15.0" fill="rgb(214,61,45)" rx="2" ry="2" />
<text text-anchor="" x="57.72" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (16002) (47 ms, 0.24%)</title><rect x="666.0" y="1125" width="2.9" height="15.0" fill="rgb(243,156,40)" rx="2" ry="2" />
<text text-anchor="" x="669.03" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Result#each (2) (963 ms, 4.93%)</title><rect x="1114.3" y="837" width="58.1" height="15.0" fill="rgb(248,26,27)" rx="2" ry="2" />
<text text-anchor="" x="1117.25" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Active..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#subject_class? (16002) (29 ms, 0.15%)</title><rect x="593.1" y="1077" width="1.8" height="15.0" fill="rgb(239,37,40)" rx="2" ry="2" />
<text text-anchor="" x="596.13" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (48006) (11 ms, 0.06%)</title><rect x="842.2" y="1173" width="0.7" height="15.0" fill="rgb(207,40,19)" rx="2" ry="2" />
<text text-anchor="" x="845.24" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#casecmp (24001) (4 ms, 0.02%)</title><rect x="30.9" y="1189" width="0.2" height="15.0" fill="rgb(205,104,32)" rx="2" ry="2" />
<text text-anchor="" x="33.87" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::BelongsToAssociation#reset (8000) (14 ms, 0.07%)</title><rect x="1133.2" y="693" width="0.8" height="15.0" fill="rgb(233,164,34)" rx="2" ry="2" />
<text text-anchor="" x="1136.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader#grouped_records (2) (241 ms, 1.23%)</title><rect x="1045.6" y="1109" width="14.5" height="15.0" fill="rgb(224,152,44)" rx="2" ry="2" />
<text text-anchor="" x="1048.58" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#build (2) (134 ms, 0.69%)</title><rect x="1069.6" y="821" width="8.1" height="15.0" fill="rgb(206,25,28)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#time_with_zone (8001) (31 ms, 0.16%)</title><rect x="662.8" y="1061" width="1.8" height="15.0" fill="rgb(227,22,39)" rx="2" ry="2" />
<text text-anchor="" x="665.77" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#transform_keys (8001) (3 ms, 0.02%)</title><rect x="685.9" y="1141" width="0.2" height="15.0" fill="rgb(216,157,10)" rx="2" ry="2" />
<text text-anchor="" x="688.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Fiber:70128959638540 (19,551 ms, 100.00%)</title><rect x="10.0" y="1365" width="1180.0" height="15.0" fill="rgb(249,195,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Fiber:70128959638540</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (3 ms, 0.02%)</title><rect x="721.9" y="1173" width="0.1" height="15.0" fill="rgb(233,142,32)" rx="2" ry="2" />
<text text-anchor="" x="724.87" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Write#write_attribute (8000) (88 ms, 0.45%)</title><rect x="1147.5" y="709" width="5.3" height="15.0" fill="rgb(205,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1150.49" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (1) (2 ms, 0.01%)</title><rect x="21.1" y="965" width="0.1" height="15.0" fill="rgb(247,149,7)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Querying#find_by_sql (1) (5 ms, 0.03%)</title><rect x="10.5" y="1109" width="0.3" height="15.0" fill="rgb(249,176,7)" rx="2" ry="2" />
<text text-anchor="" x="13.47" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#name (16002) (5 ms, 0.03%)</title><rect x="115.2" y="1029" width="0.3" height="15.0" fill="rgb(210,147,30)" rx="2" ry="2" />
<text text-anchor="" x="118.15" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (8000) (2 ms, 0.01%)</title><rect x="1138.8" y="661" width="0.1" height="15.0" fill="rgb(235,18,35)" rx="2" ry="2" />
<text text-anchor="" x="1141.83" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TimezonePeriod#initialize (24003) (36 ms, 0.18%)</title><rect x="955.5" y="1013" width="2.2" height="15.0" fill="rgb(244,179,2)" rx="2" ry="2" />
<text text-anchor="" x="958.51" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (48006) (95 ms, 0.49%)</title><rect x="922.7" y="1109" width="5.7" height="15.0" fill="rgb(209,157,51)" rx="2" ry="2" />
<text text-anchor="" x="925.67" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#has_key? (120015) (26 ms, 0.13%)</title><rect x="805.5" y="1093" width="1.5" height="15.0" fill="rgb(209,88,43)" rx="2" ry="2" />
<text text-anchor="" x="808.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (38 ms, 0.19%)</title><rect x="717.6" y="1125" width="2.3" height="15.0" fill="rgb(224,188,6)" rx="2" ry="2" />
<text text-anchor="" x="720.63" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#time_now (24003) (39 ms, 0.20%)</title><rect x="889.6" y="1157" width="2.3" height="15.0" fill="rgb(249,199,46)" rx="2" ry="2" />
<text text-anchor="" x="892.58" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (48006) (8 ms, 0.04%)</title><rect x="937.7" y="1125" width="0.5" height="15.0" fill="rgb(234,61,8)" rx="2" ry="2" />
<text text-anchor="" x="940.70" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8000) (20 ms, 0.10%)</title><rect x="1170.4" y="757" width="1.2" height="15.0" fill="rgb(210,191,18)" rx="2" ry="2" />
<text text-anchor="" x="1173.42" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#zone (48006) (48 ms, 0.25%)</title><rect x="885.3" y="1173" width="2.9" height="15.0" fill="rgb(224,89,11)" rx="2" ry="2" />
<text text-anchor="" x="888.29" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (24003) (4 ms, 0.02%)</title><rect x="958.8" y="1125" width="0.2" height="15.0" fill="rgb(217,229,12)" rx="2" ry="2" />
<text text-anchor="" x="961.79" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Essence::ClassMethods#register_as_essence_association! (2) (7 ms, 0.04%)</title><rect x="13.5" y="997" width="0.4" height="15.0" fill="rgb(235,72,37)" rx="2" ry="2" />
<text text-anchor="" x="16.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::String#cast_value (8001) (17 ms, 0.09%)</title><rect x="677.2" y="1029" width="1.0" height="15.0" fill="rgb(248,18,38)" rx="2" ry="2" />
<text text-anchor="" x="680.21" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (4) (7 ms, 0.04%)</title><rect x="1070.8" y="789" width="0.4" height="15.0" fill="rgb(226,158,21)" rx="2" ry="2" />
<text text-anchor="" x="1073.78" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (96012) (82 ms, 0.42%)</title><rect x="506.7" y="1013" width="5.0" height="15.0" fill="rgb(223,57,43)" rx="2" ry="2" />
<text text-anchor="" x="509.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (37 ms, 0.19%)</title><rect x="715.1" y="1141" width="2.3" height="15.0" fill="rgb(254,48,9)" rx="2" ry="2" />
<text text-anchor="" x="718.13" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (2) (2 ms, 0.01%)</title><rect x="12.9" y="821" width="0.2" height="15.0" fill="rgb(223,78,27)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#public_until (8001) (181 ms, 0.93%)</title><rect x="694.3" y="1221" width="10.9" height="15.0" fill="rgb(209,6,45)" rx="2" ry="2" />
<text text-anchor="" x="697.30" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8001) (203 ms, 1.04%)</title><rect x="647.9" y="1045" width="12.2" height="15.0" fill="rgb(222,117,43)" rx="2" ry="2" />
<text text-anchor="" x="650.85" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (8001) (93 ms, 0.48%)</title><rect x="96.0" y="1045" width="5.6" height="15.0" fill="rgb(241,136,14)" rx="2" ry="2" />
<text text-anchor="" x="99.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (2) (21 ms, 0.11%)</title><rect x="12.2" y="981" width="1.3" height="15.0" fill="rgb(210,46,2)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::TreeBuilder#set_start_location (4695) (3 ms, 0.02%)</title><rect x="17.3" y="645" width="0.2" height="15.0" fill="rgb(243,168,17)" rx="2" ry="2" />
<text text-anchor="" x="20.32" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#all (32004) (13 ms, 0.07%)</title><rect x="579.0" y="1029" width="0.8" height="15.0" fill="rgb(226,196,45)" rx="2" ry="2" />
<text text-anchor="" x="581.99" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8001) (142 ms, 0.73%)</title><rect x="979.1" y="1205" width="8.6" height="15.0" fill="rgb(210,99,0)" rx="2" ry="2" />
<text text-anchor="" x="982.15" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#expand_from_hash (2) (134 ms, 0.69%)</title><rect x="1069.6" y="869" width="8.1" height="15.0" fill="rgb(226,216,32)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (1) (6 ms, 0.03%)</title><rect x="11.6" y="1045" width="0.4" height="15.0" fill="rgb(222,194,28)" rx="2" ry="2" />
<text text-anchor="" x="14.64" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (3 ms, 0.02%)</title><rect x="1099.6" y="725" width="0.2" height="15.0" fill="rgb(253,11,52)" rx="2" ry="2" />
<text text-anchor="" x="1102.64" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (24003) (56 ms, 0.29%)</title><rect x="865.6" y="1125" width="3.4" height="15.0" fill="rgb(228,188,32)" rx="2" ry="2" />
<text text-anchor="" x="868.61" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#available_locales (1) (76 ms, 0.39%)</title><rect x="15.3" y="869" width="4.6" height="15.0" fill="rgb(246,127,17)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::ClassMethods#_reflect_on_association (16002) (17 ms, 0.09%)</title><rect x="1049.7" y="1061" width="1.0" height="15.0" fill="rgb(251,33,19)" rx="2" ry="2" />
<text text-anchor="" x="1052.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#scoping (1) (3 ms, 0.02%)</title><rect x="21.0" y="1109" width="0.2" height="15.0" fill="rgb(218,222,53)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (8000) (4 ms, 0.02%)</title><rect x="1139.8" y="693" width="0.2" height="15.0" fill="rgb(223,140,36)" rx="2" ry="2" />
<text text-anchor="" x="1142.79" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#association_key_type (2) (2 ms, 0.01%)</title><rect x="1061.8" y="917" width="0.1" height="15.0" fill="rgb(240,143,49)" rx="2" ry="2" />
<text text-anchor="" x="1064.80" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks::CallbackChain#empty? (8000) (2 ms, 0.01%)</title><rect x="1165.8" y="741" width="0.1" height="15.0" fill="rgb(251,155,9)" rx="2" ry="2" />
<text text-anchor="" x="1168.77" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#level (8001) (79 ms, 0.40%)</title><rect x="133.7" y="1269" width="4.8" height="15.0" fill="rgb(210,128,43)" rx="2" ry="2" />
<text text-anchor="" x="136.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#extensions (8001) (12 ms, 0.06%)</title><rect x="49.6" y="1157" width="0.7" height="15.0" fill="rgb(249,143,23)" rx="2" ry="2" />
<text text-anchor="" x="52.56" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet::YAMLEncoder#decode (8001) (3 ms, 0.02%)</title><rect x="1023.7" y="1093" width="0.3" height="15.0" fill="rgb(235,150,1)" rx="2" ry="2" />
<text text-anchor="" x="1026.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AbstractController::Rendering#render (1) (4 ms, 0.02%)</title><rect x="10.0" y="1221" width="0.3" height="15.0" fill="rgb(209,169,12)" rx="2" ry="2" />
<text text-anchor="" x="13.04" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Content&gt;#available (1) (4 ms, 0.02%)</title><rect x="14.7" y="1125" width="0.2" height="15.0" fill="rgb(250,174,32)" rx="2" ry="2" />
<text text-anchor="" x="17.68" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#class_eval (2) (8 ms, 0.04%)</title><rect x="13.9" y="997" width="0.5" height="15.0" fill="rgb(232,133,28)" rx="2" ry="2" />
<text text-anchor="" x="16.92" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::WhereClauseFactory#build (2) (134 ms, 0.69%)</title><rect x="1069.6" y="901" width="8.1" height="15.0" fill="rgb(205,6,44)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#editable_by? (32004) (419 ms, 2.14%)</title><rect x="565.5" y="1093" width="25.3" height="15.0" fill="rgb(252,208,16)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#is_a? (24003) (8 ms, 0.04%)</title><rect x="942.9" y="1125" width="0.5" height="15.0" fill="rgb(249,35,34)" rx="2" ry="2" />
<text text-anchor="" x="945.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#getlocal (24003) (36 ms, 0.18%)</title><rect x="946.7" y="1093" width="2.2" height="15.0" fill="rgb(227,88,8)" rx="2" ry="2" />
<text text-anchor="" x="949.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#preprocess_order_args (8001) (315 ms, 1.61%)</title><rect x="84.7" y="1077" width="19.0" height="15.0" fill="rgb(251,134,36)" rx="2" ry="2" />
<text text-anchor="" x="87.73" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Config&gt;#read_file (1) (3 ms, 0.02%)</title><rect x="15.1" y="933" width="0.1" height="15.0" fill="rgb(208,124,0)" rx="2" ry="2" />
<text text-anchor="" x="18.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::Bind#&lt;&lt; (16000) (4 ms, 0.02%)</title><rect x="1079.2" y="373" width="0.2" height="15.0" fill="rgb(211,41,47)" rx="2" ry="2" />
<text text-anchor="" x="1082.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_sym (48006) (10 ms, 0.05%)</title><rect x="938.2" y="1125" width="0.6" height="15.0" fill="rgb(207,202,12)" rx="2" ry="2" />
<text text-anchor="" x="941.19" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#klass (8001) (9 ms, 0.05%)</title><rect x="67.8" y="1221" width="0.5" height="15.0" fill="rgb(254,24,25)" rx="2" ry="2" />
<text text-anchor="" x="70.76" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#hash (16002) (2 ms, 0.01%)</title><rect x="1114.0" y="773" width="0.1" height="15.0" fill="rgb(232,195,29)" rx="2" ry="2" />
<text text-anchor="" x="1116.98" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#any? (8001) (2 ms, 0.01%)</title><rect x="92.4" y="1061" width="0.1" height="15.0" fill="rgb(250,5,8)" rx="2" ry="2" />
<text text-anchor="" x="95.40" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (2 ms, 0.01%)</title><rect x="714.2" y="1157" width="0.1" height="15.0" fill="rgb(216,197,1)" rx="2" ry="2" />
<text text-anchor="" x="717.16" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#any? (40005) (73 ms, 0.37%)</title><rect x="302.6" y="1045" width="4.4" height="15.0" fill="rgb(226,3,53)" rx="2" ry="2" />
<text text-anchor="" x="305.59" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#&lt; (8001) (5 ms, 0.03%)</title><rect x="126.9" y="1077" width="0.2" height="15.0" fill="rgb(235,18,12)" rx="2" ry="2" />
<text text-anchor="" x="129.85" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (66 ms, 0.34%)</title><rect x="1100.1" y="693" width="4.0" height="15.0" fill="rgb(214,178,50)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#inverse_name (8000) (3 ms, 0.02%)</title><rect x="1136.5" y="709" width="0.2" height="15.0" fill="rgb(235,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1139.55" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::Default::ClassMethods#build_default_scope (8001) (33 ms, 0.17%)</title><rect x="129.4" y="1141" width="2.0" height="15.0" fill="rgb(215,108,20)" rx="2" ry="2" />
<text text-anchor="" x="132.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#reset_scope (8001) (8 ms, 0.04%)</title><rect x="44.7" y="1221" width="0.4" height="15.0" fill="rgb(227,63,10)" rx="2" ry="2" />
<text text-anchor="" x="47.66" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (1) (6 ms, 0.03%)</title><rect x="11.6" y="1109" width="0.4" height="15.0" fill="rgb(251,34,17)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FalseClass#=== (16002) (2 ms, 0.01%)</title><rect x="1091.0" y="405" width="0.1" height="15.0" fill="rgb(208,11,50)" rx="2" ry="2" />
<text text-anchor="" x="1093.97" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (2) (7 ms, 0.04%)</title><rect x="10.9" y="1093" width="0.4" height="15.0" fill="rgb(225,182,45)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::ScalarScanner#tokenize (569) (2 ms, 0.01%)</title><rect x="19.5" y="229" width="0.1" height="15.0" fill="rgb(229,170,39)" rx="2" ry="2" />
<text text-anchor="" x="22.50" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MonitorMixin#mon_synchronize (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1157" width="7.6" height="15.0" fill="rgb(221,179,36)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#reverse! (48006) (11 ms, 0.06%)</title><rect x="191.3" y="1109" width="0.6" height="15.0" fill="rgb(230,64,27)" rx="2" ry="2" />
<text text-anchor="" x="194.26" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#root (8001) (31 ms, 0.16%)</title><rect x="720.2" y="1269" width="1.9" height="15.0" fill="rgb(225,169,9)" rx="2" ry="2" />
<text text-anchor="" x="723.23" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (74) (24 ms, 0.12%)</title><rect x="17.9" y="229" width="1.5" height="15.0" fill="rgb(238,46,17)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#with_value_from_user (8000) (29 ms, 0.15%)</title><rect x="1149.9" y="661" width="1.8" height="15.0" fill="rgb(235,226,46)" rx="2" ry="2" />
<text text-anchor="" x="1152.95" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (48006) (7 ms, 0.04%)</title><rect x="518.0" y="1061" width="0.4" height="15.0" fill="rgb(244,225,38)" rx="2" ry="2" />
<text text-anchor="" x="521.02" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#concat (72009) (25 ms, 0.13%)</title><rect x="815.6" y="1109" width="1.5" height="15.0" fill="rgb(250,100,5)" rx="2" ry="2" />
<text text-anchor="" x="818.56" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ClassMethods#current_scope= (16002) (68 ms, 0.35%)</title><rect x="112.3" y="1077" width="4.0" height="15.0" fill="rgb(250,72,54)" rx="2" ry="2" />
<text text-anchor="" x="115.26" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#revive_hash (31) (35 ms, 0.18%)</title><rect x="17.7" y="469" width="2.1" height="15.0" fill="rgb(207,219,26)" rx="2" ry="2" />
<text text-anchor="" x="20.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#all (8001) (3 ms, 0.02%)</title><rect x="29.5" y="1221" width="0.2" height="15.0" fill="rgb(220,27,8)" rx="2" ry="2" />
<text text-anchor="" x="32.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (43 ms, 0.22%)</title><rect x="675.7" y="1093" width="2.6" height="15.0" fill="rgb(216,151,48)" rx="2" ry="2" />
<text text-anchor="" x="678.71" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="1045.2" y="1141" width="0.1" height="15.0" fill="rgb(206,156,7)" rx="2" ry="2" />
<text text-anchor="" x="1048.18" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Rules#relevant_rules_for_match (48006) (6,246 ms, 31.95%)</title><rect x="180.3" y="1141" width="377.0" height="15.0" fill="rgb(230,149,47)" rx="2" ry="2" />
<text text-anchor="" x="183.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanCan::Ability::Rules#relevant_rules_for_match (48..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (165 ms, 0.84%)</title><rect x="11.4" y="1237" width="9.9" height="15.0" fill="rgb(248,78,17)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Helpers::Numeric#cast (16002) (42 ms, 0.21%)</title><rect x="1088.9" y="421" width="2.5" height="15.0" fill="rgb(228,47,39)" rx="2" ry="2" />
<text text-anchor="" x="1091.89" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#yaml_encoder (8000) (3 ms, 0.02%)</title><rect x="1167.8" y="773" width="0.2" height="15.0" fill="rgb(244,95,49)" rx="2" ry="2" />
<text text-anchor="" x="1170.81" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8000) (31 ms, 0.16%)</title><rect x="1161.3" y="645" width="1.9" height="15.0" fill="rgb(206,122,31)" rx="2" ry="2" />
<text text-anchor="" x="1164.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#already_public_for? (8001) (943 ms, 4.82%)</title><rect x="637.1" y="1237" width="56.9" height="15.0" fill="rgb(207,59,18)" rx="2" ry="2" />
<text text-anchor="" x="640.08" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchem..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter#convert_time_to_time_zone (8001) (5 ms, 0.03%)</title><rect x="700.4" y="1093" width="0.2" height="15.0" fill="rgb(244,27,27)" rx="2" ry="2" />
<text text-anchor="" x="703.37" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#safe_constantize (2) (3 ms, 0.02%)</title><rect x="1057.7" y="869" width="0.2" height="15.0" fill="rgb(235,95,40)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#page_status_titles (8001) (4,228 ms, 21.63%)</title><rect x="722.5" y="1253" width="255.2" height="15.0" fill="rgb(227,149,28)" rx="2" ry="2" />
<text text-anchor="" x="725.50" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::PageTreeSerializer#page_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#convert_key (16002) (15 ms, 0.08%)</title><rect x="1061.0" y="949" width="0.9" height="15.0" fill="rgb(211,144,43)" rx="2" ry="2" />
<text text-anchor="" x="1063.98" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Compatibility#preserve_timezone (24003) (9 ms, 0.05%)</title><rect x="958.2" y="1109" width="0.6" height="15.0" fill="rgb(231,11,11)" rx="2" ry="2" />
<text text-anchor="" x="961.22" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::QueryAttribute#value_for_database (16002) (5 ms, 0.03%)</title><rect x="1099.8" y="741" width="0.3" height="15.0" fill="rgb(244,110,36)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator#each (2) (1,704 ms, 8.72%)</title><rect x="1069.5" y="997" width="102.9" height="15.0" fill="rgb(211,4,37)" rx="2" ry="2" />
<text text-anchor="" x="1072.52" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerator#e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded? (8001) (2 ms, 0.01%)</title><rect x="44.4" y="1205" width="0.2" height="15.0" fill="rgb(229,146,30)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#add_associations (1) (3 ms, 0.02%)</title><rect x="11.1" y="997" width="0.2" height="15.0" fill="rgb(208,85,42)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (4) (42 ms, 0.21%)</title><rect x="12.0" y="1157" width="2.6" height="15.0" fill="rgb(236,10,6)" rx="2" ry="2" />
<text text-anchor="" x="15.03" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#acts_like? (24003) (23 ms, 0.12%)</title><rect x="901.6" y="1141" width="1.4" height="15.0" fill="rgb(219,169,14)" rx="2" ry="2" />
<text text-anchor="" x="904.59" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#delete (312039) (44 ms, 0.23%)</title><rect x="782.2" y="1093" width="2.6" height="15.0" fill="rgb(248,125,29)" rx="2" ry="2" />
<text text-anchor="" x="785.16" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (1448) (32 ms, 0.16%)</title><rect x="17.8" y="293" width="1.9" height="15.0" fill="rgb(251,167,33)" rx="2" ry="2" />
<text text-anchor="" x="20.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#deep_transform_keys (31) (6 ms, 0.03%)</title><rect x="15.3" y="741" width="0.3" height="15.0" fill="rgb(250,55,46)" rx="2" ry="2" />
<text text-anchor="" x="18.31" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (1) (165 ms, 0.84%)</title><rect x="11.4" y="1285" width="9.9" height="15.0" fill="rgb(231,116,35)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#class_eval (2) (2 ms, 0.01%)</title><rect x="20.6" y="965" width="0.1" height="15.0" fill="rgb(228,61,28)" rx="2" ry="2" />
<text text-anchor="" x="23.56" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#check_validity! (16002) (58 ms, 0.30%)</title><rect x="1054.8" y="1029" width="3.5" height="15.0" fill="rgb(246,203,25)" rx="2" ry="2" />
<text text-anchor="" x="1057.84" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[]= (8000) (7 ms, 0.04%)</title><rect x="1152.1" y="661" width="0.4" height="15.0" fill="rgb(212,141,8)" rx="2" ry="2" />
<text text-anchor="" x="1155.07" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Hash&gt;#[] (16002) (41 ms, 0.21%)</title><rect x="995.3" y="1237" width="2.5" height="15.0" fill="rgb(233,18,24)" rx="2" ry="2" />
<text text-anchor="" x="998.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TimezonePeriod#initialize (8001) (12 ms, 0.06%)</title><rect x="692.6" y="1061" width="0.7" height="15.0" fill="rgb(227,17,40)" rx="2" ry="2" />
<text text-anchor="" x="695.56" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (1) (3 ms, 0.02%)</title><rect x="21.0" y="1061" width="0.2" height="15.0" fill="rgb(233,189,34)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (19 ms, 0.10%)</title><rect x="134.8" y="1205" width="1.2" height="15.0" fill="rgb(219,214,10)" rx="2" ry="2" />
<text text-anchor="" x="137.82" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (8001) (2 ms, 0.01%)</title><rect x="90.5" y="1029" width="0.1" height="15.0" fill="rgb(232,199,26)" rx="2" ry="2" />
<text text-anchor="" x="93.47" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#^ (16002) (2 ms, 0.01%)</title><rect x="1045.0" y="1141" width="0.2" height="15.0" fill="rgb(208,76,7)" rx="2" ry="2" />
<text text-anchor="" x="1048.04" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (2) (101 ms, 0.52%)</title><rect x="14.9" y="1109" width="6.1" height="15.0" fill="rgb(225,17,16)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Rules#possible_relevant_rules (48006) (3,922 ms, 20.06%)</title><rect x="320.6" y="1109" width="236.7" height="15.0" fill="rgb(212,10,1)" rx="2" ry="2" />
<text text-anchor="" x="323.59" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanCan::Ability::Rules#possible..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_slice (31) (35 ms, 0.18%)</title><rect x="17.6" y="565" width="2.2" height="15.0" fill="rgb(252,204,13)" rx="2" ry="2" />
<text text-anchor="" x="20.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (18 ms, 0.09%)</title><rect x="28.0" y="1221" width="1.1" height="15.0" fill="rgb(231,162,0)" rx="2" ry="2" />
<text text-anchor="" x="31.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (16002) (2 ms, 0.01%)</title><rect x="116.0" y="1029" width="0.1" height="15.0" fill="rgb(226,218,42)" rx="2" ry="2" />
<text text-anchor="" x="118.97" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (63 ms, 0.32%)</title><rect x="134.6" y="1221" width="3.8" height="15.0" fill="rgb(218,36,25)" rx="2" ry="2" />
<text text-anchor="" x="137.56" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (102 ms, 0.52%)</title><rect x="981.3" y="1157" width="6.1" height="15.0" fill="rgb(235,74,37)" rx="2" ry="2" />
<text text-anchor="" x="984.28" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#foreign_key (8000) (2 ms, 0.01%)</title><rect x="1173.1" y="949" width="0.1" height="15.0" fill="rgb(238,179,18)" rx="2" ry="2" />
<text text-anchor="" x="1176.10" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#transfer_time_values_to_utc_constructor (8001) (8 ms, 0.04%)</title><rect x="635.3" y="1141" width="0.4" height="15.0" fill="rgb(212,214,17)" rx="2" ry="2" />
<text text-anchor="" x="638.26" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (16002) (4 ms, 0.02%)</title><rect x="1179.3" y="981" width="0.2" height="15.0" fill="rgb(211,136,49)" rx="2" ry="2" />
<text text-anchor="" x="1182.27" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (3 ms, 0.02%)</title><rect x="881.3" y="1093" width="0.2" height="15.0" fill="rgb(229,53,54)" rx="2" ry="2" />
<text text-anchor="" x="884.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#load_target (8001) (23 ms, 0.12%)</title><rect x="39.4" y="1173" width="1.4" height="15.0" fill="rgb(221,192,38)" rx="2" ry="2" />
<text text-anchor="" x="42.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (2) (100 ms, 0.51%)</title><rect x="14.9" y="1045" width="6.1" height="15.0" fill="rgb(226,125,33)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (24003) (4 ms, 0.02%)</title><rect x="975.2" y="1125" width="0.3" height="15.0" fill="rgb(223,19,46)" rx="2" ry="2" />
<text text-anchor="" x="978.25" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (41) (34 ms, 0.17%)</title><rect x="17.7" y="325" width="2.0" height="15.0" fill="rgb(212,132,6)" rx="2" ry="2" />
<text text-anchor="" x="20.68" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#attributes_builder (8000) (4 ms, 0.02%)</title><rect x="1172.1" y="789" width="0.3" height="15.0" fill="rgb(239,38,51)" rx="2" ry="2" />
<text text-anchor="" x="1175.12" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#flatten! (16002) (27 ms, 0.14%)</title><rect x="92.7" y="1061" width="1.6" height="15.0" fill="rgb(215,32,0)" rx="2" ry="2" />
<text text-anchor="" x="95.67" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread:70128956026400 (19,551 ms, 100.00%)</title><rect x="10.0" y="1381" width="1180.0" height="15.0" fill="rgb(226,28,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Thread:70128956026400</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#clone (8001) (73 ms, 0.37%)</title><rect x="104.0" y="1077" width="4.4" height="15.0" fill="rgb(230,217,3)" rx="2" ry="2" />
<text text-anchor="" x="106.96" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#symbolize_keys (8001) (7 ms, 0.04%)</title><rect x="685.7" y="1157" width="0.4" height="15.0" fill="rgb(237,114,21)" rx="2" ry="2" />
<text text-anchor="" x="688.73" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value_for_database (16002) (94 ms, 0.48%)</title><rect x="1086.8" y="453" width="5.7" height="15.0" fill="rgb(221,0,36)" rx="2" ry="2" />
<text text-anchor="" x="1089.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#page_permissions (8001) (7,890 ms, 40.36%)</title><rect x="152.4" y="1253" width="476.1" height="15.0" fill="rgb(209,177,13)" rx="2" ry="2" />
<text text-anchor="" x="155.36" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::PageTreeSerializer#page_permissions (8001)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (24003) (20 ms, 0.10%)</title><rect x="867.6" y="1093" width="1.2" height="15.0" fill="rgb(209,53,38)" rx="2" ry="2" />
<text text-anchor="" x="870.58" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#config (24003) (18 ms, 0.09%)</title><rect x="818.0" y="1093" width="1.1" height="15.0" fill="rgb(205,221,44)" rx="2" ry="2" />
<text text-anchor="" x="821.02" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__4656074786 (8001) (73 ms, 0.37%)</title><rect x="134.0" y="1253" width="4.5" height="15.0" fill="rgb(247,160,23)" rx="2" ry="2" />
<text text-anchor="" x="137.02" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (8001) (19 ms, 0.10%)</title><rect x="101.8" y="1061" width="1.2" height="15.0" fill="rgb(250,101,40)" rx="2" ry="2" />
<text text-anchor="" x="104.83" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Benchmark&gt;#ms (1) (4 ms, 0.02%)</title><rect x="10.0" y="1269" width="0.3" height="15.0" fill="rgb(230,100,8)" rx="2" ry="2" />
<text text-anchor="" x="13.03" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (8 ms, 0.04%)</title><rect x="677.6" y="1013" width="0.5" height="15.0" fill="rgb(232,205,9)" rx="2" ry="2" />
<text text-anchor="" x="680.63" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_sym (24003) (5 ms, 0.03%)</title><rect x="975.7" y="1125" width="0.3" height="15.0" fill="rgb(218,152,19)" rx="2" ry="2" />
<text text-anchor="" x="978.72" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__07167656f5c61697f65747 (8001) (22 ms, 0.11%)</title><rect x="27.8" y="1237" width="1.3" height="15.0" fill="rgb(244,158,30)" rx="2" ry="2" />
<text text-anchor="" x="30.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#where! (1) (2 ms, 0.01%)</title><rect x="14.7" y="933" width="0.2" height="15.0" fill="rgb(214,11,32)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#empty? (8001) (27 ms, 0.14%)</title><rect x="62.6" y="1205" width="1.7" height="15.0" fill="rgb(244,154,21)" rx="2" ry="2" />
<text text-anchor="" x="65.63" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (11 ms, 0.06%)</title><rect x="719.1" y="1077" width="0.6" height="15.0" fill="rgb(243,67,18)" rx="2" ry="2" />
<text text-anchor="" x="722.06" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (48006) (21 ms, 0.11%)</title><rect x="924.3" y="1093" width="1.3" height="15.0" fill="rgb(212,76,33)" rx="2" ry="2" />
<text text-anchor="" x="927.35" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (3 ms, 0.02%)</title><rect x="1151.9" y="645" width="0.2" height="15.0" fill="rgb(228,86,35)" rx="2" ry="2" />
<text text-anchor="" x="1154.90" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (24003) (10 ms, 0.05%)</title><rect x="865.0" y="1125" width="0.6" height="15.0" fill="rgb(246,80,30)" rx="2" ry="2" />
<text text-anchor="" x="868.01" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::ScalarScanner#tokenize (1341) (5 ms, 0.03%)</title><rect x="18.9" y="117" width="0.3" height="15.0" fill="rgb(209,29,41)" rx="2" ry="2" />
<text text-anchor="" x="21.94" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (8001) (34 ms, 0.17%)</title><rect x="708.9" y="1205" width="2.0" height="15.0" fill="rgb(241,214,41)" rx="2" ry="2" />
<text text-anchor="" x="711.85" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (24003) (78 ms, 0.40%)</title><rect x="896.6" y="1125" width="4.7" height="15.0" fill="rgb(223,38,8)" rx="2" ry="2" />
<text text-anchor="" x="899.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#downcase (8001) (6 ms, 0.03%)</title><rect x="101.2" y="1013" width="0.4" height="15.0" fill="rgb(224,173,14)" rx="2" ry="2" />
<text text-anchor="" x="104.25" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#polymorphic? (8000) (2 ms, 0.01%)</title><rect x="1135.7" y="661" width="0.1" height="15.0" fill="rgb(253,201,1)" rx="2" ry="2" />
<text text-anchor="" x="1138.70" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::Composite#&lt;&lt; (16000) (23 ms, 0.12%)</title><rect x="1078.4" y="389" width="1.4" height="15.0" fill="rgb(234,176,25)" rx="2" ry="2" />
<text text-anchor="" x="1081.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_variable_defined? (8000) (3 ms, 0.02%)</title><rect x="1165.3" y="725" width="0.2" height="15.0" fill="rgb(219,121,25)" rx="2" ry="2" />
<text text-anchor="" x="1168.27" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (7 ms, 0.04%)</title><rect x="1176.0" y="917" width="0.4" height="15.0" fill="rgb(253,144,27)" rx="2" ry="2" />
<text text-anchor="" x="1178.99" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (14 ms, 0.07%)</title><rect x="88.4" y="1013" width="0.8" height="15.0" fill="rgb(242,216,14)" rx="2" ry="2" />
<text text-anchor="" x="91.39" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (24003) (29 ms, 0.15%)</title><rect x="863.3" y="1125" width="1.7" height="15.0" fill="rgb(206,90,21)" rx="2" ry="2" />
<text text-anchor="" x="866.26" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#has_children (8001) (1,209 ms, 6.18%)</title><rect x="60.7" y="1269" width="73.0" height="15.0" fill="rgb(211,150,19)" rx="2" ry="2" />
<text text-anchor="" x="63.74" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (24003) (175 ms, 0.90%)</title><rect x="871.6" y="1173" width="10.6" height="15.0" fill="rgb(208,78,17)" rx="2" ry="2" />
<text text-anchor="" x="874.63" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#inspect (2) (38 ms, 0.19%)</title><rect x="1100.3" y="613" width="2.3" height="15.0" fill="rgb(245,165,54)" rx="2" ry="2" />
<text text-anchor="" x="1103.32" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#type_for_attribute (2) (2 ms, 0.01%)</title><rect x="1061.8" y="901" width="0.1" height="15.0" fill="rgb(254,148,54)" rx="2" ry="2" />
<text text-anchor="" x="1064.80" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#hash (24003) (43 ms, 0.22%)</title><rect x="832.3" y="1061" width="2.6" height="15.0" fill="rgb(211,43,4)" rx="2" ry="2" />
<text text-anchor="" x="835.26" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#attributes_builder (8001) (3 ms, 0.02%)</title><rect x="1032.6" y="1109" width="0.2" height="15.0" fill="rgb(239,112,52)" rx="2" ry="2" />
<text text-anchor="" x="1035.57" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DatabaseStatements#to_sql_and_binds (2) (256 ms, 1.31%)</title><rect x="1077.7" y="853" width="15.5" height="15.0" fill="rgb(234,49,41)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16000) (2 ms, 0.01%)</title><rect x="1176.5" y="949" width="0.1" height="15.0" fill="rgb(212,12,47)" rx="2" ry="2" />
<text text-anchor="" x="1179.45" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#fixed_attributes (48006) (17 ms, 0.09%)</title><rect x="932.6" y="1141" width="1.0" height="15.0" fill="rgb(206,81,19)" rx="2" ry="2" />
<text text-anchor="" x="935.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Concurrent::Map#fetch_or_store (1) (3 ms, 0.02%)</title><rect x="10.1" y="1077" width="0.2" height="15.0" fill="rgb(232,51,40)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="720.0" y="1173" width="0.2" height="15.0" fill="rgb(246,34,35)" rx="2" ry="2" />
<text text-anchor="" x="723.01" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#value_for (8001) (69 ms, 0.35%)</title><rect x="52.1" y="1109" width="4.1" height="15.0" fill="rgb(229,131,37)" rx="2" ry="2" />
<text text-anchor="" x="55.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (4) (41 ms, 0.21%)</title><rect x="12.0" y="1077" width="2.5" height="15.0" fill="rgb(216,55,3)" rx="2" ry="2" />
<text text-anchor="" x="15.04" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (8000) (11 ms, 0.06%)</title><rect x="1127.6" y="773" width="0.7" height="15.0" fill="rgb(224,166,34)" rx="2" ry="2" />
<text text-anchor="" x="1130.61" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8001) (55 ms, 0.28%)</title><rect x="148.6" y="1189" width="3.3" height="15.0" fill="rgb(224,29,47)" rx="2" ry="2" />
<text text-anchor="" x="151.55" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#create (8001) (57 ms, 0.29%)</title><rect x="118.3" y="1125" width="3.5" height="15.0" fill="rgb(234,160,22)" rx="2" ry="2" />
<text text-anchor="" x="121.32" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (3 ms, 0.02%)</title><rect x="1092.5" y="469" width="0.2" height="15.0" fill="rgb(247,107,18)" rx="2" ry="2" />
<text text-anchor="" x="1095.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::OrderPredications#asc (8001) (21 ms, 0.11%)</title><rect x="99.9" y="1013" width="1.2" height="15.0" fill="rgb(213,137,26)" rx="2" ry="2" />
<text text-anchor="" x="102.89" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (4 ms, 0.02%)</title><rect x="707.3" y="1173" width="0.3" height="15.0" fill="rgb(236,157,21)" rx="2" ry="2" />
<text text-anchor="" x="710.34" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#initialize (8001) (17 ms, 0.09%)</title><rect x="663.5" y="1029" width="1.0" height="15.0" fill="rgb(211,135,12)" rx="2" ry="2" />
<text text-anchor="" x="666.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#define_attribute_methods (8000) (3 ms, 0.02%)</title><rect x="1168.7" y="773" width="0.1" height="15.0" fill="rgb(245,54,43)" rx="2" ry="2" />
<text text-anchor="" x="1171.69" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#init_with (8001) (122 ms, 0.62%)</title><rect x="1022.0" y="1109" width="7.4" height="15.0" fill="rgb(253,187,29)" rx="2" ry="2" />
<text text-anchor="" x="1025.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveRecord::AutosaveAssociation::AssociationBuilderExtension&gt;#build (5) (3 ms, 0.02%)</title><rect x="12.6" y="789" width="0.1" height="15.0" fill="rgb(249,100,44)" rx="2" ry="2" />
<text text-anchor="" x="15.55" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8001) (2 ms, 0.01%)</title><rect x="633.6" y="1173" width="0.1" height="15.0" fill="rgb(230,177,10)" rx="2" ry="2" />
<text text-anchor="" x="636.62" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#permissions (8001) (7,900 ms, 40.41%)</title><rect x="151.9" y="1269" width="476.8" height="15.0" fill="rgb(223,32,42)" rx="2" ry="2" />
<text text-anchor="" x="154.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::PageTreeSerializer#permissions (8001)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#inverse_association_for (8000) (186 ms, 0.95%)</title><rect x="1128.8" y="757" width="11.2" height="15.0" fill="rgb(249,127,14)" rx="2" ry="2" />
<text text-anchor="" x="1131.76" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::#&lt;Class:0x00007f90573f9fa0&gt;&gt;#new (8001) (10 ms, 0.05%)</title><rect x="99.3" y="965" width="0.6" height="15.0" fill="rgb(207,209,17)" rx="2" ry="2" />
<text text-anchor="" x="102.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Regexp#match? (8001) (5 ms, 0.03%)</title><rect x="711.2" y="1189" width="0.3" height="15.0" fill="rgb(217,91,38)" rx="2" ry="2" />
<text text-anchor="" x="714.23" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (1) (2 ms, 0.01%)</title><rect x="1057.8" y="661" width="0.1" height="15.0" fill="rgb(210,139,33)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8000) (50 ms, 0.26%)</title><rect x="1173.7" y="981" width="3.0" height="15.0" fill="rgb(210,124,20)" rx="2" ry="2" />
<text text-anchor="" x="1176.65" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (4 ms, 0.02%)</title><rect x="869.4" y="1125" width="0.2" height="15.0" fill="rgb(217,9,35)" rx="2" ry="2" />
<text text-anchor="" x="872.39" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (32004) (5 ms, 0.03%)</title><rect x="669.1" y="1173" width="0.3" height="15.0" fill="rgb(247,130,29)" rx="2" ry="2" />
<text text-anchor="" x="672.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#== (8001) (8 ms, 0.04%)</title><rect x="716.6" y="1061" width="0.5" height="15.0" fill="rgb(211,214,33)" rx="2" ry="2" />
<text text-anchor="" x="719.64" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (240030) (42 ms, 0.21%)</title><rect x="807.0" y="1093" width="2.5" height="15.0" fill="rgb(240,22,7)" rx="2" ry="2" />
<text text-anchor="" x="810.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1068.3" y="901" width="0.2" height="15.0" fill="rgb(241,142,3)" rx="2" ry="2" />
<text text-anchor="" x="1071.35" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (256 ms, 1.31%)</title><rect x="1077.7" y="741" width="15.5" height="15.0" fill="rgb(212,75,44)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#inspect (16002) (19 ms, 0.10%)</title><rect x="1101.5" y="581" width="1.1" height="15.0" fill="rgb(230,168,41)" rx="2" ry="2" />
<text text-anchor="" x="1104.49" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#define_callbacks (4) (2 ms, 0.01%)</title><rect x="20.1" y="933" width="0.1" height="15.0" fill="rgb(250,176,50)" rx="2" ry="2" />
<text text-anchor="" x="23.13" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::QueryAttribute#nil? (16002) (127 ms, 0.65%)</title><rect x="1085.3" y="485" width="7.6" height="15.0" fill="rgb(215,173,13)" rx="2" ry="2" />
<text text-anchor="" x="1088.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#public_send (8001) (4 ms, 0.02%)</title><rect x="1028.5" y="1045" width="0.2" height="15.0" fill="rgb(244,207,25)" rx="2" ry="2" />
<text text-anchor="" x="1031.47" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#active_record_primary_key (16002) (4 ms, 0.02%)</title><rect x="1062.6" y="917" width="0.3" height="15.0" fill="rgb(238,11,44)" rx="2" ry="2" />
<text text-anchor="" x="1065.62" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#hash (16002) (37 ms, 0.19%)</title><rect x="1111.5" y="773" width="2.2" height="15.0" fill="rgb(248,0,0)" rx="2" ry="2" />
<text text-anchor="" x="1114.48" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (16002) (6 ms, 0.03%)</title><rect x="75.1" y="1141" width="0.4" height="15.0" fill="rgb(214,8,17)" rx="2" ry="2" />
<text text-anchor="" x="78.13" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#inject_join (2) (256 ms, 1.31%)</title><rect x="1077.7" y="629" width="15.5" height="15.0" fill="rgb(246,108,46)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#compact! (8001) (2 ms, 0.01%)</title><rect x="92.5" y="1061" width="0.2" height="15.0" fill="rgb(234,96,29)" rx="2" ry="2" />
<text text-anchor="" x="95.53" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#uniq! (48006) (29 ms, 0.15%)</title><rect x="313.4" y="1109" width="1.7" height="15.0" fill="rgb(225,183,11)" rx="2" ry="2" />
<text text-anchor="" x="316.36" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (12 ms, 0.06%)</title><rect x="98.3" y="981" width="0.8" height="15.0" fill="rgb(248,198,46)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (34 ms, 0.17%)</title><rect x="717.9" y="1109" width="2.0" height="15.0" fill="rgb(226,64,27)" rx="2" ry="2" />
<text text-anchor="" x="720.92" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks#run_callbacks (8001) (24 ms, 0.12%)</title><rect x="1027.5" y="1077" width="1.5" height="15.0" fill="rgb(241,24,53)" rx="2" ry="2" />
<text text-anchor="" x="1030.51" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (24001) (3 ms, 0.02%)</title><rect x="30.7" y="1189" width="0.2" height="15.0" fill="rgb(214,124,39)" rx="2" ry="2" />
<text text-anchor="" x="33.69" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1076.9" y="757" width="0.2" height="15.0" fill="rgb(207,210,49)" rx="2" ry="2" />
<text text-anchor="" x="1079.95" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#nil? (8001) (2 ms, 0.01%)</title><rect x="186.3" y="1093" width="0.2" height="15.0" fill="rgb(215,131,9)" rx="2" ry="2" />
<text text-anchor="" x="189.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#deserialize (8001) (39 ms, 0.20%)</title><rect x="982.1" y="1109" width="2.4" height="15.0" fill="rgb(241,54,52)" rx="2" ry="2" />
<text text-anchor="" x="985.13" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#load_dependency (2) (5 ms, 0.03%)</title><rect x="1051.2" y="981" width="0.3" height="15.0" fill="rgb(206,117,38)" rx="2" ry="2" />
<text text-anchor="" x="1054.23" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8000) (19 ms, 0.10%)</title><rect x="1175.3" y="949" width="1.2" height="15.0" fill="rgb(205,216,29)" rx="2" ry="2" />
<text text-anchor="" x="1178.30" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (8001) (2 ms, 0.01%)</title><rect x="70.8" y="1173" width="0.1" height="15.0" fill="rgb(252,209,52)" rx="2" ry="2" />
<text text-anchor="" x="73.84" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (36 ms, 0.18%)</title><rect x="136.2" y="1189" width="2.2" height="15.0" fill="rgb(244,64,27)" rx="2" ry="2" />
<text text-anchor="" x="139.18" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation#each (8001) (40 ms, 0.20%)</title><rect x="38.5" y="1221" width="2.4" height="15.0" fill="rgb(248,137,4)" rx="2" ry="2" />
<text text-anchor="" x="41.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (1) (4 ms, 0.02%)</title><rect x="11.4" y="1093" width="0.2" height="15.0" fill="rgb(251,25,29)" rx="2" ry="2" />
<text text-anchor="" x="14.39" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#utc (24003) (30 ms, 0.15%)</title><rect x="903.0" y="1157" width="1.8" height="15.0" fill="rgb(244,176,49)" rx="2" ry="2" />
<text text-anchor="" x="906.01" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#allocate (8001) (17 ms, 0.09%)</title><rect x="1029.4" y="1109" width="1.0" height="15.0" fill="rgb(209,16,45)" rx="2" ry="2" />
<text text-anchor="" x="1032.39" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#now (24003) (275 ms, 1.41%)</title><rect x="888.2" y="1173" width="16.6" height="15.0" fill="rgb(212,112,19)" rx="2" ry="2" />
<text text-anchor="" x="891.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (24003) (41 ms, 0.21%)</title><rect x="878.8" y="1093" width="2.5" height="15.0" fill="rgb(222,107,43)" rx="2" ry="2" />
<text text-anchor="" x="881.84" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#empty? (8001) (51 ms, 0.26%)</title><rect x="61.8" y="1237" width="3.0" height="15.0" fill="rgb(230,79,44)" rx="2" ry="2" />
<text text-anchor="" x="64.76" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#join_primary_key (8000) (5 ms, 0.03%)</title><rect x="1172.9" y="965" width="0.3" height="15.0" fill="rgb(253,186,27)" rx="2" ry="2" />
<text text-anchor="" x="1175.93" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (24003) (47 ms, 0.24%)</title><rect x="968.3" y="1109" width="2.8" height="15.0" fill="rgb(229,63,13)" rx="2" ry="2" />
<text text-anchor="" x="971.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#include (7) (3 ms, 0.02%)</title><rect x="20.8" y="981" width="0.2" height="15.0" fill="rgb(242,6,45)" rx="2" ry="2" />
<text text-anchor="" x="23.77" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (4) (42 ms, 0.21%)</title><rect x="12.0" y="1141" width="2.6" height="15.0" fill="rgb(235,212,18)" rx="2" ry="2" />
<text text-anchor="" x="15.03" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (16002) (4 ms, 0.02%)</title><rect x="1185.3" y="965" width="0.3" height="15.0" fill="rgb(220,109,32)" rx="2" ry="2" />
<text text-anchor="" x="1188.34" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (16002) (37 ms, 0.19%)</title><rect x="1186.2" y="981" width="2.3" height="15.0" fill="rgb(239,53,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (4 ms, 0.02%)</title><rect x="703.3" y="1093" width="0.2" height="15.0" fill="rgb(253,74,45)" rx="2" ry="2" />
<text text-anchor="" x="706.25" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="1114.1" y="789" width="0.1" height="15.0" fill="rgb(243,55,7)" rx="2" ry="2" />
<text text-anchor="" x="1117.12" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (16002) (11 ms, 0.06%)</title><rect x="1075.7" y="741" width="0.7" height="15.0" fill="rgb(244,36,19)" rx="2" ry="2" />
<text text-anchor="" x="1078.71" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (16002) (18 ms, 0.09%)</title><rect x="1178.6" y="997" width="1.1" height="15.0" fill="rgb(249,131,3)" rx="2" ry="2" />
<text text-anchor="" x="1181.58" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#default_locale (24003) (11 ms, 0.06%)</title><rect x="763.1" y="1157" width="0.7" height="15.0" fill="rgb(218,185,50)" rx="2" ry="2" />
<text text-anchor="" x="766.13" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (4) (41 ms, 0.21%)</title><rect x="12.1" y="1029" width="2.4" height="15.0" fill="rgb(205,79,14)" rx="2" ry="2" />
<text text-anchor="" x="15.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#define_callbacks (5) (3 ms, 0.02%)</title><rect x="12.5" y="821" width="0.2" height="15.0" fill="rgb(212,68,17)" rx="2" ry="2" />
<text text-anchor="" x="15.54" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (24003) (9 ms, 0.05%)</title><rect x="854.8" y="1093" width="0.6" height="15.0" fill="rgb(223,104,27)" rx="2" ry="2" />
<text text-anchor="" x="857.85" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Rack::MiniProfiler::ActiveRecordInstrumentation#log_with_miniprofiler (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1093" width="7.6" height="15.0" fill="rgb(238,29,12)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#check_validity! (8000) (31 ms, 0.16%)</title><rect x="1134.0" y="693" width="1.9" height="15.0" fill="rgb(246,113,14)" rx="2" ry="2" />
<text text-anchor="" x="1137.04" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#subject_class? (40005) (82 ms, 0.42%)</title><rect x="595.5" y="1093" width="4.9" height="15.0" fill="rgb(244,65,44)" rx="2" ry="2" />
<text text-anchor="" x="598.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#sync_with_transaction_state (16002) (10 ms, 0.05%)</title><rect x="1068.5" y="917" width="0.6" height="15.0" fill="rgb(235,69,7)" rx="2" ry="2" />
<text text-anchor="" x="1071.47" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (1) (2 ms, 0.01%)</title><rect x="1057.7" y="757" width="0.2" height="15.0" fill="rgb(235,129,51)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (5) (5 ms, 0.03%)</title><rect x="12.5" y="837" width="0.3" height="15.0" fill="rgb(219,125,4)" rx="2" ry="2" />
<text text-anchor="" x="15.54" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#last (48006) (9 ms, 0.05%)</title><rect x="740.9" y="1173" width="0.5" height="15.0" fill="rgb(213,158,0)" rx="2" ry="2" />
<text text-anchor="" x="743.88" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#=~ (8001) (25 ms, 0.13%)</title><rect x="657.3" y="997" width="1.5" height="15.0" fill="rgb(225,67,12)" rx="2" ry="2" />
<text text-anchor="" x="660.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (13 ms, 0.07%)</title><rect x="702.4" y="1077" width="0.9" height="15.0" fill="rgb(241,113,5)" rx="2" ry="2" />
<text text-anchor="" x="705.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter#convert_time_to_time_zone (8001) (86 ms, 0.44%)</title><rect x="660.3" y="1093" width="5.2" height="15.0" fill="rgb(229,76,6)" rx="2" ry="2" />
<text text-anchor="" x="663.30" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (32004) (4 ms, 0.02%)</title><rect x="1043.3" y="1109" width="0.3" height="15.0" fill="rgb(215,49,45)" rx="2" ry="2" />
<text text-anchor="" x="1046.32" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#join_primary_key (8000) (8 ms, 0.04%)</title><rect x="1154.6" y="757" width="0.5" height="15.0" fill="rgb(238,152,47)" rx="2" ry="2" />
<text text-anchor="" x="1157.65" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map! (2) (98 ms, 0.50%)</title><rect x="1071.2" y="789" width="5.9" height="15.0" fill="rgb(218,44,39)" rx="2" ry="2" />
<text text-anchor="" x="1074.18" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#loop (1) (125 ms, 0.64%)</title><rect x="1004.9" y="965" width="7.5" height="15.0" fill="rgb(244,90,10)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8000) (3 ms, 0.02%)</title><rect x="1171.1" y="725" width="0.2" height="15.0" fill="rgb(238,134,45)" rx="2" ry="2" />
<text text-anchor="" x="1174.14" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Mapping (74) (24 ms, 0.12%)</title><rect x="17.9" y="261" width="1.5" height="15.0" fill="rgb(230,226,25)" rx="2" ry="2" />
<text text-anchor="" x="20.93" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#blank? (32004) (38 ms, 0.19%)</title><rect x="586.7" y="1029" width="2.3" height="15.0" fill="rgb(252,205,5)" rx="2" ry="2" />
<text text-anchor="" x="589.69" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (24003) (7 ms, 0.04%)</title><rect x="737.6" y="1173" width="0.4" height="15.0" fill="rgb(218,21,23)" rx="2" ry="2" />
<text text-anchor="" x="740.55" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader#preloaders_for_one (2) (2,385 ms, 12.20%)</title><rect x="1045.6" y="1125" width="143.9" height="15.0" fill="rgb(246,49,19)" rx="2" ry="2" />
<text text-anchor="" x="1048.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Asso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Compatibility#preserve_timezone (8001) (3 ms, 0.02%)</title><rect x="693.5" y="1157" width="0.1" height="15.0" fill="rgb(224,126,42)" rx="2" ry="2" />
<text text-anchor="" x="696.46" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (96012) (16 ms, 0.08%)</title><rect x="928.9" y="1125" width="0.9" height="15.0" fill="rgb(207,86,27)" rx="2" ry="2" />
<text text-anchor="" x="931.89" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (16002) (2 ms, 0.01%)</title><rect x="1070.7" y="709" width="0.1" height="15.0" fill="rgb(207,55,20)" rx="2" ry="2" />
<text text-anchor="" x="1073.66" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#scoping (8001) (144 ms, 0.74%)</title><rect x="108.7" y="1093" width="8.6" height="15.0" fill="rgb(248,95,16)" rx="2" ry="2" />
<text text-anchor="" x="111.65" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (8000) (2 ms, 0.01%)</title><rect x="1130.2" y="725" width="0.2" height="15.0" fill="rgb(243,119,35)" rx="2" ry="2" />
<text text-anchor="" x="1133.24" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#find_target? (8001) (6 ms, 0.03%)</title><rect x="39.9" y="1157" width="0.3" height="15.0" fill="rgb(240,138,44)" rx="2" ry="2" />
<text text-anchor="" x="42.86" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AutosaveAssociation::ClassMethods#add_autosave_association_callbacks (4) (2 ms, 0.01%)</title><rect x="20.1" y="885" width="0.1" height="15.0" fill="rgb(216,16,33)" rx="2" ry="2" />
<text text-anchor="" x="23.13" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (8001) (132 ms, 0.68%)</title><rect x="712.3" y="1237" width="7.9" height="15.0" fill="rgb(211,217,33)" rx="2" ry="2" />
<text text-anchor="" x="715.26" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (6 ms, 0.03%)</title><rect x="594.9" y="1077" width="0.3" height="15.0" fill="rgb(206,191,26)" rx="2" ry="2" />
<text text-anchor="" x="597.87" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (24003) (3 ms, 0.02%)</title><rect x="818.7" y="1077" width="0.2" height="15.0" fill="rgb(218,51,12)" rx="2" ry="2" />
<text text-anchor="" x="821.69" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::LogSubscriber#sql_color (2) (2 ms, 0.01%)</title><rect x="1100.2" y="613" width="0.1" height="15.0" fill="rgb(230,160,10)" rx="2" ry="2" />
<text text-anchor="" x="1103.20" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (2) (2 ms, 0.01%)</title><rect x="20.8" y="869" width="0.2" height="15.0" fill="rgb(223,82,12)" rx="2" ry="2" />
<text text-anchor="" x="23.84" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (16002) (6 ms, 0.03%)</title><rect x="1185.8" y="981" width="0.4" height="15.0" fill="rgb(232,75,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.84" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (5 ms, 0.03%)</title><rect x="668.6" y="1093" width="0.3" height="15.0" fill="rgb(231,114,23)" rx="2" ry="2" />
<text text-anchor="" x="671.61" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (5) (7 ms, 0.04%)</title><rect x="12.4" y="853" width="0.4" height="15.0" fill="rgb(250,123,20)" rx="2" ry="2" />
<text text-anchor="" x="15.43" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#automatic_inverse_of (1) (3 ms, 0.02%)</title><rect x="1057.7" y="949" width="0.2" height="15.0" fill="rgb(243,56,16)" rx="2" ry="2" />
<text text-anchor="" x="1060.72" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ddb::Userstamp::Stampable::ClassMethods#stampable (2) (2 ms, 0.01%)</title><rect x="20.6" y="981" width="0.1" height="15.0" fill="rgb(251,98,35)" rx="2" ry="2" />
<text text-anchor="" x="23.55" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Mapping (77) (5 ms, 0.03%)</title><rect x="18.4" y="149" width="0.3" height="15.0" fill="rgb(226,0,8)" rx="2" ry="2" />
<text text-anchor="" x="21.42" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Rule#only_raw_sql? (48006) (42 ms, 0.21%)</title><rect x="184.0" y="1109" width="2.5" height="15.0" fill="rgb(219,88,14)" rx="2" ry="2" />
<text text-anchor="" x="186.95" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#klass (8001) (3 ms, 0.02%)</title><rect x="43.8" y="1205" width="0.2" height="15.0" fill="rgb(251,198,43)" rx="2" ry="2" />
<text text-anchor="" x="46.83" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each_key (1) (3 ms, 0.02%)</title><rect x="10.1" y="1157" width="0.2" height="15.0" fill="rgb(215,218,12)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association (8001) (13 ms, 0.07%)</title><rect x="41.4" y="1237" width="0.8" height="15.0" fill="rgb(242,7,29)" rx="2" ry="2" />
<text text-anchor="" x="44.41" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::Taggable&gt;#included (1) (4 ms, 0.02%)</title><rect x="11.1" y="1045" width="0.2" height="15.0" fill="rgb(211,12,23)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (1) (2 ms, 0.01%)</title><rect x="1057.7" y="725" width="0.2" height="15.0" fill="rgb(243,93,31)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8000) (4 ms, 0.02%)</title><rect x="1157.7" y="741" width="0.2" height="15.0" fill="rgb(222,12,29)" rx="2" ry="2" />
<text text-anchor="" x="1160.68" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#inversed_from (8000) (94 ms, 0.48%)</title><rect x="1140.4" y="741" width="5.7" height="15.0" fill="rgb(240,159,29)" rx="2" ry="2" />
<text text-anchor="" x="1143.45" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (64008) (8 ms, 0.04%)</title><rect x="1113.2" y="741" width="0.4" height="15.0" fill="rgb(245,147,20)" rx="2" ry="2" />
<text text-anchor="" x="1116.17" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#&lt;= (16002) (14 ms, 0.07%)</title><rect x="127.6" y="1093" width="0.9" height="15.0" fill="rgb(221,43,54)" rx="2" ry="2" />
<text text-anchor="" x="130.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (1) (2 ms, 0.01%)</title><rect x="1057.8" y="645" width="0.1" height="15.0" fill="rgb(217,32,22)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8000) (10 ms, 0.05%)</title><rect x="1148.4" y="693" width="0.6" height="15.0" fill="rgb(220,133,9)" rx="2" ry="2" />
<text text-anchor="" x="1151.36" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (4) (3 ms, 0.02%)</title><rect x="13.6" y="901" width="0.2" height="15.0" fill="rgb(229,95,13)" rx="2" ry="2" />
<text text-anchor="" x="16.62" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (4) (41 ms, 0.21%)</title><rect x="12.0" y="1093" width="2.5" height="15.0" fill="rgb(213,74,43)" rx="2" ry="2" />
<text text-anchor="" x="15.04" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (8 ms, 0.04%)</title><rect x="668.1" y="1061" width="0.5" height="15.0" fill="rgb(206,26,6)" rx="2" ry="2" />
<text text-anchor="" x="671.14" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CollectiveIdea::Acts::NestedSet::Columns#left_column_name (8001) (6 ms, 0.03%)</title><rect x="117.0" y="1061" width="0.3" height="15.0" fill="rgb(214,196,16)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey#id (32004) (178 ms, 0.91%)</title><rect x="1034.3" y="1141" width="10.7" height="15.0" fill="rgb(234,47,54)" rx="2" ry="2" />
<text text-anchor="" x="1037.29" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (38 ms, 0.19%)</title><rect x="701.2" y="1109" width="2.3" height="15.0" fill="rgb(230,73,8)" rx="2" ry="2" />
<text text-anchor="" x="704.25" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (784110) (106 ms, 0.54%)</title><rect x="251.4" y="1061" width="6.3" height="15.0" fill="rgb(208,170,5)" rx="2" ry="2" />
<text text-anchor="" x="254.37" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (392049) (105 ms, 0.54%)</title><rect x="307.0" y="1077" width="6.4" height="15.0" fill="rgb(211,130,11)" rx="2" ry="2" />
<text text-anchor="" x="310.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#has_attribute? (8000) (28 ms, 0.14%)</title><rect x="1137.3" y="709" width="1.7" height="15.0" fill="rgb(221,216,44)" rx="2" ry="2" />
<text text-anchor="" x="1140.34" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#predicate_builder (8001) (3 ms, 0.02%)</title><rect x="120.5" y="1093" width="0.1" height="15.0" fill="rgb(240,48,47)" rx="2" ry="2" />
<text text-anchor="" x="123.46" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (2) (7 ms, 0.04%)</title><rect x="10.9" y="1205" width="0.5" height="15.0" fill="rgb(244,42,46)" rx="2" ry="2" />
<text text-anchor="" x="13.92" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (2) (21 ms, 0.11%)</title><rect x="12.2" y="997" width="1.3" height="15.0" fill="rgb(240,88,12)" rx="2" ry="2" />
<text text-anchor="" x="15.22" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#load_records (2) (1,929 ms, 9.87%)</title><rect x="1060.2" y="1029" width="116.5" height="15.0" fill="rgb(243,191,15)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::HasManyAssociation#empty? (8001) (46 ms, 0.24%)</title><rect x="62.0" y="1221" width="2.8" height="15.0" fill="rgb(233,129,23)" rx="2" ry="2" />
<text text-anchor="" x="65.04" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Generator#initialize (48006) (33 ms, 0.17%)</title><rect x="626.6" y="1205" width="1.9" height="15.0" fill="rgb(228,10,13)" rx="2" ry="2" />
<text text-anchor="" x="629.58" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#load (1) (3,062 ms, 15.66%)</title><rect x="1004.8" y="1253" width="184.8" height="15.0" fill="rgb(219,134,34)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Relation#l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#public_send (8000) (5 ms, 0.03%)</title><rect x="1165.5" y="725" width="0.3" height="15.0" fill="rgb(220,118,38)" rx="2" ry="2" />
<text text-anchor="" x="1168.46" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#inverse_of (16002) (15 ms, 0.08%)</title><rect x="1056.1" y="997" width="0.9" height="15.0" fill="rgb(226,108,14)" rx="2" ry="2" />
<text text-anchor="" x="1059.06" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#__callbacks (8001) (12 ms, 0.06%)</title><rect x="1028.0" y="1061" width="0.7" height="15.0" fill="rgb(219,9,7)" rx="2" ry="2" />
<text text-anchor="" x="1030.97" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions#exec_role_rules (1) (165 ms, 0.84%)</title><rect x="11.4" y="1221" width="9.9" height="15.0" fill="rgb(208,228,26)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#deserialize (8001) (10 ms, 0.05%)</title><rect x="135.4" y="1173" width="0.6" height="15.0" fill="rgb(236,107,12)" rx="2" ry="2" />
<text text-anchor="" x="138.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#inverse_which_updates_counter_cache (8001) (3 ms, 0.02%)</title><rect x="64.6" y="1189" width="0.2" height="15.0" fill="rgb(208,60,49)" rx="2" ry="2" />
<text text-anchor="" x="67.63" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (6 ms, 0.03%)</title><rect x="103.4" y="1045" width="0.3" height="15.0" fill="rgb(205,22,18)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (14 ms, 0.07%)</title><rect x="718.9" y="1093" width="0.8" height="15.0" fill="rgb(212,71,34)" rx="2" ry="2" />
<text text-anchor="" x="721.87" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#allocate (8000) (11 ms, 0.06%)</title><rect x="1168.8" y="773" width="0.7" height="15.0" fill="rgb(254,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1171.85" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_sym (16002) (4 ms, 0.02%)</title><rect x="686.5" y="1173" width="0.2" height="15.0" fill="rgb(247,126,45)" rx="2" ry="2" />
<text text-anchor="" x="689.49" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Content::GeneratedRelationMethods#published (1) (3 ms, 0.02%)</title><rect x="14.7" y="1077" width="0.2" height="15.0" fill="rgb(231,20,23)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (48006) (345 ms, 1.76%)</title><rect x="910.0" y="1141" width="20.8" height="15.0" fill="rgb(219,48,2)" rx="2" ry="2" />
<text text-anchor="" x="912.97" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (24003) (10 ms, 0.05%)</title><rect x="852.9" y="1125" width="0.5" height="15.0" fill="rgb(223,228,34)" rx="2" ry="2" />
<text text-anchor="" x="855.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (32004) (4 ms, 0.02%)</title><rect x="1045.3" y="1141" width="0.3" height="15.0" fill="rgb(250,3,23)" rx="2" ry="2" />
<text text-anchor="" x="1048.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#none? (8001) (7 ms, 0.04%)</title><rect x="90.6" y="1045" width="0.4" height="15.0" fill="rgb(247,222,47)" rx="2" ry="2" />
<text text-anchor="" x="93.59" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Concurrent::Collection::NonConcurrentMapBackend#[] (144018) (124 ms, 0.63%)</title><rect x="827.4" y="1077" width="7.5" height="15.0" fill="rgb(226,152,13)" rx="2" ry="2" />
<text text-anchor="" x="830.40" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (3 ms, 0.02%)</title><rect x="1176.2" y="901" width="0.2" height="15.0" fill="rgb(254,220,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.20" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Gutentag::ActiveRecord&gt;#call (1) (3 ms, 0.02%)</title><rect x="13.3" y="837" width="0.2" height="15.0" fill="rgb(235,199,27)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#restricted? (24003) (186 ms, 0.95%)</title><rect x="846.2" y="1205" width="11.2" height="15.0" fill="rgb(251,123,22)" rx="2" ry="2" />
<text text-anchor="" x="849.22" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods#inherited (4) (2 ms, 0.01%)</title><rect x="14.4" y="997" width="0.1" height="15.0" fill="rgb(222,106,16)" rx="2" ry="2" />
<text text-anchor="" x="17.39" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="1113.6" y="757" width="0.1" height="15.0" fill="rgb(207,107,43)" rx="2" ry="2" />
<text text-anchor="" x="1116.63" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::Named::ClassMethods#default_extensions (8001) (141 ms, 0.72%)</title><rect x="50.3" y="1157" width="8.5" height="15.0" fill="rgb(231,11,15)" rx="2" ry="2" />
<text text-anchor="" x="53.30" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (8001) (642 ms, 3.28%)</title><rect x="78.6" y="1125" width="38.7" height="15.0" fill="rgb(220,92,44)" rx="2" ry="2" />
<text text-anchor="" x="81.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Bas..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks::CallbackChain#empty? (8000) (2 ms, 0.01%)</title><rect x="1167.6" y="741" width="0.1" height="15.0" fill="rgb(234,1,24)" rx="2" ry="2" />
<text text-anchor="" x="1170.56" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (2 ms, 0.01%)</title><rect x="10.6" y="933" width="0.1" height="15.0" fill="rgb(237,95,1)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#blank? (8001) (6 ms, 0.03%)</title><rect x="31.1" y="1221" width="0.4" height="15.0" fill="rgb(224,76,24)" rx="2" ry="2" />
<text text-anchor="" x="34.12" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (16002) (3 ms, 0.02%)</title><rect x="1097.2" y="677" width="0.2" height="15.0" fill="rgb(249,116,28)" rx="2" ry="2" />
<text text-anchor="" x="1100.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#key_conversion_required? (16002) (8 ms, 0.04%)</title><rect x="1061.4" y="933" width="0.5" height="15.0" fill="rgb(247,133,20)" rx="2" ry="2" />
<text text-anchor="" x="1064.44" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#to_s (16002) (3 ms, 0.02%)</title><rect x="1101.3" y="581" width="0.2" height="15.0" fill="rgb(232,176,0)" rx="2" ry="2" />
<text text-anchor="" x="1104.28" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Panko::Serializer#scope (8001) (3 ms, 0.02%)</title><rect x="628.5" y="1253" width="0.2" height="15.0" fill="rgb(243,164,46)" rx="2" ry="2" />
<text text-anchor="" x="631.54" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (4) (5 ms, 0.03%)</title><rect x="20.0" y="965" width="0.3" height="15.0" fill="rgb(241,216,7)" rx="2" ry="2" />
<text text-anchor="" x="23.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy&gt;#t (1) (77 ms, 0.39%)</title><rect x="15.3" y="981" width="4.6" height="15.0" fill="rgb(230,73,16)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (24003) (4 ms, 0.02%)</title><rect x="818.9" y="1077" width="0.2" height="15.0" fill="rgb(247,16,32)" rx="2" ry="2" />
<text text-anchor="" x="821.88" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (8001) (2 ms, 0.01%)</title><rect x="76.0" y="1125" width="0.1" height="15.0" fill="rgb(223,69,36)" rx="2" ry="2" />
<text text-anchor="" x="79.01" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#initialize (24003) (57 ms, 0.29%)</title><rect x="897.9" y="1109" width="3.4" height="15.0" fill="rgb(209,141,45)" rx="2" ry="2" />
<text text-anchor="" x="900.87" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::TreeBuilder#set_end_location (4695) (2 ms, 0.01%)</title><rect x="17.2" y="645" width="0.1" height="15.0" fill="rgb(246,111,3)" rx="2" ry="2" />
<text text-anchor="" x="20.21" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (115 ms, 0.59%)</title><rect x="696.7" y="1173" width="6.9" height="15.0" fill="rgb(217,205,1)" rx="2" ry="2" />
<text text-anchor="" x="699.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#reset_scope (8001) (8 ms, 0.04%)</title><rect x="69.0" y="1221" width="0.5" height="15.0" fill="rgb(245,94,44)" rx="2" ry="2" />
<text text-anchor="" x="71.99" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#any? (8001) (62 ms, 0.32%)</title><rect x="61.2" y="1253" width="3.7" height="15.0" fill="rgb(238,216,51)" rx="2" ry="2" />
<text text-anchor="" x="64.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#config (48006) (43 ms, 0.22%)</title><rect x="751.9" y="1173" width="2.7" height="15.0" fill="rgb(221,120,5)" rx="2" ry="2" />
<text text-anchor="" x="754.93" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#revive_hash (74) (24 ms, 0.12%)</title><rect x="17.9" y="245" width="1.5" height="15.0" fill="rgb(222,132,23)" rx="2" ry="2" />
<text text-anchor="" x="20.94" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8000) (34 ms, 0.17%)</title><rect x="1161.1" y="661" width="2.1" height="15.0" fill="rgb(251,132,29)" rx="2" ry="2" />
<text text-anchor="" x="1164.13" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Base#translate (24003) (1,211 ms, 6.19%)</title><rect x="765.7" y="1157" width="73.1" height="15.0" fill="rgb(237,93,34)" rx="2" ry="2" />
<text text-anchor="" x="768.72" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I18n::Ba..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#initialize (8001) (3 ms, 0.02%)</title><rect x="632.3" y="1173" width="0.2" height="15.0" fill="rgb(219,60,22)" rx="2" ry="2" />
<text text-anchor="" x="635.30" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (16002) (6 ms, 0.03%)</title><rect x="1067.2" y="885" width="0.4" height="15.0" fill="rgb(224,112,11)" rx="2" ry="2" />
<text text-anchor="" x="1070.18" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (16002) (13 ms, 0.07%)</title><rect x="1187.6" y="949" width="0.7" height="15.0" fill="rgb(224,163,49)" rx="2" ry="2" />
<text text-anchor="" x="1190.56" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (1) (2 ms, 0.01%)</title><rect x="14.7" y="853" width="0.2" height="15.0" fill="rgb(247,92,32)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Rules#optimize_order! (48006) (91 ms, 0.47%)</title><rect x="315.1" y="1109" width="5.5" height="15.0" fill="rgb(215,179,38)" rx="2" ry="2" />
<text text-anchor="" x="318.11" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (2) (20 ms, 0.10%)</title><rect x="12.2" y="917" width="1.3" height="15.0" fill="rgb(239,171,35)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8001) (3 ms, 0.02%)</title><rect x="151.0" y="1125" width="0.2" height="15.0" fill="rgb(212,94,5)" rx="2" ry="2" />
<text text-anchor="" x="154.00" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (48006) (7 ms, 0.04%)</title><rect x="971.4" y="1125" width="0.4" height="15.0" fill="rgb(206,76,10)" rx="2" ry="2" />
<text text-anchor="" x="974.36" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (4) (5 ms, 0.03%)</title><rect x="20.0" y="981" width="0.3" height="15.0" fill="rgb(207,221,18)" rx="2" ry="2" />
<text text-anchor="" x="23.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::InfoTimezone#info (24003) (6 ms, 0.03%)</title><rect x="952.6" y="1045" width="0.4" height="15.0" fill="rgb(230,16,41)" rx="2" ry="2" />
<text text-anchor="" x="955.63" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#add_associations (1) (3 ms, 0.02%)</title><rect x="20.8" y="917" width="0.2" height="15.0" fill="rgb(215,28,10)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (16002) (4 ms, 0.02%)</title><rect x="116.1" y="1029" width="0.2" height="15.0" fill="rgb(241,205,31)" rx="2" ry="2" />
<text text-anchor="" x="119.12" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#period (24003) (130 ms, 0.66%)</title><rect x="949.9" y="1093" width="7.8" height="15.0" fill="rgb(219,146,48)" rx="2" ry="2" />
<text text-anchor="" x="952.88" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (48006) (7,098 ms, 36.31%)</title><rect x="175.6" y="1157" width="428.4" height="15.0" fill="rgb(239,6,22)" rx="2" ry="2" />
<text text-anchor="" x="178.58" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array#each (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#deep_symbolize_keys (31) (6 ms, 0.03%)</title><rect x="15.3" y="757" width="0.3" height="15.0" fill="rgb(214,141,11)" rx="2" ry="2" />
<text text-anchor="" x="18.31" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#initialize (16002) (106 ms, 0.54%)</title><rect x="1051.9" y="1045" width="6.4" height="15.0" fill="rgb(226,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1054.90" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (31) (36 ms, 0.18%)</title><rect x="17.6" y="693" width="2.2" height="15.0" fill="rgb(238,118,48)" rx="2" ry="2" />
<text text-anchor="" x="20.61" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (15 ms, 0.08%)</title><rect x="986.3" y="1093" width="0.9" height="15.0" fill="rgb(222,25,6)" rx="2" ry="2" />
<text text-anchor="" x="989.26" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#present? (8000) (6 ms, 0.03%)</title><rect x="1171.6" y="757" width="0.4" height="15.0" fill="rgb(251,101,29)" rx="2" ry="2" />
<text text-anchor="" x="1174.61" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FalseClass#=== (16002) (2 ms, 0.01%)</title><rect x="1097.8" y="693" width="0.2" height="15.0" fill="rgb(220,73,8)" rx="2" ry="2" />
<text text-anchor="" x="1100.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (16002) (16 ms, 0.08%)</title><rect x="1064.9" y="917" width="1.0" height="15.0" fill="rgb(242,52,34)" rx="2" ry="2" />
<text text-anchor="" x="1067.87" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Callbacks::CallbackChain#empty? (8001) (2 ms, 0.01%)</title><rect x="1027.1" y="1061" width="0.1" height="15.0" fill="rgb(215,87,25)" rx="2" ry="2" />
<text text-anchor="" x="1030.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (24003) (5 ms, 0.03%)</title><rect x="895.1" y="1125" width="0.3" height="15.0" fill="rgb(213,58,47)" rx="2" ry="2" />
<text text-anchor="" x="898.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (2) (3 ms, 0.02%)</title><rect x="11.1" y="981" width="0.2" height="15.0" fill="rgb(219,51,28)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (16002) (2 ms, 0.01%)</title><rect x="1185.6" y="965" width="0.1" height="15.0" fill="rgb(254,33,54)" rx="2" ry="2" />
<text text-anchor="" x="1188.58" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#visit (4) (105 ms, 0.54%)</title><rect x="1077.7" y="501" width="6.4" height="15.0" fill="rgb(235,108,44)" rx="2" ry="2" />
<text text-anchor="" x="1080.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (96012) (15 ms, 0.08%)</title><rect x="516.5" y="1045" width="0.9" height="15.0" fill="rgb(213,125,19)" rx="2" ry="2" />
<text text-anchor="" x="519.47" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (1) (2 ms, 0.01%)</title><rect x="21.1" y="981" width="0.1" height="15.0" fill="rgb(224,102,9)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (13 ms, 0.07%)</title><rect x="667.8" y="1077" width="0.8" height="15.0" fill="rgb(235,81,30)" rx="2" ry="2" />
<text text-anchor="" x="670.81" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#partition (4) (10 ms, 0.05%)</title><rect x="1077.1" y="789" width="0.6" height="15.0" fill="rgb(246,127,50)" rx="2" ry="2" />
<text text-anchor="" x="1080.07" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#still_public_for? (24003) (275 ms, 1.41%)</title><rect x="959.7" y="1189" width="16.6" height="15.0" fill="rgb(249,179,47)" rx="2" ry="2" />
<text text-anchor="" x="962.72" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (20 ms, 0.10%)</title><rect x="706.9" y="1205" width="1.2" height="15.0" fill="rgb(211,146,22)" rx="2" ry="2" />
<text text-anchor="" x="709.87" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (8001) (62 ms, 0.32%)</title><rect x="148.1" y="1205" width="3.8" height="15.0" fill="rgb(236,54,25)" rx="2" ry="2" />
<text text-anchor="" x="151.15" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#default_timezone (8001) (31 ms, 0.16%)</title><rect x="653.3" y="965" width="1.9" height="15.0" fill="rgb(232,197,50)" rx="2" ry="2" />
<text text-anchor="" x="656.31" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (21 ms, 0.11%)</title><rect x="35.0" y="1189" width="1.2" height="15.0" fill="rgb(207,62,13)" rx="2" ry="2" />
<text text-anchor="" x="37.98" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (3 ms, 0.02%)</title><rect x="668.9" y="1157" width="0.2" height="15.0" fill="rgb(245,141,44)" rx="2" ry="2" />
<text text-anchor="" x="671.89" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#update_attributes_from_transaction_state (16002) (4 ms, 0.02%)</title><rect x="1188.9" y="965" width="0.2" height="15.0" fill="rgb(209,94,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.86" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#current (8001) (123 ms, 0.63%)</title><rect x="629.7" y="1237" width="7.4" height="15.0" fill="rgb(221,160,45)" rx="2" ry="2" />
<text text-anchor="" x="632.68" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (96012) (242 ms, 1.24%)</title><rect x="498.0" y="1045" width="14.6" height="15.0" fill="rgb(224,27,15)" rx="2" ry="2" />
<text text-anchor="" x="501.03" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#load_schema! (1) (2 ms, 0.01%)</title><rect x="14.7" y="709" width="0.1" height="15.0" fill="rgb(251,172,29)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#each (2) (62 ms, 0.32%)</title><rect x="1104.1" y="661" width="3.8" height="15.0" fill="rgb(216,80,23)" rx="2" ry="2" />
<text text-anchor="" x="1107.08" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (24003) (148 ms, 0.76%)</title><rect x="873.2" y="1141" width="9.0" height="15.0" fill="rgb(245,154,0)" rx="2" ry="2" />
<text text-anchor="" x="876.22" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (48006) (22 ms, 0.11%)</title><rect x="919.7" y="1125" width="1.4" height="15.0" fill="rgb(229,216,24)" rx="2" ry="2" />
<text text-anchor="" x="922.73" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#include (1) (4 ms, 0.02%)</title><rect x="11.1" y="1061" width="0.2" height="15.0" fill="rgb(234,48,4)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc (8001) (3 ms, 0.02%)</title><rect x="687.4" y="1189" width="0.1" height="15.0" fill="rgb(207,101,50)" rx="2" ry="2" />
<text text-anchor="" x="690.35" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8000) (4 ms, 0.02%)</title><rect x="1149.0" y="693" width="0.2" height="15.0" fill="rgb(226,47,8)" rx="2" ry="2" />
<text text-anchor="" x="1151.96" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#find_target? (8001) (6 ms, 0.03%)</title><rect x="63.7" y="1173" width="0.4" height="15.0" fill="rgb(254,136,53)" rx="2" ry="2" />
<text text-anchor="" x="66.73" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (16002) (415 ms, 2.12%)</title><rect x="643.8" y="1157" width="25.1" height="15.0" fill="rgb(247,68,10)" rx="2" ry="2" />
<text text-anchor="" x="646.82" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Range#cover? (16002) (10 ms, 0.05%)</title><rect x="1091.8" y="405" width="0.7" height="15.0" fill="rgb(244,85,14)" rx="2" ry="2" />
<text text-anchor="" x="1094.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (17 ms, 0.09%)</title><rect x="100.1" y="997" width="1.0" height="15.0" fill="rgb(232,68,24)" rx="2" ry="2" />
<text text-anchor="" x="103.15" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#catch (24003) (36 ms, 0.18%)</title><rect x="789.7" y="1125" width="2.1" height="15.0" fill="rgb(220,37,5)" rx="2" ry="2" />
<text text-anchor="" x="792.65" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (2) (21 ms, 0.11%)</title><rect x="12.2" y="933" width="1.3" height="15.0" fill="rgb(206,161,45)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (9 ms, 0.05%)</title><rect x="671.7" y="1173" width="0.5" height="15.0" fill="rgb(254,63,7)" rx="2" ry="2" />
<text text-anchor="" x="674.65" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (2) (21 ms, 0.11%)</title><rect x="12.2" y="949" width="1.3" height="15.0" fill="rgb(222,0,43)" rx="2" ry="2" />
<text text-anchor="" x="15.23" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods#[] (8001) (114 ms, 0.58%)</title><rect x="140.2" y="1189" width="6.8" height="15.0" fill="rgb(254,145,9)" rx="2" ry="2" />
<text text-anchor="" x="143.17" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (2) (963 ms, 4.93%)</title><rect x="1114.3" y="853" width="58.1" height="15.0" fill="rgb(223,169,1)" rx="2" ry="2" />
<text text-anchor="" x="1117.25" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumer..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#class_eval (2) (2 ms, 0.01%)</title><rect x="14.2" y="965" width="0.1" height="15.0" fill="rgb(219,30,13)" rx="2" ry="2" />
<text text-anchor="" x="17.18" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_file (2) (100 ms, 0.51%)</title><rect x="14.9" y="1029" width="6.1" height="15.0" fill="rgb(223,7,19)" rx="2" ry="2" />
<text text-anchor="" x="17.95" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (32004) (67 ms, 0.34%)</title><rect x="572.7" y="1013" width="4.0" height="15.0" fill="rgb(250,171,30)" rx="2" ry="2" />
<text text-anchor="" x="575.67" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (48006) (7 ms, 0.04%)</title><rect x="881.5" y="1109" width="0.5" height="15.0" fill="rgb(250,90,31)" rx="2" ry="2" />
<text text-anchor="" x="884.54" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#safe_load (1) (2 ms, 0.01%)</title><rect x="682.6" y="1093" width="0.2" height="15.0" fill="rgb(243,211,26)" rx="2" ry="2" />
<text text-anchor="" x="685.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#load (1) (5 ms, 0.03%)</title><rect x="10.5" y="1157" width="0.3" height="15.0" fill="rgb(246,212,53)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#require (2) (5 ms, 0.03%)</title><rect x="1051.2" y="997" width="0.3" height="15.0" fill="rgb(219,145,24)" rx="2" ry="2" />
<text text-anchor="" x="1054.23" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#__callbacks (8000) (2 ms, 0.01%)</title><rect x="1165.6" y="709" width="0.2" height="15.0" fill="rgb(242,200,27)" rx="2" ry="2" />
<text text-anchor="" x="1168.64" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#definition (8001) (94 ms, 0.48%)</title><rect x="705.9" y="1237" width="5.7" height="15.0" fill="rgb(244,213,11)" rx="2" ry="2" />
<text text-anchor="" x="708.93" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (24003) (4 ms, 0.02%)</title><rect x="959.5" y="1173" width="0.2" height="15.0" fill="rgb(212,189,35)" rx="2" ry="2" />
<text text-anchor="" x="962.47" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::TreeBuilder#scalar (4695) (18 ms, 0.09%)</title><rect x="16.4" y="677" width="1.1" height="15.0" fill="rgb(219,145,44)" rx="2" ry="2" />
<text text-anchor="" x="19.41" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (4) (6 ms, 0.03%)</title><rect x="13.5" y="965" width="0.4" height="15.0" fill="rgb(205,27,38)" rx="2" ry="2" />
<text text-anchor="" x="16.53" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (11 ms, 0.06%)</title><rect x="141.3" y="1157" width="0.7" height="15.0" fill="rgb(246,133,48)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Rational#to_i (8001) (2 ms, 0.01%)</title><rect x="657.2" y="997" width="0.1" height="15.0" fill="rgb(228,160,26)" rx="2" ry="2" />
<text text-anchor="" x="660.18" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (8000) (3 ms, 0.02%)</title><rect x="1128.0" y="757" width="0.2" height="15.0" fill="rgb(212,128,2)" rx="2" ry="2" />
<text text-anchor="" x="1131.05" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (1,704 ms, 8.72%)</title><rect x="1069.5" y="965" width="102.9" height="15.0" fill="rgb(224,59,12)" rx="2" ry="2" />
<text text-anchor="" x="1072.52" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array#each (2)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#loading (2) (100 ms, 0.51%)</title><rect x="14.9" y="1061" width="6.1" height="15.0" fill="rgb(235,66,12)" rx="2" ry="2" />
<text text-anchor="" x="17.94" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Arel_Nodes_SelectStatement (2) (256 ms, 1.31%)</title><rect x="1077.7" y="773" width="15.5" height="15.0" fill="rgb(217,185,7)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveRecord::AutosaveAssociation::AssociationBuilderExtension&gt;#build (4) (2 ms, 0.01%)</title><rect x="20.1" y="901" width="0.1" height="15.0" fill="rgb(238,46,13)" rx="2" ry="2" />
<text text-anchor="" x="23.13" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#external_urlname (8001) (84 ms, 0.43%)</title><rect x="31.7" y="1269" width="5.0" height="15.0" fill="rgb(237,58,51)" rx="2" ry="2" />
<text text-anchor="" x="34.66" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#except (24003) (209 ms, 1.07%)</title><rect x="774.9" y="1141" width="12.6" height="15.0" fill="rgb(234,142,52)" rx="2" ry="2" />
<text text-anchor="" x="777.88" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded! (8000) (84 ms, 0.43%)</title><rect x="1141.1" y="709" width="5.0" height="15.0" fill="rgb(249,161,50)" rx="2" ry="2" />
<text text-anchor="" x="1144.06" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#blank? (24003) (6 ms, 0.03%)</title><rect x="738.8" y="1157" width="0.3" height="15.0" fill="rgb(250,151,10)" rx="2" ry="2" />
<text text-anchor="" x="741.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (24003) (9 ms, 0.05%)</title><rect x="867.0" y="1093" width="0.6" height="15.0" fill="rgb(244,166,49)" rx="2" ry="2" />
<text text-anchor="" x="870.03" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (2 ms, 0.01%)</title><rect x="987.5" y="1173" width="0.2" height="15.0" fill="rgb(250,47,45)" rx="2" ry="2" />
<text text-anchor="" x="990.51" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#dup (24003) (51 ms, 0.26%)</title><rect x="839.1" y="1173" width="3.1" height="15.0" fill="rgb(250,191,33)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#write_from_user (8000) (49 ms, 0.25%)</title><rect x="1149.5" y="677" width="3.0" height="15.0" fill="rgb(213,164,1)" rx="2" ry="2" />
<text text-anchor="" x="1152.54" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TrueClass#=== (16002) (2 ms, 0.01%)</title><rect x="1099.2" y="693" width="0.1" height="15.0" fill="rgb(226,140,49)" rx="2" ry="2" />
<text text-anchor="" x="1102.17" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Comparable#&lt;= (24003) (343 ms, 1.75%)</title><rect x="938.8" y="1173" width="20.7" height="15.0" fill="rgb(247,169,14)" rx="2" ry="2" />
<text text-anchor="" x="941.77" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DatabaseStatements#select_all (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1141" width="7.6" height="15.0" fill="rgb(211,21,25)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#set_inverse_instance (8000) (431 ms, 2.20%)</title><rect x="1128.3" y="773" width="26.0" height="15.0" fill="rgb(228,201,49)" rx="2" ry="2" />
<text text-anchor="" x="1131.29" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (16 ms, 0.08%)</title><rect x="667.6" y="1093" width="1.0" height="15.0" fill="rgb(221,106,26)" rx="2" ry="2" />
<text text-anchor="" x="670.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#still_public_for? (8001) (188 ms, 0.96%)</title><rect x="694.0" y="1237" width="11.3" height="15.0" fill="rgb(226,130,32)" rx="2" ry="2" />
<text text-anchor="" x="696.97" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (3 ms, 0.02%)</title><rect x="868.8" y="1109" width="0.2" height="15.0" fill="rgb(213,118,33)" rx="2" ry="2" />
<text text-anchor="" x="871.77" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Rules#relevant_rules (48006) (6,144 ms, 31.43%)</title><rect x="186.5" y="1125" width="370.8" height="15.0" fill="rgb(228,7,52)" rx="2" ry="2" />
<text text-anchor="" x="189.47" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanCan::Ability::Rules#relevant_rules (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::JoinDependency#initialize (1) (2 ms, 0.01%)</title><rect x="21.1" y="949" width="0.1" height="15.0" fill="rgb(250,199,41)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#order_values (8001) (14 ms, 0.07%)</title><rect x="82.5" y="1077" width="0.8" height="15.0" fill="rgb(225,32,7)" rx="2" ry="2" />
<text text-anchor="" x="85.49" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Mapping (31) (36 ms, 0.18%)</title><rect x="17.6" y="597" width="2.2" height="15.0" fill="rgb(220,22,48)" rx="2" ry="2" />
<text text-anchor="" x="20.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ability#initialize (1) (8 ms, 0.04%)</title><rect x="10.9" y="1253" width="0.5" height="15.0" fill="rgb(221,143,21)" rx="2" ry="2" />
<text text-anchor="" x="13.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#available_locales (1) (76 ms, 0.39%)</title><rect x="15.3" y="885" width="4.6" height="15.0" fill="rgb(209,111,23)" rx="2" ry="2" />
<text text-anchor="" x="18.26" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (2,598 ms, 13.29%)</title><rect x="1032.8" y="1205" width="156.8" height="15.0" fill="rgb(211,44,9)" rx="2" ry="2" />
<text text-anchor="" x="1035.79" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array#each (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8000) (55 ms, 0.28%)</title><rect x="1160.2" y="677" width="3.3" height="15.0" fill="rgb(251,14,34)" rx="2" ry="2" />
<text text-anchor="" x="1163.15" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#_exec_scope (1) (3 ms, 0.02%)</title><rect x="21.0" y="1077" width="0.2" height="15.0" fill="rgb(237,135,21)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (8000) (4 ms, 0.02%)</title><rect x="1153.4" y="693" width="0.2" height="15.0" fill="rgb(230,23,0)" rx="2" ry="2" />
<text text-anchor="" x="1156.37" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#public_send (8001) (4 ms, 0.02%)</title><rect x="1026.8" y="1045" width="0.3" height="15.0" fill="rgb(223,62,3)" rx="2" ry="2" />
<text text-anchor="" x="1029.78" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc_offset (24003) (155 ms, 0.79%)</title><rect x="948.9" y="1109" width="9.3" height="15.0" fill="rgb(226,192,28)" rx="2" ry="2" />
<text text-anchor="" x="951.89" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (4) (256 ms, 1.31%)</title><rect x="1077.7" y="677" width="15.5" height="15.0" fill="rgb(249,226,7)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#attribute_fixed? (24003) (62 ms, 0.32%)</title><rect x="972.2" y="1157" width="3.8" height="15.0" fill="rgb(234,56,34)" rx="2" ry="2" />
<text text-anchor="" x="975.24" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::FoldedPage&gt;#default_scope_override (16002) (5 ms, 0.03%)</title><rect x="58.1" y="1125" width="0.3" height="15.0" fill="rgb(235,1,53)" rx="2" ry="2" />
<text text-anchor="" x="61.08" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader#preloaders_on (2) (2,385 ms, 12.20%)</title><rect x="1045.6" y="1141" width="143.9" height="15.0" fill="rgb(213,160,39)" rx="2" ry="2" />
<text text-anchor="" x="1048.58" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Asso..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Table#[] (8001) (14 ms, 0.07%)</title><rect x="99.1" y="981" width="0.8" height="15.0" fill="rgb(247,9,22)" rx="2" ry="2" />
<text text-anchor="" x="102.07" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (48006) (13 ms, 0.07%)</title><rect x="603.2" y="1141" width="0.8" height="15.0" fill="rgb(239,67,16)" rx="2" ry="2" />
<text text-anchor="" x="606.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::HasManyReflection#association_class (16002) (13 ms, 0.07%)</title><rect x="1050.7" y="1061" width="0.8" height="15.0" fill="rgb(232,169,45)" rx="2" ry="2" />
<text text-anchor="" x="1053.72" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#create (8001) (259 ms, 1.32%)</title><rect x="45.1" y="1221" width="15.6" height="15.0" fill="rgb(236,229,48)" rx="2" ry="2" />
<text text-anchor="" x="48.12" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#skip_query_cache_if_necessary (2) (1,568 ms, 8.02%)</title><rect x="1077.7" y="901" width="94.7" height="15.0" fill="rgb(206,136,19)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Renderers#render_to_body (1) (3 ms, 0.02%)</title><rect x="10.1" y="1205" width="0.2" height="15.0" fill="rgb(243,126,23)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#deserialize (8001) (222 ms, 1.14%)</title><rect x="646.9" y="1077" width="13.4" height="15.0" fill="rgb(220,47,33)" rx="2" ry="2" />
<text text-anchor="" x="649.88" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callback (20) (2 ms, 0.01%)</title><rect x="12.7" y="805" width="0.1" height="15.0" fill="rgb(233,200,9)" rx="2" ry="2" />
<text text-anchor="" x="15.72" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy&gt;#t (24003) (1,923 ms, 9.84%)</title><rect x="726.9" y="1221" width="116.0" height="15.0" fill="rgb(233,223,0)" rx="2" ry="2" />
<text text-anchor="" x="729.87" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;Module::Alche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (1) (6 ms, 0.03%)</title><rect x="11.6" y="1125" width="0.4" height="15.0" fill="rgb(246,87,47)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#initialize_dup (24003) (15 ms, 0.08%)</title><rect x="835.8" y="1125" width="0.9" height="15.0" fill="rgb(247,140,15)" rx="2" ry="2" />
<text text-anchor="" x="838.85" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#new_constants_in (1) (4 ms, 0.02%)</title><rect x="11.4" y="1077" width="0.2" height="15.0" fill="rgb(221,116,19)" rx="2" ry="2" />
<text text-anchor="" x="14.39" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#initialize_clone (8001) (45 ms, 0.23%)</title><rect x="105.6" y="1061" width="2.8" height="15.0" fill="rgb(216,37,48)" rx="2" ry="2" />
<text text-anchor="" x="108.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (2736) (19 ms, 0.10%)</title><rect x="18.2" y="165" width="1.2" height="15.0" fill="rgb(205,181,4)" rx="2" ry="2" />
<text text-anchor="" x="21.21" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Base#__callbacks (8000) (16 ms, 0.08%)</title><rect x="1164.8" y="741" width="1.0" height="15.0" fill="rgb(249,53,24)" rx="2" ry="2" />
<text text-anchor="" x="1167.79" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (48006) (47 ms, 0.24%)</title><rect x="925.6" y="1093" width="2.8" height="15.0" fill="rgb(251,94,14)" rx="2" ry="2" />
<text text-anchor="" x="928.59" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions::AdminUser#alchemy_admin_rules (1) (165 ms, 0.84%)</title><rect x="11.4" y="1205" width="9.9" height="15.0" fill="rgb(211,201,1)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::Quoting#_type_cast (16002) (70 ms, 0.36%)</title><rect x="1095.1" y="709" width="4.2" height="15.0" fill="rgb(230,129,25)" rx="2" ry="2" />
<text text-anchor="" x="1098.09" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Permissions::AuthorUser#alchemy_author_rules (1) (154 ms, 0.79%)</title><rect x="12.0" y="1173" width="9.3" height="15.0" fill="rgb(252,4,23)" rx="2" ry="2" />
<text text-anchor="" x="15.03" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#_exec_scope (1) (3 ms, 0.02%)</title><rect x="14.7" y="981" width="0.2" height="15.0" fill="rgb(245,173,46)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;Class:0x00007f90573f9fa0&gt;#name (16002) (2 ms, 0.01%)</title><rect x="1071.6" y="773" width="0.1" height="15.0" fill="rgb(241,191,2)" rx="2" ry="2" />
<text text-anchor="" x="1074.60" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#blank? (8001) (11 ms, 0.06%)</title><rect x="710.9" y="1205" width="0.6" height="15.0" fill="rgb(214,180,32)" rx="2" ry="2" />
<text text-anchor="" x="713.88" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveModel::Type::Helpers::AcceptsMultiparameterTime:0x00007f9056426c18&gt;#cast (8001) (216 ms, 1.10%)</title><rect x="647.3" y="1061" width="13.0" height="15.0" fill="rgb(248,44,43)" rx="2" ry="2" />
<text text-anchor="" x="650.26" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_user (8000) (16 ms, 0.08%)</title><rect x="1150.5" y="645" width="1.0" height="15.0" fill="rgb(222,87,48)" rx="2" ry="2" />
<text text-anchor="" x="1153.53" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (2 ms, 0.01%)</title><rect x="980.5" y="1157" width="0.2" height="15.0" fill="rgb(237,130,6)" rx="2" ry="2" />
<text text-anchor="" x="983.53" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#assign_default_value (8001) (38 ms, 0.19%)</title><rect x="144.5" y="1093" width="2.2" height="15.0" fill="rgb(207,125,40)" rx="2" ry="2" />
<text text-anchor="" x="147.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#finder_needs_type_condition? (8001) (4 ms, 0.02%)</title><rect x="121.8" y="1125" width="0.2" height="15.0" fill="rgb(254,43,7)" rx="2" ry="2" />
<text text-anchor="" x="124.77" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#first (48006) (7,291 ms, 37.29%)</title><rect x="163.9" y="1221" width="440.1" height="15.0" fill="rgb(232,49,43)" rx="2" ry="2" />
<text text-anchor="" x="166.90" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#first (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (8 ms, 0.04%)</title><rect x="10.9" y="1285" width="0.5" height="15.0" fill="rgb(237,143,38)" rx="2" ry="2" />
<text text-anchor="" x="13.89" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#using_single_table_inheritance? (8000) (33 ms, 0.17%)</title><rect x="1170.0" y="773" width="2.0" height="15.0" fill="rgb(231,95,26)" rx="2" ry="2" />
<text text-anchor="" x="1172.97" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Struct#initialize (8001) (3 ms, 0.02%)</title><rect x="99.7" y="949" width="0.2" height="15.0" fill="rgb(227,39,26)" rx="2" ry="2" />
<text text-anchor="" x="102.72" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Rule#matches_subject? (56007) (154 ms, 0.79%)</title><rect x="297.7" y="1077" width="9.3" height="15.0" fill="rgb(252,30,6)" rx="2" ry="2" />
<text text-anchor="" x="300.70" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (4) (6 ms, 0.03%)</title><rect x="13.5" y="949" width="0.4" height="15.0" fill="rgb(217,69,12)" rx="2" ry="2" />
<text text-anchor="" x="16.53" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#init_internals (8000) (14 ms, 0.07%)</title><rect x="1126.8" y="741" width="0.8" height="15.0" fill="rgb(237,24,45)" rx="2" ry="2" />
<text text-anchor="" x="1129.76" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::TimeZoneConversion::TimeZoneConverter#deserialize (8001) (47 ms, 0.24%)</title><rect x="697.8" y="1109" width="2.8" height="15.0" fill="rgb(244,114,19)" rx="2" ry="2" />
<text text-anchor="" x="700.80" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (8001) (4 ms, 0.02%)</title><rect x="696.5" y="1173" width="0.2" height="15.0" fill="rgb(226,50,10)" rx="2" ry="2" />
<text text-anchor="" x="699.46" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionAssociation#reset (16002) (26 ms, 0.13%)</title><rect x="1053.3" y="1029" width="1.5" height="15.0" fill="rgb(251,109,45)" rx="2" ry="2" />
<text text-anchor="" x="1056.27" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (1,040 ms, 5.32%)</title><rect x="70.9" y="1205" width="62.8" height="15.0" fill="rgb(249,85,31)" rx="2" ry="2" />
<text text-anchor="" x="73.94" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Class#..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (2) (22 ms, 0.11%)</title><rect x="1102.6" y="613" width="1.3" height="15.0" fill="rgb(245,71,6)" rx="2" ry="2" />
<text text-anchor="" x="1105.61" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Scalar (2659) (11 ms, 0.06%)</title><rect x="18.7" y="149" width="0.7" height="15.0" fill="rgb(224,189,38)" rx="2" ry="2" />
<text text-anchor="" x="21.71" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::PredicateBuilder#build_from_hash (2) (134 ms, 0.69%)</title><rect x="1069.6" y="885" width="8.1" height="15.0" fill="rgb(228,17,18)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (43 ms, 0.22%)</title><rect x="700.9" y="1125" width="2.6" height="15.0" fill="rgb(246,103,53)" rx="2" ry="2" />
<text text-anchor="" x="703.91" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#status_titles (8001) (4,234 ms, 21.66%)</title><rect x="722.1" y="1269" width="255.6" height="15.0" fill="rgb(230,7,49)" rx="2" ry="2" />
<text text-anchor="" x="725.12" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::PageTreeSerializer#status..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (48006) (8 ms, 0.04%)</title><rect x="753.5" y="1157" width="0.5" height="15.0" fill="rgb(211,50,26)" rx="2" ry="2" />
<text text-anchor="" x="756.53" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#visit (2) (256 ms, 1.31%)</title><rect x="1077.7" y="549" width="15.5" height="15.0" fill="rgb(234,176,15)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#check_if_method_has_arguments! (8001) (6 ms, 0.03%)</title><rect x="80.9" y="1093" width="0.4" height="15.0" fill="rgb(230,49,23)" rx="2" ry="2" />
<text text-anchor="" x="83.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#initialize_copy (8001) (40 ms, 0.20%)</title><rect x="106.0" y="1045" width="2.4" height="15.0" fill="rgb(233,229,44)" rx="2" ry="2" />
<text text-anchor="" x="108.95" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#definition (8001) (75 ms, 0.38%)</title><rect x="32.2" y="1237" width="4.5" height="15.0" fill="rgb(215,210,26)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (2) (2 ms, 0.01%)</title><rect x="12.9" y="837" width="0.2" height="15.0" fill="rgb(209,156,13)" rx="2" ry="2" />
<text text-anchor="" x="15.94" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (32004) (4 ms, 0.02%)</title><rect x="1092.7" y="469" width="0.2" height="15.0" fill="rgb(210,132,40)" rx="2" ry="2" />
<text text-anchor="" x="1095.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#allocate (8000) (20 ms, 0.10%)</title><rect x="1168.3" y="789" width="1.2" height="15.0" fill="rgb(240,70,41)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (31) (35 ms, 0.18%)</title><rect x="17.6" y="549" width="2.2" height="15.0" fill="rgb(239,72,51)" rx="2" ry="2" />
<text text-anchor="" x="20.64" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#&lt;=&gt; (24003) (7 ms, 0.04%)</title><rect x="959.0" y="1125" width="0.5" height="15.0" fill="rgb(213,132,38)" rx="2" ry="2" />
<text text-anchor="" x="962.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::HasManyReflection#collection? (16002) (4 ms, 0.02%)</title><rect x="1180.4" y="997" width="0.3" height="15.0" fill="rgb(208,226,29)" rx="2" ry="2" />
<text text-anchor="" x="1183.43" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_r (8001) (9 ms, 0.05%)</title><rect x="659.4" y="997" width="0.6" height="15.0" fill="rgb(225,165,20)" rx="2" ry="2" />
<text text-anchor="" x="662.44" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (31) (6 ms, 0.03%)</title><rect x="15.3" y="693" width="0.3" height="15.0" fill="rgb(243,119,10)" rx="2" ry="2" />
<text text-anchor="" x="18.31" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::AbstractAdapter#log (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1077" width="7.6" height="15.0" fill="rgb(243,149,46)" rx="2" ry="2" />
<text text-anchor="" x="1007.87" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (16002) (102 ms, 0.52%)</title><rect x="1063.3" y="933" width="6.2" height="15.0" fill="rgb(205,149,5)" rx="2" ry="2" />
<text text-anchor="" x="1066.33" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Document (31) (36 ms, 0.18%)</title><rect x="17.6" y="661" width="2.2" height="15.0" fill="rgb(240,61,0)" rx="2" ry="2" />
<text text-anchor="" x="20.62" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (24003) (56 ms, 0.29%)</title><rect x="954.4" y="1029" width="3.3" height="15.0" fill="rgb(229,207,1)" rx="2" ry="2" />
<text text-anchor="" x="957.36" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (48006) (714 ms, 3.65%)</title><rect x="557.3" y="1141" width="43.1" height="15.0" fill="rgb(251,113,0)" rx="2" ry="2" />
<text text-anchor="" x="560.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enum..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (24003) (26 ms, 0.13%)</title><rect x="851.3" y="1125" width="1.6" height="15.0" fill="rgb(219,93,22)" rx="2" ry="2" />
<text text-anchor="" x="854.30" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (109 ms, 0.56%)</title><rect x="696.9" y="1157" width="6.6" height="15.0" fill="rgb(244,56,34)" rx="2" ry="2" />
<text text-anchor="" x="699.92" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (231 ms, 1.18%)</title><rect x="1018.8" y="1141" width="14.0" height="15.0" fill="rgb(241,202,27)" rx="2" ry="2" />
<text text-anchor="" x="1021.82" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#superclass (16002) (3 ms, 0.02%)</title><rect x="54.5" y="1077" width="0.2" height="15.0" fill="rgb(222,131,31)" rx="2" ry="2" />
<text text-anchor="" x="57.53" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (1) (3 ms, 0.02%)</title><rect x="14.7" y="965" width="0.2" height="15.0" fill="rgb(208,45,21)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (24003) (6 ms, 0.03%)</title><rect x="876.8" y="1093" width="0.4" height="15.0" fill="rgb(239,161,0)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#load_target (8001) (27 ms, 0.14%)</title><rect x="39.1" y="1189" width="1.7" height="15.0" fill="rgb(246,6,52)" rx="2" ry="2" />
<text text-anchor="" x="42.11" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#define_callbacks (4) (3 ms, 0.02%)</title><rect x="13.6" y="917" width="0.2" height="15.0" fill="rgb(223,105,21)" rx="2" ry="2" />
<text text-anchor="" x="16.62" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (2) (7 ms, 0.04%)</title><rect x="10.9" y="1173" width="0.4" height="15.0" fill="rgb(206,183,16)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Inheritance::ClassMethods#discriminate_class_for_record (8001) (35 ms, 0.18%)</title><rect x="1030.4" y="1109" width="2.2" height="15.0" fill="rgb(239,146,25)" rx="2" ry="2" />
<text text-anchor="" x="1033.43" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (19 ms, 0.10%)</title><rect x="33.0" y="1205" width="1.1" height="15.0" fill="rgb(254,64,9)" rx="2" ry="2" />
<text text-anchor="" x="35.97" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (7 ms, 0.04%)</title><rect x="1153.6" y="693" width="0.4" height="15.0" fill="rgb(253,161,10)" rx="2" ry="2" />
<text text-anchor="" x="1156.58" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#update_attributes_from_transaction_state (16002) (4 ms, 0.02%)</title><rect x="1068.9" y="901" width="0.2" height="15.0" fill="rgb(252,169,35)" rx="2" ry="2" />
<text text-anchor="" x="1071.85" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::NumericWithFormat#to_s (8000) (11 ms, 0.06%)</title><rect x="1145.5" y="677" width="0.6" height="15.0" fill="rgb(233,65,20)" rx="2" ry="2" />
<text text-anchor="" x="1148.47" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#validate_order_args (8001) (23 ms, 0.12%)</title><rect x="91.0" y="1061" width="1.4" height="15.0" fill="rgb(205,150,11)" rx="2" ry="2" />
<text text-anchor="" x="93.99" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::SQLite3Adapter#exec_query (2) (268 ms, 1.37%)</title><rect x="1093.2" y="789" width="16.1" height="15.0" fill="rgb(245,156,2)" rx="2" ry="2" />
<text text-anchor="" x="1096.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Set#include? (8001) (3 ms, 0.02%)</title><rect x="92.1" y="1013" width="0.2" height="15.0" fill="rgb(209,94,19)" rx="2" ry="2" />
<text text-anchor="" x="95.10" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#invertible_for? (8000) (54 ms, 0.28%)</title><rect x="1136.7" y="741" width="3.3" height="15.0" fill="rgb(250,107,16)" rx="2" ry="2" />
<text text-anchor="" x="1139.73" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#to_a (8001) (3 ms, 0.02%)</title><rect x="50.1" y="1125" width="0.2" height="15.0" fill="rgb(219,111,24)" rx="2" ry="2" />
<text text-anchor="" x="53.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#association_primary_key (8000) (3 ms, 0.02%)</title><rect x="1147.0" y="709" width="0.1" height="15.0" fill="rgb(247,151,18)" rx="2" ry="2" />
<text text-anchor="" x="1149.96" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (2) (134 ms, 0.69%)</title><rect x="1069.6" y="853" width="8.1" height="15.0" fill="rgb(214,3,29)" rx="2" ry="2" />
<text text-anchor="" x="1072.60" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::I18n&gt;#alchemy_scoped_scope (24003) (45 ms, 0.23%)</title><rect x="733.2" y="1189" width="2.7" height="15.0" fill="rgb(232,25,44)" rx="2" ry="2" />
<text text-anchor="" x="736.22" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#attribute_fixed? (8001) (21 ms, 0.11%)</title><rect x="703.9" y="1205" width="1.3" height="15.0" fill="rgb(242,33,34)" rx="2" ry="2" />
<text text-anchor="" x="706.92" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#init_internals (8000) (20 ms, 0.10%)</title><rect x="1126.4" y="757" width="1.2" height="15.0" fill="rgb(245,154,48)" rx="2" ry="2" />
<text text-anchor="" x="1129.41" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (48006) (7 ms, 0.04%)</title><rect x="856.8" y="1125" width="0.4" height="15.0" fill="rgb(244,4,51)" rx="2" ry="2" />
<text text-anchor="" x="859.80" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (48006) (41 ms, 0.21%)</title><rect x="554.8" y="1093" width="2.5" height="15.0" fill="rgb(223,33,18)" rx="2" ry="2" />
<text text-anchor="" x="557.83" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#schema_loaded? (16002) (4 ms, 0.02%)</title><rect x="1074.6" y="693" width="0.2" height="15.0" fill="rgb(212,39,24)" rx="2" ry="2" />
<text text-anchor="" x="1077.56" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#accept (31) (36 ms, 0.18%)</title><rect x="17.6" y="629" width="2.2" height="15.0" fill="rgb(210,111,31)" rx="2" ry="2" />
<text text-anchor="" x="20.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#query_attribute (24003) (162 ms, 0.83%)</title><rect x="847.6" y="1173" width="9.8" height="15.0" fill="rgb(234,219,19)" rx="2" ry="2" />
<text text-anchor="" x="850.62" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (88011) (50 ms, 0.26%)</title><rect x="369.3" y="1077" width="3.0" height="15.0" fill="rgb(236,109,32)" rx="2" ry="2" />
<text text-anchor="" x="372.26" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (1) (2 ms, 0.01%)</title><rect x="1057.8" y="693" width="0.1" height="15.0" fill="rgb(242,108,36)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#name (8001) (3 ms, 0.02%)</title><rect x="111.5" y="1029" width="0.2" height="15.0" fill="rgb(246,42,31)" rx="2" ry="2" />
<text text-anchor="" x="114.47" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#| (8001) (3 ms, 0.02%)</title><rect x="58.8" y="1157" width="0.2" height="15.0" fill="rgb(224,21,15)" rx="2" ry="2" />
<text text-anchor="" x="61.80" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#define_attribute_methods (8001) (2 ms, 0.01%)</title><rect x="1025.4" y="1093" width="0.1" height="15.0" fill="rgb(237,183,47)" rx="2" ry="2" />
<text text-anchor="" x="1028.38" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (48006) (18 ms, 0.09%)</title><rect x="918.7" y="1109" width="1.0" height="15.0" fill="rgb(226,34,19)" rx="2" ry="2" />
<text text-anchor="" x="921.65" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::DataTimezone#period_for_utc (24003) (103 ms, 0.53%)</title><rect x="951.5" y="1061" width="6.2" height="15.0" fill="rgb(254,78,3)" rx="2" ry="2" />
<text text-anchor="" x="954.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (1) (3 ms, 0.02%)</title><rect x="1057.7" y="885" width="0.2" height="15.0" fill="rgb(214,170,54)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (8001) (34 ms, 0.17%)</title><rect x="682.8" y="1125" width="2.0" height="15.0" fill="rgb(227,198,51)" rx="2" ry="2" />
<text text-anchor="" x="685.78" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (24003) (6 ms, 0.03%)</title><rect x="838.8" y="1157" width="0.3" height="15.0" fill="rgb(244,226,34)" rx="2" ry="2" />
<text text-anchor="" x="841.79" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#hash (2) (81 ms, 0.41%)</title><rect x="1109.3" y="821" width="4.9" height="15.0" fill="rgb(253,215,8)" rx="2" ry="2" />
<text text-anchor="" x="1112.34" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (4) (90 ms, 0.46%)</title><rect x="1114.3" y="805" width="5.4" height="15.0" fill="rgb(224,217,9)" rx="2" ry="2" />
<text text-anchor="" x="1117.25" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (6 ms, 0.03%)</title><rect x="1144.9" y="645" width="0.3" height="15.0" fill="rgb(216,68,30)" rx="2" ry="2" />
<text text-anchor="" x="1147.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Generator#initialize (48006) (46 ms, 0.24%)</title><rect x="617.2" y="1205" width="2.8" height="15.0" fill="rgb(249,220,20)" rx="2" ry="2" />
<text text-anchor="" x="620.23" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#target= (8000) (88 ms, 0.45%)</title><rect x="1140.8" y="725" width="5.3" height="15.0" fill="rgb(251,210,51)" rx="2" ry="2" />
<text text-anchor="" x="1143.79" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::I18n&gt;#humanize_default_string! (24003) (53 ms, 0.27%)</title><rect x="735.9" y="1189" width="3.2" height="15.0" fill="rgb(244,108,9)" rx="2" ry="2" />
<text text-anchor="" x="738.94" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Oj::StringWriter#to_s (1) (6 ms, 0.03%)</title><rect x="1189.6" y="1285" width="0.4" height="15.0" fill="rgb(249,177,20)" rx="2" ry="2" />
<text text-anchor="" x="1192.61" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#hash (48006) (569 ms, 2.91%)</title><rect x="485.2" y="1077" width="34.3" height="15.0" fill="rgb(247,77,6)" rx="2" ry="2" />
<text text-anchor="" x="488.18" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#initialize (8000) (3 ms, 0.02%)</title><rect x="1122.1" y="757" width="0.1" height="15.0" fill="rgb(241,222,23)" rx="2" ry="2" />
<text text-anchor="" x="1125.08" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (24003) (10 ms, 0.05%)</title><rect x="868.2" y="1077" width="0.6" height="15.0" fill="rgb(207,153,29)" rx="2" ry="2" />
<text text-anchor="" x="871.19" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (84) (35 ms, 0.18%)</title><rect x="17.7" y="421" width="2.1" height="15.0" fill="rgb(248,81,50)" rx="2" ry="2" />
<text text-anchor="" x="20.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#add_associations (1) (3 ms, 0.02%)</title><rect x="13.3" y="805" width="0.1" height="15.0" fill="rgb(210,26,7)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (72009) (29 ms, 0.15%)</title><rect x="1002.4" y="1205" width="1.8" height="15.0" fill="rgb(228,165,53)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#update_attributes_from_transaction_state (96012) (25 ms, 0.13%)</title><rect x="515.0" y="1029" width="1.5" height="15.0" fill="rgb(230,12,21)" rx="2" ry="2" />
<text text-anchor="" x="517.96" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#const_get (1) (2 ms, 0.01%)</title><rect x="10.1" y="1029" width="0.1" height="15.0" fill="rgb(234,204,14)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (13 ms, 0.07%)</title><rect x="102.2" y="1045" width="0.8" height="15.0" fill="rgb(205,225,14)" rx="2" ry="2" />
<text text-anchor="" x="105.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#flat_map (2) (2,144 ms, 10.97%)</title><rect x="1060.1" y="1109" width="129.4" height="15.0" fill="rgb(218,203,35)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerable#flat_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (241 ms, 1.23%)</title><rect x="1045.6" y="1093" width="14.5" height="15.0" fill="rgb(209,158,39)" rx="2" ry="2" />
<text text-anchor="" x="1048.58" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (11 ms, 0.06%)</title><rect x="143.2" y="1109" width="0.6" height="15.0" fill="rgb(246,105,4)" rx="2" ry="2" />
<text text-anchor="" x="146.17" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (7 ms, 0.04%)</title><rect x="719.3" y="1061" width="0.4" height="15.0" fill="rgb(240,151,21)" rx="2" ry="2" />
<text text-anchor="" x="722.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (16002) (19 ms, 0.10%)</title><rect x="1089.8" y="405" width="1.2" height="15.0" fill="rgb(227,103,12)" rx="2" ry="2" />
<text text-anchor="" x="1092.83" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#initialize (16002) (2 ms, 0.01%)</title><rect x="1076.8" y="725" width="0.1" height="15.0" fill="rgb(247,182,10)" rx="2" ry="2" />
<text text-anchor="" x="1079.83" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (16002) (6 ms, 0.03%)</title><rect x="1188.0" y="933" width="0.3" height="15.0" fill="rgb(245,93,48)" rx="2" ry="2" />
<text text-anchor="" x="1190.97" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#=== (16002) (3 ms, 0.02%)</title><rect x="1099.0" y="693" width="0.2" height="15.0" fill="rgb(218,155,6)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kaminari::ActiveRecordExtension::ClassMethods#inherited (4) (2 ms, 0.01%)</title><rect x="14.4" y="1013" width="0.1" height="15.0" fill="rgb(216,42,3)" rx="2" ry="2" />
<text text-anchor="" x="17.38" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#join_foreign_key (16002) (10 ms, 0.05%)</title><rect x="1062.3" y="933" width="0.6" height="15.0" fill="rgb(212,31,21)" rx="2" ry="2" />
<text text-anchor="" x="1065.28" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (4 ms, 0.02%)</title><rect x="864.8" y="1109" width="0.2" height="15.0" fill="rgb(243,71,17)" rx="2" ry="2" />
<text text-anchor="" x="867.78" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#require (1) (3 ms, 0.02%)</title><rect x="1131.2" y="677" width="0.2" height="15.0" fill="rgb(245,146,54)" rx="2" ry="2" />
<text text-anchor="" x="1134.19" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#fixed_attributes (16002) (23 ms, 0.12%)</title><rect x="670.8" y="1189" width="1.4" height="15.0" fill="rgb(206,206,19)" rx="2" ry="2" />
<text text-anchor="" x="673.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#period (8001) (45 ms, 0.23%)</title><rect x="690.6" y="1141" width="2.7" height="15.0" fill="rgb(208,134,28)" rx="2" ry="2" />
<text text-anchor="" x="693.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#bind_param (16002) (3 ms, 0.02%)</title><rect x="1109.0" y="645" width="0.2" height="15.0" fill="rgb(232,222,7)" rx="2" ry="2" />
<text text-anchor="" x="1112.02" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (32004) (6 ms, 0.03%)</title><rect x="576.7" y="1013" width="0.3" height="15.0" fill="rgb(221,211,50)" rx="2" ry="2" />
<text text-anchor="" x="579.69" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8000) (46 ms, 0.24%)</title><rect x="1173.9" y="965" width="2.8" height="15.0" fill="rgb(206,133,8)" rx="2" ry="2" />
<text text-anchor="" x="1176.87" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#empty? (8001) (2 ms, 0.01%)</title><rect x="31.6" y="1253" width="0.1" height="15.0" fill="rgb(229,26,32)" rx="2" ry="2" />
<text text-anchor="" x="34.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#inject (2) (256 ms, 1.31%)</title><rect x="1077.7" y="613" width="15.5" height="15.0" fill="rgb(210,7,23)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Element&gt;#published (1) (3 ms, 0.02%)</title><rect x="14.7" y="997" width="0.2" height="15.0" fill="rgb(233,1,38)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_index (2) (256 ms, 1.31%)</title><rect x="1077.7" y="581" width="15.5" height="15.0" fill="rgb(235,18,26)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Serialization#_render_with_renderer_json (1) (3 ms, 0.02%)</title><rect x="10.1" y="1141" width="0.2" height="15.0" fill="rgb(213,21,45)" rx="2" ry="2" />
<text text-anchor="" x="13.09" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#store_translations (31) (6 ms, 0.03%)</title><rect x="15.3" y="773" width="0.4" height="15.0" fill="rgb(235,137,6)" rx="2" ry="2" />
<text text-anchor="" x="18.28" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (24003) (27 ms, 0.14%)</title><rect x="876.0" y="1109" width="1.6" height="15.0" fill="rgb(241,104,50)" rx="2" ry="2" />
<text text-anchor="" x="878.97" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#nil? (24003) (5 ms, 0.03%)</title><rect x="976.0" y="1173" width="0.3" height="15.0" fill="rgb(245,91,25)" rx="2" ry="2" />
<text text-anchor="" x="979.00" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__07167656f5c61697f65747 (8001) (23 ms, 0.12%)</title><rect x="32.7" y="1221" width="1.4" height="15.0" fill="rgb(210,86,18)" rx="2" ry="2" />
<text text-anchor="" x="35.72" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (1) (7 ms, 0.04%)</title><rect x="11.6" y="1157" width="0.4" height="15.0" fill="rgb(215,15,17)" rx="2" ry="2" />
<text text-anchor="" x="14.63" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (19 ms, 0.10%)</title><rect x="692.2" y="1077" width="1.1" height="15.0" fill="rgb(208,219,2)" rx="2" ry="2" />
<text text-anchor="" x="695.15" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16002) (3 ms, 0.02%)</title><rect x="703.6" y="1173" width="0.2" height="15.0" fill="rgb(212,166,43)" rx="2" ry="2" />
<text text-anchor="" x="706.60" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (23 ms, 0.12%)</title><rect x="663.1" y="1045" width="1.4" height="15.0" fill="rgb(216,196,29)" rx="2" ry="2" />
<text text-anchor="" x="666.12" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (75 ms, 0.38%)</title><rect x="142.3" y="1157" width="4.5" height="15.0" fill="rgb(227,83,30)" rx="2" ry="2" />
<text text-anchor="" x="145.26" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#lazy (48006) (80 ms, 0.41%)</title><rect x="604.0" y="1221" width="4.8" height="15.0" fill="rgb(245,22,53)" rx="2" ry="2" />
<text text-anchor="" x="606.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (3 ms, 0.02%)</title><rect x="1138.4" y="661" width="0.2" height="15.0" fill="rgb(242,219,30)" rx="2" ry="2" />
<text text-anchor="" x="1141.44" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::CollectionProxy#records (8001) (31 ms, 0.16%)</title><rect x="38.9" y="1205" width="1.9" height="15.0" fill="rgb(236,147,49)" rx="2" ry="2" />
<text text-anchor="" x="41.87" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (60 ms, 0.31%)</title><rect x="1159.9" y="693" width="3.6" height="15.0" fill="rgb(222,204,49)" rx="2" ry="2" />
<text text-anchor="" x="1162.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#exclusive (2) (7 ms, 0.04%)</title><rect x="10.9" y="1125" width="0.4" height="15.0" fill="rgb(253,180,44)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#initialized? (24003) (9 ms, 0.05%)</title><rect x="810.7" y="1125" width="0.5" height="15.0" fill="rgb(242,156,35)" rx="2" ry="2" />
<text text-anchor="" x="813.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_of? (24003) (4 ms, 0.02%)</title><rect x="742.5" y="1157" width="0.2" height="15.0" fill="rgb(246,116,36)" rx="2" ry="2" />
<text text-anchor="" x="745.48" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#find_zone! (24003) (22 ms, 0.11%)</title><rect x="894.1" y="1141" width="1.3" height="15.0" fill="rgb(206,34,9)" rx="2" ry="2" />
<text text-anchor="" x="897.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::IO&gt;#open (31) (69 ms, 0.35%)</title><rect x="15.7" y="757" width="4.2" height="15.0" fill="rgb(215,168,41)" rx="2" ry="2" />
<text text-anchor="" x="18.67" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#locale (24003) (24 ms, 0.12%)</title><rect x="762.3" y="1173" width="1.5" height="15.0" fill="rgb(222,40,48)" rx="2" ry="2" />
<text text-anchor="" x="765.34" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (10 ms, 0.05%)</title><rect x="1039.3" y="1077" width="0.7" height="15.0" fill="rgb(248,41,29)" rx="2" ry="2" />
<text text-anchor="" x="1042.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#public? (24003) (1,560 ms, 7.98%)</title><rect x="882.2" y="1205" width="94.1" height="15.0" fill="rgb(218,212,41)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::Pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator#each (2) (105 ms, 0.54%)</title><rect x="1077.7" y="437" width="6.4" height="15.0" fill="rgb(236,128,32)" rx="2" ry="2" />
<text text-anchor="" x="1080.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator::Yielder#yield (48006) (46 ms, 0.24%)</title><rect x="600.4" y="1141" width="2.8" height="15.0" fill="rgb(222,94,28)" rx="2" ry="2" />
<text text-anchor="" x="603.42" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::BelongsToReflection#association_class (8000) (11 ms, 0.06%)</title><rect x="1130.7" y="725" width="0.7" height="15.0" fill="rgb(236,224,34)" rx="2" ry="2" />
<text text-anchor="" x="1133.69" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (235 ms, 1.20%)</title><rect x="46.6" y="1205" width="14.1" height="15.0" fill="rgb(216,208,39)" rx="2" ry="2" />
<text text-anchor="" x="49.58" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (48006) (22 ms, 0.11%)</title><rect x="927.1" y="1077" width="1.3" height="15.0" fill="rgb(215,182,5)" rx="2" ry="2" />
<text text-anchor="" x="930.08" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#get (8001) (62 ms, 0.32%)</title><rect x="681.8" y="1141" width="3.7" height="15.0" fill="rgb(210,177,23)" rx="2" ry="2" />
<text text-anchor="" x="684.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#define_attribute_methods (1) (2 ms, 0.01%)</title><rect x="10.6" y="949" width="0.1" height="15.0" fill="rgb(218,217,34)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (2 ms, 0.01%)</title><rect x="1074.8" y="725" width="0.1" height="15.0" fill="rgb(226,49,41)" rx="2" ry="2" />
<text text-anchor="" x="1077.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (11 ms, 0.06%)</title><rect x="980.2" y="1173" width="0.6" height="15.0" fill="rgb(228,63,43)" rx="2" ry="2" />
<text text-anchor="" x="983.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#hash (16002) (3 ms, 0.02%)</title><rect x="314.9" y="1093" width="0.2" height="15.0" fill="rgb(242,78,26)" rx="2" ry="2" />
<text text-anchor="" x="317.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Gutentag::ActiveRecord&gt;#call (1) (4 ms, 0.02%)</title><rect x="11.1" y="1029" width="0.2" height="15.0" fill="rgb(205,147,25)" rx="2" ry="2" />
<text text-anchor="" x="14.10" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#fixed? (24003) (41 ms, 0.21%)</title><rect x="973.6" y="1141" width="2.4" height="15.0" fill="rgb(249,26,27)" rx="2" ry="2" />
<text text-anchor="" x="976.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#name (8001) (3 ms, 0.02%)</title><rect x="128.5" y="1093" width="0.2" height="15.0" fill="rgb(245,168,53)" rx="2" ry="2" />
<text text-anchor="" x="131.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#initialize_dup (24003) (34 ms, 0.17%)</title><rect x="785.5" y="1109" width="2.0" height="15.0" fill="rgb(229,185,13)" rx="2" ry="2" />
<text text-anchor="" x="788.49" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#uniq! (2) (212 ms, 1.08%)</title><rect x="1032.8" y="1173" width="12.8" height="15.0" fill="rgb(238,202,28)" rx="2" ry="2" />
<text text-anchor="" x="1035.79" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Concurrency::ShareLock#yield_shares (1) (125 ms, 0.64%)</title><rect x="1004.9" y="1013" width="7.6" height="15.0" fill="rgb(240,8,28)" rx="2" ry="2" />
<text text-anchor="" x="1007.93" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#order (8001) (471 ms, 2.41%)</title><rect x="79.9" y="1109" width="28.5" height="15.0" fill="rgb(236,165,54)" rx="2" ry="2" />
<text text-anchor="" x="82.90" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8000) (50 ms, 0.26%)</title><rect x="1142.2" y="661" width="3.0" height="15.0" fill="rgb(238,168,45)" rx="2" ry="2" />
<text text-anchor="" x="1145.19" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#initialize (8001) (22 ms, 0.11%)</title><rect x="59.3" y="1173" width="1.4" height="15.0" fill="rgb(231,204,2)" rx="2" ry="2" />
<text text-anchor="" x="62.31" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#cast_value (8000) (6 ms, 0.03%)</title><rect x="1144.0" y="581" width="0.4" height="15.0" fill="rgb(232,196,28)" rx="2" ry="2" />
<text text-anchor="" x="1147.03" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (872 ms, 4.46%)</title><rect x="1119.7" y="821" width="52.7" height="15.0" fill="rgb(213,169,36)" rx="2" ry="2" />
<text text-anchor="" x="1122.69" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Array..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::Bind#add_bind (16002) (6 ms, 0.03%)</title><rect x="1082.1" y="341" width="0.4" height="15.0" fill="rgb(230,173,29)" rx="2" ry="2" />
<text text-anchor="" x="1085.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Statement#step (8002) (117 ms, 0.60%)</title><rect x="1005.4" y="949" width="7.0" height="15.0" fill="rgb(205,154,34)" rx="2" ry="2" />
<text text-anchor="" x="1008.40" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#== (8001) (11 ms, 0.06%)</title><rect x="983.5" y="1061" width="0.7" height="15.0" fill="rgb(223,146,34)" rx="2" ry="2" />
<text text-anchor="" x="986.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#casecmp (24001) (6 ms, 0.03%)</title><rect x="684.5" y="1093" width="0.3" height="15.0" fill="rgb(245,83,7)" rx="2" ry="2" />
<text text-anchor="" x="687.49" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#deserialize (8001) (30 ms, 0.15%)</title><rect x="676.5" y="1061" width="1.8" height="15.0" fill="rgb(217,88,44)" rx="2" ry="2" />
<text text-anchor="" x="679.51" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (3 ms, 0.02%)</title><rect x="138.2" y="1157" width="0.2" height="15.0" fill="rgb(252,200,46)" rx="2" ry="2" />
<text text-anchor="" x="141.18" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8000) (9 ms, 0.05%)</title><rect x="1174.6" y="949" width="0.5" height="15.0" fill="rgb(205,222,44)" rx="2" ry="2" />
<text text-anchor="" x="1177.58" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::PrimaryKey::ClassMethods#primary_key (16002) (6 ms, 0.03%)</title><rect x="1065.9" y="917" width="0.3" height="15.0" fill="rgb(245,162,18)" rx="2" ry="2" />
<text text-anchor="" x="1068.87" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#get (8001) (39 ms, 0.20%)</title><rect x="29.1" y="1237" width="2.4" height="15.0" fill="rgb(214,195,24)" rx="2" ry="2" />
<text text-anchor="" x="32.11" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#foreign_key (8000) (3 ms, 0.02%)</title><rect x="1139.0" y="709" width="0.2" height="15.0" fill="rgb(213,74,37)" rx="2" ry="2" />
<text text-anchor="" x="1142.01" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#to_i (16002) (2 ms, 0.01%)</title><rect x="1090.7" y="373" width="0.2" height="15.0" fill="rgb(245,163,12)" rx="2" ry="2" />
<text text-anchor="" x="1093.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8000) (2 ms, 0.01%)</title><rect x="1174.9" y="933" width="0.1" height="15.0" fill="rgb(240,71,21)" rx="2" ry="2" />
<text text-anchor="" x="1177.86" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (3) (2 ms, 0.01%)</title><rect x="10.6" y="901" width="0.1" height="15.0" fill="rgb(210,153,32)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8000) (14 ms, 0.07%)</title><rect x="1175.5" y="933" width="0.9" height="15.0" fill="rgb(239,86,29)" rx="2" ry="2" />
<text text-anchor="" x="1178.53" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#hash (16002) (64 ms, 0.33%)</title><rect x="1110.3" y="789" width="3.8" height="15.0" fill="rgb(206,19,35)" rx="2" ry="2" />
<text text-anchor="" x="1113.28" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#_reflections (16002) (4 ms, 0.02%)</title><rect x="1050.3" y="1045" width="0.2" height="15.0" fill="rgb(231,125,53)" rx="2" ry="2" />
<text text-anchor="" x="1053.26" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (2) (21 ms, 0.11%)</title><rect x="12.2" y="1013" width="1.3" height="15.0" fill="rgb(253,204,38)" rx="2" ry="2" />
<text text-anchor="" x="15.22" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TransitionDataTimezoneInfo#period_for_utc (8001) (27 ms, 0.14%)</title><rect x="691.7" y="1093" width="1.6" height="15.0" fill="rgb(253,168,34)" rx="2" ry="2" />
<text text-anchor="" x="694.68" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#attributes (16002) (214 ms, 1.09%)</title><rect x="673.2" y="1173" width="12.9" height="15.0" fill="rgb(240,160,22)" rx="2" ry="2" />
<text text-anchor="" x="676.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#map (2) (105 ms, 0.54%)</title><rect x="1012.5" y="1125" width="6.3" height="15.0" fill="rgb(248,225,37)" rx="2" ry="2" />
<text text-anchor="" x="1015.48" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::I18n&gt;#translate (24003) (1,884 ms, 9.64%)</title><rect x="729.2" y="1205" width="113.7" height="15.0" fill="rgb(234,40,41)" rx="2" ry="2" />
<text text-anchor="" x="732.22" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;Module::Alche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (3 ms, 0.02%)</title><rect x="857.2" y="1125" width="0.2" height="15.0" fill="rgb(252,36,13)" rx="2" ry="2" />
<text text-anchor="" x="860.22" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DatabaseStatements#select (1) (126 ms, 0.64%)</title><rect x="1004.9" y="1125" width="7.6" height="15.0" fill="rgb(249,15,17)" rx="2" ry="2" />
<text text-anchor="" x="1007.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (24003) (5 ms, 0.03%)</title><rect x="791.8" y="1125" width="0.3" height="15.0" fill="rgb(251,47,52)" rx="2" ry="2" />
<text text-anchor="" x="794.82" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (13 ms, 0.07%)</title><rect x="28.3" y="1205" width="0.7" height="15.0" fill="rgb(212,169,11)" rx="2" ry="2" />
<text text-anchor="" x="31.26" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#__callbacks (8001) (2 ms, 0.01%)</title><rect x="1028.6" y="1029" width="0.1" height="15.0" fill="rgb(242,85,20)" rx="2" ry="2" />
<text text-anchor="" x="1031.60" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#backend (24003) (18 ms, 0.09%)</title><rect x="761.3" y="1173" width="1.0" height="15.0" fill="rgb(246,54,8)" rx="2" ry="2" />
<text text-anchor="" x="764.27" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (24003) (137 ms, 0.70%)</title><rect x="849.2" y="1141" width="8.2" height="15.0" fill="rgb(239,90,44)" rx="2" ry="2" />
<text text-anchor="" x="852.16" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#initialize (8001) (3 ms, 0.02%)</title><rect x="1021.3" y="1077" width="0.2" height="15.0" fill="rgb(216,155,9)" rx="2" ry="2" />
<text text-anchor="" x="1024.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#check_validity_of_inverse! (16002) (51 ms, 0.26%)</title><rect x="1055.2" y="1013" width="3.1" height="15.0" fill="rgb(208,40,29)" rx="2" ry="2" />
<text text-anchor="" x="1058.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#blank? (8000) (2 ms, 0.01%)</title><rect x="1171.8" y="741" width="0.2" height="15.0" fill="rgb(211,115,52)" rx="2" ry="2" />
<text text-anchor="" x="1174.84" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerator#each (48006) (7,260 ms, 37.13%)</title><rect x="165.8" y="1205" width="438.2" height="15.0" fill="rgb(227,56,16)" rx="2" ry="2" />
<text text-anchor="" x="168.78" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Enumerator#each (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#stale_state (8001) (2 ms, 0.01%)</title><rect x="68.9" y="1205" width="0.1" height="15.0" fill="rgb(237,29,22)" rx="2" ry="2" />
<text text-anchor="" x="71.89" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (80010) (46 ms, 0.24%)</title><rect x="304.2" y="1029" width="2.8" height="15.0" fill="rgb(213,196,51)" rx="2" ry="2" />
<text text-anchor="" x="307.24" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Value#cast (8001) (35 ms, 0.18%)</title><rect x="982.4" y="1093" width="2.1" height="15.0" fill="rgb(211,48,20)" rx="2" ry="2" />
<text text-anchor="" x="985.36" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#loop (2) (62 ms, 0.32%)</title><rect x="1104.1" y="645" width="3.8" height="15.0" fill="rgb(207,214,16)" rx="2" ry="2" />
<text text-anchor="" x="1107.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#initialize (8001) (4 ms, 0.02%)</title><rect x="677.9" y="997" width="0.2" height="15.0" fill="rgb(248,227,13)" rx="2" ry="2" />
<text text-anchor="" x="680.85" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::SpawnMethods#spawn (8001) (77 ms, 0.39%)</title><rect x="103.7" y="1093" width="4.7" height="15.0" fill="rgb(207,90,10)" rx="2" ry="2" />
<text text-anchor="" x="106.73" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::DataTimezone#period_for_utc (8001) (36 ms, 0.18%)</title><rect x="691.1" y="1109" width="2.2" height="15.0" fill="rgb(230,51,1)" rx="2" ry="2" />
<text text-anchor="" x="694.13" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (16002) (3 ms, 0.02%)</title><rect x="686.1" y="1173" width="0.2" height="15.0" fill="rgb(234,118,12)" rx="2" ry="2" />
<text text-anchor="" x="689.12" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#== (8001) (3 ms, 0.02%)</title><rect x="984.0" y="1045" width="0.2" height="15.0" fill="rgb(227,167,2)" rx="2" ry="2" />
<text text-anchor="" x="986.99" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#initialize (24003) (9 ms, 0.05%)</title><rect x="891.4" y="1125" width="0.5" height="15.0" fill="rgb(220,53,40)" rx="2" ry="2" />
<text text-anchor="" x="894.41" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::ClassMethods#has_many (2) (3 ms, 0.02%)</title><rect x="20.8" y="901" width="0.2" height="15.0" fill="rgb(205,193,35)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Result#hash_rows (1) (105 ms, 0.54%)</title><rect x="1012.5" y="1141" width="6.3" height="15.0" fill="rgb(226,25,11)" rx="2" ry="2" />
<text text-anchor="" x="1015.48" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (13 ms, 0.07%)</title><rect x="145.7" y="1061" width="0.8" height="15.0" fill="rgb(223,10,10)" rx="2" ry="2" />
<text text-anchor="" x="148.67" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Content&gt;#not_restricted (1) (3 ms, 0.02%)</title><rect x="21.0" y="1093" width="0.2" height="15.0" fill="rgb(240,217,50)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Arel_Nodes_SelectCore (2) (256 ms, 1.31%)</title><rect x="1077.7" y="725" width="15.5" height="15.0" fill="rgb(230,148,18)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#reset_scope (8000) (3 ms, 0.02%)</title><rect x="1133.0" y="693" width="0.2" height="15.0" fill="rgb(234,92,1)" rx="2" ry="2" />
<text text-anchor="" x="1135.98" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DetermineIfPreparableVisitor#accept (2) (256 ms, 1.31%)</title><rect x="1077.7" y="837" width="15.5" height="15.0" fill="rgb(224,228,27)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc (8001) (3 ms, 0.02%)</title><rect x="689.3" y="1141" width="0.2" height="15.0" fill="rgb(248,67,22)" rx="2" ry="2" />
<text text-anchor="" x="692.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (84 ms, 0.43%)</title><rect x="714.9" y="1157" width="5.0" height="15.0" fill="rgb(220,224,16)" rx="2" ry="2" />
<text text-anchor="" x="717.87" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#_exec_scope (1) (3 ms, 0.02%)</title><rect x="14.7" y="1109" width="0.2" height="15.0" fill="rgb(205,76,41)" rx="2" ry="2" />
<text text-anchor="" x="17.68" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::WhereClauseFactory#build (1) (2 ms, 0.01%)</title><rect x="14.7" y="917" width="0.2" height="15.0" fill="rgb(230,112,21)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#accept (1) (2 ms, 0.01%)</title><rect x="15.1" y="901" width="0.1" height="15.0" fill="rgb(250,150,5)" rx="2" ry="2" />
<text text-anchor="" x="18.12" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#dup (24003) (45 ms, 0.23%)</title><rect x="784.8" y="1125" width="2.7" height="15.0" fill="rgb(233,166,35)" rx="2" ry="2" />
<text text-anchor="" x="787.79" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8001) (2 ms, 0.01%)</title><rect x="1023.6" y="1077" width="0.1" height="15.0" fill="rgb(216,78,2)" rx="2" ry="2" />
<text text-anchor="" x="1026.64" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#&lt;=&gt; (8001) (114 ms, 0.58%)</title><rect x="687.0" y="1205" width="6.9" height="15.0" fill="rgb(219,187,23)" rx="2" ry="2" />
<text text-anchor="" x="690.02" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (32004) (4 ms, 0.02%)</title><rect x="1092.9" y="501" width="0.3" height="15.0" fill="rgb(245,39,25)" rx="2" ry="2" />
<text text-anchor="" x="1095.92" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (24003) (235 ms, 1.20%)</title><rect x="796.5" y="1109" width="14.2" height="15.0" fill="rgb(209,104,22)" rx="2" ry="2" />
<text text-anchor="" x="799.53" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#period_for_utc (8001) (40 ms, 0.20%)</title><rect x="690.9" y="1125" width="2.4" height="15.0" fill="rgb(253,174,22)" rx="2" ry="2" />
<text text-anchor="" x="693.88" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (19 ms, 0.10%)</title><rect x="150.5" y="1157" width="1.2" height="15.0" fill="rgb(206,220,13)" rx="2" ry="2" />
<text text-anchor="" x="153.51" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;Class:0x00007f9056328ac8&gt;#deserialize (8001) (237 ms, 1.21%)</title><rect x="646.0" y="1093" width="14.3" height="15.0" fill="rgb(247,200,41)" rx="2" ry="2" />
<text text-anchor="" x="649.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#inheritance_column (8001) (3 ms, 0.02%)</title><rect x="1031.8" y="1045" width="0.1" height="15.0" fill="rgb(208,209,15)" rx="2" ry="2" />
<text text-anchor="" x="1034.76" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#load_missing_constant (1) (2 ms, 0.01%)</title><rect x="10.1" y="997" width="0.1" height="15.0" fill="rgb(216,104,19)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::ClassMethods#define_attribute_methods (8001) (2 ms, 0.01%)</title><rect x="1029.7" y="1093" width="0.2" height="15.0" fill="rgb(212,180,23)" rx="2" ry="2" />
<text text-anchor="" x="1032.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#freeze (8001) (2 ms, 0.01%)</title><rect x="107.7" y="1013" width="0.2" height="15.0" fill="rgb(231,9,33)" rx="2" ry="2" />
<text text-anchor="" x="110.73" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (24003) (23 ms, 0.12%)</title><rect x="969.7" y="1093" width="1.4" height="15.0" fill="rgb(207,195,54)" rx="2" ry="2" />
<text text-anchor="" x="972.71" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (48006) (11 ms, 0.06%)</title><rect x="791.2" y="1109" width="0.6" height="15.0" fill="rgb(244,32,18)" rx="2" ry="2" />
<text text-anchor="" x="794.17" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::QueryMethods#where (2) (134 ms, 0.69%)</title><rect x="1069.6" y="933" width="8.1" height="15.0" fill="rgb(216,137,45)" rx="2" ry="2" />
<text text-anchor="" x="1072.59" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#pop (24003) (4 ms, 0.02%)</title><rect x="750.3" y="1173" width="0.3" height="15.0" fill="rgb(249,177,12)" rx="2" ry="2" />
<text text-anchor="" x="753.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#find_zone! (8001) (7 ms, 0.04%)</title><rect x="662.4" y="1061" width="0.4" height="15.0" fill="rgb(205,26,18)" rx="2" ry="2" />
<text text-anchor="" x="665.36" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (8001) (10 ms, 0.05%)</title><rect x="713.9" y="1173" width="0.5" height="15.0" fill="rgb(222,12,54)" rx="2" ry="2" />
<text text-anchor="" x="716.86" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#nil? (16002) (2 ms, 0.01%)</title><rect x="1077.6" y="757" width="0.1" height="15.0" fill="rgb(215,112,27)" rx="2" ry="2" />
<text text-anchor="" x="1080.58" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#extract_options! (24003) (65 ms, 0.33%)</title><rect x="739.1" y="1189" width="4.0" height="15.0" fill="rgb(222,120,51)" rx="2" ry="2" />
<text text-anchor="" x="742.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#status (24003) (2,211 ms, 11.31%)</title><rect x="842.9" y="1221" width="133.4" height="15.0" fill="rgb(222,73,49)" rx="2" ry="2" />
<text text-anchor="" x="845.91" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy::Page::P..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#keys (8001) (4 ms, 0.02%)</title><rect x="102.7" y="1029" width="0.2" height="15.0" fill="rgb(252,55,13)" rx="2" ry="2" />
<text text-anchor="" x="105.69" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#extensions (8001) (176 ms, 0.90%)</title><rect x="48.4" y="1173" width="10.6" height="15.0" fill="rgb(216,38,14)" rx="2" ry="2" />
<text text-anchor="" x="51.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (48006) (129 ms, 0.66%)</title><rect x="921.1" y="1125" width="7.8" height="15.0" fill="rgb(242,39,36)" rx="2" ry="2" />
<text text-anchor="" x="924.08" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (24003) (41 ms, 0.21%)</title><rect x="854.1" y="1109" width="2.5" height="15.0" fill="rgb(240,206,47)" rx="2" ry="2" />
<text text-anchor="" x="857.12" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Instrumentation#render (1) (5 ms, 0.03%)</title><rect x="10.0" y="1317" width="0.3" height="15.0" fill="rgb(227,52,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#default_scopes (8001) (3 ms, 0.02%)</title><rect x="130.4" y="1125" width="0.2" height="15.0" fill="rgb(254,87,4)" rx="2" ry="2" />
<text text-anchor="" x="133.42" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#present? (32004) (25 ms, 0.13%)</title><rect x="589.3" y="1061" width="1.5" height="15.0" fill="rgb(249,206,17)" rx="2" ry="2" />
<text text-anchor="" x="592.32" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (16002) (4 ms, 0.02%)</title><rect x="1065.4" y="901" width="0.2" height="15.0" fill="rgb(205,59,17)" rx="2" ry="2" />
<text text-anchor="" x="1068.41" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Notifications::Fanout::Subscribers::Evented#finish (6) (66 ms, 0.34%)</title><rect x="1100.1" y="677" width="4.0" height="15.0" fill="rgb(240,127,10)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Kernel&gt;#load (1) (4 ms, 0.02%)</title><rect x="11.4" y="1061" width="0.2" height="15.0" fill="rgb(225,186,6)" rx="2" ry="2" />
<text text-anchor="" x="14.39" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (8001) (149 ms, 0.76%)</title><rect x="694.9" y="1189" width="9.0" height="15.0" fill="rgb(220,12,8)" rx="2" ry="2" />
<text text-anchor="" x="697.90" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#include? (112014) (32 ms, 0.16%)</title><rect x="299.7" y="1061" width="1.9" height="15.0" fill="rgb(227,132,9)" rx="2" ry="2" />
<text text-anchor="" x="302.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8001) (15 ms, 0.08%)</title><rect x="707.1" y="1189" width="0.9" height="15.0" fill="rgb(231,7,15)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (3 ms, 0.02%)</title><rect x="852.7" y="1109" width="0.2" height="15.0" fill="rgb(218,90,30)" rx="2" ry="2" />
<text text-anchor="" x="855.67" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AssociationReflection#foreign_key (8000) (3 ms, 0.02%)</title><rect x="1154.1" y="725" width="0.2" height="15.0" fill="rgb(252,3,48)" rx="2" ry="2" />
<text text-anchor="" x="1157.09" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#default_separator (24003) (45 ms, 0.23%)</title><rect x="817.1" y="1109" width="2.7" height="15.0" fill="rgb(253,177,7)" rx="2" ry="2" />
<text text-anchor="" x="820.09" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Arel_Nodes_BindParam (16002) (44 ms, 0.23%)</title><rect x="1081.0" y="373" width="2.6" height="15.0" fill="rgb(206,39,20)" rx="2" ry="2" />
<text text-anchor="" x="1083.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded? (8001) (3 ms, 0.02%)</title><rect x="68.7" y="1205" width="0.2" height="15.0" fill="rgb(218,120,7)" rx="2" ry="2" />
<text text-anchor="" x="71.73" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::DetermineIfPreparableVisitor#visit_Arel_Nodes_In (2) (256 ms, 1.31%)</title><rect x="1077.7" y="533" width="15.5" height="15.0" fill="rgb(211,184,39)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Subscriber#finish (4) (66 ms, 0.34%)</title><rect x="1100.1" y="645" width="4.0" height="15.0" fill="rgb(232,165,54)" rx="2" ry="2" />
<text text-anchor="" x="1103.08" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Page&gt;#acts_as_nested_set_options (8001) (3 ms, 0.02%)</title><rect x="116.8" y="1061" width="0.2" height="15.0" fill="rgb(228,190,30)" rx="2" ry="2" />
<text text-anchor="" x="119.79" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page#fixed_attributes (8001) (3 ms, 0.02%)</title><rect x="704.2" y="1189" width="0.2" height="15.0" fill="rgb(210,202,17)" rx="2" ry="2" />
<text text-anchor="" x="707.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (31) (36 ms, 0.18%)</title><rect x="17.6" y="677" width="2.2" height="15.0" fill="rgb(242,33,45)" rx="2" ry="2" />
<text text-anchor="" x="20.61" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#superclass (8001) (2 ms, 0.01%)</title><rect x="127.5" y="1093" width="0.1" height="15.0" fill="rgb(243,125,33)" rx="2" ry="2" />
<text text-anchor="" x="130.51" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (3 ms, 0.02%)</title><rect x="151.4" y="1109" width="0.2" height="15.0" fill="rgb(227,64,2)" rx="2" ry="2" />
<text text-anchor="" x="154.42" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#initialize (8001) (7 ms, 0.04%)</title><rect x="986.8" y="1061" width="0.4" height="15.0" fill="rgb(208,59,32)" rx="2" ry="2" />
<text text-anchor="" x="989.76" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (8000) (3 ms, 0.02%)</title><rect x="1144.6" y="597" width="0.1" height="15.0" fill="rgb(223,46,14)" rx="2" ry="2" />
<text text-anchor="" x="1147.57" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (48006) (7 ms, 0.04%)</title><rect x="869.0" y="1125" width="0.4" height="15.0" fill="rgb(212,161,4)" rx="2" ry="2" />
<text text-anchor="" x="871.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread::Mutex#synchronize (1) (2 ms, 0.01%)</title><rect x="10.6" y="965" width="0.1" height="15.0" fill="rgb(242,214,45)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_get (8001) (4 ms, 0.02%)</title><rect x="65.9" y="1221" width="0.3" height="15.0" fill="rgb(215,67,20)" rx="2" ry="2" />
<text text-anchor="" x="68.94" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (24003) (4 ms, 0.02%)</title><rect x="877.4" y="1093" width="0.2" height="15.0" fill="rgb(230,184,7)" rx="2" ry="2" />
<text text-anchor="" x="880.37" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::ActiveSupport::Dependencies&gt;#load_interlock (1) (2 ms, 0.01%)</title><rect x="1057.8" y="677" width="0.1" height="15.0" fill="rgb(218,135,54)" rx="2" ry="2" />
<text text-anchor="" x="1060.75" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (24003) (56 ms, 0.29%)</title><rect x="878.2" y="1109" width="3.3" height="15.0" fill="rgb(242,72,10)" rx="2" ry="2" />
<text text-anchor="" x="881.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#class (16000) (2 ms, 0.01%)</title><rect x="1163.5" y="741" width="0.2" height="15.0" fill="rgb(251,163,50)" rx="2" ry="2" />
<text text-anchor="" x="1166.53" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#zone (16002) (16 ms, 0.08%)</title><rect x="630.2" y="1221" width="1.0" height="15.0" fill="rgb(210,28,44)" rx="2" ry="2" />
<text text-anchor="" x="633.17" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#attributes (24003) (7 ms, 0.04%)</title><rect x="974.8" y="1125" width="0.4" height="15.0" fill="rgb(216,89,49)" rx="2" ry="2" />
<text text-anchor="" x="977.80" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Benchmark&gt;#realtime (1) (4 ms, 0.02%)</title><rect x="10.0" y="1253" width="0.3" height="15.0" fill="rgb(245,70,46)" rx="2" ry="2" />
<text text-anchor="" x="13.03" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Rule#matches_action? (392049) (301 ms, 1.54%)</title><rect x="279.5" y="1077" width="18.2" height="15.0" fill="rgb(211,120,26)" rx="2" ry="2" />
<text text-anchor="" x="282.51" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#map (1) (336 ms, 1.72%)</title><rect x="1012.5" y="1173" width="20.3" height="15.0" fill="rgb(211,189,39)" rx="2" ry="2" />
<text text-anchor="" x="1015.48" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Loadable#load_dependency (1) (6 ms, 0.03%)</title><rect x="1051.1" y="1029" width="0.4" height="15.0" fill="rgb(251,188,14)" rx="2" ry="2" />
<text text-anchor="" x="1054.15" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (6 ms, 0.03%)</title><rect x="13.5" y="981" width="0.4" height="15.0" fill="rgb(227,194,15)" rx="2" ry="2" />
<text text-anchor="" x="16.53" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#&lt;=&gt; (32004) (5 ms, 0.03%)</title><rect x="1092.2" y="389" width="0.3" height="15.0" fill="rgb(246,6,26)" rx="2" ry="2" />
<text text-anchor="" x="1095.18" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#attribute_types (1) (2 ms, 0.01%)</title><rect x="14.7" y="789" width="0.2" height="15.0" fill="rgb(214,150,51)" rx="2" ry="2" />
<text text-anchor="" x="17.72" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TrueClass#as_json (48006) (11 ms, 0.06%)</title><rect x="1004.2" y="1205" width="0.6" height="15.0" fill="rgb(217,9,40)" rx="2" ry="2" />
<text text-anchor="" x="1007.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8001) (2 ms, 0.01%)</title><rect x="141.7" y="1141" width="0.1" height="15.0" fill="rgb(245,217,24)" rx="2" ry="2" />
<text text-anchor="" x="144.69" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#block_given? (8001) (2 ms, 0.01%)</title><rect x="64.8" y="1237" width="0.1" height="15.0" fill="rgb(222,212,4)" rx="2" ry="2" />
<text text-anchor="" x="67.84" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::Quoting#type_cast (16002) (102 ms, 0.52%)</title><rect x="1093.7" y="741" width="6.1" height="15.0" fill="rgb(223,176,9)" rx="2" ry="2" />
<text text-anchor="" x="1096.67" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#superclass (8001) (2 ms, 0.01%)</title><rect x="1032.0" y="1061" width="0.1" height="15.0" fill="rgb(237,178,45)" rx="2" ry="2" />
<text text-anchor="" x="1034.98" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (16002) (18 ms, 0.09%)</title><rect x="1184.8" y="981" width="1.0" height="15.0" fill="rgb(215,49,9)" rx="2" ry="2" />
<text text-anchor="" x="1187.78" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::GeneratedAssociationMethods#folded_pages (8001) (327 ms, 1.67%)</title><rect x="41.0" y="1253" width="19.7" height="15.0" fill="rgb(205,197,32)" rx="2" ry="2" />
<text text-anchor="" x="44.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (3 ms, 0.02%)</title><rect x="719.7" y="1093" width="0.2" height="15.0" fill="rgb(240,77,54)" rx="2" ry="2" />
<text text-anchor="" x="722.73" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (4 ms, 0.02%)</title><rect x="1043.1" y="1045" width="0.2" height="15.0" fill="rgb(233,125,11)" rx="2" ry="2" />
<text text-anchor="" x="1046.07" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations#association_instance_set (16002) (7 ms, 0.04%)</title><rect x="1049.3" y="1061" width="0.4" height="15.0" fill="rgb(253,186,44)" rx="2" ry="2" />
<text text-anchor="" x="1052.29" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#_deep_transform_keys_in_object (31) (6 ms, 0.03%)</title><rect x="15.3" y="725" width="0.3" height="15.0" fill="rgb(230,159,28)" rx="2" ry="2" />
<text text-anchor="" x="18.31" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (24003) (3 ms, 0.02%)</title><rect x="877.2" y="1093" width="0.2" height="15.0" fill="rgb(208,179,51)" rx="2" ry="2" />
<text text-anchor="" x="880.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#public_send (8000) (4 ms, 0.02%)</title><rect x="1167.3" y="725" width="0.3" height="15.0" fill="rgb(227,34,41)" rx="2" ry="2" />
<text text-anchor="" x="1170.31" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#blank? (8001) (7 ms, 0.04%)</title><rect x="36.2" y="1205" width="0.5" height="15.0" fill="rgb(232,127,14)" rx="2" ry="2" />
<text text-anchor="" x="39.22" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#key_conversion_required? (8000) (3 ms, 0.02%)</title><rect x="1155.4" y="757" width="0.2" height="15.0" fill="rgb(208,131,1)" rx="2" ry="2" />
<text text-anchor="" x="1158.40" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (32004) (43 ms, 0.22%)</title><rect x="1040.7" y="1077" width="2.6" height="15.0" fill="rgb(211,212,21)" rx="2" ry="2" />
<text text-anchor="" x="1043.73" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Numeric#zero? (96004) (15 ms, 0.08%)</title><rect x="584.6" y="997" width="0.9" height="15.0" fill="rgb(243,159,28)" rx="2" ry="2" />
<text text-anchor="" x="587.59" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Database#encoding (8002) (3 ms, 0.02%)</title><rect x="1107.7" y="613" width="0.2" height="15.0" fill="rgb(234,72,20)" rx="2" ry="2" />
<text text-anchor="" x="1110.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::GeneratedAssociationMethods#children (8001) (1,139 ms, 5.83%)</title><rect x="64.9" y="1253" width="68.8" height="15.0" fill="rgb(252,137,1)" rx="2" ry="2" />
<text text-anchor="" x="67.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Rule#matches_subject_class? (40005) (89 ms, 0.46%)</title><rect x="301.6" y="1061" width="5.4" height="15.0" fill="rgb(217,215,43)" rx="2" ry="2" />
<text text-anchor="" x="304.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (77) (5 ms, 0.03%)</title><rect x="18.4" y="101" width="0.3" height="15.0" fill="rgb(252,162,38)" rx="2" ry="2" />
<text text-anchor="" x="21.44" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#delete_if (2) (151 ms, 0.77%)</title><rect x="1084.1" y="517" width="9.1" height="15.0" fill="rgb(210,25,28)" rx="2" ry="2" />
<text text-anchor="" x="1087.08" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#config (24003) (17 ms, 0.09%)</title><rect x="756.1" y="1157" width="1.0" height="15.0" fill="rgb(247,224,23)" rx="2" ry="2" />
<text text-anchor="" x="759.08" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#__temp__07167656f5c61697f65747 (32004) (110 ms, 0.56%)</title><rect x="570.4" y="1045" width="6.6" height="15.0" fill="rgb(208,204,19)" rx="2" ry="2" />
<text text-anchor="" x="573.37" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::SQLite#visit_Arel_Nodes_SelectStatement (2) (256 ms, 1.31%)</title><rect x="1077.7" y="789" width="15.5" height="15.0" fill="rgb(240,30,21)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#owners_by_key (2) (154 ms, 0.79%)</title><rect x="1060.2" y="997" width="9.3" height="15.0" fill="rgb(240,33,48)" rx="2" ry="2" />
<text text-anchor="" x="1063.22" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::PageLayout&gt;#get (8001) (57 ms, 0.29%)</title><rect x="708.1" y="1221" width="3.4" height="15.0" fill="rgb(250,202,35)" rx="2" ry="2" />
<text text-anchor="" x="711.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Psych&gt;#load_file (31) (69 ms, 0.35%)</title><rect x="15.7" y="773" width="4.2" height="15.0" fill="rgb(211,222,26)" rx="2" ry="2" />
<text text-anchor="" x="18.67" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Transactions#update_attributes_from_transaction_state (32004) (8 ms, 0.04%)</title><rect x="1044.3" y="1109" width="0.5" height="15.0" fill="rgb(232,59,13)" rx="2" ry="2" />
<text text-anchor="" x="1047.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Query#attribute? (8001) (126 ms, 0.64%)</title><rect x="139.4" y="1221" width="7.6" height="15.0" fill="rgb(206,175,12)" rx="2" ry="2" />
<text text-anchor="" x="142.44" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#initialize_dup (24003) (36 ms, 0.18%)</title><rect x="840.1" y="1157" width="2.1" height="15.0" fill="rgb(242,48,7)" rx="2" ry="2" />
<text text-anchor="" x="843.06" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (8000) (3 ms, 0.02%)</title><rect x="1131.8" y="709" width="0.2" height="15.0" fill="rgb(211,151,33)" rx="2" ry="2" />
<text text-anchor="" x="1134.84" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#init_with (8000) (752 ms, 3.85%)</title><rect x="1122.9" y="789" width="45.4" height="15.0" fill="rgb(233,172,46)" rx="2" ry="2" />
<text text-anchor="" x="1125.89" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Acti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Set#include? (24003) (10 ms, 0.05%)</title><rect x="760.1" y="1141" width="0.6" height="15.0" fill="rgb(222,168,8)" rx="2" ry="2" />
<text text-anchor="" x="763.08" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::ClassMethods#relation_class_for (8001) (16 ms, 0.08%)</title><rect x="45.6" y="1205" width="1.0" height="15.0" fill="rgb(215,144,6)" rx="2" ry="2" />
<text text-anchor="" x="48.61" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#utc (24003) (8 ms, 0.04%)</title><rect x="940.6" y="1141" width="0.5" height="15.0" fill="rgb(209,24,36)" rx="2" ry="2" />
<text text-anchor="" x="943.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SQLite3::Database#prepare (2) (8 ms, 0.04%)</title><rect x="1107.9" y="677" width="0.5" height="15.0" fill="rgb(209,225,49)" rx="2" ry="2" />
<text text-anchor="" x="1110.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Essence::ClassMethods#acts_as_essence (2) (15 ms, 0.08%)</title><rect x="13.5" y="1013" width="0.9" height="15.0" fill="rgb(227,132,45)" rx="2" ry="2" />
<text text-anchor="" x="16.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::BelongsToAssociation#primary_key (8000) (9 ms, 0.05%)</title><rect x="1146.6" y="725" width="0.6" height="15.0" fill="rgb(221,90,4)" rx="2" ry="2" />
<text text-anchor="" x="1149.64" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AutosaveAssociation::ClassMethods#add_autosave_association_callbacks (5) (3 ms, 0.02%)</title><rect x="12.6" y="773" width="0.1" height="15.0" fill="rgb(207,52,13)" rx="2" ry="2" />
<text text-anchor="" x="15.55" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#respond_to? (8001) (2 ms, 0.01%)</title><rect x="665.3" y="1061" width="0.2" height="15.0" fill="rgb(213,198,6)" rx="2" ry="2" />
<text text-anchor="" x="668.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Alchemy::Config&gt;#get (1) (3 ms, 0.02%)</title><rect x="15.1" y="981" width="0.2" height="15.0" fill="rgb(211,213,19)" rx="2" ry="2" />
<text text-anchor="" x="18.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::AbstractReflection#check_validity_of_inverse! (8000) (27 ms, 0.14%)</title><rect x="1134.3" y="677" width="1.6" height="15.0" fill="rgb(249,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1137.28" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BasicObject#instance_exec (1) (3 ms, 0.02%)</title><rect x="14.7" y="1013" width="0.2" height="15.0" fill="rgb(218,167,54)" rx="2" ry="2" />
<text text-anchor="" x="17.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ScopeRegistry#set_value_for (16002) (29 ms, 0.15%)</title><rect x="113.7" y="1045" width="1.8" height="15.0" fill="rgb(244,27,44)" rx="2" ry="2" />
<text text-anchor="" x="116.74" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::PageTreeSerializer#locked_notice (8001) (80 ms, 0.41%)</title><rect x="147.0" y="1269" width="4.9" height="15.0" fill="rgb(210,107,27)" rx="2" ry="2" />
<text text-anchor="" x="150.04" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (8001) (3 ms, 0.02%)</title><rect x="103.6" y="1029" width="0.1" height="15.0" fill="rgb(227,17,21)" rx="2" ry="2" />
<text text-anchor="" x="106.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::Interlock#permit_concurrent_loads (2) (87 ms, 0.44%)</title><rect x="1104.1" y="709" width="5.2" height="15.0" fill="rgb(246,122,22)" rx="2" ry="2" />
<text text-anchor="" x="1107.08" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#blank? (8001) (2 ms, 0.01%)</title><rect x="1032.3" y="1061" width="0.1" height="15.0" fill="rgb(247,123,52)" rx="2" ry="2" />
<text text-anchor="" x="1035.32" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::DelegateCache#relation_delegate_class (8001) (9 ms, 0.05%)</title><rect x="119.0" y="1093" width="0.6" height="15.0" fill="rgb(234,85,14)" rx="2" ry="2" />
<text text-anchor="" x="122.02" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Reflection::MacroReflection#scope_for (8001) (667 ms, 3.41%)</title><rect x="77.1" y="1157" width="40.2" height="15.0" fill="rgb(210,1,7)" rx="2" ry="2" />
<text text-anchor="" x="80.10" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Act..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::Association&gt;#build (2) (3 ms, 0.02%)</title><rect x="20.8" y="885" width="0.2" height="15.0" fill="rgb(238,5,2)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (16002) (3 ms, 0.02%)</title><rect x="1097.4" y="677" width="0.1" height="15.0" fill="rgb(214,95,14)" rx="2" ry="2" />
<text text-anchor="" x="1100.37" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ModelSchema::ClassMethods#yaml_encoder (8001) (2 ms, 0.01%)</title><rect x="1029.0" y="1093" width="0.1" height="15.0" fill="rgb(245,97,12)" rx="2" ry="2" />
<text text-anchor="" x="1031.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (74) (24 ms, 0.12%)</title><rect x="17.9" y="213" width="1.5" height="15.0" fill="rgb(218,129,14)" rx="2" ry="2" />
<text text-anchor="" x="20.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveModel::Attribute&gt;#from_database (8001) (13 ms, 0.07%)</title><rect x="1042.3" y="1045" width="0.8" height="15.0" fill="rgb(226,139,5)" rx="2" ry="2" />
<text text-anchor="" x="1045.27" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TransitionDataTimezoneInfo#period_for_utc (24003) (78 ms, 0.40%)</title><rect x="953.0" y="1045" width="4.7" height="15.0" fill="rgb(254,113,51)" rx="2" ry="2" />
<text text-anchor="" x="956.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::Visitor#visit (482) (4 ms, 0.02%)</title><rect x="18.5" y="53" width="0.2" height="15.0" fill="rgb(218,175,33)" rx="2" ry="2" />
<text text-anchor="" x="21.49" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#default_separator (24003) (12 ms, 0.06%)</title><rect x="819.1" y="1093" width="0.7" height="15.0" fill="rgb(208,21,33)" rx="2" ry="2" />
<text text-anchor="" x="822.10" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#arel_table (8001) (3 ms, 0.02%)</title><rect x="120.3" y="1093" width="0.2" height="15.0" fill="rgb(211,4,49)" rx="2" ry="2" />
<text text-anchor="" x="123.28" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute#value (32004) (24 ms, 0.12%)</title><rect x="1038.5" y="1093" width="1.5" height="15.0" fill="rgb(215,14,46)" rx="2" ry="2" />
<text text-anchor="" x="1041.52" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Nodes::Scalar#initialize (4695) (5 ms, 0.03%)</title><rect x="16.7" y="645" width="0.4" height="15.0" fill="rgb(220,122,37)" rx="2" ry="2" />
<text text-anchor="" x="19.74" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#key? (24003) (3 ms, 0.02%)</title><rect x="852.5" y="1109" width="0.2" height="15.0" fill="rgb(212,223,54)" rx="2" ry="2" />
<text text-anchor="" x="855.49" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#arel_table (8001) (3 ms, 0.02%)</title><rect x="131.8" y="1173" width="0.2" height="15.0" fill="rgb(243,35,51)" rx="2" ry="2" />
<text text-anchor="" x="134.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeMethods::ClassMethods#attribute_alias? (16002) (28 ms, 0.14%)</title><rect x="641.1" y="1173" width="1.7" height="15.0" fill="rgb(227,182,19)" rx="2" ry="2" />
<text text-anchor="" x="644.07" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::FinderMethods#find_by (1) (7 ms, 0.04%)</title><rect x="10.5" y="1221" width="0.4" height="15.0" fill="rgb(252,142,20)" rx="2" ry="2" />
<text text-anchor="" x="13.45" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#inspect (16002) (35 ms, 0.18%)</title><rect x="1100.5" y="597" width="2.1" height="15.0" fill="rgb(244,198,25)" rx="2" ry="2" />
<text text-anchor="" x="1103.49" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (8001) (111 ms, 0.57%)</title><rect x="675.0" y="1125" width="6.8" height="15.0" fill="rgb(239,155,32)" rx="2" ry="2" />
<text text-anchor="" x="678.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::Reduce#visit (2) (256 ms, 1.31%)</title><rect x="1077.7" y="805" width="15.5" height="15.0" fill="rgb(254,227,35)" rx="2" ry="2" />
<text text-anchor="" x="1080.72" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#fetch_value (8000) (16 ms, 0.08%)</title><rect x="1153.1" y="709" width="0.9" height="15.0" fill="rgb(247,181,7)" rx="2" ry="2" />
<text text-anchor="" x="1156.08" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (16002) (4 ms, 0.02%)</title><rect x="1050.5" y="1045" width="0.2" height="15.0" fill="rgb(223,215,28)" rx="2" ry="2" />
<text text-anchor="" x="1053.49" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#last (24003) (5 ms, 0.03%)</title><rect x="750.1" y="1173" width="0.2" height="15.0" fill="rgb(249,175,53)" rx="2" ry="2" />
<text text-anchor="" x="753.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::DelegateCache#relation_delegate_class (8001) (11 ms, 0.06%)</title><rect x="70.3" y="1189" width="0.6" height="15.0" fill="rgb(235,69,16)" rx="2" ry="2" />
<text text-anchor="" x="73.27" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#allocate (1) (2 ms, 0.01%)</title><rect x="10.6" y="1013" width="0.1" height="15.0" fill="rgb(242,33,4)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Gutentag::ActiveRecord&gt;#call (1) (3 ms, 0.02%)</title><rect x="20.8" y="949" width="0.2" height="15.0" fill="rgb(244,60,48)" rx="2" ry="2" />
<text text-anchor="" x="23.78" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#now (8001) (98 ms, 0.50%)</title><rect x="631.2" y="1221" width="5.9" height="15.0" fill="rgb(216,172,18)" rx="2" ry="2" />
<text text-anchor="" x="634.15" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#is_a? (8001) (3 ms, 0.02%)</title><rect x="95.9" y="1029" width="0.1" height="15.0" fill="rgb(228,72,53)" rx="2" ry="2" />
<text text-anchor="" x="98.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8000) (3 ms, 0.02%)</title><rect x="1153.8" y="677" width="0.2" height="15.0" fill="rgb(251,210,52)" rx="2" ry="2" />
<text text-anchor="" x="1156.83" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies::ModuleConstMissing#const_missing (2) (8 ms, 0.04%)</title><rect x="10.9" y="1237" width="0.5" height="15.0" fill="rgb(229,227,25)" rx="2" ry="2" />
<text text-anchor="" x="13.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TZInfo::TimezonePeriod#utc_total_offset (8001) (3 ms, 0.02%)</title><rect x="693.3" y="1141" width="0.2" height="15.0" fill="rgb(244,131,2)" rx="2" ry="2" />
<text text-anchor="" x="696.29" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Actions#expand_actions (392049) (908 ms, 4.64%)</title><rect x="209.4" y="1093" width="54.8" height="15.0" fill="rgb(243,69,27)" rx="2" ry="2" />
<text text-anchor="" x="212.44" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CanCa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (4) (5 ms, 0.03%)</title><rect x="13.6" y="933" width="0.3" height="15.0" fill="rgb(210,199,13)" rx="2" ry="2" />
<text text-anchor="" x="16.62" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#translations (24003) (13 ms, 0.07%)</title><rect x="811.2" y="1125" width="0.8" height="15.0" fill="rgb(210,139,2)" rx="2" ry="2" />
<text text-anchor="" x="814.24" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader::Association#key_conversion_required? (8000) (3 ms, 0.02%)</title><rect x="1173.5" y="965" width="0.2" height="15.0" fill="rgb(234,134,12)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#to_ary (1) (3,062 ms, 15.66%)</title><rect x="1004.8" y="1285" width="184.8" height="15.0" fill="rgb(244,168,30)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Relation#t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (12 ms, 0.06%)</title><rect x="137.5" y="1141" width="0.7" height="15.0" fill="rgb(239,119,39)" rx="2" ry="2" />
<text text-anchor="" x="140.47" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (8001) (2 ms, 0.01%)</title><rect x="685.6" y="1157" width="0.1" height="15.0" fill="rgb(254,190,20)" rx="2" ry="2" />
<text text-anchor="" x="688.59" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (112014) (17 ms, 0.09%)</title><rect x="1098.0" y="693" width="1.0" height="15.0" fill="rgb(209,157,29)" rx="2" ry="2" />
<text text-anchor="" x="1100.97" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (256 ms, 1.31%)</title><rect x="1077.7" y="565" width="15.5" height="15.0" fill="rgb(251,59,42)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Integer#to_s (8000) (3 ms, 0.02%)</title><rect x="1145.9" y="661" width="0.1" height="15.0" fill="rgb(234,223,33)" rx="2" ry="2" />
<text text-anchor="" x="1148.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::PageNatures#public? (8001) (1,263 ms, 6.46%)</title><rect x="629.1" y="1253" width="76.2" height="15.0" fill="rgb(208,12,32)" rx="2" ry="2" />
<text text-anchor="" x="632.06" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Alchemy:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Thread#[] (48006) (11 ms, 0.06%)</title><rect x="887.5" y="1157" width="0.7" height="15.0" fill="rgb(209,178,24)" rx="2" ry="2" />
<text text-anchor="" x="890.52" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Thread&gt;#current (24003) (3 ms, 0.02%)</title><rect x="756.7" y="1141" width="0.2" height="15.0" fill="rgb(237,11,43)" rx="2" ry="2" />
<text text-anchor="" x="759.73" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Alchemy::Taggable&gt;#included (1) (3 ms, 0.02%)</title><rect x="13.3" y="853" width="0.2" height="15.0" fill="rgb(205,181,46)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (8001) (20 ms, 0.10%)</title><rect x="91.2" y="1045" width="1.2" height="15.0" fill="rgb(221,212,27)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_object (31) (6 ms, 0.03%)</title><rect x="15.3" y="709" width="0.3" height="15.0" fill="rgb(231,37,13)" rx="2" ry="2" />
<text text-anchor="" x="18.31" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#normalize_keys (24003) (379 ms, 1.94%)</title><rect x="812.0" y="1125" width="22.9" height="15.0" fill="rgb(251,137,11)" rx="2" ry="2" />
<text text-anchor="" x="815.01" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (6 ms, 0.03%)</title><rect x="28.7" y="1189" width="0.3" height="15.0" fill="rgb(252,192,10)" rx="2" ry="2" />
<text text-anchor="" x="31.69" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Object#acts_like? (8001) (7 ms, 0.04%)</title><rect x="665.0" y="1077" width="0.5" height="15.0" fill="rgb(241,186,16)" rx="2" ry="2" />
<text text-anchor="" x="668.02" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#instance_of? (24003) (5 ms, 0.03%)</title><rect x="900.7" y="1077" width="0.3" height="15.0" fill="rgb(237,35,26)" rx="2" ry="2" />
<text text-anchor="" x="903.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#compare_with_coercion (24003) (305 ms, 1.56%)</title><rect x="941.1" y="1141" width="18.4" height="15.0" fill="rgb(217,193,29)" rx="2" ry="2" />
<text text-anchor="" x="944.07" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kernel#dup (24003) (31 ms, 0.16%)</title><rect x="834.9" y="1141" width="1.8" height="15.0" fill="rgb(208,52,29)" rx="2" ry="2" />
<text text-anchor="" x="837.88" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#revive_hash (77) (5 ms, 0.03%)</title><rect x="18.4" y="133" width="0.3" height="15.0" fill="rgb(237,101,3)" rx="2" ry="2" />
<text text-anchor="" x="21.43" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#sort! (48006) (56 ms, 0.29%)</title><rect x="356.9" y="1093" width="3.4" height="15.0" fill="rgb(249,199,33)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation#reset (8001) (22 ms, 0.11%)</title><rect x="106.5" y="1029" width="1.4" height="15.0" fill="rgb(215,189,10)" rx="2" ry="2" />
<text text-anchor="" x="109.52" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8001) (47 ms, 0.24%)</title><rect x="700.6" y="1141" width="2.9" height="15.0" fill="rgb(233,214,14)" rx="2" ry="2" />
<text text-anchor="" x="703.65" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core::ClassMethods#predicate_builder (8001) (3 ms, 0.02%)</title><rect x="132.0" y="1173" width="0.1" height="15.0" fill="rgb(253,49,7)" rx="2" ry="2" />
<text text-anchor="" x="134.96" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (16002) (2 ms, 0.01%)</title><rect x="1108.9" y="645" width="0.1" height="15.0" fill="rgb(211,46,6)" rx="2" ry="2" />
<text text-anchor="" x="1111.87" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (48006) (34 ms, 0.17%)</title><rect x="318.5" y="1077" width="2.1" height="15.0" fill="rgb(207,95,15)" rx="2" ry="2" />
<text text-anchor="" x="321.54" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (24003) (55 ms, 0.28%)</title><rect x="853.4" y="1125" width="3.4" height="15.0" fill="rgb(220,100,52)" rx="2" ry="2" />
<text text-anchor="" x="856.45" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::TableMetadata#type (16002) (40 ms, 0.20%)</title><rect x="1072.5" y="757" width="2.4" height="15.0" fill="rgb(215,170,15)" rx="2" ry="2" />
<text text-anchor="" x="1075.51" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#_deep_transform_keys_in_object (42) (5 ms, 0.03%)</title><rect x="15.3" y="677" width="0.3" height="15.0" fill="rgb(232,203,10)" rx="2" ry="2" />
<text text-anchor="" x="18.32" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (44 ms, 0.23%)</title><rect x="144.1" y="1109" width="2.6" height="15.0" fill="rgb(241,188,53)" rx="2" ry="2" />
<text text-anchor="" x="147.09" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Predications#quoted_array (2) (19 ms, 0.10%)</title><rect x="1069.6" y="773" width="1.2" height="15.0" fill="rgb(211,76,47)" rx="2" ry="2" />
<text text-anchor="" x="1072.61" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#fetch (16002) (4 ms, 0.02%)</title><rect x="146.5" y="1077" width="0.2" height="15.0" fill="rgb(244,67,39)" rx="2" ry="2" />
<text text-anchor="" x="149.48" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Time#utc? (8001) (2 ms, 0.01%)</title><rect x="635.7" y="1173" width="0.1" height="15.0" fill="rgb(247,99,32)" rx="2" ry="2" />
<text text-anchor="" x="638.73" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#current (24003) (346 ms, 1.77%)</title><rect x="883.9" y="1189" width="20.9" height="15.0" fill="rgb(217,113,15)" rx="2" ry="2" />
<text text-anchor="" x="886.90" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Config#enforce_available_locales (24003) (10 ms, 0.05%)</title><rect x="760.7" y="1157" width="0.6" height="15.0" fill="rgb(236,139,5)" rx="2" ry="2" />
<text text-anchor="" x="763.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded? (8001) (3 ms, 0.02%)</title><rect x="63.2" y="1189" width="0.1" height="15.0" fill="rgb(247,102,22)" rx="2" ry="2" />
<text text-anchor="" x="66.18" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#detect (32004) (114 ms, 0.58%)</title><rect x="579.8" y="1029" width="6.9" height="15.0" fill="rgb(225,148,39)" rx="2" ry="2" />
<text text-anchor="" x="582.80" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveModel::Type::Helpers::AcceptsMultiparameterTime:0x00007f9056426c18&gt;#cast (8001) (17 ms, 0.09%)</title><rect x="699.3" y="1061" width="1.1" height="15.0" fill="rgb(226,74,38)" rx="2" ry="2" />
<text text-anchor="" x="702.35" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Core#init_internals (8001) (12 ms, 0.06%)</title><rect x="1024.6" y="1061" width="0.8" height="15.0" fill="rgb(230,25,51)" rx="2" ry="2" />
<text text-anchor="" x="1027.63" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (8001) (36 ms, 0.18%)</title><rect x="119.6" y="1109" width="2.2" height="15.0" fill="rgb(207,85,22)" rx="2" ry="2" />
<text text-anchor="" x="122.58" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#to_a (2) (62 ms, 0.32%)</title><rect x="1104.1" y="677" width="3.8" height="15.0" fill="rgb(242,224,9)" rx="2" ry="2" />
<text text-anchor="" x="1107.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Delegation::DelegateCache#relation_delegate_class (8001) (10 ms, 0.05%)</title><rect x="46.0" y="1189" width="0.6" height="15.0" fill="rgb(252,26,23)" rx="2" ry="2" />
<text text-anchor="" x="48.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::Time&gt;#now (8001) (10 ms, 0.05%)</title><rect x="631.9" y="1189" width="0.6" height="15.0" fill="rgb(218,53,28)" rx="2" ry="2" />
<text text-anchor="" x="634.85" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;Class:0x00007f9056328ac8&gt;#__getobj__ (8001) (5 ms, 0.03%)</title><rect x="646.6" y="1077" width="0.3" height="15.0" fill="rgb(247,158,43)" rx="2" ry="2" />
<text text-anchor="" x="649.59" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Base#translate (24003) (1,632 ms, 8.35%)</title><rect x="744.4" y="1189" width="98.5" height="15.0" fill="rgb(239,47,6)" rx="2" ry="2" />
<text text-anchor="" x="747.41" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I18n::Base#..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Type::Integer#deserialize (8000) (8 ms, 0.04%)</title><rect x="1159.1" y="677" width="0.5" height="15.0" fill="rgb(225,171,11)" rx="2" ry="2" />
<text text-anchor="" x="1162.13" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Psych::Visitors::ToRuby#visit_Psych_Nodes_Mapping (41) (34 ms, 0.17%)</title><rect x="17.7" y="373" width="2.0" height="15.0" fill="rgb(211,96,8)" rx="2" ry="2" />
<text text-anchor="" x="20.68" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::ConnectionAdapters::QueryCache#select_all (2) (605 ms, 3.09%)</title><rect x="1077.7" y="869" width="36.5" height="15.0" fill="rgb(251,196,3)" rx="2" ry="2" />
<text text-anchor="" x="1080.71" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Act..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#in_time_zone (24003) (183 ms, 0.94%)</title><rect x="891.9" y="1157" width="11.1" height="15.0" fill="rgb(233,193,27)" rx="2" ry="2" />
<text text-anchor="" x="894.94" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#initialize (8000) (11 ms, 0.06%)</title><rect x="1122.2" y="757" width="0.7" height="15.0" fill="rgb(211,34,9)" rx="2" ry="2" />
<text text-anchor="" x="1125.24" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Alchemy::Page::FixedAttributes#fixed? (48006) (86 ms, 0.44%)</title><rect x="933.6" y="1141" width="5.2" height="15.0" fill="rgb(238,214,12)" rx="2" ry="2" />
<text text-anchor="" x="936.61" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8001) (14 ms, 0.07%)</title><rect x="135.1" y="1189" width="0.9" height="15.0" fill="rgb(226,185,32)" rx="2" ry="2" />
<text text-anchor="" x="138.12" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::Ability::Actions#expanded_actions (392049) (107 ms, 0.55%)</title><rect x="257.7" y="1077" width="6.5" height="15.0" fill="rgb(229,136,44)" rx="2" ry="2" />
<text text-anchor="" x="260.75" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Preloader#preload (2) (2,597 ms, 13.28%)</title><rect x="1032.8" y="1189" width="156.7" height="15.0" fill="rgb(215,77,17)" rx="2" ry="2" />
<text text-anchor="" x="1035.79" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ActiveRecord::Associ..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (8001) (11 ms, 0.06%)</title><rect x="91.6" y="1029" width="0.7" height="15.0" fill="rgb(228,133,10)" rx="2" ry="2" />
<text text-anchor="" x="94.63" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#include? (8001) (2 ms, 0.01%)</title><rect x="55.1" y="1077" width="0.1" height="15.0" fill="rgb(221,128,25)" rx="2" ry="2" />
<text text-anchor="" x="58.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#each_with_index (4) (256 ms, 1.31%)</title><rect x="1077.7" y="693" width="15.5" height="15.0" fill="rgb(218,2,38)" rx="2" ry="2" />
<text text-anchor="" x="1080.73" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::Attribute::FromDatabase#type_cast (8000) (12 ms, 0.06%)</title><rect x="1158.9" y="693" width="0.7" height="15.0" fill="rgb(226,100,31)" rx="2" ry="2" />
<text text-anchor="" x="1161.88" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>I18n::Backend::Simple::Implementation#init_translations (1) (76 ms, 0.39%)</title><rect x="15.3" y="853" width="4.6" height="15.0" fill="rgb(243,40,50)" rx="2" ry="2" />
<text text-anchor="" x="18.27" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Scoping::ClassMethods#current_scope (8001) (96 ms, 0.49%)</title><rect x="51.1" y="1141" width="5.8" height="15.0" fill="rgb(248,188,26)" rx="2" ry="2" />
<text text-anchor="" x="54.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActionController::Rendering#render (1) (4 ms, 0.02%)</title><rect x="10.0" y="1237" width="0.3" height="15.0" fill="rgb(229,57,21)" rx="2" ry="2" />
<text text-anchor="" x="13.04" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Module#=== (8001) (2 ms, 0.01%)</title><rect x="678.1" y="1013" width="0.1" height="15.0" fill="rgb(223,145,11)" rx="2" ry="2" />
<text text-anchor="" x="681.09" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Relation::Merger#merge_joins (1) (2 ms, 0.01%)</title><rect x="21.1" y="997" width="0.1" height="15.0" fill="rgb(214,85,37)" rx="2" ry="2" />
<text text-anchor="" x="24.05" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Collectors::SQLString#add_bind (16002) (18 ms, 0.09%)</title><rect x="1082.5" y="341" width="1.1" height="15.0" fill="rgb(219,148,26)" rx="2" ry="2" />
<text text-anchor="" x="1085.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CanCan::ConditionsMatcher#conditions_empty? (8001) (7 ms, 0.04%)</title><rect x="592.5" y="1077" width="0.4" height="15.0" fill="rgb(223,179,26)" rx="2" ry="2" />
<text text-anchor="" x="595.49" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#to_s (16002) (3 ms, 0.02%)</title><rect x="1189.4" y="981" width="0.1" height="15.0" fill="rgb(207,85,42)" rx="2" ry="2" />
<text text-anchor="" x="1192.36" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Module::Panko&gt;#serialize_subjects (1) (16,295 ms, 83.35%)</title><rect x="21.3" y="1285" width="983.5" height="15.0" fill="rgb(215,192,29)" rx="2" ry="2" />
<text text-anchor="" x="24.35" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;Module::Panko&gt;#serialize_subjects (1)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#_read_attribute (32004) (90 ms, 0.46%)</title><rect x="571.6" y="1029" width="5.4" height="15.0" fill="rgb(207,170,9)" rx="2" ry="2" />
<text text-anchor="" x="574.58" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Associations::Builder::CollectionAssociation&gt;#define_callbacks (2) (2 ms, 0.01%)</title><rect x="13.3" y="757" width="0.1" height="15.0" fill="rgb(238,23,2)" rx="2" ry="2" />
<text text-anchor="" x="16.31" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Enumerable#group_by (2) (71 ms, 0.36%)</title><rect x="1172.4" y="1013" width="4.3" height="15.0" fill="rgb(233,135,19)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Gutentag::ActiveRecord#call (1) (3 ms, 0.02%)</title><rect x="13.3" y="821" width="0.2" height="15.0" fill="rgb(228,189,52)" rx="2" ry="2" />
<text text-anchor="" x="16.26" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Class#new (1) (8 ms, 0.04%)</title><rect x="10.9" y="1269" width="0.5" height="15.0" fill="rgb(254,157,35)" rx="2" ry="2" />
<text text-anchor="" x="13.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (8000) (2 ms, 0.01%)</title><rect x="1148.7" y="677" width="0.1" height="15.0" fill="rgb(216,58,45)" rx="2" ry="2" />
<text text-anchor="" x="1151.67" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeWithZone#to_time (24003) (254 ms, 1.30%)</title><rect x="943.4" y="1125" width="15.4" height="15.0" fill="rgb(235,205,35)" rx="2" ry="2" />
<text text-anchor="" x="946.43" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (16002) (6 ms, 0.03%)</title><rect x="1068.0" y="869" width="0.3" height="15.0" fill="rgb(222,167,19)" rx="2" ry="2" />
<text text-anchor="" x="1070.98" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Read#read_attribute (24003) (143 ms, 0.73%)</title><rect x="861.0" y="1141" width="8.6" height="15.0" fill="rgb(218,222,50)" rx="2" ry="2" />
<text text-anchor="" x="863.96" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::Dependencies#require_or_load (1) (4 ms, 0.02%)</title><rect x="11.4" y="1157" width="0.2" height="15.0" fill="rgb(238,199,11)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (8000) (6 ms, 0.03%)</title><rect x="1151.7" y="661" width="0.4" height="15.0" fill="rgb(213,92,53)" rx="2" ry="2" />
<text text-anchor="" x="1154.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#loaded? (8001) (2 ms, 0.01%)</title><rect x="64.0" y="1157" width="0.1" height="15.0" fill="rgb(235,208,35)" rx="2" ry="2" />
<text text-anchor="" x="66.98" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#values_at (48006) (2,825 ms, 14.45%)</title><rect x="384.3" y="1093" width="170.5" height="15.0" fill="rgb(247,56,0)" rx="2" ry="2" />
<text text-anchor="" x="387.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Hash#values_at (48006)</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hash#each (8001) (87 ms, 0.44%)</title><rect x="96.4" y="1029" width="5.2" height="15.0" fill="rgb(252,31,50)" rx="2" ry="2" />
<text text-anchor="" x="99.36" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NilClass#blank? (32004) (9 ms, 0.05%)</title><rect x="590.3" y="1045" width="0.5" height="15.0" fill="rgb(248,87,38)" rx="2" ry="2" />
<text text-anchor="" x="593.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>#&lt;ActiveRecord::AttributeMethods::GeneratedAttributeMethods:0x00007f9057d8bca8&gt;#restricted? (8001) (137 ms, 0.70%)</title><rect x="712.0" y="1253" width="8.2" height="15.0" fill="rgb(212,165,13)" rx="2" ry="2" />
<text text-anchor="" x="714.96" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arel::Visitors::ToSql#visit_Arel_Nodes_In (2) (105 ms, 0.54%)</title><rect x="1077.7" y="517" width="6.4" height="15.0" fill="rgb(212,12,9)" rx="2" ry="2" />
<text text-anchor="" x="1080.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::AttributeSet#[] (24003) (20 ms, 0.10%)</title><rect x="855.4" y="1093" width="1.2" height="15.0" fill="rgb(248,112,2)" rx="2" ry="2" />
<text text-anchor="" x="858.41" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (24003) (10 ms, 0.05%)</title><rect x="880.7" y="1061" width="0.6" height="15.0" fill="rgb(213,49,35)" rx="2" ry="2" />
<text text-anchor="" x="883.75" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Concurrent::Map#[] (144018) (200 ms, 1.02%)</title><rect x="822.8" y="1093" width="12.1" height="15.0" fill="rgb(232,61,23)" rx="2" ry="2" />
<text text-anchor="" x="825.78" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::Associations::Association#klass (16002) (13 ms, 0.07%)</title><rect x="74.7" y="1157" width="0.8" height="15.0" fill="rgb(244,8,24)" rx="2" ry="2" />
<text text-anchor="" x="77.66" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveRecord::AttributeMethods::Write#_write_attribute (8000) (56 ms, 0.29%)</title><rect x="1149.2" y="693" width="3.4" height="15.0" fill="rgb(227,107,4)" rx="2" ry="2" />
<text text-anchor="" x="1152.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#default_scopes (8001) (3 ms, 0.02%)</title><rect x="57.9" y="1125" width="0.2" height="15.0" fill="rgb(248,193,11)" rx="2" ry="2" />
<text text-anchor="" x="60.93" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#concat (16002) (3 ms, 0.02%)</title><rect x="1180.7" y="997" width="0.1" height="15.0" fill="rgb(216,223,23)" rx="2" ry="2" />
<text text-anchor="" x="1183.68" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DateAndTime::Zones#in_time_zone (8001) (64 ms, 0.33%)</title><rect x="632.5" y="1205" width="3.8" height="15.0" fill="rgb(225,108,23)" rx="2" ry="2" />
<text text-anchor="" x="635.48" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveSupport::TimeZone#time_now (8001) (14 ms, 0.07%)</title><rect x="631.6" y="1205" width="0.9" height="15.0" fill="rgb(226,177,13)" rx="2" ry="2" />
<text text-anchor="" x="634.65" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol#to_s (8001) (3 ms, 0.02%)</title><rect x="703.8" y="1173" width="0.1" height="15.0" fill="rgb(234,53,34)" rx="2" ry="2" />
<text text-anchor="" x="706.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>String#hash (48006) (13 ms, 0.07%)</title><rect x="834.1" y="1045" width="0.8" height="15.0" fill="rgb(244,133,19)" rx="2" ry="2" />
<text text-anchor="" x="837.10" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Array#each (2) (105 ms, 0.54%)</title><rect x="1077.7" y="405" width="6.4" height="15.0" fill="rgb(210,170,11)" rx="2" ry="2" />
<text text-anchor="" x="1080.75" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Set#each (1) (3 ms, 0.02%)</title><rect x="10.1" y="1173" width="0.2" height="15.0" fill="rgb(229,9,34)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ActiveModel::LazyAttributeHash#[] (8001) (3 ms, 0.02%)</title><rect x="707.8" y="1157" width="0.2" height="15.0" fill="rgb(252,202,38)" rx="2" ry="2" />
<text text-anchor="" x="710.79" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;Class::ActiveRecord::Base&gt;#attribute_aliases (24003) (7 ms, 0.04%)</title><rect x="965.7" y="1109" width="0.4" height="15.0" fill="rgb(249,99,15)" rx="2" ry="2" />
<text text-anchor="" x="968.67" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment