Skip to content

Instantly share code, notes, and snippets.

@hugho-ad
Last active February 14, 2019 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugho-ad/c8787d4fa9f12ff7434129724002c948 to your computer and use it in GitHub Desktop.
Save hugho-ad/c8787d4fa9f12ff7434129724002c948 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="1286" onload="init(evt)" viewBox="0 0 1200 1286" 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="1286.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="1269" 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="1269" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2715 (1 samples, 0.12%)</title><rect x="182.0" y="277" width="1.4" height="15.0" fill="rgb(252,124,34)" rx="2" ry="2" />
<text text-anchor="" x="185.02" 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>/.repo_requirements/odoo/odoo/models.py:_write:3174 (1 samples, 0.12%)</title><rect x="159.3" y="485" width="1.4" height="15.0" fill="rgb(248,150,29)" rx="2" ry="2" />
<text text-anchor="" x="162.28" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (9 samples, 1.08%)</title><rect x="683.9" y="277" width="12.8" height="15.0" fill="rgb(225,12,15)" rx="2" ry="2" />
<text text-anchor="" x="686.88" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.12%)</title><rect x="1184.3" y="229" width="1.4" height="15.0" fill="rgb(222,83,16)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.12%)</title><rect x="558.8" y="213" width="1.4" height="15.0" fill="rgb(208,20,1)" rx="2" ry="2" />
<text text-anchor="" x="561.77" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (4 samples, 0.48%)</title><rect x="263.1" y="437" width="5.6" height="15.0" fill="rgb(213,176,51)" rx="2" ry="2" />
<text text-anchor="" x="266.06" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_amount_tax_cash_basis:1715 (1 samples, 0.12%)</title><rect x="482.0" y="517" width="1.4" height="15.0" fill="rgb(214,102,28)" rx="2" ry="2" />
<text text-anchor="" x="485.00" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (6 samples, 0.72%)</title><rect x="622.7" y="325" width="8.6" height="15.0" fill="rgb(239,167,47)" rx="2" ry="2" />
<text text-anchor="" x="625.75" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="75.4" y="1173" width="1.4" height="15.0" fill="rgb(218,89,45)" rx="2" ry="2" />
<text text-anchor="" x="78.40" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="1187.2" y="229" width="1.4" height="15.0" fill="rgb(220,154,15)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (63 samples, 7.59%)</title><rect x="1079.1" y="389" width="89.6" height="15.0" fill="rgb(216,85,2)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.12%)</title><rect x="894.3" y="309" width="1.4" height="15.0" fill="rgb(230,164,6)" rx="2" ry="2" />
<text text-anchor="" x="897.29" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.60%)</title><rect x="152.2" y="293" width="7.1" height="15.0" fill="rgb(254,4,32)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:987 (2 samples, 0.24%)</title><rect x="1082.0" y="357" width="2.8" height="15.0" fill="rgb(250,78,16)" rx="2" ry="2" />
<text text-anchor="" x="1084.95" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="1114.7" y="181" width="1.4" height="15.0" fill="rgb(223,209,27)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4901 (1 samples, 0.12%)</title><rect x="1188.6" y="549" width="1.4" height="15.0" fill="rgb(223,100,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/models.py:_search:3781 (1 samples, 0.12%)</title><rect x="1066.3" y="277" width="1.4" height="15.0" fill="rgb(227,143,42)" rx="2" ry="2" />
<text text-anchor="" x="1069.31" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (6 samples, 0.72%)</title><rect x="172.1" y="117" width="8.5" height="15.0" fill="rgb(233,26,25)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.12%)</title><rect x="1124.6" y="325" width="1.4" height="15.0" fill="rgb(245,174,8)" rx="2" ry="2" />
<text text-anchor="" x="1127.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="479.2" y="485" width="1.4" height="15.0" fill="rgb(235,75,35)" rx="2" ry="2" />
<text text-anchor="" x="482.16" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.24%)</title><rect x="152.2" y="277" width="2.8" height="15.0" fill="rgb(247,35,24)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.12%)</title><rect x="1099.0" y="165" width="1.4" height="15.0" fill="rgb(240,49,19)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (15 samples, 1.81%)</title><rect x="955.4" y="261" width="21.3" height="15.0" fill="rgb(208,60,7)" rx="2" ry="2" />
<text text-anchor="" x="958.42" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:376 (1 samples, 0.12%)</title><rect x="1094.7" y="341" width="1.5" height="15.0" fill="rgb(205,27,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1185.7" y="117" width="1.5" height="15.0" fill="rgb(245,59,41)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.12%)</title><rect x="480.6" y="453" width="1.4" height="15.0" fill="rgb(214,225,51)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1157.3" y="293" width="1.4" height="15.0" fill="rgb(215,178,18)" rx="2" ry="2" />
<text text-anchor="" x="1160.30" 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>/usr/lib/python3.5/socketserver.py:process_request_thread:625 (749 samples, 90.24%)</title><rect x="125.2" y="1173" width="1064.8" height="15.0" fill="rgb(238,107,10)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:process_request_thread:625</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (11 samples, 1.33%)</title><rect x="1109.0" y="277" width="15.6" height="15.0" fill="rgb(222,217,28)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (111 samples, 13.37%)</title><rect x="895.7" y="325" width="157.8" height="15.0" fill="rgb(215,79,13)" rx="2" ry="2" />
<text text-anchor="" x="898.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="565.9" y="293" width="1.4" height="15.0" fill="rgb(248,178,49)" rx="2" ry="2" />
<text text-anchor="" x="568.88" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (1 samples, 0.12%)</title><rect x="66.9" y="1141" width="1.4" height="15.0" fill="rgb(252,85,46)" rx="2" ry="2" />
<text text-anchor="" x="69.87" 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>/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57 (2 samples, 0.24%)</title><rect x="1185.7" y="437" width="2.9" height="15.0" fill="rgb(205,192,51)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="536.0" y="341" width="1.4" height="15.0" fill="rgb(231,16,45)" rx="2" ry="2" />
<text text-anchor="" x="539.02" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="480.6" y="485" width="1.4" height="15.0" fill="rgb(250,209,1)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.12%)</title><rect x="169.2" y="293" width="1.5" height="15.0" fill="rgb(239,218,36)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliations:823 (748 samples, 90.12%)</title><rect x="126.6" y="677" width="1063.4" height="15.0" fill="rgb(235,55,30)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliations:823</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:207 (392 samples, 47.23%)</title><rect x="497.6" y="437" width="557.3" height="15.0" fill="rgb(233,89,21)" rx="2" ry="2" />
<text text-anchor="" x="500.64" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.60%)</title><rect x="162.1" y="309" width="7.1" height="15.0" fill="rgb(240,75,33)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="146.5" y="213" width="1.4" height="15.0" fill="rgb(238,220,20)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (6 samples, 0.72%)</title><rect x="1099.0" y="309" width="8.5" height="15.0" fill="rgb(251,14,53)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.12%)</title><rect x="1053.5" y="293" width="1.4" height="15.0" fill="rgb(252,184,19)" rx="2" ry="2" />
<text text-anchor="" x="1056.52" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1168.7" y="405" width="1.4" height="15.0" fill="rgb(232,151,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.67" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.12%)</title><rect x="888.6" y="341" width="1.4" height="15.0" fill="rgb(249,79,18)" rx="2" ry="2" />
<text text-anchor="" x="891.60" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (1 samples, 0.12%)</title><rect x="1185.7" y="309" width="1.5" height="15.0" fill="rgb(212,87,53)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:990 (21 samples, 2.53%)</title><rect x="85.3" y="1221" width="29.9" height="15.0" fill="rgb(252,15,51)" rx="2" ry="2" />
<text text-anchor="" x="88.35" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="74.0" y="1189" width="1.4" height="15.0" fill="rgb(244,0,35)" rx="2" ry="2" />
<text text-anchor="" x="76.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1275 (1 samples, 0.12%)</title><rect x="500.5" y="421" width="1.4" height="15.0" fill="rgb(219,45,27)" rx="2" ry="2" />
<text text-anchor="" x="503.48" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (2 samples, 0.24%)</title><rect x="1178.6" y="421" width="2.9" height="15.0" fill="rgb(235,203,51)" rx="2" ry="2" />
<text text-anchor="" x="1181.63" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="1181.5" y="373" width="1.4" height="15.0" fill="rgb(238,71,19)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="560.2" y="293" width="1.4" height="15.0" fill="rgb(208,31,40)" rx="2" ry="2" />
<text text-anchor="" x="563.19" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency_and_amount:513 (1 samples, 0.12%)</title><rect x="1057.8" y="373" width="1.4" height="15.0" fill="rgb(223,7,42)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (7 samples, 0.84%)</title><rect x="170.7" y="309" width="9.9" height="15.0" fill="rgb(216,76,20)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.12%)</title><rect x="1062.0" y="261" width="1.5" height="15.0" fill="rgb(243,198,17)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.24%)</title><rect x="1151.6" y="181" width="2.9" height="15.0" fill="rgb(243,20,14)" rx="2" ry="2" />
<text text-anchor="" x="1154.61" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1121.8" y="181" width="1.4" height="15.0" fill="rgb(230,229,25)" rx="2" ry="2" />
<text text-anchor="" x="1124.76" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (2 samples, 0.24%)</title><rect x="544.6" y="309" width="2.8" height="15.0" fill="rgb(226,142,47)" rx="2" ry="2" />
<text text-anchor="" x="547.55" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (5 samples, 0.60%)</title><rect x="162.1" y="325" width="7.1" height="15.0" fill="rgb(252,128,42)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.12%)</title><rect x="463.5" y="437" width="1.4" height="15.0" fill="rgb(252,86,15)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1263 (1 samples, 0.12%)</title><rect x="1177.2" y="421" width="1.4" height="15.0" fill="rgb(239,117,38)" rx="2" ry="2" />
<text text-anchor="" x="1180.20" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (5 samples, 0.60%)</title><rect x="631.3" y="325" width="7.1" height="15.0" fill="rgb(207,104,4)" rx="2" ry="2" />
<text text-anchor="" x="634.28" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.12%)</title><rect x="1063.5" y="261" width="1.4" height="15.0" fill="rgb(250,141,18)" rx="2" ry="2" />
<text text-anchor="" x="1066.47" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (3 samples, 0.36%)</title><rect x="592.9" y="325" width="4.3" height="15.0" fill="rgb(213,30,31)" rx="2" ry="2" />
<text text-anchor="" x="595.89" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (14 samples, 1.69%)</title><rect x="139.4" y="501" width="19.9" height="15.0" fill="rgb(213,105,50)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="329.9" y="421" width="1.4" height="15.0" fill="rgb(226,141,48)" rx="2" ry="2" />
<text text-anchor="" x="332.88" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1114.7" y="149" width="1.4" height="15.0" fill="rgb(243,62,13)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.24%)</title><rect x="172.1" y="101" width="2.8" height="15.0" fill="rgb(238,229,4)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/osv/expression.py:&lt;listcomp&gt;:802 (1 samples, 0.12%)</title><rect x="503.3" y="293" width="1.4" height="15.0" fill="rgb(244,152,23)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.12%)</title><rect x="83.9" y="1125" width="1.4" height="15.0" fill="rgb(230,153,48)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (1 samples, 0.12%)</title><rect x="1188.6" y="597" width="1.4" height="15.0" fill="rgb(254,122,49)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1114 (1 samples, 0.12%)</title><rect x="527.5" y="373" width="1.4" height="15.0" fill="rgb(212,174,20)" rx="2" ry="2" />
<text text-anchor="" x="530.49" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (6 samples, 0.72%)</title><rect x="1148.8" y="213" width="8.5" height="15.0" fill="rgb(253,149,1)" rx="2" ry="2" />
<text text-anchor="" x="1151.77" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (138 samples, 16.63%)</title><rect x="658.3" y="325" width="196.2" height="15.0" fill="rgb(222,192,33)" rx="2" ry="2" />
<text text-anchor="" x="661.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1162 (1 samples, 0.12%)</title><rect x="1063.5" y="229" width="1.4" height="15.0" fill="rgb(224,53,34)" rx="2" ry="2" />
<text text-anchor="" x="1066.47" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="534.6" y="357" width="1.4" height="15.0" fill="rgb(230,156,11)" rx="2" ry="2" />
<text text-anchor="" x="537.60" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (1 samples, 0.12%)</title><rect x="1184.3" y="325" width="1.4" height="15.0" fill="rgb(228,142,27)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (2 samples, 0.24%)</title><rect x="1151.6" y="165" width="2.9" height="15.0" fill="rgb(234,3,49)" rx="2" ry="2" />
<text text-anchor="" x="1154.61" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (1 samples, 0.12%)</title><rect x="145.1" y="293" width="1.4" height="15.0" fill="rgb(246,197,4)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="297.2" y="405" width="1.4" height="15.0" fill="rgb(247,202,10)" rx="2" ry="2" />
<text text-anchor="" x="300.18" 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>/home/odoo/odoo-11.0/addons/bus/controllers/main.py:poll:42 (1 samples, 0.12%)</title><rect x="125.2" y="741" width="1.4" height="15.0" fill="rgb(205,166,50)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (1 samples, 0.12%)</title><rect x="861.6" y="293" width="1.4" height="15.0" fill="rgb(245,29,2)" rx="2" ry="2" />
<text text-anchor="" x="864.59" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="126.6" y="357" width="1.4" height="15.0" fill="rgb(205,183,38)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/fields.py:read:2446 (6 samples, 0.72%)</title><rect x="504.7" y="357" width="8.6" height="15.0" fill="rgb(207,56,49)" rx="2" ry="2" />
<text text-anchor="" x="507.75" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_compute_residual:108 (1 samples, 0.12%)</title><rect x="170.7" y="165" width="1.4" height="15.0" fill="rgb(250,165,43)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (12 samples, 1.45%)</title><rect x="1059.2" y="389" width="17.1" height="15.0" fill="rgb(226,14,10)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.12%)</title><rect x="142.2" y="277" width="1.4" height="15.0" fill="rgb(228,113,20)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:205 (7 samples, 0.84%)</title><rect x="487.7" y="437" width="9.9" height="15.0" fill="rgb(210,196,14)" rx="2" ry="2" />
<text text-anchor="" x="490.69" 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>/.repo_requirements/odoo/odoo/service/model.py:wrapper:97 (749 samples, 90.24%)</title><rect x="125.2" y="805" width="1064.8" height="15.0" fill="rgb(254,217,33)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/model.py:wrapper:97</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="499.1" y="405" width="1.4" height="15.0" fill="rgb(219,77,6)" rx="2" ry="2" />
<text text-anchor="" x="502.06" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="1053.5" y="325" width="1.4" height="15.0" fill="rgb(230,85,53)" rx="2" ry="2" />
<text text-anchor="" x="1056.52" 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>/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393 (749 samples, 90.24%)</title><rect x="125.2" y="885" width="1064.8" height="15.0" fill="rgb(215,226,18)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/http_routing/models/ir_http.py:_dispatch:393</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/socketserver.py:serve_forever:232 (1 samples, 0.12%)</title><rect x="123.7" y="1141" width="1.5" height="15.0" fill="rgb(254,189,1)" rx="2" ry="2" />
<text text-anchor="" x="126.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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2768 (1 samples, 0.12%)</title><rect x="10.0" y="997" width="1.4" height="15.0" fill="rgb(242,69,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (2 samples, 0.24%)</title><rect x="557.3" y="261" width="2.9" height="15.0" fill="rgb(249,216,20)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (7 samples, 0.84%)</title><rect x="170.7" y="261" width="9.9" height="15.0" fill="rgb(236,26,37)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (7 samples, 0.84%)</title><rect x="1158.7" y="341" width="10.0" height="15.0" fill="rgb(219,119,37)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (64 samples, 7.71%)</title><rect x="1079.1" y="437" width="91.0" height="15.0" fill="rgb(219,1,5)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/usr/lib/python3.5/socketserver.py:__init__:681 (749 samples, 90.24%)</title><rect x="125.2" y="1141" width="1064.8" height="15.0" fill="rgb(235,14,44)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:__init__:681</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/http.py:dispatch:693 (749 samples, 90.24%)</title><rect x="125.2" y="837" width="1064.8" height="15.0" fill="rgb(228,2,52)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:693</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (3 samples, 0.36%)</title><rect x="128.0" y="421" width="4.3" height="15.0" fill="rgb(249,174,37)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.12%)</title><rect x="1174.4" y="421" width="1.4" height="15.0" fill="rgb(254,150,40)" rx="2" ry="2" />
<text text-anchor="" x="1177.36" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (2 samples, 0.24%)</title><rect x="1015.1" y="261" width="2.9" height="15.0" fill="rgb(249,17,23)" rx="2" ry="2" />
<text text-anchor="" x="1018.13" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="1099.0" y="181" width="1.4" height="15.0" fill="rgb(241,134,13)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (3 samples, 0.36%)</title><rect x="976.7" y="261" width="4.3" height="15.0" fill="rgb(230,7,28)" rx="2" ry="2" />
<text text-anchor="" x="979.75" 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>/.repo_requirements/odoo/odoo/http.py:__call__:937 (749 samples, 90.24%)</title><rect x="125.2" y="773" width="1064.8" height="15.0" fill="rgb(238,118,49)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:937</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:923 (14 samples, 1.69%)</title><rect x="230.4" y="453" width="19.9" height="15.0" fill="rgb(219,202,52)" rx="2" ry="2" />
<text text-anchor="" x="233.36" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.12%)</title><rect x="152.2" y="229" width="1.4" height="15.0" fill="rgb(218,69,19)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="298.6" y="389" width="1.4" height="15.0" fill="rgb(242,0,24)" rx="2" ry="2" />
<text text-anchor="" x="301.60" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="888.6" y="357" width="1.4" height="15.0" fill="rgb(250,41,38)" rx="2" ry="2" />
<text text-anchor="" x="891.60" 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>/.repo_requirements/odoo/odoo/models.py:_create:3514 (249 samples, 30.00%)</title><rect x="534.6" y="389" width="354.0" height="15.0" fill="rgb(236,125,31)" rx="2" ry="2" />
<text text-anchor="" x="537.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:_create:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.24%)</title><rect x="186.3" y="277" width="2.8" height="15.0" fill="rgb(238,12,47)" rx="2" ry="2" />
<text text-anchor="" x="189.29" 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>/.repo_requirements/odoo/odoo/fields.py:column_type:1185 (1 samples, 0.12%)</title><rect x="1010.9" y="245" width="1.4" height="15.0" fill="rgb(210,121,37)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/tools/func.py:__get__:111 (1 samples, 0.12%)</title><rect x="517.5" y="309" width="1.5" height="15.0" fill="rgb(233,97,27)" rx="2" ry="2" />
<text text-anchor="" x="520.54" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1062 (1 samples, 0.12%)</title><rect x="1165.8" y="293" width="1.5" height="15.0" fill="rgb(231,97,20)" rx="2" ry="2" />
<text text-anchor="" x="1168.83" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (1 samples, 0.12%)</title><rect x="656.9" y="325" width="1.4" height="15.0" fill="rgb(238,41,32)" rx="2" ry="2" />
<text text-anchor="" x="659.87" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:934 (1 samples, 0.12%)</title><rect x="1053.5" y="341" width="1.4" height="15.0" fill="rgb(235,27,28)" rx="2" ry="2" />
<text text-anchor="" x="1056.52" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (6 samples, 0.72%)</title><rect x="142.2" y="357" width="8.5" height="15.0" fill="rgb(241,151,33)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:&lt;listcomp&gt;:128 (1 samples, 0.12%)</title><rect x="1180.0" y="373" width="1.5" height="15.0" fill="rgb(219,198,14)" rx="2" ry="2" />
<text text-anchor="" x="1183.05" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (1 samples, 0.12%)</title><rect x="1187.2" y="277" width="1.4" height="15.0" fill="rgb(213,139,47)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:create:3377 (1 samples, 0.12%)</title><rect x="1188.6" y="581" width="1.4" height="15.0" fill="rgb(215,159,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/usr/lib/python3.5/threading.py:run:862 (750 samples, 90.36%)</title><rect x="123.7" y="1189" width="1066.3" height="15.0" fill="rgb(240,43,2)" rx="2" ry="2" />
<text text-anchor="" x="126.73" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:run:862</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;decorator-gen-66&gt;:precision_get:2 (1 samples, 0.12%)</title><rect x="1010.9" y="197" width="1.4" height="15.0" fill="rgb(230,96,31)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1797 (494 samples, 59.52%)</title><rect x="486.3" y="533" width="702.3" height="15.0" fill="rgb(220,153,21)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1797</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (2 samples, 0.24%)</title><rect x="506.2" y="341" width="2.8" height="15.0" fill="rgb(218,65,28)" rx="2" ry="2" />
<text text-anchor="" x="509.17" 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>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350 (2 samples, 0.24%)</title><rect x="1185.7" y="405" width="2.9" height="15.0" fill="rgb(223,11,30)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (6 samples, 0.72%)</title><rect x="1099.0" y="261" width="8.5" height="15.0" fill="rgb(236,202,44)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (3 samples, 0.36%)</title><rect x="61.2" y="1173" width="4.2" height="15.0" fill="rgb(229,170,22)" rx="2" ry="2" />
<text text-anchor="" x="64.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>/.repo_requirements/odoo/odoo/models.py:with_env:4385 (2 samples, 0.24%)</title><rect x="1086.2" y="277" width="2.9" height="15.0" fill="rgb(213,134,6)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.12%)</title><rect x="247.4" y="421" width="1.4" height="15.0" fill="rgb(228,10,31)" rx="2" ry="2" />
<text text-anchor="" x="250.42" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:315 (2 samples, 0.24%)</title><rect x="1090.5" y="341" width="2.8" height="15.0" fill="rgb(206,35,42)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="492.0" y="341" width="1.4" height="15.0" fill="rgb(206,90,13)" rx="2" ry="2" />
<text text-anchor="" x="494.95" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:238 (1 samples, 0.12%)</title><rect x="1188.6" y="533" width="1.4" height="15.0" fill="rgb(239,98,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (7 samples, 0.84%)</title><rect x="942.6" y="245" width="10.0" height="15.0" fill="rgb(209,183,30)" rx="2" ry="2" />
<text text-anchor="" x="945.63" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (8 samples, 0.96%)</title><rect x="699.5" y="277" width="11.4" height="15.0" fill="rgb(219,147,44)" rx="2" ry="2" />
<text text-anchor="" x="702.52" 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>/.repo_requirements/odoo/odoo/service/wsgi_server.py:application:166 (749 samples, 90.24%)</title><rect x="125.2" y="1029" width="1064.8" height="15.0" fill="rgb(213,199,11)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/wsgi_server.py:application:166</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.12%)</title><rect x="1089.1" y="309" width="1.4" height="15.0" fill="rgb(215,121,40)" rx="2" ry="2" />
<text text-anchor="" x="1092.06" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.24%)</title><rect x="172.1" y="85" width="2.8" height="15.0" fill="rgb(221,113,38)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (2 samples, 0.24%)</title><rect x="71.1" y="1157" width="2.9" height="15.0" fill="rgb(222,121,16)" rx="2" ry="2" />
<text text-anchor="" x="74.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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (8 samples, 0.96%)</title><rect x="592.9" y="341" width="11.4" height="15.0" fill="rgb(243,30,40)" rx="2" ry="2" />
<text text-anchor="" x="595.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1118.9" y="165" width="1.4" height="15.0" fill="rgb(247,23,4)" rx="2" ry="2" />
<text text-anchor="" x="1121.92" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (5 samples, 0.60%)</title><rect x="162.1" y="341" width="7.1" height="15.0" fill="rgb(209,193,4)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/osv/query.py:_get_alias_mapping:77 (1 samples, 0.12%)</title><rect x="1018.0" y="245" width="1.4" height="15.0" fill="rgb(232,107,39)" rx="2" ry="2" />
<text text-anchor="" x="1020.98" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1047.8" y="245" width="1.5" height="15.0" fill="rgb(215,64,29)" rx="2" ry="2" />
<text text-anchor="" x="1050.83" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.12%)</title><rect x="558.8" y="245" width="1.4" height="15.0" fill="rgb(237,72,51)" rx="2" ry="2" />
<text text-anchor="" x="561.77" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="162.1" y="261" width="1.4" height="15.0" fill="rgb(207,203,24)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.12%)</title><rect x="1127.4" y="213" width="1.5" height="15.0" fill="rgb(216,68,40)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="162.1" y="293" width="1.4" height="15.0" fill="rgb(207,87,22)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2704 (2 samples, 0.24%)</title><rect x="1006.6" y="277" width="2.8" height="15.0" fill="rgb(225,193,16)" rx="2" ry="2" />
<text text-anchor="" x="1009.60" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193 (749 samples, 90.24%)</title><rect x="125.2" y="1061" width="1064.8" height="15.0" fill="rgb(229,110,50)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:execute:193</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="166.4" y="245" width="1.4" height="15.0" fill="rgb(248,154,30)" rx="2" ry="2" />
<text text-anchor="" x="169.39" 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>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.12%)</title><rect x="1167.3" y="277" width="1.4" height="15.0" fill="rgb(248,147,14)" rx="2" ry="2" />
<text text-anchor="" x="1170.25" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3804 (5 samples, 0.60%)</title><rect x="597.2" y="309" width="7.1" height="15.0" fill="rgb(227,194,54)" rx="2" ry="2" />
<text text-anchor="" x="600.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="477.7" y="469" width="1.5" height="15.0" fill="rgb(230,190,40)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="534.6" y="373" width="1.4" height="15.0" fill="rgb(235,196,9)" rx="2" ry="2" />
<text text-anchor="" x="537.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1091.9" y="277" width="1.4" height="15.0" fill="rgb(226,158,21)" rx="2" ry="2" />
<text text-anchor="" x="1094.90" 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>/home/odoo/odoo-11.0/addons/mail/models/mail_activity.py:write:343 (8 samples, 0.96%)</title><rect x="169.2" y="389" width="11.4" height="15.0" fill="rgb(233,71,34)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.24%)</title><rect x="186.3" y="293" width="2.8" height="15.0" fill="rgb(214,149,43)" rx="2" ry="2" />
<text text-anchor="" x="189.29" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.12%)</title><rect x="153.6" y="229" width="1.4" height="15.0" fill="rgb(222,59,10)" rx="2" ry="2" />
<text text-anchor="" x="156.59" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1059 (1 samples, 0.12%)</title><rect x="865.9" y="357" width="1.4" height="15.0" fill="rgb(227,110,43)" rx="2" ry="2" />
<text text-anchor="" x="868.86" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="460.7" y="453" width="1.4" height="15.0" fill="rgb(242,118,10)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.24%)</title><rect x="463.5" y="453" width="2.9" height="15.0" fill="rgb(234,125,0)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:action_invoice_paid:803 (19 samples, 2.29%)</title><rect x="162.1" y="437" width="27.0" height="15.0" fill="rgb(219,33,27)" rx="2" ry="2" />
<text text-anchor="" x="165.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>/.repo_requirements/odoo/odoo/models.py:recompute:4909 (64 samples, 7.71%)</title><rect x="1079.1" y="453" width="91.0" height="15.0" fill="rgb(246,143,20)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2606 (7 samples, 0.84%)</title><rect x="1113.2" y="229" width="10.0" height="15.0" fill="rgb(240,162,45)" rx="2" ry="2" />
<text text-anchor="" x="1116.23" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.24%)</title><rect x="1037.9" y="229" width="2.8" height="15.0" fill="rgb(237,203,28)" rx="2" ry="2" />
<text text-anchor="" x="1040.88" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="125.2" y="661" width="1.4" height="15.0" fill="rgb(223,180,29)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="476.3" y="485" width="1.4" height="15.0" fill="rgb(250,225,27)" rx="2" ry="2" />
<text text-anchor="" x="479.31" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="75.4" y="1189" width="1.4" height="15.0" fill="rgb(216,75,25)" rx="2" ry="2" />
<text text-anchor="" x="78.40" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:&lt;lambda&gt;:489 (7 samples, 0.84%)</title><rect x="170.7" y="293" width="9.9" height="15.0" fill="rgb(225,198,21)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (5 samples, 0.60%)</title><rect x="466.4" y="469" width="7.1" height="15.0" fill="rgb(227,8,25)" rx="2" ry="2" />
<text text-anchor="" x="469.36" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="1157.3" y="245" width="1.4" height="15.0" fill="rgb(250,162,50)" rx="2" ry="2" />
<text text-anchor="" x="1160.30" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (4 samples, 0.48%)</title><rect x="201.9" y="453" width="5.7" height="15.0" fill="rgb(222,26,25)" rx="2" ry="2" />
<text text-anchor="" x="204.93" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="285.8" y="405" width="1.4" height="15.0" fill="rgb(215,219,24)" rx="2" ry="2" />
<text text-anchor="" x="288.81" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="337.0" y="437" width="1.4" height="15.0" fill="rgb(213,149,24)" rx="2" ry="2" />
<text text-anchor="" x="339.99" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (1 samples, 0.12%)</title><rect x="1003.8" y="293" width="1.4" height="15.0" fill="rgb(226,176,45)" rx="2" ry="2" />
<text text-anchor="" x="1006.76" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="174.9" y="53" width="1.4" height="15.0" fill="rgb(216,125,28)" rx="2" ry="2" />
<text text-anchor="" x="177.92" 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>/home/odoo/odoo-11.0/addons/bus/models/bus_presence.py:update:49 (1 samples, 0.12%)</title><rect x="125.2" y="677" width="1.4" height="15.0" fill="rgb(253,137,24)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (3 samples, 0.36%)</title><rect x="310.0" y="405" width="4.2" height="15.0" fill="rgb(243,8,1)" rx="2" ry="2" />
<text text-anchor="" x="312.98" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (1 samples, 0.12%)</title><rect x="142.2" y="261" width="1.4" height="15.0" fill="rgb(245,118,7)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="1064.9" y="245" width="1.4" height="15.0" fill="rgb(206,116,3)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (3 samples, 0.36%)</title><rect x="146.5" y="245" width="4.2" height="15.0" fill="rgb(230,129,31)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1168.7" y="357" width="1.4" height="15.0" fill="rgb(252,17,50)" rx="2" ry="2" />
<text text-anchor="" x="1171.67" 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>/.repo_requirements/odoo/odoo/models.py:_inherits_join_calc:2068 (1 samples, 0.12%)</title><rect x="1009.4" y="229" width="1.5" height="15.0" fill="rgb(214,30,12)" rx="2" ry="2" />
<text text-anchor="" x="1012.45" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.24%)</title><rect x="129.4" y="405" width="2.9" height="15.0" fill="rgb(243,16,29)" rx="2" ry="2" />
<text text-anchor="" x="132.42" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="614.2" y="341" width="1.4" height="15.0" fill="rgb(240,215,7)" rx="2" ry="2" />
<text text-anchor="" x="617.22" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:&lt;lambda&gt;:489 (1 samples, 0.12%)</title><rect x="160.7" y="421" width="1.4" height="15.0" fill="rgb(215,35,4)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="1073.4" y="341" width="1.4" height="15.0" fill="rgb(211,165,43)" rx="2" ry="2" />
<text text-anchor="" x="1076.42" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (6 samples, 0.72%)</title><rect x="854.5" y="309" width="8.5" height="15.0" fill="rgb(232,183,15)" rx="2" ry="2" />
<text text-anchor="" x="857.48" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1267 (2 samples, 0.24%)</title><rect x="497.6" y="421" width="2.9" height="15.0" fill="rgb(229,106,21)" rx="2" ry="2" />
<text text-anchor="" x="500.64" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (1 samples, 0.12%)</title><rect x="1012.3" y="261" width="1.4" height="15.0" fill="rgb(240,86,4)" rx="2" ry="2" />
<text text-anchor="" x="1015.29" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (2 samples, 0.24%)</title><rect x="1151.6" y="197" width="2.9" height="15.0" fill="rgb(242,121,16)" rx="2" ry="2" />
<text text-anchor="" x="1154.61" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (1 samples, 0.12%)</title><rect x="1187.2" y="309" width="1.4" height="15.0" fill="rgb(239,82,45)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (8 samples, 0.96%)</title><rect x="1042.1" y="293" width="11.4" height="15.0" fill="rgb(243,210,2)" rx="2" ry="2" />
<text text-anchor="" x="1045.14" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (15 samples, 1.81%)</title><rect x="1136.0" y="245" width="21.3" height="15.0" fill="rgb(215,102,3)" rx="2" ry="2" />
<text text-anchor="" x="1138.98" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1106 (1 samples, 0.12%)</title><rect x="1167.3" y="293" width="1.4" height="15.0" fill="rgb(239,124,10)" rx="2" ry="2" />
<text text-anchor="" x="1170.25" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (1 samples, 0.12%)</title><rect x="1181.5" y="421" width="1.4" height="15.0" fill="rgb(236,48,40)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (2 samples, 0.24%)</title><rect x="493.4" y="389" width="2.8" height="15.0" fill="rgb(253,40,46)" rx="2" ry="2" />
<text text-anchor="" x="496.37" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1049.3" y="229" width="1.4" height="15.0" fill="rgb(222,60,28)" rx="2" ry="2" />
<text text-anchor="" x="1052.25" 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>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (6 samples, 0.72%)</title><rect x="1099.0" y="325" width="8.5" height="15.0" fill="rgb(213,161,23)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (138 samples, 16.63%)</title><rect x="658.3" y="309" width="196.2" height="15.0" fill="rgb(227,126,10)" rx="2" ry="2" />
<text text-anchor="" x="661.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (5 samples, 0.60%)</title><rect x="200.5" y="469" width="7.1" height="15.0" fill="rgb(235,102,54)" rx="2" ry="2" />
<text text-anchor="" x="203.51" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (5 samples, 0.60%)</title><rect x="76.8" y="1205" width="7.1" height="15.0" fill="rgb(225,187,15)" rx="2" ry="2" />
<text text-anchor="" x="79.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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="560.2" y="309" width="1.4" height="15.0" fill="rgb(230,149,27)" rx="2" ry="2" />
<text text-anchor="" x="563.19" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (2 samples, 0.24%)</title><rect x="142.2" y="325" width="2.9" height="15.0" fill="rgb(224,126,5)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1061 (1 samples, 0.12%)</title><rect x="867.3" y="357" width="1.4" height="15.0" fill="rgb(248,9,10)" rx="2" ry="2" />
<text text-anchor="" x="870.28" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (2 samples, 0.24%)</title><rect x="544.6" y="325" width="2.8" height="15.0" fill="rgb(217,99,43)" rx="2" ry="2" />
<text text-anchor="" x="547.55" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (14 samples, 1.69%)</title><rect x="139.4" y="453" width="19.9" height="15.0" fill="rgb(224,81,3)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (63 samples, 7.59%)</title><rect x="1079.1" y="405" width="89.6" height="15.0" fill="rgb(240,220,28)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22 (749 samples, 90.24%)</title><rect x="125.2" y="901" width="1064.8" height="15.0" fill="rgb(207,60,25)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web_editor/models/ir_http.py:_dispatch:22</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;decorator-gen-20&gt;:check:2 (1 samples, 0.12%)</title><rect x="558.8" y="229" width="1.4" height="15.0" fill="rgb(209,154,9)" rx="2" ry="2" />
<text text-anchor="" x="561.77" 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>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (190 samples, 22.89%)</title><rect x="190.6" y="501" width="270.1" height="15.0" fill="rgb(240,34,49)" rx="2" ry="2" />
<text text-anchor="" x="193.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1167.3" y="261" width="1.4" height="15.0" fill="rgb(247,107,23)" rx="2" ry="2" />
<text text-anchor="" x="1170.25" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="145.1" y="149" width="1.4" height="15.0" fill="rgb(248,106,40)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:write:3094 (494 samples, 59.52%)</title><rect x="486.3" y="501" width="702.3" height="15.0" fill="rgb(215,9,32)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:write:3094</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.24%)</title><rect x="1104.7" y="197" width="2.8" height="15.0" fill="rgb(211,130,2)" rx="2" ry="2" />
<text text-anchor="" x="1107.70" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.12%)</title><rect x="503.3" y="341" width="1.4" height="15.0" fill="rgb(208,133,6)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228 (749 samples, 90.24%)</title><rect x="125.2" y="1125" width="1064.8" height="15.0" fill="rgb(238,217,9)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle:228</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1057.8" y="357" width="1.4" height="15.0" fill="rgb(232,57,29)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1062 (13 samples, 1.57%)</title><rect x="868.7" y="357" width="18.5" height="15.0" fill="rgb(219,186,0)" rx="2" ry="2" />
<text text-anchor="" x="871.70" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="638.4" y="341" width="1.4" height="15.0" fill="rgb(253,213,2)" rx="2" ry="2" />
<text text-anchor="" x="641.39" 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>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:230 (6 samples, 0.72%)</title><rect x="180.6" y="421" width="8.5" height="15.0" fill="rgb(235,62,51)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (14 samples, 1.69%)</title><rect x="139.4" y="469" width="19.9" height="15.0" fill="rgb(248,97,45)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (2 samples, 0.24%)</title><rect x="62.6" y="1157" width="2.8" height="15.0" fill="rgb(213,162,34)" rx="2" ry="2" />
<text text-anchor="" x="65.60" 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>/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680 (748 samples, 90.12%)</title><rect x="126.6" y="693" width="1063.4" height="15.0" fill="rgb(219,86,51)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw_multi:680</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="547.4" y="341" width="1.4" height="15.0" fill="rgb(237,111,25)" rx="2" ry="2" />
<text text-anchor="" x="550.40" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="1100.4" y="181" width="1.5" height="15.0" fill="rgb(231,115,10)" rx="2" ry="2" />
<text text-anchor="" x="1103.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.12%)</title><rect x="1134.6" y="165" width="1.4" height="15.0" fill="rgb(221,63,4)" rx="2" ry="2" />
<text text-anchor="" x="1137.55" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.12%)</title><rect x="1097.6" y="181" width="1.4" height="15.0" fill="rgb(210,49,29)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="139.4" y="373" width="1.4" height="15.0" fill="rgb(235,148,3)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1039.3" y="197" width="1.4" height="15.0" fill="rgb(233,196,44)" rx="2" ry="2" />
<text text-anchor="" x="1042.30" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:normalize:440 (1 samples, 0.12%)</title><rect x="1164.4" y="181" width="1.4" height="15.0" fill="rgb(246,193,50)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.12%)</title><rect x="200.5" y="453" width="1.4" height="15.0" fill="rgb(233,91,52)" rx="2" ry="2" />
<text text-anchor="" x="203.51" 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>/.repo_requirements/odoo/odoo/models.py:_create:3470 (4 samples, 0.48%)</title><rect x="528.9" y="389" width="5.7" height="15.0" fill="rgb(223,31,37)" rx="2" ry="2" />
<text text-anchor="" x="531.92" 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>/.repo_requirements/odoo/odoo/models.py:_create:3534 (1 samples, 0.12%)</title><rect x="1188.6" y="565" width="1.4" height="15.0" fill="rgb(244,5,4)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:136 (2 samples, 0.24%)</title><rect x="1185.7" y="373" width="2.9" height="15.0" fill="rgb(209,68,7)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4325 (1 samples, 0.12%)</title><rect x="648.3" y="325" width="1.5" height="15.0" fill="rgb(248,138,5)" rx="2" ry="2" />
<text text-anchor="" x="651.34" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (3 samples, 0.36%)</title><rect x="240.3" y="437" width="4.3" height="15.0" fill="rgb(234,129,9)" rx="2" ry="2" />
<text text-anchor="" x="243.31" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1134.6" y="149" width="1.4" height="15.0" fill="rgb(214,12,42)" rx="2" ry="2" />
<text text-anchor="" x="1137.55" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.12%)</title><rect x="66.9" y="1157" width="1.4" height="15.0" fill="rgb(246,12,12)" rx="2" ry="2" />
<text text-anchor="" x="69.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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (75 samples, 9.04%)</title><rect x="895.7" y="293" width="106.6" height="15.0" fill="rgb(242,112,31)" rx="2" ry="2" />
<text text-anchor="" x="898.71" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requir..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="248.8" y="421" width="1.5" height="15.0" fill="rgb(229,12,49)" rx="2" ry="2" />
<text text-anchor="" x="251.84" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (16 samples, 1.93%)</title><rect x="615.6" y="357" width="22.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text text-anchor="" x="618.64" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (2 samples, 0.24%)</title><rect x="1133.1" y="197" width="2.9" height="15.0" fill="rgb(212,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1136.13" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1096.2" y="309" width="1.4" height="15.0" fill="rgb(205,146,36)" rx="2" ry="2" />
<text text-anchor="" x="1099.17" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1349 (15 samples, 1.81%)</title><rect x="501.9" y="421" width="21.3" height="15.0" fill="rgb(236,170,34)" rx="2" ry="2" />
<text text-anchor="" x="504.90" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="1097.6" y="277" width="1.4" height="15.0" fill="rgb(213,7,1)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1158.7" y="277" width="1.4" height="15.0" fill="rgb(206,95,49)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.12%)</title><rect x="428.0" y="405" width="1.4" height="15.0" fill="rgb(237,82,36)" rx="2" ry="2" />
<text text-anchor="" x="430.98" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="10.0" y="1061" width="1.4" height="15.0" fill="rgb(207,210,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (6 samples, 0.72%)</title><rect x="180.6" y="325" width="8.5" height="15.0" fill="rgb(245,44,10)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1185.7" y="101" width="1.5" height="15.0" fill="rgb(242,126,22)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="11.4" y="1109" width="1.4" height="15.0" fill="rgb(238,124,4)" rx="2" ry="2" />
<text text-anchor="" x="14.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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (14 samples, 1.69%)</title><rect x="139.4" y="485" width="19.9" height="15.0" fill="rgb(236,205,51)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (8 samples, 0.96%)</title><rect x="356.9" y="437" width="11.4" height="15.0" fill="rgb(251,139,34)" rx="2" ry="2" />
<text text-anchor="" x="359.89" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (5 samples, 0.60%)</title><rect x="301.4" y="405" width="7.2" height="15.0" fill="rgb(207,118,10)" rx="2" ry="2" />
<text text-anchor="" x="304.45" 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>/home/odoo/odoo-11.0/addons/utm/models/ir_http.py:_dispatch:26 (749 samples, 90.24%)</title><rect x="125.2" y="869" width="1064.8" height="15.0" fill="rgb(221,54,41)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/utm/models/ir_http.py:_dispatch:26</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="156.4" y="261" width="1.5" height="15.0" fill="rgb(212,190,20)" rx="2" ry="2" />
<text text-anchor="" x="159.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2532 (1 samples, 0.12%)</title><rect x="1042.1" y="261" width="1.5" height="15.0" fill="rgb(221,222,4)" rx="2" ry="2" />
<text text-anchor="" x="1045.14" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (2 samples, 0.24%)</title><rect x="79.7" y="1141" width="2.8" height="15.0" fill="rgb(237,56,2)" rx="2" ry="2" />
<text text-anchor="" x="82.66" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.12%)</title><rect x="169.2" y="213" width="1.5" height="15.0" fill="rgb(232,138,50)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:_search:3772 (2 samples, 0.24%)</title><rect x="1086.2" y="309" width="2.9" height="15.0" fill="rgb(254,141,43)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (4 samples, 0.48%)</title><rect x="648.3" y="341" width="5.7" height="15.0" fill="rgb(237,52,22)" rx="2" ry="2" />
<text text-anchor="" x="651.34" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1118.9" y="149" width="1.4" height="15.0" fill="rgb(207,195,54)" rx="2" ry="2" />
<text text-anchor="" x="1121.92" 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>/.repo_requirements/odoo/odoo/models.py:modified:4867 (23 samples, 2.77%)</title><rect x="607.1" y="373" width="32.7" height="15.0" fill="rgb(231,205,17)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1185.7" y="149" width="1.5" height="15.0" fill="rgb(235,36,34)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="460.7" y="437" width="1.4" height="15.0" fill="rgb(234,14,43)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (3 samples, 0.36%)</title><rect x="1109.0" y="197" width="4.2" height="15.0" fill="rgb(211,60,50)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="472.0" y="389" width="1.5" height="15.0" fill="rgb(240,182,26)" rx="2" ry="2" />
<text text-anchor="" x="475.05" 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>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.12%)</title><rect x="536.0" y="357" width="1.4" height="15.0" fill="rgb(249,137,52)" rx="2" ry="2" />
<text text-anchor="" x="539.02" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (5 samples, 0.60%)</title><rect x="489.1" y="405" width="7.1" height="15.0" fill="rgb(251,153,35)" rx="2" ry="2" />
<text text-anchor="" x="492.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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.12%)</title><rect x="139.4" y="341" width="1.4" height="15.0" fill="rgb(234,111,24)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (1 samples, 0.12%)</title><rect x="160.7" y="357" width="1.4" height="15.0" fill="rgb(212,22,12)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.12%)</title><rect x="130.8" y="373" width="1.5" height="15.0" fill="rgb(248,62,2)" rx="2" ry="2" />
<text text-anchor="" x="133.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>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.12%)</title><rect x="359.7" y="421" width="1.5" height="15.0" fill="rgb(237,117,6)" rx="2" ry="2" />
<text text-anchor="" x="362.73" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2704 (1 samples, 0.12%)</title><rect x="1009.4" y="261" width="1.5" height="15.0" fill="rgb(205,169,40)" rx="2" ry="2" />
<text text-anchor="" x="1012.45" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1151 (1 samples, 0.12%)</title><rect x="1062.0" y="229" width="1.5" height="15.0" fill="rgb(221,210,31)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (8 samples, 0.96%)</title><rect x="128.0" y="517" width="11.4" height="15.0" fill="rgb(207,147,52)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/models.py:write:3094 (2 samples, 0.24%)</title><rect x="1185.7" y="357" width="2.9" height="15.0" fill="rgb(253,110,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="480.6" y="501" width="1.4" height="15.0" fill="rgb(242,141,5)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="1160.1" y="277" width="1.5" height="15.0" fill="rgb(240,170,26)" rx="2" ry="2" />
<text text-anchor="" x="1163.14" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (2 samples, 0.24%)</title><rect x="22.8" y="1205" width="2.8" height="15.0" fill="rgb(216,229,29)" rx="2" ry="2" />
<text text-anchor="" x="25.80" 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>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1017 (1 samples, 0.12%)</title><rect x="1188.6" y="629" width="1.4" height="15.0" fill="rgb(234,190,48)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="521.8" y="341" width="1.4" height="15.0" fill="rgb(212,208,28)" rx="2" ry="2" />
<text text-anchor="" x="524.81" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by_inner:3741 (1 samples, 0.12%)</title><rect x="493.4" y="357" width="1.4" height="15.0" fill="rgb(246,97,42)" rx="2" ry="2" />
<text text-anchor="" x="496.37" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (4 samples, 0.48%)</title><rect x="133.7" y="421" width="5.7" height="15.0" fill="rgb(234,184,1)" rx="2" ry="2" />
<text text-anchor="" x="136.69" 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>/home/odoo/odoo-11.0/addons/purchase/models/purchase.py:&lt;genexpr&gt;:53 (6 samples, 0.72%)</title><rect x="142.2" y="373" width="8.5" height="15.0" fill="rgb(234,98,27)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.24%)</title><rect x="1082.0" y="341" width="2.8" height="15.0" fill="rgb(252,192,3)" rx="2" ry="2" />
<text text-anchor="" x="1084.95" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.24%)</title><rect x="1079.1" y="341" width="2.9" height="15.0" fill="rgb(211,195,16)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" 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>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.12%)</title><rect x="126.6" y="325" width="1.4" height="15.0" fill="rgb(230,125,20)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>&lt;string&gt;:&lt;lambda&gt;:1 (1 samples, 0.12%)</title><rect x="558.8" y="197" width="1.4" height="15.0" fill="rgb(225,48,18)" rx="2" ry="2" />
<text text-anchor="" x="561.77" 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>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.12%)</title><rect x="494.8" y="373" width="1.4" height="15.0" fill="rgb(207,171,6)" rx="2" ry="2" />
<text text-anchor="" x="497.80" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="322.8" y="405" width="1.4" height="15.0" fill="rgb(229,30,22)" rx="2" ry="2" />
<text text-anchor="" x="325.77" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (3 samples, 0.36%)</title><rect x="1109.0" y="229" width="4.2" height="15.0" fill="rgb(214,80,14)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4354 (2 samples, 0.24%)</title><rect x="973.9" y="229" width="2.8" height="15.0" fill="rgb(215,102,53)" rx="2" ry="2" />
<text text-anchor="" x="976.90" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1147.3" y="197" width="1.5" height="15.0" fill="rgb(238,2,7)" rx="2" ry="2" />
<text text-anchor="" x="1150.35" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="366.8" y="389" width="1.5" height="15.0" fill="rgb(227,137,20)" rx="2" ry="2" />
<text text-anchor="" x="369.84" 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>/.repo_requirements/odoo/odoo/models.py:browse:4341 (6 samples, 0.72%)</title><rect x="675.3" y="293" width="8.6" height="15.0" fill="rgb(241,145,12)" rx="2" ry="2" />
<text text-anchor="" x="678.35" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (2 samples, 0.24%)</title><rect x="297.2" y="421" width="2.8" height="15.0" fill="rgb(251,183,13)" rx="2" ry="2" />
<text text-anchor="" x="300.18" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (10 samples, 1.20%)</title><rect x="61.2" y="1221" width="14.2" height="15.0" fill="rgb(228,109,30)" rx="2" ry="2" />
<text text-anchor="" x="64.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1736 (3 samples, 0.36%)</title><rect x="473.5" y="533" width="4.2" height="15.0" fill="rgb(219,79,18)" rx="2" ry="2" />
<text text-anchor="" x="476.47" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (21 samples, 2.53%)</title><rect x="159.3" y="501" width="29.8" height="15.0" fill="rgb(224,77,21)" rx="2" ry="2" />
<text text-anchor="" x="162.28" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="10.0" y="1029" width="1.4" height="15.0" fill="rgb(240,67,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (3 samples, 0.36%)</title><rect x="244.6" y="437" width="4.2" height="15.0" fill="rgb(229,159,32)" rx="2" ry="2" />
<text text-anchor="" x="247.58" 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>/.repo_requirements/odoo/odoo/models.py:_write:3136 (1 samples, 0.12%)</title><rect x="1184.3" y="277" width="1.4" height="15.0" fill="rgb(211,229,12)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:316 (1 samples, 0.12%)</title><rect x="1093.3" y="341" width="1.4" height="15.0" fill="rgb(217,34,32)" rx="2" ry="2" />
<text text-anchor="" x="1096.33" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (8 samples, 0.96%)</title><rect x="128.0" y="453" width="11.4" height="15.0" fill="rgb(238,136,36)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="143.6" y="293" width="1.5" height="15.0" fill="rgb(220,63,6)" rx="2" ry="2" />
<text text-anchor="" x="146.64" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (5 samples, 0.60%)</title><rect x="399.5" y="405" width="7.2" height="15.0" fill="rgb(228,159,11)" rx="2" ry="2" />
<text text-anchor="" x="402.54" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="470.6" y="405" width="1.4" height="15.0" fill="rgb(250,102,3)" rx="2" ry="2" />
<text text-anchor="" x="473.63" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="312.8" y="389" width="1.4" height="15.0" fill="rgb(217,137,3)" rx="2" ry="2" />
<text text-anchor="" x="315.82" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (1 samples, 0.12%)</title><rect x="12.8" y="1205" width="1.5" height="15.0" fill="rgb(253,61,35)" rx="2" ry="2" />
<text text-anchor="" x="15.84" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (2 samples, 0.24%)</title><rect x="1178.6" y="405" width="2.9" height="15.0" fill="rgb(220,158,17)" rx="2" ry="2" />
<text text-anchor="" x="1181.63" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="126.6" y="517" width="1.4" height="15.0" fill="rgb(237,8,42)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (6 samples, 0.72%)</title><rect x="1099.0" y="277" width="8.5" height="15.0" fill="rgb(215,217,9)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1067 (747 samples, 90.00%)</title><rect x="126.6" y="581" width="1062.0" height="15.0" fill="rgb(232,74,31)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:reconcile:1067</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="476.3" y="501" width="1.4" height="15.0" fill="rgb(242,21,11)" rx="2" ry="2" />
<text text-anchor="" x="479.31" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (1 samples, 0.12%)</title><rect x="160.7" y="373" width="1.4" height="15.0" fill="rgb(225,77,12)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (5 samples, 0.60%)</title><rect x="1128.9" y="229" width="7.1" height="15.0" fill="rgb(222,156,35)" rx="2" ry="2" />
<text text-anchor="" x="1131.87" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (3 samples, 0.36%)</title><rect x="469.2" y="437" width="4.3" height="15.0" fill="rgb(240,179,21)" rx="2" ry="2" />
<text text-anchor="" x="472.20" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_filter_post:154 (13 samples, 1.57%)</title><rect x="1059.2" y="421" width="18.5" height="15.0" fill="rgb(225,86,9)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (5 samples, 0.60%)</title><rect x="256.0" y="421" width="7.1" height="15.0" fill="rgb(211,14,34)" rx="2" ry="2" />
<text text-anchor="" x="258.95" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:584 (2 samples, 0.24%)</title><rect x="1124.6" y="341" width="2.8" height="15.0" fill="rgb(245,166,48)" rx="2" ry="2" />
<text text-anchor="" x="1127.60" 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>/.repo_requirements/odoo/odoo/models.py:_write:3222 (1 samples, 0.12%)</title><rect x="169.2" y="325" width="1.5" height="15.0" fill="rgb(224,146,42)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (2 samples, 0.24%)</title><rect x="172.1" y="53" width="2.8" height="15.0" fill="rgb(251,136,37)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (3 samples, 0.36%)</title><rect x="176.3" y="101" width="4.3" height="15.0" fill="rgb(221,8,17)" rx="2" ry="2" />
<text text-anchor="" x="179.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="183.4" y="261" width="1.5" height="15.0" fill="rgb(222,99,30)" rx="2" ry="2" />
<text text-anchor="" x="186.45" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (5 samples, 0.60%)</title><rect x="256.0" y="437" width="7.1" height="15.0" fill="rgb(234,135,33)" rx="2" ry="2" />
<text text-anchor="" x="258.95" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (11 samples, 1.33%)</title><rect x="1141.7" y="229" width="15.6" height="15.0" fill="rgb(252,206,53)" rx="2" ry="2" />
<text text-anchor="" x="1144.66" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.24%)</title><rect x="1050.7" y="261" width="2.8" height="15.0" fill="rgb(207,13,32)" rx="2" ry="2" />
<text text-anchor="" x="1053.67" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (32 samples, 3.86%)</title><rect x="15.7" y="1221" width="45.5" height="15.0" fill="rgb(224,5,7)" rx="2" ry="2" />
<text text-anchor="" x="18.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:create:3354 (1 samples, 0.12%)</title><rect x="524.7" y="405" width="1.4" height="15.0" fill="rgb(254,34,51)" rx="2" ry="2" />
<text text-anchor="" x="527.65" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (5 samples, 0.60%)</title><rect x="631.3" y="341" width="7.1" height="15.0" fill="rgb(211,169,14)" rx="2" ry="2" />
<text text-anchor="" x="634.28" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1039.3" y="213" width="1.4" height="15.0" fill="rgb(228,190,53)" rx="2" ry="2" />
<text text-anchor="" x="1042.30" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (2 samples, 0.24%)</title><rect x="156.4" y="277" width="2.9" height="15.0" fill="rgb(210,48,52)" rx="2" ry="2" />
<text text-anchor="" x="159.43" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="11.4" y="997" width="1.4" height="15.0" fill="rgb(215,209,7)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.12%)</title><rect x="184.9" y="277" width="1.4" height="15.0" fill="rgb(213,187,44)" rx="2" ry="2" />
<text text-anchor="" x="187.87" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="479.2" y="453" width="1.4" height="15.0" fill="rgb(235,117,25)" rx="2" ry="2" />
<text text-anchor="" x="482.16" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (3 samples, 0.36%)</title><rect x="331.3" y="421" width="4.3" height="15.0" fill="rgb(238,117,2)" rx="2" ry="2" />
<text text-anchor="" x="334.30" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="75.4" y="1157" width="1.4" height="15.0" fill="rgb(223,162,23)" rx="2" ry="2" />
<text text-anchor="" x="78.40" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="263.1" y="421" width="1.4" height="15.0" fill="rgb(240,225,31)" rx="2" ry="2" />
<text text-anchor="" x="266.06" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (8 samples, 0.96%)</title><rect x="128.0" y="501" width="11.4" height="15.0" fill="rgb(252,228,11)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.12%)</title><rect x="1077.7" y="437" width="1.4" height="15.0" fill="rgb(247,223,16)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" 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>/usr/lib/python3.5/_strptime.py:_strptime:499 (1 samples, 0.12%)</title><rect x="1164.4" y="245" width="1.4" height="15.0" fill="rgb(232,40,42)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="246.0" y="405" width="1.4" height="15.0" fill="rgb(214,103,37)" rx="2" ry="2" />
<text text-anchor="" x="249.00" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.12%)</title><rect x="1066.3" y="245" width="1.4" height="15.0" fill="rgb(227,176,35)" rx="2" ry="2" />
<text text-anchor="" x="1069.31" 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>/.repo_requirements/odoo/odoo/api.py:loop:369 (6 samples, 0.72%)</title><rect x="150.7" y="373" width="8.6" height="15.0" fill="rgb(232,103,36)" rx="2" ry="2" />
<text text-anchor="" x="153.75" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="153.6" y="245" width="1.4" height="15.0" fill="rgb(218,110,17)" rx="2" ry="2" />
<text text-anchor="" x="156.59" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.12%)</title><rect x="138.0" y="405" width="1.4" height="15.0" fill="rgb(245,122,26)" rx="2" ry="2" />
<text text-anchor="" x="140.95" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:597 (1 samples, 0.12%)</title><rect x="1070.6" y="325" width="1.4" height="15.0" fill="rgb(216,215,42)" rx="2" ry="2" />
<text text-anchor="" x="1073.58" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="11.4" y="1061" width="1.4" height="15.0" fill="rgb(247,147,35)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926 (748 samples, 90.12%)</title><rect x="126.6" y="725" width="1063.4" height="15.0" fill="rgb(247,35,16)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:_call_kw:926</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (1 samples, 0.12%)</title><rect x="887.2" y="341" width="1.4" height="15.0" fill="rgb(236,206,18)" rx="2" ry="2" />
<text text-anchor="" x="890.18" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="1042.1" y="277" width="1.5" height="15.0" fill="rgb(238,209,4)" rx="2" ry="2" />
<text text-anchor="" x="1045.14" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (1 samples, 0.12%)</title><rect x="180.6" y="309" width="1.4" height="15.0" fill="rgb(214,206,7)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1158.7" y="293" width="1.4" height="15.0" fill="rgb(207,129,48)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/models.py:read:2595 (1 samples, 0.12%)</title><rect x="1040.7" y="293" width="1.4" height="15.0" fill="rgb(212,59,34)" rx="2" ry="2" />
<text text-anchor="" x="1043.72" 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>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (1 samples, 0.12%)</title><rect x="1097.6" y="325" width="1.4" height="15.0" fill="rgb(219,167,22)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="460.7" y="421" width="1.4" height="15.0" fill="rgb(243,22,13)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="174.9" y="69" width="1.4" height="15.0" fill="rgb(238,123,19)" rx="2" ry="2" />
<text text-anchor="" x="177.92" 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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_repr:177 (1 samples, 0.12%)</title><rect x="528.9" y="357" width="1.4" height="15.0" fill="rgb(251,77,41)" rx="2" ry="2" />
<text text-anchor="" x="531.92" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="472.0" y="405" width="1.5" height="15.0" fill="rgb(236,25,26)" rx="2" ry="2" />
<text text-anchor="" x="475.05" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (11 samples, 1.33%)</title><rect x="1109.0" y="325" width="15.6" height="15.0" fill="rgb(238,164,8)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/osv/expression.py:create_substitution_leaf:635 (1 samples, 0.12%)</title><rect x="565.9" y="277" width="1.4" height="15.0" fill="rgb(226,56,23)" rx="2" ry="2" />
<text text-anchor="" x="568.88" 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>/.repo_requirements/odoo/odoo/models.py:_uniquify_list:3804 (5 samples, 0.60%)</title><rect x="597.2" y="325" width="7.1" height="15.0" fill="rgb(224,229,27)" rx="2" ry="2" />
<text text-anchor="" x="600.16" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (3 samples, 0.36%)</title><rect x="78.2" y="1157" width="4.3" height="15.0" fill="rgb(210,139,25)" rx="2" ry="2" />
<text text-anchor="" x="81.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (11 samples, 1.33%)</title><rect x="1109.0" y="293" width="15.6" height="15.0" fill="rgb(205,71,4)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (7 samples, 0.84%)</title><rect x="75.4" y="1221" width="9.9" height="15.0" fill="rgb(226,147,15)" rx="2" ry="2" />
<text text-anchor="" x="78.40" 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>/home/odoo/icm/commission_calculation/models/account_move_line.py:_compute_date_last_payment:38 (1 samples, 0.12%)</title><rect x="1084.8" y="341" width="1.4" height="15.0" fill="rgb(208,33,43)" rx="2" ry="2" />
<text text-anchor="" x="1087.80" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:209 (2 samples, 0.24%)</title><rect x="1054.9" y="437" width="2.9" height="15.0" fill="rgb(224,124,43)" rx="2" ry="2" />
<text text-anchor="" x="1057.94" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1131.7" y="149" width="1.4" height="15.0" fill="rgb(209,147,44)" rx="2" ry="2" />
<text text-anchor="" x="1134.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>/.repo_requirements/odoo/odoo/models.py:read:2606 (4 samples, 0.48%)</title><rect x="163.5" y="293" width="5.7" height="15.0" fill="rgb(242,158,27)" rx="2" ry="2" />
<text text-anchor="" x="166.54" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (2 samples, 0.24%)</title><rect x="1067.7" y="277" width="2.9" height="15.0" fill="rgb(221,144,1)" rx="2" ry="2" />
<text text-anchor="" x="1070.73" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="83.9" y="1141" width="1.4" height="15.0" fill="rgb(236,206,24)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2714 (7 samples, 0.84%)</title><rect x="1013.7" y="277" width="10.0" height="15.0" fill="rgb(236,122,37)" rx="2" ry="2" />
<text text-anchor="" x="1016.71" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (14 samples, 1.69%)</title><rect x="139.4" y="405" width="19.9" height="15.0" fill="rgb(247,132,42)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (3 samples, 0.36%)</title><rect x="568.7" y="325" width="4.3" height="15.0" fill="rgb(214,210,30)" rx="2" ry="2" />
<text text-anchor="" x="571.72" 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>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.12%)</title><rect x="1050.7" y="245" width="1.4" height="15.0" fill="rgb(209,27,43)" rx="2" ry="2" />
<text text-anchor="" x="1053.67" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (3 samples, 0.36%)</title><rect x="560.2" y="325" width="4.3" height="15.0" fill="rgb(242,9,50)" rx="2" ry="2" />
<text text-anchor="" x="563.19" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.12%)</title><rect x="153.6" y="213" width="1.4" height="15.0" fill="rgb(225,65,18)" rx="2" ry="2" />
<text text-anchor="" x="156.59" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1160.1" y="293" width="1.5" height="15.0" fill="rgb(205,101,29)" rx="2" ry="2" />
<text text-anchor="" x="1163.14" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1094.7" y="309" width="1.5" height="15.0" fill="rgb(230,215,50)" rx="2" ry="2" />
<text text-anchor="" x="1097.75" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1120.3" y="181" width="1.5" height="15.0" fill="rgb(242,212,1)" rx="2" ry="2" />
<text text-anchor="" x="1123.34" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (5 samples, 0.60%)</title><rect x="361.2" y="421" width="7.1" height="15.0" fill="rgb(229,27,25)" rx="2" ry="2" />
<text text-anchor="" x="364.16" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.12%)</title><rect x="571.6" y="293" width="1.4" height="15.0" fill="rgb(250,53,21)" rx="2" ry="2" />
<text text-anchor="" x="574.57" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="474.9" y="501" width="1.4" height="15.0" fill="rgb(246,225,20)" rx="2" ry="2" />
<text text-anchor="" x="477.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="170.7" y="149" width="1.4" height="15.0" fill="rgb(234,156,48)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/usr/lib/python3.5/threading.py:current_thread:1232 (1 samples, 0.12%)</title><rect x="1008.0" y="165" width="1.4" height="15.0" fill="rgb(236,70,21)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:957 (1 samples, 0.12%)</title><rect x="557.3" y="213" width="1.5" height="15.0" fill="rgb(231,49,54)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_kw:934 (748 samples, 90.12%)</title><rect x="126.6" y="741" width="1063.4" height="15.0" fill="rgb(212,161,49)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/web/controllers/main.py:call_kw:934</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.12%)</title><rect x="1187.2" y="261" width="1.4" height="15.0" fill="rgb(249,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:create:3377 (35 samples, 4.22%)</title><rect x="139.4" y="533" width="49.7" height="15.0" fill="rgb(240,49,12)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (6 samples, 0.72%)</title><rect x="854.5" y="341" width="8.5" height="15.0" fill="rgb(246,98,33)" rx="2" ry="2" />
<text text-anchor="" x="857.48" 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>&lt;decorator-gen-113&gt;:_compute_residual:2 (1 samples, 0.12%)</title><rect x="160.7" y="341" width="1.4" height="15.0" fill="rgb(230,78,28)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="166.4" y="261" width="1.4" height="15.0" fill="rgb(240,116,48)" rx="2" ry="2" />
<text text-anchor="" x="169.39" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="467.8" y="421" width="1.4" height="15.0" fill="rgb(239,199,27)" rx="2" ry="2" />
<text text-anchor="" x="470.78" 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>/.repo_requirements/odoo/odoo/models.py:_inherits_join_calc:2068 (1 samples, 0.12%)</title><rect x="1012.3" y="229" width="1.4" height="15.0" fill="rgb(249,58,22)" rx="2" ry="2" />
<text text-anchor="" x="1015.29" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.12%)</title><rect x="1128.9" y="213" width="1.4" height="15.0" fill="rgb(216,121,18)" rx="2" ry="2" />
<text text-anchor="" x="1131.87" 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>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:686 (4 samples, 0.48%)</title><rect x="1062.0" y="309" width="5.7" height="15.0" fill="rgb(245,200,23)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (8 samples, 0.96%)</title><rect x="169.2" y="357" width="11.4" height="15.0" fill="rgb(206,162,21)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:_search:3774 (1 samples, 0.12%)</title><rect x="554.5" y="341" width="1.4" height="15.0" fill="rgb(221,1,49)" rx="2" ry="2" />
<text text-anchor="" x="557.51" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.12%)</title><rect x="149.3" y="213" width="1.4" height="15.0" fill="rgb(234,93,15)" rx="2" ry="2" />
<text text-anchor="" x="152.33" 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>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:687 (2 samples, 0.24%)</title><rect x="66.9" y="1189" width="2.8" height="15.0" fill="rgb(225,70,45)" rx="2" ry="2" />
<text text-anchor="" x="69.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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:237 (1 samples, 0.12%)</title><rect x="1184.3" y="437" width="1.4" height="15.0" fill="rgb(226,99,8)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="182.0" y="293" width="1.4" height="15.0" fill="rgb(217,27,52)" rx="2" ry="2" />
<text text-anchor="" x="185.02" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (3 samples, 0.36%)</title><rect x="543.1" y="357" width="4.3" height="15.0" fill="rgb(209,209,44)" rx="2" ry="2" />
<text text-anchor="" x="546.13" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (7 samples, 0.84%)</title><rect x="555.9" y="341" width="10.0" height="15.0" fill="rgb(209,64,30)" rx="2" ry="2" />
<text text-anchor="" x="558.93" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.12%)</title><rect x="627.0" y="277" width="1.4" height="15.0" fill="rgb(217,158,43)" rx="2" ry="2" />
<text text-anchor="" x="630.01" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.12%)</title><rect x="480.6" y="437" width="1.4" height="15.0" fill="rgb(225,72,17)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/osv/expression.py:_get_expression:1060 (2 samples, 0.24%)</title><rect x="66.9" y="1205" width="2.8" height="15.0" fill="rgb(219,36,23)" rx="2" ry="2" />
<text text-anchor="" x="69.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>/.repo_requirements/odoo/odoo/osv/expression.py:&lt;listcomp&gt;:802 (1 samples, 0.12%)</title><rect x="1064.9" y="213" width="1.4" height="15.0" fill="rgb(217,205,52)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (5 samples, 0.60%)</title><rect x="152.2" y="325" width="7.1" height="15.0" fill="rgb(245,131,15)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (1 samples, 0.12%)</title><rect x="1104.7" y="181" width="1.4" height="15.0" fill="rgb(241,93,8)" rx="2" ry="2" />
<text text-anchor="" x="1107.70" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (1 samples, 0.12%)</title><rect x="169.2" y="309" width="1.5" height="15.0" fill="rgb(231,94,18)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/home/odoo/odoo-11.0/addons/sale/models/account_invoice.py:action_invoice_paid:48 (19 samples, 2.29%)</title><rect x="162.1" y="453" width="27.0" height="15.0" fill="rgb(241,128,36)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1768 (2 samples, 0.24%)</title><rect x="480.6" y="533" width="2.8" height="15.0" fill="rgb(241,103,47)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205 (749 samples, 90.24%)</title><rect x="125.2" y="1077" width="1064.8" height="15.0" fill="rgb(226,98,42)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:run_wsgi:205</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1735 (7 samples, 0.84%)</title><rect x="463.5" y="533" width="10.0" height="15.0" fill="rgb(234,66,2)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.12%)</title><rect x="1073.4" y="373" width="1.4" height="15.0" fill="rgb(238,143,30)" rx="2" ry="2" />
<text text-anchor="" x="1076.42" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_get_actions:127 (6 samples, 0.72%)</title><rect x="489.1" y="421" width="8.5" height="15.0" fill="rgb(245,164,37)" rx="2" ry="2" />
<text text-anchor="" x="492.11" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1737 (2 samples, 0.24%)</title><rect x="477.7" y="533" width="2.9" height="15.0" fill="rgb(253,13,39)" rx="2" ry="2" />
<text text-anchor="" x="480.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:129 (1 samples, 0.12%)</title><rect x="1180.0" y="389" width="1.5" height="15.0" fill="rgb(240,163,13)" rx="2" ry="2" />
<text text-anchor="" x="1183.05" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (2 samples, 0.24%)</title><rect x="1185.7" y="341" width="2.9" height="15.0" fill="rgb(218,112,11)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.12%)</title><rect x="1155.9" y="165" width="1.4" height="15.0" fill="rgb(205,140,38)" rx="2" ry="2" />
<text text-anchor="" x="1158.88" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="147.9" y="165" width="1.4" height="15.0" fill="rgb(218,135,48)" rx="2" ry="2" />
<text text-anchor="" x="150.90" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (3 samples, 0.36%)</title><rect x="1019.4" y="245" width="4.3" height="15.0" fill="rgb(218,50,42)" rx="2" ry="2" />
<text text-anchor="" x="1022.40" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (5 samples, 0.60%)</title><rect x="631.3" y="309" width="7.1" height="15.0" fill="rgb(211,216,36)" rx="2" ry="2" />
<text text-anchor="" x="634.28" 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>/.repo_requirements/odoo/odoo/fields.py:from_string:1514 (1 samples, 0.12%)</title><rect x="1161.6" y="277" width="1.4" height="15.0" fill="rgb(253,26,13)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="298.6" y="405" width="1.4" height="15.0" fill="rgb(251,221,37)" rx="2" ry="2" />
<text text-anchor="" x="301.60" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (2 samples, 0.24%)</title><rect x="1185.7" y="421" width="2.9" height="15.0" fill="rgb(208,111,24)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.12%)</title><rect x="479.2" y="501" width="1.4" height="15.0" fill="rgb(237,65,26)" rx="2" ry="2" />
<text text-anchor="" x="482.16" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1900 (9 samples, 1.08%)</title><rect x="126.6" y="549" width="12.8" height="15.0" fill="rgb(239,147,28)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (2 samples, 0.24%)</title><rect x="506.2" y="309" width="2.8" height="15.0" fill="rgb(242,168,41)" rx="2" ry="2" />
<text text-anchor="" x="509.17" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.12%)</title><rect x="1062.0" y="277" width="1.5" height="15.0" fill="rgb(245,9,27)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.12%)</title><rect x="1187.2" y="213" width="1.4" height="15.0" fill="rgb(250,10,7)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:create:3377 (372 samples, 44.82%)</title><rect x="526.1" y="405" width="528.8" height="15.0" fill="rgb(214,50,13)" rx="2" ry="2" />
<text text-anchor="" x="529.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:create:3377</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (25 samples, 3.01%)</title><rect x="1005.2" y="293" width="35.5" height="15.0" fill="rgb(225,115,47)" rx="2" ry="2" />
<text text-anchor="" x="1008.18" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_in_cache_without:4798 (1 samples, 0.12%)</title><rect x="1002.3" y="293" width="1.5" height="15.0" fill="rgb(215,227,53)" rx="2" ry="2" />
<text text-anchor="" x="1005.34" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="12.8" y="1189" width="1.5" height="15.0" fill="rgb(216,84,35)" rx="2" ry="2" />
<text text-anchor="" x="15.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="500.5" y="357" width="1.4" height="15.0" fill="rgb(236,123,48)" rx="2" ry="2" />
<text text-anchor="" x="503.48" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.12%)</title><rect x="1074.8" y="373" width="1.5" height="15.0" fill="rgb(251,158,15)" rx="2" ry="2" />
<text text-anchor="" x="1077.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>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (5 samples, 0.60%)</title><rect x="162.1" y="389" width="7.1" height="15.0" fill="rgb(252,28,25)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.12%)</title><rect x="125.2" y="597" width="1.4" height="15.0" fill="rgb(250,189,36)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1011 (747 samples, 90.00%)</title><rect x="126.6" y="629" width="1062.0" height="15.0" fill="rgb(227,225,53)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_bank_statement.py:process_reconciliation:1011</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ids:4354 (2 samples, 0.24%)</title><rect x="973.9" y="245" width="2.8" height="15.0" fill="rgb(206,135,13)" rx="2" ry="2" />
<text text-anchor="" x="976.90" 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>/.repo_requirements/odoo/odoo/models.py:_write:3174 (1 samples, 0.12%)</title><rect x="1177.2" y="437" width="1.4" height="15.0" fill="rgb(235,128,30)" rx="2" ry="2" />
<text text-anchor="" x="1180.20" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4907 (1 samples, 0.12%)</title><rect x="1077.7" y="453" width="1.4" height="15.0" fill="rgb(214,172,31)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" 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;string&gt;:__new__:14 (1 samples, 0.12%)</title><rect x="1032.2" y="229" width="1.4" height="15.0" fill="rgb(216,221,23)" rx="2" ry="2" />
<text text-anchor="" x="1035.19" 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>/.repo_requirements/odoo/odoo/fields.py:column_type:1185 (1 samples, 0.12%)</title><rect x="1008.0" y="245" width="1.4" height="15.0" fill="rgb(235,93,19)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (3 samples, 0.36%)</title><rect x="146.5" y="261" width="4.2" height="15.0" fill="rgb(206,161,23)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1041 (1 samples, 0.12%)</title><rect x="1057.8" y="389" width="1.4" height="15.0" fill="rgb(239,179,17)" rx="2" ry="2" />
<text text-anchor="" x="1060.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="146.5" y="181" width="1.4" height="15.0" fill="rgb(236,151,35)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (22 samples, 2.65%)</title><rect x="1127.4" y="341" width="31.3" height="15.0" fill="rgb(212,89,49)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="68.3" y="1157" width="1.4" height="15.0" fill="rgb(247,165,39)" rx="2" ry="2" />
<text text-anchor="" x="71.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>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.12%)</title><rect x="573.0" y="325" width="1.4" height="15.0" fill="rgb(211,148,23)" rx="2" ry="2" />
<text text-anchor="" x="575.99" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2715 (1 samples, 0.12%)</title><rect x="126.6" y="341" width="1.4" height="15.0" fill="rgb(249,140,40)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="366.8" y="405" width="1.5" height="15.0" fill="rgb(213,118,52)" rx="2" ry="2" />
<text text-anchor="" x="369.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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:207 (1 samples, 0.12%)</title><rect x="1188.6" y="613" width="1.4" height="15.0" fill="rgb(212,11,39)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (3 samples, 0.36%)</title><rect x="1109.0" y="181" width="4.2" height="15.0" fill="rgb(213,219,20)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.12%)</title><rect x="1032.2" y="245" width="1.4" height="15.0" fill="rgb(236,207,4)" rx="2" ry="2" />
<text text-anchor="" x="1035.19" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="1099.0" y="213" width="1.4" height="15.0" fill="rgb(229,85,43)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (2 samples, 0.24%)</title><rect x="71.1" y="1173" width="2.9" height="15.0" fill="rgb(220,84,28)" rx="2" ry="2" />
<text text-anchor="" x="74.13" 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>/.repo_requirements/odoo/odoo/models.py:_mapped_func:4496 (6 samples, 0.72%)</title><rect x="180.6" y="389" width="8.5" height="15.0" fill="rgb(245,48,47)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/sql_db.py:undecimalize:41 (1 samples, 0.12%)</title><rect x="182.0" y="245" width="1.4" height="15.0" fill="rgb(226,229,26)" rx="2" ry="2" />
<text text-anchor="" x="185.02" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="517.5" y="341" width="1.5" height="15.0" fill="rgb(238,175,1)" rx="2" ry="2" />
<text text-anchor="" x="520.54" 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>/usr/lib/python3.5/threading.py:_bootstrap:882 (750 samples, 90.36%)</title><rect x="123.7" y="1221" width="1066.3" height="15.0" fill="rgb(247,159,44)" rx="2" ry="2" />
<text text-anchor="" x="126.73" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap:882</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="170.7" y="133" width="1.4" height="15.0" fill="rgb(237,126,4)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.24%)</title><rect x="696.7" y="277" width="2.8" height="15.0" fill="rgb(251,171,16)" rx="2" ry="2" />
<text text-anchor="" x="699.67" 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>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (5 samples, 0.60%)</title><rect x="162.1" y="405" width="7.1" height="15.0" fill="rgb(233,201,42)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.12%)</title><rect x="548.8" y="357" width="1.4" height="15.0" fill="rgb(207,118,16)" rx="2" ry="2" />
<text text-anchor="" x="551.82" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:184 (2 samples, 0.24%)</title><rect x="1185.7" y="469" width="2.9" height="15.0" fill="rgb(205,221,22)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:84 (1 samples, 0.12%)</title><rect x="561.6" y="293" width="1.4" height="15.0" fill="rgb(245,114,2)" rx="2" ry="2" />
<text text-anchor="" x="564.61" 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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.12%)</title><rect x="180.6" y="293" width="1.4" height="15.0" fill="rgb(232,141,5)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="155.0" y="245" width="1.4" height="15.0" fill="rgb(226,16,24)" rx="2" ry="2" />
<text text-anchor="" x="158.01" 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>/.repo_requirements/odoo/odoo/http.py:dispatch:1491 (749 samples, 90.24%)</title><rect x="125.2" y="949" width="1064.8" height="15.0" fill="rgb(222,112,33)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:dispatch:1491</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="513.3" y="373" width="1.4" height="15.0" fill="rgb(220,133,17)" rx="2" ry="2" />
<text text-anchor="" x="516.28" 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>/.repo_requirements/odoo/odoo/models.py:_generate_order_by:3758 (1 samples, 0.12%)</title><rect x="493.4" y="373" width="1.4" height="15.0" fill="rgb(210,82,21)" rx="2" ry="2" />
<text text-anchor="" x="496.37" 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>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.12%)</title><rect x="1008.0" y="229" width="1.4" height="15.0" fill="rgb(249,40,43)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.12%)</title><rect x="605.7" y="341" width="1.4" height="15.0" fill="rgb(246,187,31)" rx="2" ry="2" />
<text text-anchor="" x="608.69" 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>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (6 samples, 0.72%)</title><rect x="854.5" y="325" width="8.5" height="15.0" fill="rgb(232,132,48)" rx="2" ry="2" />
<text text-anchor="" x="857.48" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="649.8" y="325" width="1.4" height="15.0" fill="rgb(237,61,10)" rx="2" ry="2" />
<text text-anchor="" x="652.76" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:956 (1 samples, 0.12%)</title><rect x="1165.8" y="309" width="1.5" height="15.0" fill="rgb(231,42,41)" rx="2" ry="2" />
<text text-anchor="" x="1168.83" 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>/.repo_requirements/odoo/odoo/models.py:create:3393 (1 samples, 0.12%)</title><rect x="1057.8" y="405" width="1.4" height="15.0" fill="rgb(242,4,20)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/models.py:_write:3195 (2 samples, 0.24%)</title><rect x="1178.6" y="437" width="2.9" height="15.0" fill="rgb(211,151,20)" rx="2" ry="2" />
<text text-anchor="" x="1181.63" 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>/.repo_requirements/odoo/odoo/models.py:_write:3222 (1 samples, 0.12%)</title><rect x="1181.5" y="437" width="1.4" height="15.0" fill="rgb(229,158,25)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:953 (2 samples, 0.24%)</title><rect x="1090.5" y="325" width="2.8" height="15.0" fill="rgb(254,119,51)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="548.8" y="325" width="1.4" height="15.0" fill="rgb(223,111,2)" rx="2" ry="2" />
<text text-anchor="" x="551.82" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.12%)</title><rect x="1171.5" y="437" width="1.4" height="15.0" fill="rgb(251,171,14)" rx="2" ry="2" />
<text text-anchor="" x="1174.52" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1101 (1 samples, 0.12%)</title><rect x="1093.3" y="309" width="1.4" height="15.0" fill="rgb(221,153,38)" rx="2" ry="2" />
<text text-anchor="" x="1096.33" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="1126.0" y="293" width="1.4" height="15.0" fill="rgb(220,51,27)" rx="2" ry="2" />
<text text-anchor="" x="1129.02" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1042 (4 samples, 0.48%)</title><rect x="145.1" y="341" width="5.6" height="15.0" fill="rgb(205,30,12)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4912 (3 samples, 0.36%)</title><rect x="1170.1" y="453" width="4.3" height="15.0" fill="rgb(247,51,22)" rx="2" ry="2" />
<text text-anchor="" x="1173.10" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (1 samples, 0.12%)</title><rect x="169.2" y="277" width="1.5" height="15.0" fill="rgb(221,164,17)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="11.4" y="1077" width="1.4" height="15.0" fill="rgb(212,199,51)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (4 samples, 0.48%)</title><rect x="61.2" y="1189" width="5.7" height="15.0" fill="rgb(205,159,14)" rx="2" ry="2" />
<text text-anchor="" x="64.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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (4 samples, 0.48%)</title><rect x="361.2" y="405" width="5.6" height="15.0" fill="rgb(227,12,44)" rx="2" ry="2" />
<text text-anchor="" x="364.16" 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>/.repo_requirements/odoo/odoo/models.py:write:3094 (8 samples, 0.96%)</title><rect x="169.2" y="373" width="11.4" height="15.0" fill="rgb(209,191,24)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3570 (1 samples, 0.12%)</title><rect x="492.0" y="373" width="1.4" height="15.0" fill="rgb(221,165,53)" rx="2" ry="2" />
<text text-anchor="" x="494.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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (6 samples, 0.72%)</title><rect x="180.6" y="341" width="8.5" height="15.0" fill="rgb(252,160,42)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="1107.5" y="325" width="1.5" height="15.0" fill="rgb(213,189,28)" rx="2" ry="2" />
<text text-anchor="" x="1110.54" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="470.6" y="421" width="1.4" height="15.0" fill="rgb(227,3,11)" rx="2" ry="2" />
<text text-anchor="" x="473.63" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (2 samples, 0.24%)</title><rect x="1130.3" y="197" width="2.8" height="15.0" fill="rgb(218,46,15)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1471 (1 samples, 0.12%)</title><rect x="474.9" y="517" width="1.4" height="15.0" fill="rgb(212,110,38)" rx="2" ry="2" />
<text text-anchor="" x="477.89" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:2596 (1 samples, 0.12%)</title><rect x="183.4" y="277" width="1.5" height="15.0" fill="rgb(221,39,34)" rx="2" ry="2" />
<text text-anchor="" x="186.45" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1158.7" y="261" width="1.4" height="15.0" fill="rgb(242,178,2)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/fields.py:from_string:1514 (2 samples, 0.24%)</title><rect x="1163.0" y="277" width="2.8" height="15.0" fill="rgb(237,151,41)" rx="2" ry="2" />
<text text-anchor="" x="1165.99" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="477.7" y="485" width="1.5" height="15.0" fill="rgb(220,17,44)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.24%)</title><rect x="624.2" y="277" width="2.8" height="15.0" fill="rgb(251,157,46)" rx="2" ry="2" />
<text text-anchor="" x="627.17" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (5 samples, 0.60%)</title><rect x="162.1" y="373" width="7.1" height="15.0" fill="rgb(225,90,39)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.12%)</title><rect x="1117.5" y="165" width="1.4" height="15.0" fill="rgb(234,143,5)" rx="2" ry="2" />
<text text-anchor="" x="1120.49" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (2 samples, 0.24%)</title><rect x="604.3" y="357" width="2.8" height="15.0" fill="rgb(209,188,19)" rx="2" ry="2" />
<text text-anchor="" x="607.27" 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>/.repo_requirements/odoo/odoo/osv/expression.py:distribute_not:321 (1 samples, 0.12%)</title><rect x="490.5" y="341" width="1.5" height="15.0" fill="rgb(233,119,12)" rx="2" ry="2" />
<text text-anchor="" x="493.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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="72.6" y="1141" width="1.4" height="15.0" fill="rgb(240,174,27)" rx="2" ry="2" />
<text text-anchor="" x="75.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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.12%)</title><rect x="83.9" y="1077" width="1.4" height="15.0" fill="rgb(237,1,54)" rx="2" ry="2" />
<text text-anchor="" x="86.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>&lt;decorator-gen-20&gt;:check:2 (1 samples, 0.12%)</title><rect x="524.7" y="373" width="1.4" height="15.0" fill="rgb(246,46,5)" rx="2" ry="2" />
<text text-anchor="" x="527.65" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.12%)</title><rect x="1097.6" y="213" width="1.4" height="15.0" fill="rgb(225,117,39)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/http.py:_call_function:342 (749 samples, 90.24%)</title><rect x="125.2" y="821" width="1064.8" height="15.0" fill="rgb(247,11,14)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:_call_function:342</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__or__:4689 (2 samples, 0.24%)</title><rect x="550.2" y="325" width="2.9" height="15.0" fill="rgb(221,178,47)" rx="2" ry="2" />
<text text-anchor="" x="553.24" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1456 (1 samples, 0.12%)</title><rect x="462.1" y="517" width="1.4" height="15.0" fill="rgb(225,219,52)" rx="2" ry="2" />
<text text-anchor="" x="465.10" 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>/usr/lib/python3.5/_strptime.py:_strptime:475 (1 samples, 0.12%)</title><rect x="1163.0" y="245" width="1.4" height="15.0" fill="rgb(253,6,49)" rx="2" ry="2" />
<text text-anchor="" x="1165.99" 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>/.repo_requirements/odoo/odoo/models.py:modified:4854 (1 samples, 0.12%)</title><rect x="537.4" y="373" width="1.5" height="15.0" fill="rgb(223,55,7)" rx="2" ry="2" />
<text text-anchor="" x="540.45" 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>/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15 (749 samples, 90.24%)</title><rect x="125.2" y="933" width="1064.8" height="15.0" fill="rgb(245,89,29)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/website_sale/models/ir_http.py:_dispatch:15</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.12%)</title><rect x="1128.9" y="197" width="1.4" height="15.0" fill="rgb(231,50,17)" rx="2" ry="2" />
<text text-anchor="" x="1131.87" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (5 samples, 0.60%)</title><rect x="321.3" y="421" width="7.2" height="15.0" fill="rgb(245,91,28)" rx="2" ry="2" />
<text text-anchor="" x="324.35" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (6 samples, 0.72%)</title><rect x="514.7" y="389" width="8.5" height="15.0" fill="rgb(224,146,23)" rx="2" ry="2" />
<text text-anchor="" x="517.70" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (1 samples, 0.12%)</title><rect x="1184.3" y="293" width="1.4" height="15.0" fill="rgb(252,125,16)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="1097.6" y="261" width="1.4" height="15.0" fill="rgb(212,162,21)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.12%)</title><rect x="146.5" y="197" width="1.4" height="15.0" fill="rgb(211,95,15)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="557.3" y="229" width="1.5" height="15.0" fill="rgb(228,18,42)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (2 samples, 0.24%)</title><rect x="1086.2" y="261" width="2.9" height="15.0" fill="rgb(244,26,35)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="184.9" y="293" width="1.4" height="15.0" fill="rgb(249,55,43)" rx="2" ry="2" />
<text text-anchor="" x="187.87" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.12%)</title><rect x="1020.8" y="229" width="1.4" height="15.0" fill="rgb(248,201,16)" rx="2" ry="2" />
<text text-anchor="" x="1023.82" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1062 (1 samples, 0.12%)</title><rect x="890.0" y="357" width="1.4" height="15.0" fill="rgb(243,130,18)" rx="2" ry="2" />
<text text-anchor="" x="893.02" 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>/.repo_requirements/odoo/odoo/models.py:_write:3324 (1 samples, 0.12%)</title><rect x="1182.9" y="437" width="1.4" height="15.0" fill="rgb(205,44,21)" rx="2" ry="2" />
<text text-anchor="" x="1185.89" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2707 (1 samples, 0.12%)</title><rect x="1009.4" y="277" width="1.5" height="15.0" fill="rgb(237,129,25)" rx="2" ry="2" />
<text text-anchor="" x="1012.45" 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>/.repo_requirements/odoo/odoo/api.py:loop:369 (7 samples, 0.84%)</title><rect x="170.7" y="197" width="9.9" height="15.0" fill="rgb(249,227,31)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (6 samples, 0.72%)</title><rect x="172.1" y="133" width="8.5" height="15.0" fill="rgb(245,173,8)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.12%)</title><rect x="66.9" y="1173" width="1.4" height="15.0" fill="rgb(240,119,45)" rx="2" ry="2" />
<text text-anchor="" x="69.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>/.repo_requirements/odoo/odoo/__init__.py:registry:76 (2 samples, 0.24%)</title><rect x="1059.2" y="325" width="2.8" height="15.0" fill="rgb(224,225,47)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/home/odoo/odoo-11.0/addons/calendar/controllers/bus.py:_poll:15 (1 samples, 0.12%)</title><rect x="125.2" y="725" width="1.4" height="15.0" fill="rgb(212,80,21)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;lambda&gt;:388 (1 samples, 0.12%)</title><rect x="1097.6" y="293" width="1.4" height="15.0" fill="rgb(247,183,50)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.12%)</title><rect x="1010.9" y="181" width="1.4" height="15.0" fill="rgb(254,205,39)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_write:491 (19 samples, 2.29%)</title><rect x="162.1" y="469" width="27.0" height="15.0" fill="rgb(225,97,13)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (7 samples, 0.84%)</title><rect x="170.7" y="245" width="9.9" height="15.0" fill="rgb(239,45,38)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:369 (7 samples, 0.84%)</title><rect x="170.7" y="181" width="9.9" height="15.0" fill="rgb(237,91,37)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="474.9" y="485" width="1.4" height="15.0" fill="rgb(225,103,48)" rx="2" ry="2" />
<text text-anchor="" x="477.89" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_write:488 (1 samples, 0.12%)</title><rect x="169.2" y="341" width="1.5" height="15.0" fill="rgb(216,162,31)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/abc.py:__instancecheck__:183 (1 samples, 0.12%)</title><rect x="10.0" y="965" width="1.4" height="15.0" fill="rgb(253,125,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (35 samples, 4.22%)</title><rect x="1003.8" y="309" width="49.7" height="15.0" fill="rgb(209,49,8)" rx="2" ry="2" />
<text text-anchor="" x="1006.76" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.12%)</title><rect x="76.8" y="1141" width="1.4" height="15.0" fill="rgb(218,9,36)" rx="2" ry="2" />
<text text-anchor="" x="79.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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="61.2" y="1109" width="1.4" height="15.0" fill="rgb(240,93,5)" rx="2" ry="2" />
<text text-anchor="" x="64.18" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (5 samples, 0.60%)</title><rect x="392.4" y="405" width="7.1" height="15.0" fill="rgb(205,50,4)" rx="2" ry="2" />
<text text-anchor="" x="395.43" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (5 samples, 0.60%)</title><rect x="992.4" y="245" width="7.1" height="15.0" fill="rgb(215,49,3)" rx="2" ry="2" />
<text text-anchor="" x="995.39" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.12%)</title><rect x="1126.0" y="325" width="1.4" height="15.0" fill="rgb(234,211,29)" rx="2" ry="2" />
<text text-anchor="" x="1129.02" 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>&lt;string&gt;:__new__:14 (1 samples, 0.12%)</title><rect x="1022.2" y="229" width="1.5" height="15.0" fill="rgb(221,82,15)" rx="2" ry="2" />
<text text-anchor="" x="1025.24" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="145.1" y="165" width="1.4" height="15.0" fill="rgb(205,169,13)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:389 (6 samples, 0.72%)</title><rect x="1099.0" y="341" width="8.5" height="15.0" fill="rgb(218,69,8)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/home/odoo/odoo-11.0/addons/purchase/models/purchase.py:_compute_qty_invoiced:573 (1 samples, 0.12%)</title><rect x="140.8" y="389" width="1.4" height="15.0" fill="rgb(206,168,16)" rx="2" ry="2" />
<text text-anchor="" x="143.80" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (5 samples, 0.60%)</title><rect x="152.2" y="309" width="7.1" height="15.0" fill="rgb(242,144,36)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (4 samples, 0.48%)</title><rect x="1035.0" y="261" width="5.7" height="15.0" fill="rgb(214,223,26)" rx="2" ry="2" />
<text text-anchor="" x="1038.04" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="128.0" y="389" width="1.4" height="15.0" fill="rgb(232,131,43)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1046 (1 samples, 0.12%)</title><rect x="10.0" y="1157" width="1.4" height="15.0" fill="rgb(250,59,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/tools/misc.py:split_every:701 (1 samples, 0.12%)</title><rect x="115.2" y="1221" width="1.4" height="15.0" fill="rgb(219,139,11)" rx="2" ry="2" />
<text text-anchor="" x="118.20" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (3 samples, 0.36%)</title><rect x="555.9" y="325" width="4.3" height="15.0" fill="rgb(248,182,6)" rx="2" ry="2" />
<text text-anchor="" x="558.93" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2739 (1 samples, 0.12%)</title><rect x="501.9" y="373" width="1.4" height="15.0" fill="rgb(221,78,42)" rx="2" ry="2" />
<text text-anchor="" x="504.90" 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>/.repo_requirements/odoo/odoo/models.py:with_context:4439 (1 samples, 0.12%)</title><rect x="496.2" y="405" width="1.4" height="15.0" fill="rgb(244,181,21)" rx="2" ry="2" />
<text text-anchor="" x="499.22" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4674 (1 samples, 0.12%)</title><rect x="612.8" y="341" width="1.4" height="15.0" fill="rgb(229,103,54)" rx="2" ry="2" />
<text text-anchor="" x="615.80" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (7 samples, 0.84%)</title><rect x="463.5" y="485" width="10.0" height="15.0" fill="rgb(215,18,1)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/osv/expression.py:normalize_leaf:625 (1 samples, 0.12%)</title><rect x="1064.9" y="181" width="1.4" height="15.0" fill="rgb(214,149,1)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1967 (2 samples, 0.24%)</title><rect x="1026.5" y="229" width="2.8" height="15.0" fill="rgb(220,172,26)" rx="2" ry="2" />
<text text-anchor="" x="1029.51" 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>/.repo_requirements/odoo/odoo/osv/expression.py:is_false:230 (1 samples, 0.12%)</title><rect x="564.5" y="325" width="1.4" height="15.0" fill="rgb(243,5,4)" rx="2" ry="2" />
<text text-anchor="" x="567.46" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.12%)</title><rect x="64.0" y="1125" width="1.4" height="15.0" fill="rgb(235,28,15)" rx="2" ry="2" />
<text text-anchor="" x="67.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:133 (494 samples, 59.52%)</title><rect x="486.3" y="517" width="702.3" height="15.0" fill="rgb(234,146,40)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:write:133</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3781 (2 samples, 0.24%)</title><rect x="565.9" y="341" width="2.8" height="15.0" fill="rgb(249,45,40)" rx="2" ry="2" />
<text text-anchor="" x="568.88" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="125.2" y="613" width="1.4" height="15.0" fill="rgb(221,89,29)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.24%)</title><rect x="166.4" y="277" width="2.8" height="15.0" fill="rgb(208,41,16)" rx="2" ry="2" />
<text text-anchor="" x="169.39" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (1 samples, 0.12%)</title><rect x="1099.0" y="149" width="1.4" height="15.0" fill="rgb(224,175,49)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.12%)</title><rect x="78.2" y="1125" width="1.5" height="15.0" fill="rgb(216,116,42)" rx="2" ry="2" />
<text text-anchor="" x="81.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:getlocale:577 (1 samples, 0.12%)</title><rect x="1164.4" y="213" width="1.4" height="15.0" fill="rgb(227,205,42)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1902 (35 samples, 4.22%)</title><rect x="139.4" y="549" width="49.7" height="15.0" fill="rgb(229,219,19)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (48 samples, 5.78%)</title><rect x="270.2" y="453" width="68.2" height="15.0" fill="rgb(217,120,24)" rx="2" ry="2" />
<text text-anchor="" x="273.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:get_alias_from_query:380 (1 samples, 0.12%)</title><rect x="494.8" y="357" width="1.4" height="15.0" fill="rgb(231,28,53)" rx="2" ry="2" />
<text text-anchor="" x="497.80" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.24%)</title><rect x="1158.7" y="325" width="2.9" height="15.0" fill="rgb(209,150,13)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.12%)</title><rect x="605.7" y="309" width="1.4" height="15.0" fill="rgb(251,43,32)" rx="2" ry="2" />
<text text-anchor="" x="608.69" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="187.7" y="245" width="1.4" height="15.0" fill="rgb(251,203,51)" rx="2" ry="2" />
<text text-anchor="" x="190.71" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (19 samples, 2.29%)</title><rect x="683.9" y="293" width="27.0" height="15.0" fill="rgb(218,69,45)" rx="2" ry="2" />
<text text-anchor="" x="686.88" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.12%)</title><rect x="165.0" y="277" width="1.4" height="15.0" fill="rgb(227,144,41)" rx="2" ry="2" />
<text text-anchor="" x="167.96" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__contains__:75 (1 samples, 0.12%)</title><rect x="10.0" y="949" width="1.4" height="15.0" fill="rgb(246,46,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="1093.3" y="325" width="1.4" height="15.0" fill="rgb(246,180,54)" rx="2" ry="2" />
<text text-anchor="" x="1096.33" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (3 samples, 0.36%)</title><rect x="1019.4" y="261" width="4.3" height="15.0" fill="rgb(208,158,14)" rx="2" ry="2" />
<text text-anchor="" x="1022.40" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (9 samples, 1.08%)</title><rect x="941.2" y="261" width="12.8" height="15.0" fill="rgb(248,43,50)" rx="2" ry="2" />
<text text-anchor="" x="944.20" 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>/.repo_requirements/odoo/odoo/models.py:_validate_fields:1037 (114 samples, 13.73%)</title><rect x="892.9" y="373" width="162.0" height="15.0" fill="rgb(205,190,45)" rx="2" ry="2" />
<text text-anchor="" x="895.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="167.8" y="245" width="1.4" height="15.0" fill="rgb(246,169,11)" rx="2" ry="2" />
<text text-anchor="" x="170.81" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (15 samples, 1.81%)</title><rect x="314.2" y="437" width="21.4" height="15.0" fill="rgb(209,98,28)" rx="2" ry="2" />
<text text-anchor="" x="317.24" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="177.8" y="85" width="1.4" height="15.0" fill="rgb(248,74,2)" rx="2" ry="2" />
<text text-anchor="" x="180.76" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.12%)</title><rect x="143.6" y="309" width="1.5" height="15.0" fill="rgb(208,140,50)" rx="2" ry="2" />
<text text-anchor="" x="146.64" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1160.1" y="309" width="1.5" height="15.0" fill="rgb(253,50,25)" rx="2" ry="2" />
<text text-anchor="" x="1163.14" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1451 (1 samples, 0.12%)</title><rect x="460.7" y="517" width="1.4" height="15.0" fill="rgb(241,94,54)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="500.5" y="405" width="1.4" height="15.0" fill="rgb(205,22,2)" rx="2" ry="2" />
<text text-anchor="" x="503.48" 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>/.repo_requirements/odoo/odoo/api.py:__new__:742 (1 samples, 0.12%)</title><rect x="1188.6" y="485" width="1.4" height="15.0" fill="rgb(238,219,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (63 samples, 7.59%)</title><rect x="1079.1" y="373" width="89.6" height="15.0" fill="rgb(207,221,38)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (8 samples, 0.96%)</title><rect x="128.0" y="437" width="11.4" height="15.0" fill="rgb(235,8,21)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="460.7" y="469" width="1.4" height="15.0" fill="rgb(211,145,54)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (7 samples, 0.84%)</title><rect x="463.5" y="517" width="10.0" height="15.0" fill="rgb(230,109,34)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (3 samples, 0.36%)</title><rect x="146.5" y="229" width="4.2" height="15.0" fill="rgb(212,109,25)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:read:2603 (1 samples, 0.12%)</title><rect x="10.0" y="1013" width="1.4" height="15.0" fill="rgb(240,143,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (6 samples, 0.72%)</title><rect x="172.1" y="149" width="8.5" height="15.0" fill="rgb(233,68,32)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/models.py:_compute_display_name:1492 (1 samples, 0.12%)</title><rect x="10.0" y="1109" width="1.4" height="15.0" fill="rgb(238,195,36)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_amount_residual:313 (1 samples, 0.12%)</title><rect x="1089.1" y="341" width="1.4" height="15.0" fill="rgb(243,99,24)" rx="2" ry="2" />
<text text-anchor="" x="1092.06" 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>/usr/lib/python3.5/http/server.py:handle:422 (749 samples, 90.24%)</title><rect x="125.2" y="1109" width="1064.8" height="15.0" fill="rgb(214,13,33)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/http/server.py:handle:422</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:&lt;listcomp&gt;:203 (1 samples, 0.12%)</title><rect x="126.6" y="309" width="1.4" height="15.0" fill="rgb(249,206,5)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__enter__:24 (1 samples, 0.12%)</title><rect x="122.3" y="1205" width="1.4" height="15.0" fill="rgb(247,158,20)" rx="2" ry="2" />
<text text-anchor="" x="125.31" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (2 samples, 0.24%)</title><rect x="142.2" y="341" width="2.9" height="15.0" fill="rgb(230,29,5)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1772 (1 samples, 0.12%)</title><rect x="483.4" y="533" width="1.4" height="15.0" fill="rgb(229,105,9)" rx="2" ry="2" />
<text text-anchor="" x="486.42" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (2 samples, 0.24%)</title><rect x="628.4" y="293" width="2.9" height="15.0" fill="rgb(233,135,26)" rx="2" ry="2" />
<text text-anchor="" x="631.43" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="1076.3" y="373" width="1.4" height="15.0" fill="rgb(245,174,25)" rx="2" ry="2" />
<text text-anchor="" x="1079.27" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1271 (1 samples, 0.12%)</title><rect x="1063.5" y="245" width="1.4" height="15.0" fill="rgb(211,110,33)" rx="2" ry="2" />
<text text-anchor="" x="1066.47" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.12%)</title><rect x="1093.3" y="293" width="1.4" height="15.0" fill="rgb(252,193,54)" rx="2" ry="2" />
<text text-anchor="" x="1096.33" 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>/home/odoo/odoo-11.0/addons/hr_expense/models/account_move_line.py:reconcile:15 (747 samples, 90.00%)</title><rect x="126.6" y="597" width="1062.0" height="15.0" fill="rgb(212,64,43)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/hr_expense/models/account_move_line.py:reconcile:15</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_write:3232 (416 samples, 50.12%)</title><rect x="486.3" y="469" width="591.4" height="15.0" fill="rgb(218,113,11)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models.py:_write:3232</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="460.7" y="485" width="1.4" height="15.0" fill="rgb(248,28,12)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1052.1" y="245" width="1.4" height="15.0" fill="rgb(228,145,8)" rx="2" ry="2" />
<text text-anchor="" x="1055.10" 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>/home/odoo/odoo-11.0/addons/account/models/account.py:name_search:687 (2 samples, 0.24%)</title><rect x="1067.7" y="309" width="2.9" height="15.0" fill="rgb(244,79,40)" rx="2" ry="2" />
<text text-anchor="" x="1070.73" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (7 samples, 0.84%)</title><rect x="1023.7" y="277" width="9.9" height="15.0" fill="rgb(214,124,33)" rx="2" ry="2" />
<text text-anchor="" x="1026.66" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="497.6" y="405" width="1.5" height="15.0" fill="rgb(252,43,25)" rx="2" ry="2" />
<text text-anchor="" x="500.64" 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>/.repo_requirements/odoo/odoo/tools/safe_eval.py:safe_eval:350 (1 samples, 0.12%)</title><rect x="1184.3" y="357" width="1.4" height="15.0" fill="rgb(217,124,42)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (2 samples, 0.24%)</title><rect x="129.4" y="389" width="2.9" height="15.0" fill="rgb(245,136,41)" rx="2" ry="2" />
<text text-anchor="" x="132.42" 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>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:229 (8 samples, 0.96%)</title><rect x="169.2" y="421" width="11.4" height="15.0" fill="rgb(211,120,43)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1083.4" y="325" width="1.4" height="15.0" fill="rgb(241,35,18)" rx="2" ry="2" />
<text text-anchor="" x="1086.37" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (6 samples, 0.72%)</title><rect x="1099.0" y="229" width="8.5" height="15.0" fill="rgb(244,43,53)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_column:1268 (1 samples, 0.12%)</title><rect x="528.9" y="373" width="1.4" height="15.0" fill="rgb(235,151,30)" rx="2" ry="2" />
<text text-anchor="" x="531.92" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="565.9" y="309" width="1.4" height="15.0" fill="rgb(211,93,36)" rx="2" ry="2" />
<text text-anchor="" x="568.88" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (6 samples, 0.72%)</title><rect x="622.7" y="309" width="8.6" height="15.0" fill="rgb(206,65,9)" rx="2" ry="2" />
<text text-anchor="" x="625.75" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.24%)</title><rect x="1133.1" y="181" width="2.9" height="15.0" fill="rgb(205,194,31)" rx="2" ry="2" />
<text text-anchor="" x="1136.13" 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>/.repo_requirements/odoo/odoo/models.py:create:3382 (1 samples, 0.12%)</title><rect x="1056.4" y="405" width="1.4" height="15.0" fill="rgb(244,129,43)" rx="2" ry="2" />
<text text-anchor="" x="1059.36" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (2 samples, 0.24%)</title><rect x="1133.1" y="213" width="2.9" height="15.0" fill="rgb(210,98,2)" rx="2" ry="2" />
<text text-anchor="" x="1136.13" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="548.8" y="341" width="1.4" height="15.0" fill="rgb(249,89,52)" rx="2" ry="2" />
<text text-anchor="" x="551.82" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (18 samples, 2.17%)</title><rect x="863.0" y="373" width="25.6" height="15.0" fill="rgb(214,76,42)" rx="2" ry="2" />
<text text-anchor="" x="866.01" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1131.7" y="165" width="1.4" height="15.0" fill="rgb(240,218,12)" rx="2" ry="2" />
<text text-anchor="" x="1134.71" 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>/.repo_requirements/odoo/odoo/models.py:modified:4853 (1 samples, 0.12%)</title><rect x="536.0" y="373" width="1.4" height="15.0" fill="rgb(226,42,34)" rx="2" ry="2" />
<text text-anchor="" x="539.02" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (1 samples, 0.12%)</title><rect x="160.7" y="437" width="1.4" height="15.0" fill="rgb(252,24,38)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="76.8" y="1157" width="1.4" height="15.0" fill="rgb(253,11,35)" rx="2" ry="2" />
<text text-anchor="" x="79.82" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="519.0" y="373" width="1.4" height="15.0" fill="rgb(244,76,44)" rx="2" ry="2" />
<text text-anchor="" x="521.96" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.24%)</title><rect x="557.3" y="277" width="2.9" height="15.0" fill="rgb(240,107,9)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (6 samples, 0.72%)</title><rect x="180.6" y="373" width="8.5" height="15.0" fill="rgb(209,32,29)" rx="2" ry="2" />
<text text-anchor="" x="183.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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (21 samples, 2.53%)</title><rect x="1127.4" y="293" width="29.9" height="15.0" fill="rgb(219,191,50)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1783 (1 samples, 0.12%)</title><rect x="484.8" y="533" width="1.5" height="15.0" fill="rgb(217,197,49)" rx="2" ry="2" />
<text text-anchor="" x="487.84" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (13 samples, 1.57%)</title><rect x="388.2" y="421" width="18.5" height="15.0" fill="rgb(221,130,11)" rx="2" ry="2" />
<text text-anchor="" x="391.17" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="125.2" y="645" width="1.4" height="15.0" fill="rgb(232,65,20)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="492.0" y="293" width="1.4" height="15.0" fill="rgb(243,63,48)" rx="2" ry="2" />
<text text-anchor="" x="494.95" 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>/home/odoo/odoo-11.0/addons/account/models/account.py:name_get:674 (1 samples, 0.12%)</title><rect x="68.3" y="1173" width="1.4" height="15.0" fill="rgb(227,65,12)" rx="2" ry="2" />
<text text-anchor="" x="71.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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2732 (1 samples, 0.12%)</title><rect x="128.0" y="405" width="1.4" height="15.0" fill="rgb(212,26,7)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="1118.9" y="133" width="1.4" height="15.0" fill="rgb(206,148,29)" rx="2" ry="2" />
<text text-anchor="" x="1121.92" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1526 (1 samples, 0.12%)</title><rect x="1025.1" y="229" width="1.4" height="15.0" fill="rgb(224,228,13)" rx="2" ry="2" />
<text text-anchor="" x="1028.08" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__delitem__:82 (1 samples, 0.12%)</title><rect x="1060.6" y="277" width="1.4" height="15.0" fill="rgb(206,130,53)" rx="2" ry="2" />
<text text-anchor="" x="1063.63" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="477.7" y="453" width="1.5" height="15.0" fill="rgb(216,71,27)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1049.3" y="245" width="1.4" height="15.0" fill="rgb(245,112,35)" rx="2" ry="2" />
<text text-anchor="" x="1052.25" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (2 samples, 0.24%)</title><rect x="568.7" y="293" width="2.9" height="15.0" fill="rgb(252,141,21)" rx="2" ry="2" />
<text text-anchor="" x="571.72" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.12%)</title><rect x="160.7" y="389" width="1.4" height="15.0" fill="rgb(224,111,15)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/usr/lib/python3.5/_strptime.py:_strptime_datetime:521 (2 samples, 0.24%)</title><rect x="1163.0" y="261" width="2.8" height="15.0" fill="rgb(243,165,23)" rx="2" ry="2" />
<text text-anchor="" x="1165.99" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2691 (1 samples, 0.12%)</title><rect x="1005.2" y="261" width="1.4" height="15.0" fill="rgb(247,172,49)" rx="2" ry="2" />
<text text-anchor="" x="1008.18" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2531 (1 samples, 0.12%)</title><rect x="386.7" y="421" width="1.5" height="15.0" fill="rgb(234,174,33)" rx="2" ry="2" />
<text text-anchor="" x="389.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>/.repo_requirements/odoo/odoo/models.py:_write:3322 (2 samples, 0.24%)</title><rect x="1185.7" y="325" width="2.9" height="15.0" fill="rgb(212,175,17)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (1 samples, 0.12%)</title><rect x="1184.3" y="213" width="1.4" height="15.0" fill="rgb(245,51,19)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_compute_residual:108 (6 samples, 0.72%)</title><rect x="150.7" y="341" width="8.6" height="15.0" fill="rgb(205,56,47)" rx="2" ry="2" />
<text text-anchor="" x="153.75" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="155.0" y="277" width="1.4" height="15.0" fill="rgb(214,66,0)" rx="2" ry="2" />
<text text-anchor="" x="158.01" 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>/.repo_requirements/odoo/odoo/models.py:_search:3778 (3 samples, 0.36%)</title><rect x="489.1" y="389" width="4.3" height="15.0" fill="rgb(254,136,16)" rx="2" ry="2" />
<text text-anchor="" x="492.11" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="1100.4" y="213" width="1.5" height="15.0" fill="rgb(225,208,39)" rx="2" ry="2" />
<text text-anchor="" x="1103.43" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2768 (1 samples, 0.12%)</title><rect x="11.4" y="1157" width="1.4" height="15.0" fill="rgb(245,212,41)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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;string&gt;:__new__:14 (1 samples, 0.12%)</title><rect x="1069.2" y="229" width="1.4" height="15.0" fill="rgb(232,183,22)" rx="2" ry="2" />
<text text-anchor="" x="1072.16" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="335.6" y="437" width="1.4" height="15.0" fill="rgb(253,224,9)" rx="2" ry="2" />
<text text-anchor="" x="338.57" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (8 samples, 0.96%)</title><rect x="432.2" y="421" width="11.4" height="15.0" fill="rgb(209,45,7)" rx="2" ry="2" />
<text text-anchor="" x="435.24" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1277 (1 samples, 0.12%)</title><rect x="1090.5" y="309" width="1.4" height="15.0" fill="rgb(229,80,52)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="160.7" y="245" width="1.4" height="15.0" fill="rgb(218,34,22)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (22 samples, 2.65%)</title><rect x="1127.4" y="309" width="31.3" height="15.0" fill="rgb(248,77,34)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (36 samples, 4.34%)</title><rect x="553.1" y="357" width="51.2" height="15.0" fill="rgb(218,74,44)" rx="2" ry="2" />
<text text-anchor="" x="556.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1276 (1 samples, 0.12%)</title><rect x="139.4" y="357" width="1.4" height="15.0" fill="rgb(232,16,12)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (2 samples, 0.24%)</title><rect x="244.6" y="421" width="2.8" height="15.0" fill="rgb(251,23,41)" rx="2" ry="2" />
<text text-anchor="" x="247.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1168.7" y="373" width="1.4" height="15.0" fill="rgb(234,32,8)" rx="2" ry="2" />
<text text-anchor="" x="1171.67" 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>/.repo_requirements/odoo/odoo/models.py:qualify:2702 (2 samples, 0.24%)</title><rect x="1015.1" y="245" width="2.9" height="15.0" fill="rgb(238,108,32)" rx="2" ry="2" />
<text text-anchor="" x="1018.13" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="160.7" y="261" width="1.4" height="15.0" fill="rgb(230,187,49)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:__contains__:4648 (1 samples, 0.12%)</title><rect x="1066.3" y="213" width="1.4" height="15.0" fill="rgb(228,162,2)" rx="2" ry="2" />
<text text-anchor="" x="1069.31" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (2 samples, 0.24%)</title><rect x="1138.8" y="229" width="2.9" height="15.0" fill="rgb(242,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1141.82" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (1 samples, 0.12%)</title><rect x="1097.6" y="309" width="1.4" height="15.0" fill="rgb(215,203,17)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/models.py:modified:4861 (6 samples, 0.72%)</title><rect x="538.9" y="373" width="8.5" height="15.0" fill="rgb(244,223,19)" rx="2" ry="2" />
<text text-anchor="" x="541.87" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.12%)</title><rect x="520.4" y="373" width="1.4" height="15.0" fill="rgb(250,115,2)" rx="2" ry="2" />
<text text-anchor="" x="523.39" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.12%)</title><rect x="490.5" y="373" width="1.5" height="15.0" fill="rgb(221,26,41)" rx="2" ry="2" />
<text text-anchor="" x="493.53" 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>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (1 samples, 0.12%)</title><rect x="160.7" y="453" width="1.4" height="15.0" fill="rgb(222,127,5)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (8 samples, 0.96%)</title><rect x="449.3" y="437" width="11.4" height="15.0" fill="rgb(237,71,8)" rx="2" ry="2" />
<text text-anchor="" x="452.30" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1145.9" y="197" width="1.4" height="15.0" fill="rgb(237,117,17)" rx="2" ry="2" />
<text text-anchor="" x="1148.93" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="11.4" y="1045" width="1.4" height="15.0" fill="rgb(214,57,11)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (28 samples, 3.37%)</title><rect x="1084.8" y="357" width="39.8" height="15.0" fill="rgb(245,131,32)" rx="2" ry="2" />
<text text-anchor="" x="1087.80" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>:&lt;module&gt;:8 (2 samples, 0.24%)</title><rect x="1185.7" y="389" width="2.9" height="15.0" fill="rgb(248,221,39)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="12.8" y="1173" width="1.5" height="15.0" fill="rgb(252,166,41)" rx="2" ry="2" />
<text text-anchor="" x="15.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>/.repo_requirements/odoo/odoo/models.py:_create:3534 (35 samples, 4.22%)</title><rect x="139.4" y="517" width="49.7" height="15.0" fill="rgb(227,28,5)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:3564 (1 samples, 0.12%)</title><rect x="14.3" y="1221" width="1.4" height="15.0" fill="rgb(213,29,27)" rx="2" ry="2" />
<text text-anchor="" x="17.27" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="1185.7" y="277" width="1.5" height="15.0" fill="rgb(227,59,44)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:check_access_rights:2867 (1 samples, 0.12%)</title><rect x="524.7" y="389" width="1.4" height="15.0" fill="rgb(218,12,25)" rx="2" ry="2" />
<text text-anchor="" x="527.65" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="503.3" y="325" width="1.4" height="15.0" fill="rgb(214,171,33)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="147.9" y="197" width="1.4" height="15.0" fill="rgb(238,71,40)" rx="2" ry="2" />
<text text-anchor="" x="150.90" 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>/.repo_requirements/odoo/odoo/models.py:ids:4354 (13 samples, 1.57%)</title><rect x="922.7" y="245" width="18.5" height="15.0" fill="rgb(248,130,30)" rx="2" ry="2" />
<text text-anchor="" x="925.72" 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>/.repo_requirements/odoo/odoo/models.py:with_context:4439 (1 samples, 0.12%)</title><rect x="1188.6" y="517" width="1.4" height="15.0" fill="rgb(224,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="1096.2" y="325" width="1.4" height="15.0" fill="rgb(235,24,36)" rx="2" ry="2" />
<text text-anchor="" x="1099.17" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (112 samples, 13.49%)</title><rect x="894.3" y="341" width="159.2" height="15.0" fill="rgb(214,118,43)" rx="2" ry="2" />
<text text-anchor="" x="897.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__hash__:4745 (1 samples, 0.12%)</title><rect x="149.3" y="197" width="1.4" height="15.0" fill="rgb(249,124,41)" rx="2" ry="2" />
<text text-anchor="" x="152.33" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.24%)</title><rect x="978.2" y="245" width="2.8" height="15.0" fill="rgb(242,90,20)" rx="2" ry="2" />
<text text-anchor="" x="981.17" 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>/.repo_requirements/odoo/odoo/models.py:_search:3779 (1 samples, 0.12%)</title><rect x="1063.5" y="277" width="1.4" height="15.0" fill="rgb(228,125,9)" rx="2" ry="2" />
<text text-anchor="" x="1066.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1114.7" y="165" width="1.4" height="15.0" fill="rgb(227,64,13)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (1 samples, 0.12%)</title><rect x="463.5" y="421" width="1.4" height="15.0" fill="rgb(216,28,34)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (2 samples, 0.24%)</title><rect x="10.0" y="1173" width="2.8" height="15.0" fill="rgb(226,62,51)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="551.7" y="277" width="1.4" height="15.0" fill="rgb(237,101,1)" rx="2" ry="2" />
<text text-anchor="" x="554.66" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="248.8" y="437" width="1.5" height="15.0" fill="rgb(232,219,25)" rx="2" ry="2" />
<text text-anchor="" x="251.84" 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>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.12%)</title><rect x="280.1" y="437" width="1.4" height="15.0" fill="rgb(218,116,24)" rx="2" ry="2" />
<text text-anchor="" x="283.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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (2 samples, 0.24%)</title><rect x="550.2" y="357" width="2.9" height="15.0" fill="rgb(242,97,19)" rx="2" ry="2" />
<text text-anchor="" x="553.24" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:377 (1 samples, 0.12%)</title><rect x="139.4" y="389" width="1.4" height="15.0" fill="rgb(212,137,13)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (2 samples, 0.24%)</title><rect x="463.5" y="469" width="2.9" height="15.0" fill="rgb(242,93,4)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_process:184 (1 samples, 0.12%)</title><rect x="1184.3" y="421" width="1.4" height="15.0" fill="rgb(233,63,29)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="76.8" y="1173" width="1.4" height="15.0" fill="rgb(234,140,9)" rx="2" ry="2" />
<text text-anchor="" x="79.82" 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>/.repo_requirements/odoo/odoo/osv/expression.py:_get_expression:1057 (6 samples, 0.72%)</title><rect x="1062.0" y="325" width="8.6" height="15.0" fill="rgb(249,167,38)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/usr/lib/python3.5/_strptime.py:_strptime_datetime:521 (1 samples, 0.12%)</title><rect x="1161.6" y="261" width="1.4" height="15.0" fill="rgb(233,80,4)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1155.9" y="181" width="1.4" height="15.0" fill="rgb(241,111,30)" rx="2" ry="2" />
<text text-anchor="" x="1158.88" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="261.6" y="405" width="1.5" height="15.0" fill="rgb(228,82,42)" rx="2" ry="2" />
<text text-anchor="" x="264.64" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="268.7" y="437" width="1.5" height="15.0" fill="rgb(219,63,24)" rx="2" ry="2" />
<text text-anchor="" x="271.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>/.repo_requirements/odoo/odoo/service/server.py:http_thread:262 (1 samples, 0.12%)</title><rect x="123.7" y="1173" width="1.5" height="15.0" fill="rgb(235,144,22)" rx="2" ry="2" />
<text text-anchor="" x="126.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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (2 samples, 0.24%)</title><rect x="71.1" y="1189" width="2.9" height="15.0" fill="rgb(238,90,48)" rx="2" ry="2" />
<text text-anchor="" x="74.13" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (2 samples, 0.24%)</title><rect x="550.2" y="309" width="2.9" height="15.0" fill="rgb(210,63,52)" rx="2" ry="2" />
<text text-anchor="" x="553.24" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1064 (7 samples, 0.84%)</title><rect x="1062.0" y="341" width="10.0" height="15.0" fill="rgb(242,214,42)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (24 samples, 2.89%)</title><rect x="27.1" y="1205" width="34.1" height="15.0" fill="rgb(245,122,11)" rx="2" ry="2" />
<text text-anchor="" x="30.06" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.12%)</title><rect x="1175.8" y="421" width="1.4" height="15.0" fill="rgb(228,130,45)" rx="2" ry="2" />
<text text-anchor="" x="1178.78" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:783 (1 samples, 0.12%)</title><rect x="10.0" y="981" width="1.4" height="15.0" fill="rgb(210,222,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="243.2" y="405" width="1.4" height="15.0" fill="rgb(249,114,24)" rx="2" ry="2" />
<text text-anchor="" x="246.16" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1170.1" y="437" width="1.4" height="15.0" fill="rgb(209,174,35)" rx="2" ry="2" />
<text text-anchor="" x="1173.10" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:85 (1 samples, 0.12%)</title><rect x="524.7" y="357" width="1.4" height="15.0" fill="rgb(232,38,47)" rx="2" ry="2" />
<text text-anchor="" x="527.65" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1077.7" y="389" width="1.4" height="15.0" fill="rgb(208,95,7)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" 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>/.repo_requirements/odoo/odoo/osv/query.py:add_joins_for_table:161 (1 samples, 0.12%)</title><rect x="83.9" y="1205" width="1.4" height="15.0" fill="rgb(228,151,2)" rx="2" ry="2" />
<text text-anchor="" x="86.93" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.12%)</title><rect x="146.5" y="165" width="1.4" height="15.0" fill="rgb(244,133,43)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="1032.2" y="261" width="1.4" height="15.0" fill="rgb(240,105,8)" rx="2" ry="2" />
<text text-anchor="" x="1035.19" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (20 samples, 2.41%)</title><rect x="160.7" y="485" width="28.4" height="15.0" fill="rgb(222,73,46)" rx="2" ry="2" />
<text text-anchor="" x="163.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="1167.3" y="309" width="1.4" height="15.0" fill="rgb(214,93,43)" rx="2" ry="2" />
<text text-anchor="" x="1170.25" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:create:210 (14 samples, 1.69%)</title><rect x="1057.8" y="437" width="19.9" height="15.0" fill="rgb(228,131,29)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (1 samples, 0.12%)</title><rect x="1144.5" y="213" width="1.4" height="15.0" fill="rgb(209,196,9)" rx="2" ry="2" />
<text text-anchor="" x="1147.51" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="167.8" y="261" width="1.4" height="15.0" fill="rgb(245,129,20)" rx="2" ry="2" />
<text text-anchor="" x="170.81" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (3 samples, 0.36%)</title><rect x="1109.0" y="213" width="4.2" height="15.0" fill="rgb(250,228,3)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4324 (1 samples, 0.12%)</title><rect x="264.5" y="421" width="1.4" height="15.0" fill="rgb(242,11,20)" rx="2" ry="2" />
<text text-anchor="" x="267.48" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:892 (138 samples, 16.63%)</title><rect x="658.3" y="341" width="196.2" height="15.0" fill="rgb(225,104,50)" rx="2" ry="2" />
<text text-anchor="" x="661.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="894.3" y="325" width="1.4" height="15.0" fill="rgb(242,22,9)" rx="2" ry="2" />
<text text-anchor="" x="897.29" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="189.1" y="501" width="1.5" height="15.0" fill="rgb(252,135,30)" rx="2" ry="2" />
<text text-anchor="" x="192.13" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="147.9" y="181" width="1.4" height="15.0" fill="rgb(220,229,51)" rx="2" ry="2" />
<text text-anchor="" x="150.90" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2663 (1 samples, 0.12%)</title><rect x="11.4" y="1125" width="1.4" height="15.0" fill="rgb(250,63,39)" rx="2" ry="2" />
<text text-anchor="" x="14.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (2 samples, 0.24%)</title><rect x="1154.5" y="197" width="2.8" height="15.0" fill="rgb(224,148,17)" rx="2" ry="2" />
<text text-anchor="" x="1157.46" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (2 samples, 0.24%)</title><rect x="10.0" y="1189" width="2.8" height="15.0" fill="rgb(223,58,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:599 (1 samples, 0.12%)</title><rect x="492.0" y="325" width="1.4" height="15.0" fill="rgb(205,71,4)" rx="2" ry="2" />
<text text-anchor="" x="494.95" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4354 (13 samples, 1.57%)</title><rect x="922.7" y="229" width="18.5" height="15.0" fill="rgb(206,116,8)" rx="2" ry="2" />
<text text-anchor="" x="925.72" 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>:&lt;module&gt;:8 (1 samples, 0.12%)</title><rect x="1184.3" y="341" width="1.4" height="15.0" fill="rgb(252,62,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.12%)</title><rect x="169.2" y="261" width="1.5" height="15.0" fill="rgb(254,34,48)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1062 (1 samples, 0.12%)</title><rect x="1174.4" y="405" width="1.4" height="15.0" fill="rgb(223,221,43)" rx="2" ry="2" />
<text text-anchor="" x="1177.36" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (10 samples, 1.20%)</title><rect x="1059.2" y="357" width="14.2" height="15.0" fill="rgb(234,151,6)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/osv/expression.py:normalize_leaf:399 (1 samples, 0.12%)</title><rect x="1064.9" y="165" width="1.4" height="15.0" fill="rgb(240,119,19)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/models.py:modified:4840 (1 samples, 0.12%)</title><rect x="1182.9" y="421" width="1.4" height="15.0" fill="rgb(214,141,1)" rx="2" ry="2" />
<text text-anchor="" x="1185.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>/.repo_requirements/odoo/odoo/models.py:read:2609 (1 samples, 0.12%)</title><rect x="1123.2" y="229" width="1.4" height="15.0" fill="rgb(234,121,36)" rx="2" ry="2" />
<text text-anchor="" x="1126.18" 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>/.repo_requirements/odoo/odoo/models.py:_recompute_todo:4889 (147 samples, 17.71%)</title><rect x="654.0" y="357" width="209.0" height="15.0" fill="rgb(231,12,16)" rx="2" ry="2" />
<text text-anchor="" x="657.02" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/od..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:597 (1 samples, 0.12%)</title><rect x="74.0" y="1205" width="1.4" height="15.0" fill="rgb(242,155,54)" rx="2" ry="2" />
<text text-anchor="" x="76.98" 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>/usr/lib/python3.5/_strptime.py:_getlang:31 (1 samples, 0.12%)</title><rect x="1164.4" y="229" width="1.4" height="15.0" fill="rgb(208,118,15)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (8 samples, 0.96%)</title><rect x="128.0" y="469" width="11.4" height="15.0" fill="rgb(214,127,32)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="492.0" y="309" width="1.4" height="15.0" fill="rgb(249,187,7)" rx="2" ry="2" />
<text text-anchor="" x="494.95" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;lambda&gt;:1445 (8 samples, 0.96%)</title><rect x="128.0" y="485" width="11.4" height="15.0" fill="rgb(241,25,10)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/api.py:loop:369 (1 samples, 0.12%)</title><rect x="160.7" y="325" width="1.4" height="15.0" fill="rgb(252,161,39)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="61.2" y="1141" width="1.4" height="15.0" fill="rgb(223,11,26)" rx="2" ry="2" />
<text text-anchor="" x="64.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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (3 samples, 0.36%)</title><rect x="624.2" y="293" width="4.2" height="15.0" fill="rgb(225,1,25)" rx="2" ry="2" />
<text text-anchor="" x="627.17" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2689 (1 samples, 0.12%)</title><rect x="1005.2" y="277" width="1.4" height="15.0" fill="rgb(228,23,33)" rx="2" ry="2" />
<text text-anchor="" x="1008.18" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2732 (1 samples, 0.12%)</title><rect x="162.1" y="277" width="1.4" height="15.0" fill="rgb(209,87,1)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/models.py:with_env:4385 (1 samples, 0.12%)</title><rect x="1126.0" y="309" width="1.4" height="15.0" fill="rgb(247,221,47)" rx="2" ry="2" />
<text text-anchor="" x="1129.02" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="553.1" y="309" width="1.4" height="15.0" fill="rgb(236,154,23)" rx="2" ry="2" />
<text text-anchor="" x="556.08" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.12%)</title><rect x="1066.3" y="261" width="1.4" height="15.0" fill="rgb(209,196,45)" rx="2" ry="2" />
<text text-anchor="" x="1069.31" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (4 samples, 0.48%)</title><rect x="1023.7" y="261" width="5.6" height="15.0" fill="rgb(252,47,4)" rx="2" ry="2" />
<text text-anchor="" x="1026.66" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="138.0" y="389" width="1.4" height="15.0" fill="rgb(239,66,12)" rx="2" ry="2" />
<text text-anchor="" x="140.95" 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>/.repo_requirements/odoo/odoo/models.py:_write:3136 (1 samples, 0.12%)</title><rect x="1174.4" y="437" width="1.4" height="15.0" fill="rgb(208,160,12)" rx="2" ry="2" />
<text text-anchor="" x="1177.36" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (7 samples, 0.84%)</title><rect x="463.5" y="501" width="10.0" height="15.0" fill="rgb(254,183,36)" rx="2" ry="2" />
<text text-anchor="" x="466.52" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="83.9" y="1093" width="1.4" height="15.0" fill="rgb(242,24,49)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/.repo_requirements/odoo/odoo/fields.py:read:2453 (1 samples, 0.12%)</title><rect x="501.9" y="357" width="1.4" height="15.0" fill="rgb(243,133,47)" rx="2" ry="2" />
<text text-anchor="" x="504.90" 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>/.repo_requirements/odoo/odoo/api.py:__new__:748 (1 samples, 0.12%)</title><rect x="553.1" y="293" width="1.4" height="15.0" fill="rgb(254,88,4)" rx="2" ry="2" />
<text text-anchor="" x="556.08" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (374 samples, 45.06%)</title><rect x="523.2" y="421" width="531.7" height="15.0" fill="rgb(247,74,10)" rx="2" ry="2" />
<text text-anchor="" x="526.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:_compute_related:586 (1 samples, 0.12%)</title><rect x="1185.7" y="197" width="1.5" height="15.0" fill="rgb(228,171,3)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="547.4" y="357" width="1.4" height="15.0" fill="rgb(211,74,22)" rx="2" ry="2" />
<text text-anchor="" x="550.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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (21 samples, 2.53%)</title><rect x="1127.4" y="261" width="29.9" height="15.0" fill="rgb(236,208,41)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (14 samples, 1.69%)</title><rect x="250.3" y="453" width="19.9" height="15.0" fill="rgb(223,176,17)" rx="2" ry="2" />
<text text-anchor="" x="253.27" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.12%)</title><rect x="328.5" y="421" width="1.4" height="15.0" fill="rgb(239,92,40)" rx="2" ry="2" />
<text text-anchor="" x="331.46" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="497.6" y="373" width="1.5" height="15.0" fill="rgb(245,77,29)" rx="2" ry="2" />
<text text-anchor="" x="500.64" 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>/.repo_requirements/odoo/odoo/osv/expression.py:get_join_conditions:580 (1 samples, 0.12%)</title><rect x="69.7" y="1205" width="1.4" height="15.0" fill="rgb(225,89,8)" rx="2" ry="2" />
<text text-anchor="" x="72.71" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="78.2" y="1141" width="1.5" height="15.0" fill="rgb(226,222,39)" rx="2" ry="2" />
<text text-anchor="" x="81.24" 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>/.repo_requirements/odoo/odoo/api.py:__new__:749 (1 samples, 0.12%)</title><rect x="1008.0" y="197" width="1.4" height="15.0" fill="rgb(205,81,47)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="126.6" y="485" width="1.4" height="15.0" fill="rgb(229,151,17)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="1064.9" y="229" width="1.4" height="15.0" fill="rgb(253,75,6)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/api.py:set:973 (2 samples, 0.24%)</title><rect x="1130.3" y="181" width="2.8" height="15.0" fill="rgb(206,211,2)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554 (2 samples, 0.24%)</title><rect x="1185.7" y="453" width="2.9" height="15.0" fill="rgb(222,82,47)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (7 samples, 0.84%)</title><rect x="170.7" y="277" width="9.9" height="15.0" fill="rgb(234,88,26)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_compute_residual:108 (1 samples, 0.12%)</title><rect x="160.7" y="293" width="1.4" height="15.0" fill="rgb(245,164,44)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/api.py:call_kw:689 (748 samples, 90.12%)</title><rect x="126.6" y="709" width="1063.4" height="15.0" fill="rgb(243,118,12)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/api.py:call_kw:689</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.12%)</title><rect x="1185.7" y="181" width="1.5" height="15.0" fill="rgb(220,97,46)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (4 samples, 0.48%)</title><rect x="145.1" y="309" width="5.6" height="15.0" fill="rgb(219,179,14)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="1100.4" y="197" width="1.5" height="15.0" fill="rgb(226,148,51)" rx="2" ry="2" />
<text text-anchor="" x="1103.43" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (2 samples, 0.24%)</title><rect x="1086.2" y="293" width="2.9" height="15.0" fill="rgb(217,35,40)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (2 samples, 0.24%)</title><rect x="1067.7" y="293" width="2.9" height="15.0" fill="rgb(231,124,30)" rx="2" ry="2" />
<text text-anchor="" x="1070.73" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (86 samples, 10.36%)</title><rect x="338.4" y="453" width="122.3" height="15.0" fill="rgb(231,154,10)" rx="2" ry="2" />
<text text-anchor="" x="341.41" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirem..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="132.3" y="421" width="1.4" height="15.0" fill="rgb(219,156,23)" rx="2" ry="2" />
<text text-anchor="" x="135.27" 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>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.12%)</title><rect x="1116.1" y="165" width="1.4" height="15.0" fill="rgb(220,18,5)" rx="2" ry="2" />
<text text-anchor="" x="1119.07" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4327 (2 samples, 0.24%)</title><rect x="429.4" y="421" width="2.8" height="15.0" fill="rgb(234,41,37)" rx="2" ry="2" />
<text text-anchor="" x="432.40" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="267.3" y="421" width="1.4" height="15.0" fill="rgb(230,42,27)" rx="2" ry="2" />
<text text-anchor="" x="270.33" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.12%)</title><rect x="553.1" y="325" width="1.4" height="15.0" fill="rgb(211,116,34)" rx="2" ry="2" />
<text text-anchor="" x="556.08" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:serve_forever:511 (1 samples, 0.12%)</title><rect x="123.7" y="1157" width="1.5" height="15.0" fill="rgb(241,98,35)" rx="2" ry="2" />
<text text-anchor="" x="126.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>/.repo_requirements/odoo/odoo/http.py:__call__:1319 (749 samples, 90.24%)</title><rect x="125.2" y="997" width="1064.8" height="15.0" fill="rgb(242,71,40)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1319</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (3 samples, 0.36%)</title><rect x="257.4" y="405" width="4.2" height="15.0" fill="rgb(226,1,38)" rx="2" ry="2" />
<text text-anchor="" x="260.37" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="126.6" y="501" width="1.4" height="15.0" fill="rgb(254,153,40)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.12%)</title><rect x="952.6" y="245" width="1.4" height="15.0" fill="rgb(235,7,26)" rx="2" ry="2" />
<text text-anchor="" x="955.58" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (1 samples, 0.12%)</title><rect x="128.0" y="373" width="1.4" height="15.0" fill="rgb(212,104,28)" rx="2" ry="2" />
<text text-anchor="" x="131.00" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="487.7" y="421" width="1.4" height="15.0" fill="rgb(225,160,26)" rx="2" ry="2" />
<text text-anchor="" x="490.69" 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>/usr/lib/python3.5/socketserver.py:finish_request:354 (749 samples, 90.24%)</title><rect x="125.2" y="1157" width="1064.8" height="15.0" fill="rgb(206,16,10)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/socketserver.py:finish_request:354</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_search:3780 (1 samples, 0.12%)</title><rect x="1064.9" y="277" width="1.4" height="15.0" fill="rgb(205,100,11)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__new__:65 (2 samples, 0.24%)</title><rect x="1059.2" y="309" width="2.8" height="15.0" fill="rgb(206,69,42)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="1137.4" y="197" width="1.4" height="15.0" fill="rgb(238,164,40)" rx="2" ry="2" />
<text text-anchor="" x="1140.40" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:1005 (1 samples, 0.12%)</title><rect x="10.0" y="1141" width="1.4" height="15.0" fill="rgb(234,71,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="355.5" y="421" width="1.4" height="15.0" fill="rgb(227,157,8)" rx="2" ry="2" />
<text text-anchor="" x="358.47" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="1185.7" y="261" width="1.5" height="15.0" fill="rgb(213,225,42)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/tools/misc.py:&lt;genexpr&gt;:990 (9 samples, 1.08%)</title><rect x="841.7" y="277" width="12.8" height="15.0" fill="rgb(251,220,35)" rx="2" ry="2" />
<text text-anchor="" x="844.69" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1117 (1 samples, 0.12%)</title><rect x="172.1" y="37" width="1.4" height="15.0" fill="rgb(252,147,2)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/home/odoo/enterprise/l10n_mx_edi/models/account_bank_statement.py:process_reconciliation:24 (748 samples, 90.12%)</title><rect x="126.6" y="645" width="1063.4" height="15.0" fill="rgb(217,218,14)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi/models/account_bank_statement.py:process_reconciliation:24</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/osv/expression.py:__leaf_to_sql:1262 (1 samples, 0.12%)</title><rect x="1066.3" y="229" width="1.4" height="15.0" fill="rgb(249,163,45)" rx="2" ry="2" />
<text text-anchor="" x="1069.31" 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>/.repo_requirements/odoo/odoo/models.py:_write:3136 (1 samples, 0.12%)</title><rect x="1187.2" y="293" width="1.4" height="15.0" fill="rgb(221,157,33)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:_search:3797 (13 samples, 1.57%)</title><rect x="574.4" y="341" width="18.5" height="15.0" fill="rgb(252,125,2)" rx="2" ry="2" />
<text text-anchor="" x="577.41" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:237 (2 samples, 0.24%)</title><rect x="1185.7" y="485" width="2.9" height="15.0" fill="rgb(214,60,42)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="477.7" y="437" width="1.5" height="15.0" fill="rgb(222,43,31)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="74.0" y="1173" width="1.4" height="15.0" fill="rgb(235,227,8)" rx="2" ry="2" />
<text text-anchor="" x="76.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>/.repo_requirements/odoo/odoo/tools/float_utils.py:float_round:101 (1 samples, 0.12%)</title><rect x="140.8" y="341" width="1.4" height="15.0" fill="rgb(216,219,51)" rx="2" ry="2" />
<text text-anchor="" x="143.80" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="519.0" y="341" width="1.4" height="15.0" fill="rgb(244,168,11)" rx="2" ry="2" />
<text text-anchor="" x="521.96" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="174.9" y="101" width="1.4" height="15.0" fill="rgb(218,5,42)" rx="2" ry="2" />
<text text-anchor="" x="177.92" 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>/home/odoo/odoo-11.0/addons/website/models/ir_actions.py:run_action_code_multi:57 (1 samples, 0.12%)</title><rect x="1184.3" y="389" width="1.4" height="15.0" fill="rgb(237,70,34)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_parse_localename:483 (1 samples, 0.12%)</title><rect x="1164.4" y="197" width="1.4" height="15.0" fill="rgb(245,83,5)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="521.8" y="373" width="1.4" height="15.0" fill="rgb(219,8,32)" rx="2" ry="2" />
<text text-anchor="" x="524.81" 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>/.repo_requirements/odoo/odoo/sql_db.py:__build_dict:196 (1 samples, 0.12%)</title><rect x="126.6" y="293" width="1.4" height="15.0" fill="rgb(212,69,52)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/osv/query.py:get_sql:171 (1 samples, 0.12%)</title><rect x="1018.0" y="261" width="1.4" height="15.0" fill="rgb(223,161,43)" rx="2" ry="2" />
<text text-anchor="" x="1020.98" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="605.7" y="325" width="1.4" height="15.0" fill="rgb(230,55,8)" rx="2" ry="2" />
<text text-anchor="" x="608.69" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1975 (1 samples, 0.12%)</title><rect x="1111.8" y="165" width="1.4" height="15.0" fill="rgb(243,222,29)" rx="2" ry="2" />
<text text-anchor="" x="1114.81" 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>/.repo_requirements/odoo/odoo/models.py:__hash__:4745 (2 samples, 0.24%)</title><rect x="135.1" y="405" width="2.9" height="15.0" fill="rgb(242,119,45)" rx="2" ry="2" />
<text text-anchor="" x="138.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>/.repo_requirements/odoo/odoo/models.py:_inherits_join_calc:2068 (2 samples, 0.24%)</title><rect x="1015.1" y="229" width="2.9" height="15.0" fill="rgb(237,88,37)" rx="2" ry="2" />
<text text-anchor="" x="1018.13" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4370 (1 samples, 0.12%)</title><rect x="514.7" y="341" width="1.4" height="15.0" fill="rgb(244,220,25)" rx="2" ry="2" />
<text text-anchor="" x="517.70" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.12%)</title><rect x="1064.9" y="261" width="1.4" height="15.0" fill="rgb(228,97,52)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>&lt;decorator-gen-113&gt;:_compute_residual:2 (6 samples, 0.72%)</title><rect x="150.7" y="389" width="8.6" height="15.0" fill="rgb(218,74,21)" rx="2" ry="2" />
<text text-anchor="" x="153.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (10 samples, 1.20%)</title><rect x="300.0" y="421" width="14.2" height="15.0" fill="rgb(207,47,53)" rx="2" ry="2" />
<text text-anchor="" x="303.02" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1106.1" y="181" width="1.4" height="15.0" fill="rgb(210,212,50)" rx="2" ry="2" />
<text text-anchor="" x="1109.12" 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>/usr/lib/python3.5/threading.py:_bootstrap_inner:914 (750 samples, 90.36%)</title><rect x="123.7" y="1205" width="1066.3" height="15.0" fill="rgb(252,81,38)" rx="2" ry="2" />
<text text-anchor="" x="126.73" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/usr/lib/python3.5/threading.py:_bootstrap_inner:914</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (6 samples, 0.72%)</title><rect x="1114.7" y="197" width="8.5" height="15.0" fill="rgb(229,78,16)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (1 samples, 0.12%)</title><rect x="1184.3" y="261" width="1.4" height="15.0" fill="rgb(236,134,39)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="472.0" y="421" width="1.5" height="15.0" fill="rgb(213,211,0)" rx="2" ry="2" />
<text text-anchor="" x="475.05" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (2 samples, 0.24%)</title><rect x="71.1" y="1205" width="2.9" height="15.0" fill="rgb(223,149,45)" rx="2" ry="2" />
<text text-anchor="" x="74.13" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1090.5" y="261" width="1.4" height="15.0" fill="rgb(229,145,46)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (6 samples, 0.72%)</title><rect x="180.6" y="357" width="8.5" height="15.0" fill="rgb(240,177,32)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (2 samples, 0.24%)</title><rect x="403.8" y="389" width="2.9" height="15.0" fill="rgb(229,7,16)" rx="2" ry="2" />
<text text-anchor="" x="406.81" 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>&lt;decorator-gen-20&gt;:check:2 (2 samples, 0.24%)</title><rect x="561.6" y="309" width="2.9" height="15.0" fill="rgb(212,120,15)" rx="2" ry="2" />
<text text-anchor="" x="564.61" 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>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (1 samples, 0.12%)</title><rect x="999.5" y="245" width="1.4" height="15.0" fill="rgb(240,146,27)" rx="2" ry="2" />
<text text-anchor="" x="1002.49" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="514.7" y="357" width="1.4" height="15.0" fill="rgb(235,166,34)" rx="2" ry="2" />
<text text-anchor="" x="517.70" 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>/.repo_requirements/odoo/odoo/fields.py:read:2433 (1 samples, 0.12%)</title><rect x="503.3" y="357" width="1.4" height="15.0" fill="rgb(240,172,16)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/home/odoo/odoo-11.0/addons/purchase/models/account_invoice.py:write:228 (5 samples, 0.60%)</title><rect x="162.1" y="421" width="7.1" height="15.0" fill="rgb(209,202,8)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lookup:86 (1 samples, 0.12%)</title><rect x="563.0" y="293" width="1.5" height="15.0" fill="rgb(222,177,0)" rx="2" ry="2" />
<text text-anchor="" x="566.04" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (2 samples, 0.24%)</title><rect x="544.6" y="341" width="2.8" height="15.0" fill="rgb(226,14,42)" rx="2" ry="2" />
<text text-anchor="" x="547.55" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:989 (7 samples, 0.84%)</title><rect x="170.7" y="229" width="9.9" height="15.0" fill="rgb(231,195,54)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:modified:4874 (157 samples, 18.92%)</title><rect x="639.8" y="373" width="223.2" height="15.0" fill="rgb(224,5,33)" rx="2" ry="2" />
<text text-anchor="" x="642.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create_tax_cash_basis_entry:1733 (193 samples, 23.25%)</title><rect x="189.1" y="533" width="274.4" height="15.0" fill="rgb(226,199,46)" rx="2" ry="2" />
<text text-anchor="" x="192.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:digits:1192 (1 samples, 0.12%)</title><rect x="1010.9" y="229" width="1.4" height="15.0" fill="rgb(228,109,23)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/models.py:__iter__:4637 (1 samples, 0.12%)</title><rect x="1123.2" y="197" width="1.4" height="15.0" fill="rgb(212,149,46)" rx="2" ry="2" />
<text text-anchor="" x="1126.18" 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>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.12%)</title><rect x="1074.8" y="341" width="1.5" height="15.0" fill="rgb(240,29,44)" rx="2" ry="2" />
<text text-anchor="" x="1077.84" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:889 (1 samples, 0.12%)</title><rect x="656.9" y="341" width="1.4" height="15.0" fill="rgb(206,86,40)" rx="2" ry="2" />
<text text-anchor="" x="659.87" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (5 samples, 0.60%)</title><rect x="162.1" y="357" width="7.1" height="15.0" fill="rgb(209,62,40)" rx="2" ry="2" />
<text text-anchor="" x="165.12" 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>/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234 (492 samples, 59.28%)</title><rect x="486.3" y="485" width="699.4" height="15.0" fill="rgb(209,51,2)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/base_automation/models/base_automation.py:_write:234</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="140.8" y="373" width="1.4" height="15.0" fill="rgb(228,27,3)" rx="2" ry="2" />
<text text-anchor="" x="143.80" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263 (749 samples, 90.24%)</title><rect x="125.2" y="1093" width="1064.8" height="15.0" fill="rgb(213,114,5)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/serving.py:handle_one_request:263</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2715 (1 samples, 0.12%)</title><rect x="1127.4" y="229" width="1.5" height="15.0" fill="rgb(225,186,43)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (2 samples, 0.24%)</title><rect x="1086.2" y="325" width="2.9" height="15.0" fill="rgb(239,169,11)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1214 (1 samples, 0.12%)</title><rect x="140.8" y="357" width="1.4" height="15.0" fill="rgb(221,186,27)" rx="2" ry="2" />
<text text-anchor="" x="143.80" 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>/.repo_requirements/odoo/odoo/models.py:_create:3524 (2 samples, 0.24%)</title><rect x="888.6" y="389" width="2.8" height="15.0" fill="rgb(211,82,33)" rx="2" ry="2" />
<text text-anchor="" x="891.60" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (8 samples, 0.96%)</title><rect x="501.9" y="389" width="11.4" height="15.0" fill="rgb(254,120,47)" rx="2" ry="2" />
<text text-anchor="" x="504.90" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.12%)</title><rect x="157.9" y="261" width="1.4" height="15.0" fill="rgb(211,17,28)" rx="2" ry="2" />
<text text-anchor="" x="160.86" 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>/.repo_requirements/odoo/odoo/sql_db.py:&lt;listcomp&gt;:203 (2 samples, 0.24%)</title><rect x="1029.3" y="245" width="2.9" height="15.0" fill="rgb(208,167,47)" rx="2" ry="2" />
<text text-anchor="" x="1032.35" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.12%)</title><rect x="519.0" y="357" width="1.4" height="15.0" fill="rgb(207,193,54)" rx="2" ry="2" />
<text text-anchor="" x="521.96" 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>&lt;string&gt;:change_digit:11 (1 samples, 0.12%)</title><rect x="1008.0" y="213" width="1.4" height="15.0" fill="rgb(207,148,14)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/usr/lib/python3.5/_strptime.py:_strptime:499 (1 samples, 0.12%)</title><rect x="1161.6" y="245" width="1.4" height="15.0" fill="rgb(207,57,43)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.12%)</title><rect x="1187.2" y="245" width="1.4" height="15.0" fill="rgb(211,170,33)" rx="2" ry="2" />
<text text-anchor="" x="1190.16" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (5 samples, 0.60%)</title><rect x="182.0" y="309" width="7.1" height="15.0" fill="rgb(209,175,17)" rx="2" ry="2" />
<text text-anchor="" x="185.02" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="500.5" y="389" width="1.4" height="15.0" fill="rgb(226,190,35)" rx="2" ry="2" />
<text text-anchor="" x="503.48" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (4 samples, 0.48%)</title><rect x="648.3" y="357" width="5.7" height="15.0" fill="rgb(244,69,37)" rx="2" ry="2" />
<text text-anchor="" x="651.34" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.12%)</title><rect x="152.2" y="245" width="1.4" height="15.0" fill="rgb(248,12,52)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (3 samples, 0.36%)</title><rect x="1116.1" y="181" width="4.2" height="15.0" fill="rgb(253,65,49)" rx="2" ry="2" />
<text text-anchor="" x="1119.07" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:802 (1 samples, 0.12%)</title><rect x="1072.0" y="341" width="1.4" height="15.0" fill="rgb(209,213,40)" rx="2" ry="2" />
<text text-anchor="" x="1075.00" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:4772 (5 samples, 0.60%)</title><rect x="1161.6" y="325" width="7.1" height="15.0" fill="rgb(246,74,34)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (1 samples, 0.12%)</title><rect x="1097.6" y="197" width="1.4" height="15.0" fill="rgb(216,91,52)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:369 (6 samples, 0.72%)</title><rect x="150.7" y="357" width="8.6" height="15.0" fill="rgb(233,65,34)" rx="2" ry="2" />
<text text-anchor="" x="153.75" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="536.0" y="325" width="1.4" height="15.0" fill="rgb(228,112,49)" rx="2" ry="2" />
<text text-anchor="" x="539.02" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_amount_tax_cash_basis:1715 (2 samples, 0.24%)</title><rect x="477.7" y="517" width="2.9" height="15.0" fill="rgb(227,226,22)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>&lt;decorator-gen-113&gt;:_compute_residual:2 (7 samples, 0.84%)</title><rect x="170.7" y="213" width="9.9" height="15.0" fill="rgb(250,51,41)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_write:489 (7 samples, 0.84%)</title><rect x="170.7" y="341" width="9.9" height="15.0" fill="rgb(241,174,19)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (4 samples, 0.48%)</title><rect x="443.6" y="437" width="5.7" height="15.0" fill="rgb(248,94,43)" rx="2" ry="2" />
<text text-anchor="" x="446.61" 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>/.repo_requirements/odoo/odoo/models.py:__contains__:4648 (1 samples, 0.12%)</title><rect x="1063.5" y="213" width="1.4" height="15.0" fill="rgb(223,176,18)" rx="2" ry="2" />
<text text-anchor="" x="1066.47" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2739 (5 samples, 0.60%)</title><rect x="1033.6" y="277" width="7.1" height="15.0" fill="rgb(241,123,10)" rx="2" ry="2" />
<text text-anchor="" x="1036.61" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (1 samples, 0.12%)</title><rect x="1069.2" y="261" width="1.4" height="15.0" fill="rgb(222,199,21)" rx="2" ry="2" />
<text text-anchor="" x="1072.16" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:892 (1 samples, 0.12%)</title><rect x="543.1" y="341" width="1.5" height="15.0" fill="rgb(207,188,18)" rx="2" ry="2" />
<text text-anchor="" x="546.13" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1100.4" y="165" width="1.5" height="15.0" fill="rgb(249,32,28)" rx="2" ry="2" />
<text text-anchor="" x="1103.43" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.24%)</title><rect x="241.7" y="421" width="2.9" height="15.0" fill="rgb(227,187,42)" rx="2" ry="2" />
<text text-anchor="" x="244.73" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:876 (37 samples, 4.46%)</title><rect x="901.4" y="277" width="52.6" height="15.0" fill="rgb(252,1,21)" rx="2" ry="2" />
<text text-anchor="" x="904.40" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="1158.7" y="309" width="1.4" height="15.0" fill="rgb(225,21,28)" rx="2" ry="2" />
<text text-anchor="" x="1161.72" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4327 (1 samples, 0.12%)</title><rect x="265.9" y="421" width="1.4" height="15.0" fill="rgb(226,43,45)" rx="2" ry="2" />
<text text-anchor="" x="268.90" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1054 (1 samples, 0.12%)</title><rect x="864.4" y="357" width="1.5" height="15.0" fill="rgb(254,198,11)" rx="2" ry="2" />
<text text-anchor="" x="867.43" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1185.7" y="133" width="1.5" height="15.0" fill="rgb(218,111,6)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4461 (4 samples, 0.48%)</title><rect x="1023.7" y="245" width="5.6" height="15.0" fill="rgb(245,126,54)" rx="2" ry="2" />
<text text-anchor="" x="1026.66" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:get:597 (1 samples, 0.12%)</title><rect x="82.5" y="1189" width="1.4" height="15.0" fill="rgb(221,191,11)" rx="2" ry="2" />
<text text-anchor="" x="85.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>/.repo_requirements/odoo/odoo/api.py:&lt;setcomp&gt;:876 (28 samples, 3.37%)</title><rect x="901.4" y="261" width="39.8" height="15.0" fill="rgb(215,61,34)" rx="2" ry="2" />
<text text-anchor="" x="904.40" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1000.9" y="277" width="1.4" height="15.0" fill="rgb(215,35,22)" rx="2" ry="2" />
<text text-anchor="" x="1003.92" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="76.8" y="1125" width="1.4" height="15.0" fill="rgb(207,66,27)" rx="2" ry="2" />
<text text-anchor="" x="79.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="169.2" y="245" width="1.5" height="15.0" fill="rgb(250,63,46)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="187.7" y="261" width="1.4" height="15.0" fill="rgb(225,222,35)" rx="2" ry="2" />
<text text-anchor="" x="190.71" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.24%)</title><rect x="651.2" y="325" width="2.8" height="15.0" fill="rgb(231,217,5)" rx="2" ry="2" />
<text text-anchor="" x="654.18" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.12%)</title><rect x="1181.5" y="405" width="1.4" height="15.0" fill="rgb(229,19,26)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/api.py:field_todo:877 (33 samples, 3.98%)</title><rect x="954.0" y="277" width="46.9" height="15.0" fill="rgb(235,58,41)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:388 (1 samples, 0.12%)</title><rect x="1097.6" y="341" width="1.4" height="15.0" fill="rgb(211,75,34)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:949 (3 samples, 0.36%)</title><rect x="1161.6" y="309" width="4.2" height="15.0" fill="rgb(238,149,47)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (1 samples, 0.12%)</title><rect x="1043.6" y="277" width="1.4" height="15.0" fill="rgb(235,197,11)" rx="2" ry="2" />
<text text-anchor="" x="1046.57" 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>/.repo_requirements/odoo/odoo/service/server.py:app:260 (749 samples, 90.24%)</title><rect x="125.2" y="1045" width="1064.8" height="15.0" fill="rgb(216,136,43)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/server.py:app:260</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_create:3530 (115 samples, 13.86%)</title><rect x="891.4" y="389" width="163.5" height="15.0" fill="rgb(240,0,49)" rx="2" ry="2" />
<text text-anchor="" x="894.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2692 (2 samples, 0.24%)</title><rect x="1006.6" y="261" width="2.8" height="15.0" fill="rgb(239,76,25)" rx="2" ry="2" />
<text text-anchor="" x="1009.60" 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>/.repo_requirements/odoo/odoo/models.py:&lt;dictcomp&gt;:4909 (1 samples, 0.12%)</title><rect x="1185.7" y="293" width="1.5" height="15.0" fill="rgb(222,103,20)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1273 (11 samples, 1.33%)</title><rect x="1109.0" y="309" width="15.6" height="15.0" fill="rgb(249,181,41)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/api.py:invalidate:1053 (1 samples, 0.12%)</title><rect x="863.0" y="357" width="1.4" height="15.0" fill="rgb(208,24,16)" rx="2" ry="2" />
<text text-anchor="" x="866.01" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.12%)</title><rect x="1090.5" y="293" width="1.4" height="15.0" fill="rgb(228,21,26)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="941.2" y="245" width="1.4" height="15.0" fill="rgb(250,43,12)" rx="2" ry="2" />
<text text-anchor="" x="944.20" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="83.9" y="1189" width="1.4" height="15.0" fill="rgb(211,117,16)" rx="2" ry="2" />
<text text-anchor="" x="86.93" 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>/.repo_requirements/odoo/odoo/osv/query.py:add_joins_for_table:161 (1 samples, 0.12%)</title><rect x="83.9" y="1173" width="1.4" height="15.0" fill="rgb(252,70,1)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (2 samples, 0.24%)</title><rect x="1047.8" y="261" width="2.9" height="15.0" fill="rgb(253,153,5)" rx="2" ry="2" />
<text text-anchor="" x="1050.83" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (2 samples, 0.24%)</title><rect x="568.7" y="309" width="2.9" height="15.0" fill="rgb(223,74,33)" rx="2" ry="2" />
<text text-anchor="" x="571.72" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (3 samples, 0.36%)</title><rect x="509.0" y="341" width="4.3" height="15.0" fill="rgb(252,117,15)" rx="2" ry="2" />
<text text-anchor="" x="512.01" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;listcomp&gt;:1451 (1 samples, 0.12%)</title><rect x="462.1" y="501" width="1.4" height="15.0" fill="rgb(222,12,24)" rx="2" ry="2" />
<text text-anchor="" x="465.10" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (31 samples, 3.73%)</title><rect x="1124.6" y="357" width="44.1" height="15.0" fill="rgb(221,27,9)" rx="2" ry="2" />
<text text-anchor="" x="1127.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_tax_base_amount:391 (1 samples, 0.12%)</title><rect x="1107.5" y="341" width="1.5" height="15.0" fill="rgb(207,212,19)" rx="2" ry="2" />
<text text-anchor="" x="1110.54" 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>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.12%)</title><rect x="385.3" y="421" width="1.4" height="15.0" fill="rgb(252,11,35)" rx="2" ry="2" />
<text text-anchor="" x="388.33" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="480.6" y="517" width="1.4" height="15.0" fill="rgb(249,19,31)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="160.7" y="405" width="1.4" height="15.0" fill="rgb(212,79,45)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/api.py:&lt;listcomp&gt;:369 (1 samples, 0.12%)</title><rect x="160.7" y="309" width="1.4" height="15.0" fill="rgb(217,31,35)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/home/odoo/odoo-11.0/addons/auth_signup/models/ir_http.py:_dispatch:19 (749 samples, 90.24%)</title><rect x="125.2" y="917" width="1064.8" height="15.0" fill="rgb(230,149,12)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/auth_signup/models/ir_http.py:_dispatch:19</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="125.2" y="629" width="1.4" height="15.0" fill="rgb(242,191,29)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (2 samples, 0.24%)</title><rect x="510.4" y="325" width="2.9" height="15.0" fill="rgb(230,4,29)" rx="2" ry="2" />
<text text-anchor="" x="513.43" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1905 (703 samples, 84.70%)</title><rect x="189.1" y="549" width="999.5" height="15.0" fill="rgb(235,98,2)" rx="2" ry="2" />
<text text-anchor="" x="192.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1905</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:925 (1 samples, 0.12%)</title><rect x="467.8" y="437" width="1.4" height="15.0" fill="rgb(226,81,10)" rx="2" ry="2" />
<text text-anchor="" x="470.78" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="513.3" y="389" width="1.4" height="15.0" fill="rgb(252,69,38)" rx="2" ry="2" />
<text text-anchor="" x="516.28" 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>/.repo_requirements/odoo/odoo/http.py:response_wrap:515 (749 samples, 90.24%)</title><rect x="125.2" y="757" width="1064.8" height="15.0" fill="rgb(218,5,51)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:response_wrap:515</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (2 samples, 0.24%)</title><rect x="10.0" y="1205" width="2.8" height="15.0" fill="rgb(238,197,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/wsgi.py:__call__:599 (749 samples, 90.24%)</title><rect x="125.2" y="965" width="1064.8" height="15.0" fill="rgb(252,162,35)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/werkzeug/wsgi.py:__call__:599</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="142.2" y="309" width="1.4" height="15.0" fill="rgb(231,85,43)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.12%)</title><rect x="71.1" y="1141" width="1.5" height="15.0" fill="rgb(212,183,20)" rx="2" ry="2" />
<text text-anchor="" x="74.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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:903 (1 samples, 0.12%)</title><rect x="169.2" y="229" width="1.5" height="15.0" fill="rgb(229,99,22)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.12%)</title><rect x="1181.5" y="389" width="1.4" height="15.0" fill="rgb(220,96,3)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4496 (6 samples, 0.72%)</title><rect x="1099.0" y="293" width="8.5" height="15.0" fill="rgb(237,54,49)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="490.5" y="357" width="1.5" height="15.0" fill="rgb(214,186,41)" rx="2" ry="2" />
<text text-anchor="" x="493.53" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="1185.7" y="165" width="1.5" height="15.0" fill="rgb(254,130,39)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:255 (1 samples, 0.12%)</title><rect x="1069.2" y="245" width="1.4" height="15.0" fill="rgb(245,155,47)" rx="2" ry="2" />
<text text-anchor="" x="1072.16" 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>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.12%)</title><rect x="517.5" y="325" width="1.5" height="15.0" fill="rgb(242,132,17)" rx="2" ry="2" />
<text text-anchor="" x="520.54" 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>/.repo_requirements/odoo/odoo/api.py:__new__:737 (1 samples, 0.12%)</title><rect x="554.5" y="293" width="1.4" height="15.0" fill="rgb(247,228,41)" rx="2" ry="2" />
<text text-anchor="" x="557.51" 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>/.repo_requirements/odoo/odoo/models.py:modified:4879 (1 samples, 0.12%)</title><rect x="890.0" y="373" width="1.4" height="15.0" fill="rgb(209,13,42)" rx="2" ry="2" />
<text text-anchor="" x="893.02" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (3 samples, 0.36%)</title><rect x="78.2" y="1173" width="4.3" height="15.0" fill="rgb(252,70,39)" rx="2" ry="2" />
<text text-anchor="" x="81.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>/.repo_requirements/odoo/odoo/osv/expression.py:get_unaccent_wrapper:457 (2 samples, 0.24%)</title><rect x="1059.2" y="341" width="2.8" height="15.0" fill="rgb(252,197,31)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="614.2" y="325" width="1.4" height="15.0" fill="rgb(237,220,28)" rx="2" ry="2" />
<text text-anchor="" x="617.22" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:4545 (190 samples, 22.89%)</title><rect x="190.6" y="485" width="270.1" height="15.0" fill="rgb(227,82,35)" rx="2" ry="2" />
<text text-anchor="" x="193.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/models..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1531 (2 samples, 0.24%)</title><rect x="1163.0" y="293" width="2.8" height="15.0" fill="rgb(222,149,20)" rx="2" ry="2" />
<text text-anchor="" x="1165.99" 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>/.repo_requirements/odoo/odoo/osv/expression.py:select_from_where:448 (1 samples, 0.12%)</title><rect x="570.1" y="277" width="1.5" height="15.0" fill="rgb(220,147,19)" rx="2" ry="2" />
<text text-anchor="" x="573.14" 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>/.repo_requirements/odoo/odoo/models.py:_write:3163 (1 samples, 0.12%)</title><rect x="1175.8" y="437" width="1.4" height="15.0" fill="rgb(236,176,6)" rx="2" ry="2" />
<text text-anchor="" x="1178.78" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="496.2" y="389" width="1.4" height="15.0" fill="rgb(209,229,35)" rx="2" ry="2" />
<text text-anchor="" x="499.22" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (4 samples, 0.48%)</title><rect x="145.1" y="325" width="5.6" height="15.0" fill="rgb(247,138,11)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/home/odoo/odoo-11.0/addons/bus/controllers/main.py:_poll:27 (1 samples, 0.12%)</title><rect x="125.2" y="693" width="1.4" height="15.0" fill="rgb(223,147,32)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run:554 (1 samples, 0.12%)</title><rect x="1184.3" y="405" width="1.4" height="15.0" fill="rgb(213,116,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="479.2" y="469" width="1.4" height="15.0" fill="rgb(226,160,34)" rx="2" ry="2" />
<text text-anchor="" x="482.16" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4328 (1 samples, 0.12%)</title><rect x="981.0" y="245" width="1.4" height="15.0" fill="rgb(220,109,16)" rx="2" ry="2" />
<text text-anchor="" x="984.01" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="139.4" y="325" width="1.4" height="15.0" fill="rgb(221,174,13)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/api.py:cache_key:932 (1 samples, 0.12%)</title><rect x="280.1" y="421" width="1.4" height="15.0" fill="rgb(251,128,43)" rx="2" ry="2" />
<text text-anchor="" x="283.12" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.12%)</title><rect x="1181.5" y="357" width="1.4" height="15.0" fill="rgb(242,43,37)" rx="2" ry="2" />
<text text-anchor="" x="1184.47" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="1188.6" y="501" width="1.4" height="15.0" fill="rgb(220,72,34)" rx="2" ry="2" />
<text text-anchor="" x="1191.58" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (1 samples, 0.12%)</title><rect x="887.2" y="357" width="1.4" height="15.0" fill="rgb(216,167,36)" rx="2" ry="2" />
<text text-anchor="" x="890.18" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208 (749 samples, 90.24%)</title><rect x="125.2" y="853" width="1064.8" height="15.0" fill="rgb(240,6,20)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_http.py:_dispatch:208</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="82.5" y="1173" width="1.4" height="15.0" fill="rgb(216,162,39)" rx="2" ry="2" />
<text text-anchor="" x="85.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1277 (1 samples, 0.12%)</title><rect x="173.5" y="37" width="1.4" height="15.0" fill="rgb(245,189,47)" rx="2" ry="2" />
<text text-anchor="" x="176.49" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (11 samples, 1.33%)</title><rect x="1109.0" y="261" width="15.6" height="15.0" fill="rgb(208,211,28)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (1 samples, 0.12%)</title><rect x="1185.7" y="213" width="1.5" height="15.0" fill="rgb(211,31,8)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (1 samples, 0.12%)</title><rect x="554.5" y="325" width="1.4" height="15.0" fill="rgb(214,194,40)" rx="2" ry="2" />
<text text-anchor="" x="557.51" 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>/.repo_requirements/odoo/odoo/api.py:__new__:742 (1 samples, 0.12%)</title><rect x="496.2" y="373" width="1.4" height="15.0" fill="rgb(235,98,48)" rx="2" ry="2" />
<text text-anchor="" x="499.22" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="1097.6" y="245" width="1.4" height="15.0" fill="rgb(210,63,26)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="189.1" y="517" width="1.5" height="15.0" fill="rgb(225,210,20)" rx="2" ry="2" />
<text text-anchor="" x="192.13" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (2 samples, 0.24%)</title><rect x="10.0" y="1221" width="2.8" height="15.0" fill="rgb(239,59,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>all (830 samples, 100%)</title><rect x="10.0" y="1237" width="1180.0" height="15.0" fill="rgb(241,213,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (1 samples, 0.12%)</title><rect x="11.4" y="1029" width="1.4" height="15.0" fill="rgb(224,162,48)" rx="2" ry="2" />
<text text-anchor="" x="14.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>/.repo_requirements/odoo/odoo/models.py:read:2591 (6 samples, 0.72%)</title><rect x="1127.4" y="245" width="8.6" height="15.0" fill="rgb(253,149,16)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="64.0" y="1141" width="1.4" height="15.0" fill="rgb(240,74,36)" rx="2" ry="2" />
<text text-anchor="" x="67.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:553 (1 samples, 0.12%)</title><rect x="503.3" y="277" width="1.4" height="15.0" fill="rgb(218,148,41)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:getquoted:129 (2 samples, 0.24%)</title><rect x="510.4" y="309" width="2.9" height="15.0" fill="rgb(214,101,10)" rx="2" ry="2" />
<text text-anchor="" x="513.43" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="145.1" y="229" width="1.4" height="15.0" fill="rgb(230,139,6)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;lambda&gt;:1445 (178 samples, 21.45%)</title><rect x="207.6" y="469" width="253.1" height="15.0" fill="rgb(246,44,7)" rx="2" ry="2" />
<text text-anchor="" x="210.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/accou..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (3 samples, 0.36%)</title><rect x="146.5" y="277" width="4.2" height="15.0" fill="rgb(254,160,53)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:_check_qorder:3580 (1 samples, 0.12%)</title><rect x="493.4" y="341" width="1.4" height="15.0" fill="rgb(229,61,16)" rx="2" ry="2" />
<text text-anchor="" x="496.37" 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>/.repo_requirements/odoo/odoo/models.py:__setitem__:5212 (2 samples, 0.24%)</title><rect x="1037.9" y="245" width="2.8" height="15.0" fill="rgb(247,10,34)" rx="2" ry="2" />
<text text-anchor="" x="1040.88" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (7 samples, 0.84%)</title><rect x="982.4" y="245" width="10.0" height="15.0" fill="rgb(212,140,12)" rx="2" ry="2" />
<text text-anchor="" x="985.43" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1353 (1 samples, 0.12%)</title><rect x="1056.4" y="421" width="1.4" height="15.0" fill="rgb(224,103,50)" rx="2" ry="2" />
<text text-anchor="" x="1059.36" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (14 samples, 1.69%)</title><rect x="139.4" y="437" width="19.9" height="15.0" fill="rgb(214,213,2)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:__eq__:4710 (2 samples, 0.24%)</title><rect x="1101.9" y="197" width="2.8" height="15.0" fill="rgb(236,146,45)" rx="2" ry="2" />
<text text-anchor="" x="1104.86" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (7 samples, 0.84%)</title><rect x="503.3" y="373" width="10.0" height="15.0" fill="rgb(239,55,19)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (2 samples, 0.24%)</title><rect x="324.2" y="405" width="2.8" height="15.0" fill="rgb(227,121,47)" rx="2" ry="2" />
<text text-anchor="" x="327.19" 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>/.repo_requirements/odoo/odoo/tools/lru.py:__getitem__:46 (1 samples, 0.12%)</title><rect x="75.4" y="1141" width="1.4" height="15.0" fill="rgb(254,112,48)" rx="2" ry="2" />
<text text-anchor="" x="78.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>/.repo_requirements/odoo/odoo/tools/lru.py:__setitem__:69 (1 samples, 0.12%)</title><rect x="61.2" y="1125" width="1.4" height="15.0" fill="rgb(250,85,12)" rx="2" ry="2" />
<text text-anchor="" x="64.18" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (1 samples, 0.12%)</title><rect x="145.1" y="277" width="1.4" height="15.0" fill="rgb(247,199,23)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (3 samples, 0.36%)</title><rect x="530.3" y="357" width="4.3" height="15.0" fill="rgb(227,141,4)" rx="2" ry="2" />
<text text-anchor="" x="533.34" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/site-packages/psycopg2/extensions.py:&lt;listcomp&gt;:128 (2 samples, 0.24%)</title><rect x="510.4" y="293" width="2.9" height="15.0" fill="rgb(223,227,36)" rx="2" ry="2" />
<text text-anchor="" x="513.43" 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>/.repo_requirements/odoo/odoo/fields.py:&lt;listcomp&gt;:586 (22 samples, 2.65%)</title><rect x="1127.4" y="325" width="31.3" height="15.0" fill="rgb(229,105,18)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/osv/expression.py:_quote:330 (1 samples, 0.12%)</title><rect x="507.6" y="293" width="1.4" height="15.0" fill="rgb(229,135,23)" rx="2" ry="2" />
<text text-anchor="" x="510.59" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (19 samples, 2.29%)</title><rect x="287.2" y="437" width="27.0" height="15.0" fill="rgb(222,49,45)" rx="2" ry="2" />
<text text-anchor="" x="290.23" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (2 samples, 0.24%)</title><rect x="1130.3" y="213" width="2.8" height="15.0" fill="rgb(237,228,17)" rx="2" ry="2" />
<text text-anchor="" x="1133.29" 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>/.repo_requirements/odoo/odoo/models.py:sudo:4416 (2 samples, 0.24%)</title><rect x="516.1" y="357" width="2.9" height="15.0" fill="rgb(235,35,13)" rx="2" ry="2" />
<text text-anchor="" x="519.12" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1978 (1 samples, 0.12%)</title><rect x="152.2" y="213" width="1.4" height="15.0" fill="rgb(233,159,21)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (4 samples, 0.48%)</title><rect x="568.7" y="341" width="5.7" height="15.0" fill="rgb(246,154,12)" rx="2" ry="2" />
<text text-anchor="" x="571.72" 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>/.repo_requirements/odoo/odoo/models.py:recompute:4919 (8 samples, 0.96%)</title><rect x="1174.4" y="453" width="11.3" height="15.0" fill="rgb(246,167,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.36" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1445 (190 samples, 22.89%)</title><rect x="190.6" y="517" width="270.1" height="15.0" fill="rgb(234,196,37)" rx="2" ry="2" />
<text text-anchor="" x="193.55" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_normalize_ids:5372 (6 samples, 0.72%)</title><rect x="675.3" y="277" width="8.6" height="15.0" fill="rgb(227,63,45)" rx="2" ry="2" />
<text text-anchor="" x="678.35" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (4 samples, 0.48%)</title><rect x="1062.0" y="293" width="5.7" height="15.0" fill="rgb(212,161,48)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="145.1" y="245" width="1.4" height="15.0" fill="rgb(219,175,28)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (64 samples, 7.71%)</title><rect x="1079.1" y="421" width="91.0" height="15.0" fill="rgb(219,125,41)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_req..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="82.5" y="1157" width="1.4" height="15.0" fill="rgb(242,72,1)" rx="2" ry="2" />
<text text-anchor="" x="85.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>/.repo_requirements/odoo/odoo/models.py:_browse:4329 (1 samples, 0.12%)</title><rect x="25.6" y="1205" width="1.5" height="15.0" fill="rgb(218,86,18)" rx="2" ry="2" />
<text text-anchor="" x="28.64" 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>/home/odoo/odoo-11.0/addons/mail/controllers/bus.py:_poll:32 (1 samples, 0.12%)</title><rect x="125.2" y="709" width="1.4" height="15.0" fill="rgb(230,0,51)" rx="2" ry="2" />
<text text-anchor="" x="128.16" 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>/.repo_requirements/odoo/odoo/fields.py:modified_draft:1103 (1 samples, 0.12%)</title><rect x="1091.9" y="309" width="1.4" height="15.0" fill="rgb(228,157,41)" rx="2" ry="2" />
<text text-anchor="" x="1094.90" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="145.1" y="213" width="1.4" height="15.0" fill="rgb(217,206,1)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="10.0" y="1045" width="1.4" height="15.0" fill="rgb(228,37,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (14 samples, 1.69%)</title><rect x="981.0" y="261" width="19.9" height="15.0" fill="rgb(226,104,36)" rx="2" ry="2" />
<text text-anchor="" x="984.01" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1106.1" y="165" width="1.4" height="15.0" fill="rgb(211,185,17)" rx="2" ry="2" />
<text text-anchor="" x="1109.12" 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>/.repo_requirements/odoo/odoo/http.py:checked_call:335 (749 samples, 90.24%)</title><rect x="125.2" y="789" width="1064.8" height="15.0" fill="rgb(240,43,25)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:checked_call:335</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:write:3094 (1 samples, 0.12%)</title><rect x="1184.3" y="309" width="1.4" height="15.0" fill="rgb(208,109,44)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:__sub__:4674 (2 samples, 0.24%)</title><rect x="612.8" y="357" width="2.8" height="15.0" fill="rgb(227,110,38)" rx="2" ry="2" />
<text text-anchor="" x="615.80" 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>/.repo_requirements/odoo/odoo/fields.py:__set__:973 (1 samples, 0.12%)</title><rect x="1089.1" y="325" width="1.4" height="15.0" fill="rgb(248,25,21)" rx="2" ry="2" />
<text text-anchor="" x="1092.06" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:1152 (1 samples, 0.12%)</title><rect x="503.3" y="309" width="1.4" height="15.0" fill="rgb(214,57,24)" rx="2" ry="2" />
<text text-anchor="" x="506.33" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1145.9" y="181" width="1.4" height="15.0" fill="rgb(230,215,27)" rx="2" ry="2" />
<text text-anchor="" x="1148.93" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:991 (1 samples, 0.12%)</title><rect x="10.0" y="1125" width="1.4" height="15.0" fill="rgb(223,206,40)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="1134.6" y="133" width="1.4" height="15.0" fill="rgb(231,65,7)" rx="2" ry="2" />
<text text-anchor="" x="1137.55" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:create:1361 (1 samples, 0.12%)</title><rect x="1057.8" y="421" width="1.4" height="15.0" fill="rgb(215,182,8)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1077.7" y="405" width="1.4" height="15.0" fill="rgb(253,26,53)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (6 samples, 0.72%)</title><rect x="1114.7" y="213" width="8.5" height="15.0" fill="rgb(215,100,18)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" 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>/.repo_requirements/odoo/odoo/models.py:_search:3772 (1 samples, 0.12%)</title><rect x="553.1" y="341" width="1.4" height="15.0" fill="rgb(236,85,31)" rx="2" ry="2" />
<text text-anchor="" x="556.08" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1137.4" y="213" width="1.4" height="15.0" fill="rgb(215,180,18)" rx="2" ry="2" />
<text text-anchor="" x="1140.40" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:895 (2 samples, 0.24%)</title><rect x="550.2" y="341" width="2.9" height="15.0" fill="rgb(253,68,17)" rx="2" ry="2" />
<text text-anchor="" x="553.24" 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>/.repo_requirements/odoo/odoo/fields.py:write:2502 (1 samples, 0.12%)</title><rect x="888.6" y="373" width="1.4" height="15.0" fill="rgb(252,19,46)" rx="2" ry="2" />
<text text-anchor="" x="891.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>/home/odoo/enterprise/l10n_mx_edi_payment_bank/models/account_bank_statement.py:process_reconciliation:11 (748 samples, 90.12%)</title><rect x="126.6" y="661" width="1063.4" height="15.0" fill="rgb(214,38,51)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi_payment_bank/models/account_bank_statement.py:process_reconciliation:11</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (2 samples, 0.24%)</title><rect x="1145.9" y="213" width="2.9" height="15.0" fill="rgb(234,184,54)" rx="2" ry="2" />
<text text-anchor="" x="1148.93" 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>/.repo_requirements/odoo/odoo/osv/expression.py:push_result:799 (1 samples, 0.12%)</title><rect x="568.7" y="277" width="1.4" height="15.0" fill="rgb(214,61,43)" rx="2" ry="2" />
<text text-anchor="" x="571.72" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="1117.5" y="149" width="1.4" height="15.0" fill="rgb(222,112,23)" rx="2" ry="2" />
<text text-anchor="" x="1120.49" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="1147.3" y="165" width="1.5" height="15.0" fill="rgb(238,166,11)" rx="2" ry="2" />
<text text-anchor="" x="1150.35" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="1057.8" y="325" width="1.4" height="15.0" fill="rgb(250,199,28)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2740 (1 samples, 0.12%)</title><rect x="126.6" y="453" width="1.4" height="15.0" fill="rgb(215,169,47)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/home/odoo/odoo-11.0/addons/purchase/models/purchase.py:_get_invoiced:53 (6 samples, 0.72%)</title><rect x="142.2" y="389" width="8.5" height="15.0" fill="rgb(211,172,43)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/models.py:_write:3322 (76 samples, 9.16%)</title><rect x="1077.7" y="469" width="108.0" height="15.0" fill="rgb(241,21,31)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requir..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:mapped:4517 (6 samples, 0.72%)</title><rect x="180.6" y="405" width="8.5" height="15.0" fill="rgb(207,220,46)" rx="2" ry="2" />
<text text-anchor="" x="183.60" 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>/home/odoo/odoo-11.0/odoo/addons/base/res/res_currency.py:round:135 (1 samples, 0.12%)</title><rect x="482.0" y="501" width="1.4" height="15.0" fill="rgb(222,72,20)" rx="2" ry="2" />
<text text-anchor="" x="485.00" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (3 samples, 0.36%)</title><rect x="555.9" y="309" width="4.3" height="15.0" fill="rgb(248,222,51)" rx="2" ry="2" />
<text text-anchor="" x="558.93" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2712 (2 samples, 0.24%)</title><rect x="1010.9" y="277" width="2.8" height="15.0" fill="rgb(224,110,1)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="75.4" y="1205" width="1.4" height="15.0" fill="rgb(209,222,50)" rx="2" ry="2" />
<text text-anchor="" x="78.40" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1090.5" y="277" width="1.4" height="15.0" fill="rgb(242,120,3)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:778 (2 samples, 0.24%)</title><rect x="1079.1" y="325" width="2.9" height="15.0" fill="rgb(222,202,5)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="482.0" y="485" width="1.4" height="15.0" fill="rgb(224,218,25)" rx="2" ry="2" />
<text text-anchor="" x="485.00" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:927 (1 samples, 0.12%)</title><rect x="477.7" y="501" width="1.5" height="15.0" fill="rgb(210,66,51)" rx="2" ry="2" />
<text text-anchor="" x="480.73" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1168.7" y="389" width="1.4" height="15.0" fill="rgb(208,128,9)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="1171.5" y="421" width="1.4" height="15.0" fill="rgb(240,153,35)" rx="2" ry="2" />
<text text-anchor="" x="1174.52" 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>/.repo_requirements/odoo/odoo/fields.py:read:2249 (1 samples, 0.12%)</title><rect x="126.6" y="437" width="1.4" height="15.0" fill="rgb(225,131,53)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_cache:1530 (1 samples, 0.12%)</title><rect x="1161.6" y="293" width="1.4" height="15.0" fill="rgb(208,1,15)" rx="2" ry="2" />
<text text-anchor="" x="1164.57" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="1060.6" y="293" width="1.4" height="15.0" fill="rgb(252,194,8)" rx="2" ry="2" />
<text text-anchor="" x="1063.63" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (21 samples, 2.53%)</title><rect x="1127.4" y="277" width="29.9" height="15.0" fill="rgb(225,197,12)" rx="2" ry="2" />
<text text-anchor="" x="1130.45" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.12%)</title><rect x="571.6" y="309" width="1.4" height="15.0" fill="rgb(254,46,48)" rx="2" ry="2" />
<text text-anchor="" x="574.57" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (10 samples, 1.20%)</title><rect x="1059.2" y="373" width="14.2" height="15.0" fill="rgb(227,105,23)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="523.2" y="405" width="1.5" height="15.0" fill="rgb(227,216,20)" rx="2" ry="2" />
<text text-anchor="" x="526.23" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_compute_cash_basis:382 (1 samples, 0.12%)</title><rect x="1096.2" y="341" width="1.4" height="15.0" fill="rgb(228,146,49)" rx="2" ry="2" />
<text text-anchor="" x="1099.17" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (2 samples, 0.24%)</title><rect x="237.5" y="437" width="2.8" height="15.0" fill="rgb(240,171,44)" rx="2" ry="2" />
<text text-anchor="" x="240.47" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (6 samples, 0.72%)</title><rect x="1045.0" y="277" width="8.5" height="15.0" fill="rgb(210,24,19)" rx="2" ry="2" />
<text text-anchor="" x="1047.99" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:553 (1 samples, 0.12%)</title><rect x="1064.9" y="197" width="1.4" height="15.0" fill="rgb(246,111,33)" rx="2" ry="2" />
<text text-anchor="" x="1067.89" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4330 (1 samples, 0.12%)</title><rect x="422.3" y="405" width="1.4" height="15.0" fill="rgb(213,110,48)" rx="2" ry="2" />
<text text-anchor="" x="425.29" 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>/.repo_requirements/odoo/odoo/models.py:resolve_2many_commands:4204 (15 samples, 1.81%)</title><rect x="501.9" y="405" width="21.3" height="15.0" fill="rgb(215,136,40)" rx="2" ry="2" />
<text text-anchor="" x="504.90" 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>/.repo_requirements/odoo/odoo/models.py:_convert_to_cache:4460 (2 samples, 0.24%)</title><rect x="172.1" y="69" width="2.8" height="15.0" fill="rgb(232,62,44)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="1094.7" y="325" width="1.5" height="15.0" fill="rgb(219,127,49)" rx="2" ry="2" />
<text text-anchor="" x="1097.75" 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>/.repo_requirements/odoo/odoo/sql_db.py:execute:232 (1 samples, 0.12%)</title><rect x="1076.3" y="357" width="1.4" height="15.0" fill="rgb(206,35,8)" rx="2" ry="2" />
<text text-anchor="" x="1079.27" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1073.4" y="357" width="1.4" height="15.0" fill="rgb(206,26,39)" rx="2" ry="2" />
<text text-anchor="" x="1076.42" 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>/.repo_requirements/odoo/odoo/models.py:ensure_one:4369 (1 samples, 0.12%)</title><rect x="308.6" y="405" width="1.4" height="15.0" fill="rgb(228,19,26)" rx="2" ry="2" />
<text text-anchor="" x="311.55" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_store_balance:363 (11 samples, 1.33%)</title><rect x="1109.0" y="341" width="15.6" height="15.0" fill="rgb(213,42,47)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:897 (2 samples, 0.24%)</title><rect x="557.3" y="293" width="2.9" height="15.0" fill="rgb(215,203,39)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="1057.8" y="341" width="1.4" height="15.0" fill="rgb(206,27,0)" rx="2" ry="2" />
<text text-anchor="" x="1060.78" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (26 samples, 3.13%)</title><rect x="406.7" y="437" width="36.9" height="15.0" fill="rgb(247,91,3)" rx="2" ry="2" />
<text text-anchor="" x="409.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="11.4" y="1013" width="1.4" height="15.0" fill="rgb(230,168,31)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__init__:990 (101 samples, 12.17%)</title><rect x="710.9" y="293" width="143.6" height="15.0" fill="rgb(243,108,18)" rx="2" ry="2" />
<text text-anchor="" x="713.89" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirement..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (1 samples, 0.12%)</title><rect x="497.6" y="389" width="1.5" height="15.0" fill="rgb(248,147,46)" rx="2" ry="2" />
<text text-anchor="" x="500.64" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="179.2" y="85" width="1.4" height="15.0" fill="rgb(208,221,26)" rx="2" ry="2" />
<text text-anchor="" x="182.18" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="487.7" y="405" width="1.4" height="15.0" fill="rgb(253,79,27)" rx="2" ry="2" />
<text text-anchor="" x="490.69" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="1074.8" y="357" width="1.5" height="15.0" fill="rgb(213,125,11)" rx="2" ry="2" />
<text text-anchor="" x="1077.84" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (1 samples, 0.12%)</title><rect x="1137.4" y="181" width="1.4" height="15.0" fill="rgb(228,2,7)" rx="2" ry="2" />
<text text-anchor="" x="1140.40" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="1077.7" y="421" width="1.4" height="15.0" fill="rgb(210,128,36)" rx="2" ry="2" />
<text text-anchor="" x="1080.69" 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>/.repo_requirements/odoo/odoo/osv/query.py:add_joins_for_table:161 (1 samples, 0.12%)</title><rect x="83.9" y="1157" width="1.4" height="15.0" fill="rgb(205,110,25)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1035 (747 samples, 90.00%)</title><rect x="126.6" y="565" width="1062.0" height="15.0" fill="rgb(239,159,27)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0/addons/account/models/account_move.py:auto_reconcile_lines:1035</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:with_env:4385 (1 samples, 0.12%)</title><rect x="638.4" y="357" width="1.4" height="15.0" fill="rgb(218,208,39)" rx="2" ry="2" />
<text text-anchor="" x="641.39" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (1 samples, 0.12%)</title><rect x="1185.7" y="229" width="1.5" height="15.0" fill="rgb(227,178,9)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="126.6" y="469" width="1.4" height="15.0" fill="rgb(230,94,16)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="145.1" y="261" width="1.4" height="15.0" fill="rgb(213,131,3)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2626 (76 samples, 9.16%)</title><rect x="895.7" y="309" width="108.1" height="15.0" fill="rgb(219,145,2)" rx="2" ry="2" />
<text text-anchor="" x="898.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requir..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/sql_db.py:&lt;dictcomp&gt;:196 (1 samples, 0.12%)</title><rect x="126.6" y="277" width="1.4" height="15.0" fill="rgb(219,123,4)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="238.9" y="405" width="1.4" height="15.0" fill="rgb(247,215,10)" rx="2" ry="2" />
<text text-anchor="" x="241.89" 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>/home/odoo/odoo-11.0/addons/mail/models/mail_thread.py:write:284 (8 samples, 0.96%)</title><rect x="169.2" y="405" width="11.4" height="15.0" fill="rgb(224,21,9)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (2 samples, 0.24%)</title><rect x="237.5" y="421" width="2.8" height="15.0" fill="rgb(252,165,32)" rx="2" ry="2" />
<text text-anchor="" x="240.47" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3568 (1 samples, 0.12%)</title><rect x="557.3" y="245" width="1.5" height="15.0" fill="rgb(225,197,54)" rx="2" ry="2" />
<text text-anchor="" x="560.35" 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>/.repo_requirements/odoo/odoo/models.py:_where_calc:3575 (2 samples, 0.24%)</title><rect x="565.9" y="325" width="2.8" height="15.0" fill="rgb(219,145,39)" rx="2" ry="2" />
<text text-anchor="" x="568.88" 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>/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154 (749 samples, 90.24%)</title><rect x="125.2" y="1013" width="1064.8" height="15.0" fill="rgb(215,36,10)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/service/wsgi_server.py:application_unproxied:154</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:get:968 (27 samples, 3.25%)</title><rect x="368.3" y="437" width="38.4" height="15.0" fill="rgb(228,49,36)" rx="2" ry="2" />
<text text-anchor="" x="371.27" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (6 samples, 0.72%)</title><rect x="1099.0" y="245" width="8.5" height="15.0" fill="rgb(239,51,10)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1472 (1 samples, 0.12%)</title><rect x="476.3" y="517" width="1.4" height="15.0" fill="rgb(216,35,11)" rx="2" ry="2" />
<text text-anchor="" x="479.31" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2749 (1 samples, 0.12%)</title><rect x="1040.7" y="277" width="1.4" height="15.0" fill="rgb(212,114,47)" rx="2" ry="2" />
<text text-anchor="" x="1043.72" 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>/.repo_requirements/odoo/odoo/models.py:search:1482 (1 samples, 0.12%)</title><rect x="61.2" y="1157" width="1.4" height="15.0" fill="rgb(254,201,6)" rx="2" ry="2" />
<text text-anchor="" x="64.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>/.repo_requirements/odoo/odoo/models.py:_create:3449 (2 samples, 0.24%)</title><rect x="526.1" y="389" width="2.8" height="15.0" fill="rgb(209,173,40)" rx="2" ry="2" />
<text text-anchor="" x="529.07" 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>/home/odoo/enterprise/l10n_mx_edi/models/account_move.py:reconcile:12 (747 samples, 90.00%)</title><rect x="126.6" y="613" width="1062.0" height="15.0" fill="rgb(219,32,30)" rx="2" ry="2" />
<text text-anchor="" x="129.58" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/enterprise/l10n_mx_edi/models/account_move.py:reconcile:12</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2692 (1 samples, 0.12%)</title><rect x="1010.9" y="261" width="1.4" height="15.0" fill="rgb(208,141,14)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/tools/cache.py:lru:78 (1 samples, 0.12%)</title><rect x="561.6" y="277" width="1.4" height="15.0" fill="rgb(209,171,33)" rx="2" ry="2" />
<text text-anchor="" x="564.61" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="10.0" y="1077" width="1.4" height="15.0" fill="rgb(238,50,1)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="1157.3" y="277" width="1.4" height="15.0" fill="rgb(222,37,2)" rx="2" ry="2" />
<text text-anchor="" x="1160.30" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1157.3" y="261" width="1.4" height="15.0" fill="rgb(249,119,51)" rx="2" ry="2" />
<text text-anchor="" x="1160.30" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.12%)</title><rect x="65.4" y="1173" width="1.5" height="15.0" fill="rgb(241,194,38)" rx="2" ry="2" />
<text text-anchor="" x="68.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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (1 samples, 0.12%)</title><rect x="1090.5" y="245" width="1.4" height="15.0" fill="rgb(221,158,30)" rx="2" ry="2" />
<text text-anchor="" x="1093.48" 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>/.repo_requirements/odoo/odoo/models.py:&lt;genexpr&gt;:2632 (1 samples, 0.12%)</title><rect x="12.8" y="1221" width="1.5" height="15.0" fill="rgb(250,98,33)" rx="2" ry="2" />
<text text-anchor="" x="15.84" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="155.0" y="261" width="1.4" height="15.0" fill="rgb(240,73,54)" rx="2" ry="2" />
<text text-anchor="" x="158.01" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_related:589 (3 samples, 0.36%)</title><rect x="146.5" y="293" width="4.2" height="15.0" fill="rgb(233,112,36)" rx="2" ry="2" />
<text text-anchor="" x="149.48" 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>/.repo_requirements/odoo/odoo/models.py:_search:3806 (1 samples, 0.12%)</title><rect x="169.2" y="197" width="1.5" height="15.0" fill="rgb(224,34,50)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/api.py:add_todo:892 (6 samples, 0.72%)</title><rect x="622.7" y="341" width="8.6" height="15.0" fill="rgb(236,131,49)" rx="2" ry="2" />
<text text-anchor="" x="625.75" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:931 (1 samples, 0.12%)</title><rect x="126.6" y="405" width="1.4" height="15.0" fill="rgb(250,91,49)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="1062.0" y="245" width="1.5" height="15.0" fill="rgb(225,45,26)" rx="2" ry="2" />
<text text-anchor="" x="1065.05" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:1981 (1 samples, 0.12%)</title><rect x="68.3" y="1141" width="1.4" height="15.0" fill="rgb(249,92,20)" rx="2" ry="2" />
<text text-anchor="" x="71.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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="126.6" y="373" width="1.4" height="15.0" fill="rgb(241,41,10)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/api.py:protected:860 (1 samples, 0.12%)</title><rect x="1091.9" y="293" width="1.4" height="15.0" fill="rgb(249,25,29)" rx="2" ry="2" />
<text text-anchor="" x="1094.90" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="145.1" y="181" width="1.4" height="15.0" fill="rgb(226,64,46)" rx="2" ry="2" />
<text text-anchor="" x="148.06" 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>&lt;string&gt;:change_digit:11 (1 samples, 0.12%)</title><rect x="1010.9" y="213" width="1.4" height="15.0" fill="rgb(219,41,53)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/models.py:union:4700 (1 samples, 0.12%)</title><rect x="656.9" y="309" width="1.4" height="15.0" fill="rgb(249,51,8)" rx="2" ry="2" />
<text text-anchor="" x="659.87" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:778 (1 samples, 0.12%)</title><rect x="189.1" y="485" width="1.5" height="15.0" fill="rgb(221,159,20)" rx="2" ry="2" />
<text text-anchor="" x="192.13" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_weakrefset.py:__iter__:65 (5 samples, 0.60%)</title><rect x="116.6" y="1221" width="7.1" height="15.0" fill="rgb(223,26,48)" rx="2" ry="2" />
<text text-anchor="" x="119.63" 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>/.repo_requirements/odoo/odoo/tools/misc.py:__hash__:966 (1 samples, 0.12%)</title><rect x="1172.9" y="437" width="1.5" height="15.0" fill="rgb(229,15,11)" rx="2" ry="2" />
<text text-anchor="" x="1175.94" 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>/.repo_requirements/odoo/odoo/tools/func.py:wrapper:70 (1 samples, 0.12%)</title><rect x="83.9" y="1109" width="1.4" height="15.0" fill="rgb(250,61,3)" rx="2" ry="2" />
<text text-anchor="" x="86.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>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (1 samples, 0.12%)</title><rect x="182.0" y="261" width="1.4" height="15.0" fill="rgb(240,196,45)" rx="2" ry="2" />
<text text-anchor="" x="185.02" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (2 samples, 0.24%)</title><rect x="506.2" y="325" width="2.8" height="15.0" fill="rgb(241,213,33)" rx="2" ry="2" />
<text text-anchor="" x="509.17" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="500.5" y="373" width="1.4" height="15.0" fill="rgb(227,172,19)" rx="2" ry="2" />
<text text-anchor="" x="503.48" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="1097.6" y="229" width="1.4" height="15.0" fill="rgb(213,125,10)" rx="2" ry="2" />
<text text-anchor="" x="1100.59" 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>/.repo_requirements/odoo/odoo/models.py:modified:4862 (42 samples, 5.06%)</title><rect x="547.4" y="373" width="59.7" height="15.0" fill="rgb(214,104,33)" rx="2" ry="2" />
<text text-anchor="" x="550.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/tools/cache.py:lru:78 (1 samples, 0.12%)</title><rect x="1010.9" y="165" width="1.4" height="15.0" fill="rgb(213,131,39)" rx="2" ry="2" />
<text text-anchor="" x="1013.87" 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>/.repo_requirements/odoo/odoo/fields.py:_compute_value:986 (2 samples, 0.24%)</title><rect x="1079.1" y="357" width="2.9" height="15.0" fill="rgb(218,128,40)" rx="2" ry="2" />
<text text-anchor="" x="1082.11" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (1 samples, 0.12%)</title><rect x="1104.7" y="165" width="1.4" height="15.0" fill="rgb(224,68,18)" rx="2" ry="2" />
<text text-anchor="" x="1107.70" 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>/.repo_requirements/odoo/odoo/http.py:__call__:1293 (749 samples, 90.24%)</title><rect x="125.2" y="981" width="1064.8" height="15.0" fill="rgb(242,134,36)" rx="2" ry="2" />
<text text-anchor="" x="128.16" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/http.py:__call__:1293</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="523.2" y="373" width="1.5" height="15.0" fill="rgb(225,27,13)" rx="2" ry="2" />
<text text-anchor="" x="526.23" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (4 samples, 0.48%)</title><rect x="76.8" y="1189" width="5.7" height="15.0" fill="rgb(241,175,44)" rx="2" ry="2" />
<text text-anchor="" x="79.82" 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>/.repo_requirements/odoo/odoo/osv/expression.py:to_sql:1289 (1 samples, 0.12%)</title><rect x="567.3" y="309" width="1.4" height="15.0" fill="rgb(252,20,14)" rx="2" ry="2" />
<text text-anchor="" x="570.30" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1147.3" y="181" width="1.5" height="15.0" fill="rgb(231,119,25)" rx="2" ry="2" />
<text text-anchor="" x="1150.35" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_record:2097 (1 samples, 0.12%)</title><rect x="523.2" y="389" width="1.5" height="15.0" fill="rgb(224,126,14)" rx="2" ry="2" />
<text text-anchor="" x="526.23" 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>/.repo_requirements/odoo/odoo/models.py:read:2591 (1 samples, 0.12%)</title><rect x="480.6" y="469" width="1.4" height="15.0" fill="rgb(238,79,16)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (1 samples, 0.12%)</title><rect x="1053.5" y="309" width="1.4" height="15.0" fill="rgb(242,119,52)" rx="2" ry="2" />
<text text-anchor="" x="1056.52" 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>/.repo_requirements/odoo/odoo/sql_db.py:dictfetchall:203 (2 samples, 0.24%)</title><rect x="1029.3" y="261" width="2.9" height="15.0" fill="rgb(230,75,13)" rx="2" ry="2" />
<text text-anchor="" x="1032.35" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (1 samples, 0.12%)</title><rect x="1099.0" y="197" width="1.4" height="15.0" fill="rgb(222,98,32)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" 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>/.repo_requirements/odoo/odoo/api.py:__call__:790 (1 samples, 0.12%)</title><rect x="554.5" y="309" width="1.4" height="15.0" fill="rgb(226,18,30)" rx="2" ry="2" />
<text text-anchor="" x="557.51" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/encodings/utf_8.py:decode:16 (1 samples, 0.12%)</title><rect x="605.7" y="293" width="1.4" height="15.0" fill="rgb(244,134,22)" rx="2" ry="2" />
<text text-anchor="" x="608.69" 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>/.repo_requirements/odoo/odoo/api.py:__hash__:778 (1 samples, 0.12%)</title><rect x="1089.1" y="293" width="1.4" height="15.0" fill="rgb(212,80,42)" rx="2" ry="2" />
<text text-anchor="" x="1092.06" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="126.6" y="421" width="1.4" height="15.0" fill="rgb(214,20,12)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="551.7" y="293" width="1.4" height="15.0" fill="rgb(243,182,38)" rx="2" ry="2" />
<text text-anchor="" x="554.66" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2532 (1 samples, 0.12%)</title><rect x="177.8" y="69" width="1.4" height="15.0" fill="rgb(211,96,53)" rx="2" ry="2" />
<text text-anchor="" x="180.76" 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>/.repo_requirements/odoo/odoo/api.py:protected:860 (4 samples, 0.48%)</title><rect x="642.7" y="357" width="5.6" height="15.0" fill="rgb(232,161,9)" rx="2" ry="2" />
<text text-anchor="" x="645.65" 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>/.repo_requirements/odoo/odoo/models.py:browse:4343 (1 samples, 0.12%)</title><rect x="480.6" y="421" width="1.4" height="15.0" fill="rgb(233,73,0)" rx="2" ry="2" />
<text text-anchor="" x="483.58" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1018 (1 samples, 0.12%)</title><rect x="1185.7" y="245" width="1.5" height="15.0" fill="rgb(245,46,16)" rx="2" ry="2" />
<text text-anchor="" x="1188.73" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (4 samples, 0.48%)</title><rect x="1101.9" y="213" width="5.6" height="15.0" fill="rgb(251,85,41)" rx="2" ry="2" />
<text text-anchor="" x="1104.86" 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>/.repo_requirements/odoo/odoo/models.py:read:2611 (1 samples, 0.12%)</title><rect x="11.4" y="1141" width="1.4" height="15.0" fill="rgb(238,64,6)" rx="2" ry="2" />
<text text-anchor="" x="14.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>/.repo_requirements/odoo/odoo/models.py:filtered:4545 (7 samples, 0.84%)</title><rect x="170.7" y="325" width="9.9" height="15.0" fill="rgb(240,178,27)" rx="2" ry="2" />
<text text-anchor="" x="173.65" 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>/home/odoo/icm/commission_calculation/models/account_move_line.py:_compute_date_last_payment:41 (2 samples, 0.24%)</title><rect x="1086.2" y="341" width="2.9" height="15.0" fill="rgb(229,115,22)" rx="2" ry="2" />
<text text-anchor="" x="1089.22" 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>/.repo_requirements/odoo/odoo/models.py:_prefetch_field:2651 (11 samples, 1.33%)</title><rect x="1109.0" y="245" width="15.6" height="15.0" fill="rgb(216,31,25)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_check_currency:503 (114 samples, 13.73%)</title><rect x="892.9" y="357" width="162.0" height="15.0" fill="rgb(231,155,6)" rx="2" ry="2" />
<text text-anchor="" x="895.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/home/odoo/odoo-11.0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/models.py:qualify:2702 (1 samples, 0.12%)</title><rect x="1012.3" y="245" width="1.4" height="15.0" fill="rgb(237,124,47)" rx="2" ry="2" />
<text text-anchor="" x="1015.29" 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>/.repo_requirements/odoo/odoo/osv/expression.py:parse:714 (1 samples, 0.12%)</title><rect x="555.9" y="293" width="1.4" height="15.0" fill="rgb(205,131,23)" rx="2" ry="2" />
<text text-anchor="" x="558.93" 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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (1 samples, 0.12%)</title><rect x="492.0" y="357" width="1.4" height="15.0" fill="rgb(215,143,19)" rx="2" ry="2" />
<text text-anchor="" x="494.95" 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>&lt;frozen importlib._bootstrap&gt;:_handle_fromlist:1025 (1 samples, 0.12%)</title><rect x="1018.0" y="229" width="1.4" height="15.0" fill="rgb(210,49,23)" rx="2" ry="2" />
<text text-anchor="" x="1020.98" 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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/locale.py:_replace_encoding:362 (1 samples, 0.12%)</title><rect x="1164.4" y="165" width="1.4" height="15.0" fill="rgb(245,36,23)" rx="2" ry="2" />
<text text-anchor="" x="1167.41" 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>/.repo_requirements/odoo/odoo/models.py:read:2596 (1 samples, 0.12%)</title><rect x="183.4" y="293" width="1.5" height="15.0" fill="rgb(242,182,9)" rx="2" ry="2" />
<text text-anchor="" x="186.45" 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>/.repo_requirements/odoo/odoo/sql_db.py:wrapper:155 (3 samples, 0.36%)</title><rect x="530.3" y="373" width="4.3" height="15.0" fill="rgb(246,62,25)" rx="2" ry="2" />
<text text-anchor="" x="533.34" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:3806 (1 samples, 0.12%)</title><rect x="169.2" y="181" width="1.5" height="15.0" fill="rgb(226,30,52)" rx="2" ry="2" />
<text text-anchor="" x="172.23" 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>/.repo_requirements/odoo/odoo/fields.py:compute_value:998 (14 samples, 1.69%)</title><rect x="139.4" y="421" width="19.9" height="15.0" fill="rgb(223,133,39)" rx="2" ry="2" />
<text text-anchor="" x="142.37" 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>/.repo_requirements/odoo/odoo/models.py:_search:3796 (1 samples, 0.12%)</title><rect x="1076.3" y="389" width="1.4" height="15.0" fill="rgb(223,229,7)" rx="2" ry="2" />
<text text-anchor="" x="1079.27" 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>/.repo_requirements/odoo/odoo/models.py:_browse:4331 (3 samples, 0.36%)</title><rect x="423.7" y="405" width="4.3" height="15.0" fill="rgb(219,218,4)" rx="2" ry="2" />
<text text-anchor="" x="426.71" 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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (4 samples, 0.48%)</title><rect x="467.8" y="453" width="5.7" height="15.0" fill="rgb(206,189,35)" rx="2" ry="2" />
<text text-anchor="" x="470.78" 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>/.repo_requirements/odoo/odoo/models.py:__len__:4632 (3 samples, 0.36%)</title><rect x="456.4" y="421" width="4.3" height="15.0" fill="rgb(240,73,33)" rx="2" ry="2" />
<text text-anchor="" x="459.41" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="160.7" y="277" width="1.4" height="15.0" fill="rgb(217,62,7)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/.repo_requirements/odoo/odoo/models.py:read:2606 (1 samples, 0.12%)</title><rect x="145.1" y="197" width="1.4" height="15.0" fill="rgb(225,8,54)" rx="2" ry="2" />
<text text-anchor="" x="148.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>/.repo_requirements/odoo/odoo/osv/expression.py:__init__:668 (4 samples, 0.48%)</title><rect x="61.2" y="1205" width="5.7" height="15.0" fill="rgb(243,169,35)" rx="2" ry="2" />
<text text-anchor="" x="64.18" 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>/.repo_requirements/odoo/odoo/models.py:qualify:2698 (1 samples, 0.12%)</title><rect x="1009.4" y="245" width="1.5" height="15.0" fill="rgb(207,171,51)" rx="2" ry="2" />
<text text-anchor="" x="1012.45" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2733 (2 samples, 0.24%)</title><rect x="152.2" y="261" width="2.8" height="15.0" fill="rgb(233,15,53)" rx="2" ry="2" />
<text text-anchor="" x="155.17" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_write:489 (1 samples, 0.12%)</title><rect x="160.7" y="469" width="1.4" height="15.0" fill="rgb(228,62,16)" rx="2" ry="2" />
<text text-anchor="" x="163.70" 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>/home/odoo/odoo-11.0/addons/account/models/account_invoice.py:_compute_residual:109 (6 samples, 0.72%)</title><rect x="172.1" y="165" width="8.5" height="15.0" fill="rgb(244,174,45)" rx="2" ry="2" />
<text text-anchor="" x="175.07" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:&lt;listcomp&gt;:1451 (1 samples, 0.12%)</title><rect x="460.7" y="501" width="1.4" height="15.0" fill="rgb(251,21,44)" rx="2" ry="2" />
<text text-anchor="" x="463.67" 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>/.repo_requirements/odoo/odoo/models.py:_read_from_database:2768 (1 samples, 0.12%)</title><rect x="142.2" y="293" width="1.4" height="15.0" fill="rgb(211,183,13)" rx="2" ry="2" />
<text text-anchor="" x="145.22" 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>/.repo_requirements/odoo/odoo/api.py:get:967 (4 samples, 0.48%)</title><rect x="281.5" y="437" width="5.7" height="15.0" fill="rgb(219,191,39)" rx="2" ry="2" />
<text text-anchor="" x="284.54" 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>/.repo_requirements/odoo/odoo/modules/registry.py:__getitem__:179 (1 samples, 0.12%)</title><rect x="327.0" y="405" width="1.5" height="15.0" fill="rgb(221,63,29)" rx="2" ry="2" />
<text text-anchor="" x="330.04" 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>/.repo_requirements/odoo/odoo/models.py:read:2604 (1 samples, 0.12%)</title><rect x="147.9" y="213" width="1.4" height="15.0" fill="rgb(244,180,35)" rx="2" ry="2" />
<text text-anchor="" x="150.90" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (8 samples, 0.96%)</title><rect x="418.0" y="421" width="11.4" height="15.0" fill="rgb(249,124,21)" rx="2" ry="2" />
<text text-anchor="" x="421.02" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1995 (1 samples, 0.12%)</title><rect x="1137.4" y="229" width="1.4" height="15.0" fill="rgb(217,146,50)" rx="2" ry="2" />
<text text-anchor="" x="1140.40" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (1 samples, 0.12%)</title><rect x="1184.3" y="245" width="1.4" height="15.0" fill="rgb(250,213,51)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:search:1481 (13 samples, 1.57%)</title><rect x="1059.2" y="405" width="18.5" height="15.0" fill="rgb(238,54,4)" rx="2" ry="2" />
<text text-anchor="" x="1062.20" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:2533 (1 samples, 0.12%)</title><rect x="285.8" y="421" width="1.4" height="15.0" fill="rgb(209,214,28)" rx="2" ry="2" />
<text text-anchor="" x="288.81" 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>/home/odoo/odoo-11.0/addons/account/models/account_move.py:_get_matched_percentage:1445 (9 samples, 1.08%)</title><rect x="126.6" y="533" width="12.8" height="15.0" fill="rgb(210,113,25)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/api.py:__getitem__:761 (1 samples, 0.12%)</title><rect x="1120.3" y="165" width="1.5" height="15.0" fill="rgb(208,202,6)" rx="2" ry="2" />
<text text-anchor="" x="1123.34" 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>/.repo_requirements/odoo/odoo/api.py:get:966 (1 samples, 0.12%)</title><rect x="355.5" y="437" width="1.4" height="15.0" fill="rgb(237,5,48)" rx="2" ry="2" />
<text text-anchor="" x="358.47" 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>/.repo_requirements/odoo/odoo/fields.py:write:2265 (416 samples, 50.12%)</title><rect x="486.3" y="453" width="591.4" height="15.0" fill="rgb(235,211,49)" rx="2" ry="2" />
<text text-anchor="" x="489.27" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >/.repo_requirements/odoo/odoo/fields.py:write:2265</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>/.repo_requirements/odoo/odoo/modules/registry.py:__new__:65 (1 samples, 0.12%)</title><rect x="1008.0" y="181" width="1.4" height="15.0" fill="rgb(244,157,13)" rx="2" ry="2" />
<text text-anchor="" x="1011.02" 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>/home/odoo/odoo-11.0/odoo/addons/base/ir/ir_actions.py:run_action_code_multi:430 (1 samples, 0.12%)</title><rect x="1184.3" y="373" width="1.4" height="15.0" fill="rgb(243,186,25)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" 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>/.repo_requirements/odoo/odoo/models.py:&lt;listcomp&gt;:2609 (1 samples, 0.12%)</title><rect x="1123.2" y="213" width="1.4" height="15.0" fill="rgb(241,73,12)" rx="2" ry="2" />
<text text-anchor="" x="1126.18" 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>/.repo_requirements/odoo/odoo/models.py:__bool__:4627 (1 samples, 0.12%)</title><rect x="386.7" y="405" width="1.5" height="15.0" fill="rgb(219,56,39)" rx="2" ry="2" />
<text text-anchor="" x="389.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>/.repo_requirements/odoo/odoo/models.py:__getitem__:4763 (1 samples, 0.12%)</title><rect x="174.9" y="85" width="1.4" height="15.0" fill="rgb(219,26,36)" rx="2" ry="2" />
<text text-anchor="" x="177.92" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="521.8" y="357" width="1.4" height="15.0" fill="rgb(246,166,9)" rx="2" ry="2" />
<text text-anchor="" x="524.81" 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>/.repo_requirements/odoo/odoo/models.py:name_get:1509 (1 samples, 0.12%)</title><rect x="10.0" y="1093" width="1.4" height="15.0" fill="rgb(243,146,47)" rx="2" ry="2" />
<text text-anchor="" x="13.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>/.repo_requirements/virtualenv/python3.5/lib/python3.5/_collections_abc.py:update:775 (1 samples, 0.12%)</title><rect x="464.9" y="437" width="1.5" height="15.0" fill="rgb(219,112,5)" rx="2" ry="2" />
<text text-anchor="" x="467.94" 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>/.repo_requirements/odoo/odoo/fields.py:determine_value:1032 (1 samples, 0.12%)</title><rect x="126.6" y="389" width="1.4" height="15.0" fill="rgb(243,2,53)" rx="2" ry="2" />
<text text-anchor="" x="129.58" 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>/.repo_requirements/odoo/odoo/fields.py:__get__:939 (1 samples, 0.12%)</title><rect x="11.4" y="1093" width="1.4" height="15.0" fill="rgb(214,142,35)" rx="2" ry="2" />
<text text-anchor="" x="14.42" 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>/.repo_requirements/odoo/odoo/fields.py:convert_to_read:1990 (3 samples, 0.36%)</title><rect x="514.7" y="373" width="4.3" height="15.0" fill="rgb(250,42,44)" rx="2" ry="2" />
<text text-anchor="" x="517.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment