Home
Phabricator
Search
Log In
Files
F6464730
perf.zsynb.svg
cullmann (Christoph Cullmann)
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Author
cullmann
Created
Dec 8 2018, 11:37 PM
Size
1 MB
Mime Type
image/svg+xml
Engine
local-disk
Format
Raw Data
Handle
ff/e8/447a32939212a5efd12b617fbe8d
Attached To
D17441: tune editing actions for large number of small edits
perf.zsynb.svg
View Options
This file is larger than 256 KB, so syntax highlighting was skipped.
<?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="4800" height="1174" onload="init(evt)" viewBox="0 0 4800 1174" 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="4800.0" height="1174.0" fill="url(#background)" />
<text text-anchor="middle" x="2400.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1157" 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="4690.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="4690.00" y="1157" 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>0x7f1f70cd0891 (31 samples, 0.00%)</title><rect x="112.5" y="853" width="0.2" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="115.48" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3fac1487 (25 samples, 0.00%)</title><rect x="89.8" y="1069" width="0.2" height="23.0" fill="rgb(242,99,41)" rx="2" ry="2" />
<text text-anchor="" x="92.82" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575e85 (18 samples, 0.00%)</title><rect x="692.1" y="877" width="0.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="695.09" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (17 samples, 0.00%)</title><rect x="350.4" y="1045" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="353.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow (39 samples, 0.01%)</title><rect x="586.5" y="1045" width="0.2" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="589.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (324 samples, 0.04%)</title><rect x="608.2" y="781" width="2.0" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (173 samples, 0.02%)</title><rect x="2372.1" y="181" width="1.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2375.07" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawLines (174 samples, 0.02%)</title><rect x="113.0" y="733" width="1.1" height="23.0" fill="rgb(242,203,41)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (24 samples, 0.00%)</title><rect x="701.1" y="445" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (1,065 samples, 0.14%)</title><rect x="337.6" y="1045" width="6.7" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="340.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isNull (154 samples, 0.02%)</title><rect x="3668.5" y="181" width="1.0" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="3671.52" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawControl (22 samples, 0.00%)</title><rect x="653.1" y="733" width="0.1" height="23.0" fill="rgb(235,145,33)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fc8d0 (35 samples, 0.00%)</title><rect x="140.6" y="1045" width="0.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="143.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (22 samples, 0.00%)</title><rect x="488.3" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="491.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (18 samples, 0.00%)</title><rect x="4114.0" y="349" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="4116.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (143 samples, 0.02%)</title><rect x="4529.9" y="181" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4532.93" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (517 samples, 0.07%)</title><rect x="4659.1" y="301" width="3.3" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4662.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::findAll (640,042 samples, 83.96%)</title><rect x="766.5" y="445" width="4013.1" height="23.0" fill="rgb(227,118,24)" rx="2" ry="2" />
<text text-anchor="" x="769.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateSearchBar::findAll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (29 samples, 0.00%)</title><rect x="3825.8" y="277" width="0.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="3828.82" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (170 samples, 0.02%)</title><rect x="4048.8" y="277" width="1.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4051.82" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (38 samples, 0.00%)</title><rect x="4314.8" y="397" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4317.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (1,165 samples, 0.15%)</title><rect x="3249.5" y="253" width="7.3" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="3252.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (35 samples, 0.00%)</title><rect x="654.5" y="973" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="657.51" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::split (39 samples, 0.01%)</title><rect x="104.0" y="1045" width="0.3" height="23.0" fill="rgb(237,166,36)" rx="2" ry="2" />
<text text-anchor="" x="107.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::first (2,396 samples, 0.31%)</title><rect x="3153.4" y="229" width="15.0" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="3156.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLayout::activate (28 samples, 0.00%)</title><rect x="741.7" y="709" width="0.2" height="23.0" fill="rgb(245,168,45)" rx="2" ry="2" />
<text text-anchor="" x="744.73" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a7e9 (29 samples, 0.00%)</title><rect x="109.5" y="1069" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="112.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (105 samples, 0.01%)</title><rect x="4161.9" y="253" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4164.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (26 samples, 0.00%)</title><rect x="529.2" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="532.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editRemoveText (28 samples, 0.00%)</title><rect x="496.7" y="1045" width="0.2" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="499.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::metaObject (45 samples, 0.01%)</title><rect x="333.8" y="1045" width="0.3" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="336.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::unlock (1,097 samples, 0.14%)</title><rect x="2324.4" y="253" width="6.9" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="2327.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editInsertText@plt (53 samples, 0.01%)</title><rect x="2480.8" y="349" width="0.4" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="2483.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (357 samples, 0.05%)</title><rect x="4574.3" y="253" width="2.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4577.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (26 samples, 0.00%)</title><rect x="257.6" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="260.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::updateConfig (27 samples, 0.00%)</title><rect x="690.7" y="805" width="0.2" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="693.70" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (22 samples, 0.00%)</title><rect x="654.6" y="877" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="657.59" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,142 samples, 0.15%)</title><rect x="2355.7" y="181" width="7.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2358.71" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::writeRawData (60 samples, 0.01%)</title><rect x="638.2" y="1069" width="0.4" height="23.0" fill="rgb(235,208,33)" rx="2" ry="2" />
<text text-anchor="" x="641.24" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (116 samples, 0.02%)</title><rect x="4273.0" y="205" width="0.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4276.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (24 samples, 0.00%)</title><rect x="154.4" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="157.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (347 samples, 0.05%)</title><rect x="4605.2" y="277" width="2.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4608.25" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (147 samples, 0.02%)</title><rect x="290.2" y="1045" width="0.9" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="293.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::toCursor (16 samples, 0.00%)</title><rect x="887.7" y="421" width="0.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="890.71" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (1,433 samples, 0.19%)</title><rect x="4400.0" y="253" width="9.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4403.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::resize (37 samples, 0.00%)</title><rect x="235.2" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="238.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (93 samples, 0.01%)</title><rect x="4254.4" y="253" width="0.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4257.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (40 samples, 0.01%)</title><rect x="638.7" y="805" width="0.2" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (31 samples, 0.00%)</title><rect x="3863.6" y="181" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3866.59" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,308 samples, 0.17%)</title><rect x="3219.1" y="229" width="8.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3222.13" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (28 samples, 0.00%)</title><rect x="637.7" y="709" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (50 samples, 0.01%)</title><rect x="637.3" y="445" width="0.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (21 samples, 0.00%)</title><rect x="102.6" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="105.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::allocate (1,019 samples, 0.13%)</title><rect x="4652.2" y="325" width="6.4" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="4655.18" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3f7 (100 samples, 0.01%)</title><rect x="496.5" y="1069" width="0.7" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="499.53" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (21 samples, 0.00%)</title><rect x="116.0" y="1045" width="0.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="119.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (540 samples, 0.07%)</title><rect x="868.7" y="205" width="3.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="871.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (30 samples, 0.00%)</title><rect x="156.4" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="159.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::accessibleInterface (845 samples, 0.11%)</title><rect x="418.9" y="1045" width="5.3" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="421.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (29 samples, 0.00%)</title><rect x="323.5" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="326.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextRange*>::contains (140 samples, 0.02%)</title><rect x="941.2" y="301" width="0.8" height="23.0" fill="rgb(240,175,38)" rx="2" ry="2" />
<text text-anchor="" x="944.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (118 samples, 0.02%)</title><rect x="661.6" y="805" width="0.7" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (131 samples, 0.02%)</title><rect x="793.3" y="325" width="0.8" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="796.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hb_shape_full (55 samples, 0.01%)</title><rect x="112.4" y="925" width="0.3" height="23.0" fill="rgb(224,112,21)" rx="2" ry="2" />
<text text-anchor="" x="115.35" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (308 samples, 0.04%)</title><rect x="919.5" y="325" width="1.9" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="922.52" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::activateTimers (260 samples, 0.03%)</title><rect x="699.3" y="805" width="1.7" height="23.0" fill="rgb(238,157,36)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (17 samples, 0.00%)</title><rect x="654.8" y="733" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="657.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (402 samples, 0.05%)</title><rect x="4250.1" y="277" width="2.5" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4253.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateIconBorder::paintBorder (19 samples, 0.00%)</title><rect x="628.2" y="589" width="0.2" height="23.0" fill="rgb(243,118,41)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::Node::t (19 samples, 0.00%)</title><rect x="265.4" y="1045" width="0.1" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="268.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (214 samples, 0.03%)</title><rect x="2540.5" y="325" width="1.3" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="2543.48" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (30 samples, 0.00%)</title><rect x="223.3" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="226.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (40 samples, 0.01%)</title><rect x="2454.8" y="301" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2457.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (123 samples, 0.02%)</title><rect x="2388.2" y="253" width="0.7" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="2391.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (141 samples, 0.02%)</title><rect x="2185.9" y="157" width="0.9" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="2188.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::kateRange (25 samples, 0.00%)</title><rect x="2332.8" y="301" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2335.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (192 samples, 0.03%)</title><rect x="4758.6" y="349" width="1.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4761.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (78 samples, 0.01%)</title><rect x="127.6" y="1045" width="0.5" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="130.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f735c7a54 (25 samples, 0.00%)</title><rect x="655.4" y="757" width="0.1" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="658.38" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (50 samples, 0.01%)</title><rect x="637.3" y="493" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (28 samples, 0.00%)</title><rect x="551.5" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="554.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (31 samples, 0.00%)</title><rect x="1064.6" y="181" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1067.64" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::data (26 samples, 0.00%)</title><rect x="4683.5" y="397" width="0.2" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="4686.55" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (17 samples, 0.00%)</title><rect x="475.4" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="478.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (214 samples, 0.03%)</title><rect x="2474.1" y="325" width="1.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2477.15" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (273 samples, 0.04%)</title><rect x="4205.5" y="253" width="1.7" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4208.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (16 samples, 0.00%)</title><rect x="4783.5" y="1069" width="0.1" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4786.49" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (146 samples, 0.02%)</title><rect x="4164.4" y="301" width="0.9" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="4167.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (38 samples, 0.00%)</title><rect x="283.1" y="1045" width="0.2" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="286.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fcc21 (1,130 samples, 0.15%)</title><rect x="692.3" y="829" width="7.0" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="695.25" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (332 samples, 0.04%)</title><rect x="3234.9" y="109" width="2.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3237.86" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (129 samples, 0.02%)</title><rect x="689.0" y="805" width="0.8" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="692.00" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (1,104 samples, 0.14%)</title><rect x="1566.8" y="253" width="6.9" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="1569.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::freeData (1,546 samples, 0.20%)</title><rect x="4694.2" y="349" width="9.7" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="4697.24" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (262 samples, 0.03%)</title><rect x="4600.7" y="301" width="1.6" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4603.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::putChar (118 samples, 0.02%)</title><rect x="236.0" y="1045" width="0.8" height="23.0" fill="rgb(232,164,30)" rx="2" ry="2" />
<text text-anchor="" x="239.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KTextEditor::Attribute>::operator! (37 samples, 0.00%)</title><rect x="549.2" y="1045" width="0.2" height="23.0" fill="rgb(243,206,42)" rx="2" ry="2" />
<text text-anchor="" x="552.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faf3b (31 samples, 0.00%)</title><rect x="2221.4" y="109" width="0.2" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="2224.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (112 samples, 0.01%)</title><rect x="2342.4" y="301" width="0.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2345.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (122 samples, 0.02%)</title><rect x="2051.6" y="277" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2054.64" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::qt_static_metacall (1,063 samples, 0.14%)</title><rect x="692.5" y="637" width="6.7" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="695.51" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isEmpty (74 samples, 0.01%)</title><rect x="433.2" y="1045" width="0.4" height="23.0" fill="rgb(243,138,42)" rx="2" ry="2" />
<text text-anchor="" x="436.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (28 samples, 0.00%)</title><rect x="541.7" y="1045" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="544.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (334 samples, 0.04%)</title><rect x="4194.2" y="277" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4197.21" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (17 samples, 0.00%)</title><rect x="449.6" y="1045" width="0.1" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="452.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (817 samples, 0.11%)</title><rect x="2463.9" y="277" width="5.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2466.88" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (65 samples, 0.01%)</title><rect x="652.8" y="1069" width="0.4" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="655.80" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::sharedNull (36 samples, 0.00%)</title><rect x="4631.9" y="349" width="0.2" height="23.0" fill="rgb(224,183,21)" rx="2" ry="2" />
<text text-anchor="" x="4634.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (267 samples, 0.04%)</title><rect x="2383.0" y="157" width="1.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2386.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (65 samples, 0.01%)</title><rect x="742.5" y="349" width="0.4" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="745.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line@plt (18 samples, 0.00%)</title><rect x="876.7" y="325" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="879.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (227 samples, 0.03%)</title><rect x="2496.5" y="349" width="1.5" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="2499.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (29 samples, 0.00%)</title><rect x="4531.7" y="277" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4534.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (1,143 samples, 0.15%)</title><rect x="3727.2" y="181" width="7.2" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="3730.24" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (321 samples, 0.04%)</title><rect x="1714.0" y="133" width="2.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1716.95" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::isEmpty (92 samples, 0.01%)</title><rect x="3940.7" y="253" width="0.5" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="3943.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7310403e (193 samples, 0.03%)</title><rect x="2151.3" y="157" width="1.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="2154.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (136 samples, 0.02%)</title><rect x="2497.1" y="325" width="0.9" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="2500.10" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (24 samples, 0.00%)</title><rect x="693.0" y="541" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (97 samples, 0.01%)</title><rect x="4424.6" y="205" width="0.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4427.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (59 samples, 0.01%)</title><rect x="637.9" y="901" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (178 samples, 0.02%)</title><rect x="934.8" y="373" width="1.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="937.80" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCharRef::operator (91 samples, 0.01%)</title><rect x="695.4" y="589" width="0.6" height="23.0" fill="rgb(241,191,39)" rx="2" ry="2" />
<text text-anchor="" x="698.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (41 samples, 0.01%)</title><rect x="886.5" y="373" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="889.51" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (28 samples, 0.00%)</title><rect x="637.7" y="853" width="0.2" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b437 (138 samples, 0.02%)</title><rect x="526.6" y="1069" width="0.8" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="529.55" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (21 samples, 0.00%)</title><rect x="700.7" y="589" width="0.2" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="703.75" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (207 samples, 0.03%)</title><rect x="4782.1" y="397" width="1.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (27 samples, 0.00%)</title><rect x="584.7" y="1045" width="0.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="587.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3f995757 (25 samples, 0.00%)</title><rect x="89.5" y="1069" width="0.1" height="23.0" fill="rgb(231,99,29)" rx="2" ry="2" />
<text text-anchor="" x="92.49" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (1,098 samples, 0.14%)</title><rect x="962.8" y="397" width="6.9" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="965.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736f4455 (27 samples, 0.00%)</title><rect x="696.6" y="493" width="0.1" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="699.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::methodOffset (466 samples, 0.06%)</title><rect x="2311.7" y="253" width="2.9" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="2314.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (219 samples, 0.03%)</title><rect x="608.8" y="613" width="1.4" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="611.82" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (3,629 samples, 0.48%)</title><rect x="3846.0" y="253" width="22.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3848.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (309 samples, 0.04%)</title><rect x="2993.5" y="277" width="1.9" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="2996.51" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (45 samples, 0.01%)</title><rect x="3721.5" y="205" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="3724.48" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb652b2ff (142 samples, 0.02%)</title><rect x="600.9" y="1069" width="0.8" height="23.0" fill="rgb(246,109,46)" rx="2" ry="2" />
<text text-anchor="" x="603.86" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (78 samples, 0.01%)</title><rect x="364.4" y="1045" width="0.5" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="367.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RepositoryPrivate::loadSyntaxFolder (37 samples, 0.00%)</title><rect x="668.2" y="829" width="0.3" height="23.0" fill="rgb(243,156,41)" rx="2" ry="2" />
<text text-anchor="" x="671.22" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (16 samples, 0.00%)</title><rect x="586.1" y="1045" width="0.1" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="589.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (30 samples, 0.00%)</title><rect x="456.0" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="458.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_update_slotinfo (158 samples, 0.02%)</title><rect x="2241.9" y="61" width="1.0" height="23.0" fill="rgb(248,184,47)" rx="2" ry="2" />
<text text-anchor="" x="2244.91" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f00b652b3f7 (146 samples, 0.02%)</title><rect x="105.3" y="1069" width="0.9" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="108.32" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (1,572 samples, 0.21%)</title><rect x="4208.8" y="349" width="9.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4211.81" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (23 samples, 0.00%)</title><rect x="2311.4" y="205" width="0.1" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="2314.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (34 samples, 0.00%)</title><rect x="701.1" y="637" width="0.2" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move_a<true, (16 samples, 0.00%)</title><rect x="82.0" y="1021" width="0.1" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="85.03" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (22 samples, 0.00%)</title><rect x="526.1" y="1045" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="529.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b18f (924 samples, 0.12%)</title><rect x="291.1" y="1069" width="5.8" height="23.0" fill="rgb(249,92,49)" rx="2" ry="2" />
<text text-anchor="" x="294.12" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,893 samples, 0.25%)</title><rect x="4367.1" y="277" width="11.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4370.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::columnWidth (519 samples, 0.07%)</title><rect x="516.6" y="1045" width="3.2" height="23.0" fill="rgb(238,138,37)" rx="2" ry="2" />
<text text-anchor="" x="519.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (55 samples, 0.01%)</title><rect x="652.9" y="1021" width="0.3" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (29 samples, 0.00%)</title><rect x="4017.7" y="229" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4020.68" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::removeText (139,016 samples, 18.24%)</title><rect x="2965.4" y="325" width="871.7" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2968.43" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBuffer::removeText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b105d4 (643,982 samples, 84.47%)</title><rect x="743.3" y="781" width="4037.8" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="746.25" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1f73b105d4</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b25f (261 samples, 0.03%)</title><rect x="361.8" y="1069" width="1.6" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="364.80" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLayout::draw (109 samples, 0.01%)</title><rect x="653.8" y="781" width="0.7" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="656.78" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (41 samples, 0.01%)</title><rect x="638.7" y="949" width="0.2" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (556 samples, 0.07%)</title><rect x="2995.4" y="301" width="3.5" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="2998.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (87 samples, 0.01%)</title><rect x="978.1" y="397" width="0.5" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="981.06" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (20 samples, 0.00%)</title><rect x="501.5" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="504.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (25 samples, 0.00%)</title><rect x="539.6" y="1045" width="0.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="542.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::replace (532,664 samples, 69.87%)</title><rect x="999.6" y="421" width="3339.9" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="1002.65" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateMatch::replace</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (654 samples, 0.09%)</title><rect x="804.4" y="181" width="4.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="807.44" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103fe3 (33 samples, 0.00%)</title><rect x="605.2" y="1045" width="0.2" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="608.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (145 samples, 0.02%)</title><rect x="4193.3" y="277" width="0.9" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4196.30" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (17 samples, 0.00%)</title><rect x="491.9" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="494.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::isNull (19 samples, 0.00%)</title><rect x="454.4" y="1045" width="0.2" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="457.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (444 samples, 0.06%)</title><rect x="4583.0" y="277" width="2.8" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4585.97" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (18 samples, 0.00%)</title><rect x="511.2" y="1045" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="514.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,910 samples, 0.25%)</title><rect x="2572.6" y="253" width="11.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2575.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fcc59 (260 samples, 0.03%)</title><rect x="699.3" y="829" width="1.7" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed4c5 (60 samples, 0.01%)</title><rect x="3622.8" y="157" width="0.4" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="3625.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (145 samples, 0.02%)</title><rect x="2435.3" y="229" width="0.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2438.33" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (63 samples, 0.01%)</title><rect x="2111.4" y="133" width="0.4" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="2114.39" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity (9,988 samples, 1.31%)</title><rect x="1727.3" y="277" width="62.6" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="1730.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (48 samples, 0.01%)</title><rect x="527.5" y="1045" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="530.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLoader::readLine (3,203 samples, 0.42%)</title><rect x="669.7" y="829" width="20.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="672.73" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (42 samples, 0.01%)</title><rect x="4469.4" y="349" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4472.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (237 samples, 0.03%)</title><rect x="680.6" y="781" width="1.5" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="683.61" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (26 samples, 0.00%)</title><rect x="410.7" y="1045" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="413.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf70 (241 samples, 0.03%)</title><rect x="4501.9" y="325" width="1.6" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="4504.95" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSet<Kate::TextRange*> (16 samples, 0.00%)</title><rect x="4098.5" y="301" width="0.1" height="23.0" fill="rgb(238,160,36)" rx="2" ry="2" />
<text text-anchor="" x="4101.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::append (1,268 samples, 0.17%)</title><rect x="3941.3" y="253" width="7.9" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="3944.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (444 samples, 0.06%)</title><rect x="4109.1" y="325" width="2.8" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="4112.09" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (117 samples, 0.02%)</title><rect x="661.6" y="565" width="0.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (28 samples, 0.00%)</title><rect x="637.7" y="613" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite (381 samples, 0.05%)</title><rect x="2520.8" y="349" width="2.4" height="23.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="2523.81" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (38 samples, 0.00%)</title><rect x="4425.2" y="277" width="0.2" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4428.21" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (388 samples, 0.05%)</title><rect x="2471.6" y="253" width="2.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2474.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoGroup::addItem (21 samples, 0.00%)</title><rect x="2395.2" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2398.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (33 samples, 0.00%)</title><rect x="312.1" y="1045" width="0.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="315.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (22 samples, 0.00%)</title><rect x="886.8" y="397" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="889.77" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (17 samples, 0.00%)</title><rect x="105.9" y="1045" width="0.1" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="108.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_get_addr (23 samples, 0.00%)</title><rect x="4789.6" y="1069" width="0.1" height="23.0" fill="rgb(244,150,43)" rx="2" ry="2" />
<text text-anchor="" x="4792.56" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancelList (18 samples, 0.00%)</title><rect x="627.7" y="685" width="0.1" height="23.0" fill="rgb(232,173,30)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (18 samples, 0.00%)</title><rect x="498.2" y="1045" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="501.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f737424af (77 samples, 0.01%)</title><rect x="112.2" y="1069" width="0.5" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="115.21" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (210 samples, 0.03%)</title><rect x="1015.5" y="349" width="1.3" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="1018.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed671 (979 samples, 0.13%)</title><rect x="2100.7" y="157" width="6.1" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="2103.66" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (364 samples, 0.05%)</title><rect x="4451.6" y="277" width="2.3" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4454.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (996 samples, 0.13%)</title><rect x="2112.5" y="109" width="6.3" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="2115.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb (546 samples, 0.07%)</title><rect x="602.3" y="1069" width="3.4" height="23.0" fill="rgb(230,109,27)" rx="2" ry="2" />
<text text-anchor="" x="605.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::rangesForLine (103 samples, 0.01%)</title><rect x="693.8" y="565" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.82" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::startTimer (232 samples, 0.03%)</title><rect x="72.6" y="1045" width="1.4" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="75.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (16 samples, 0.00%)</title><rect x="4260.0" y="205" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4263.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (16 samples, 0.00%)</title><rect x="4279.1" y="253" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4282.09" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2711b652b37f (179 samples, 0.02%)</title><rect x="29.5" y="1069" width="1.1" height="23.0" fill="rgb(249,109,48)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (331 samples, 0.04%)</title><rect x="788.1" y="349" width="2.1" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="791.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (275 samples, 0.04%)</title><rect x="3991.3" y="325" width="1.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3994.29" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (6,605 samples, 0.87%)</title><rect x="701.0" y="829" width="41.4" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="703.97" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::MatchHighlighter::qt_metacall (19 samples, 0.00%)</title><rect x="575.6" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="578.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (24 samples, 0.00%)</title><rect x="742.7" y="133" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (50 samples, 0.01%)</title><rect x="637.3" y="877" width="0.3" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (466 samples, 0.06%)</title><rect x="4654.9" y="277" width="2.9" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4657.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (3,438 samples, 0.45%)</title><rect x="743.7" y="469" width="21.6" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (69 samples, 0.01%)</title><rect x="306.4" y="1045" width="0.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="309.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (178 samples, 0.02%)</title><rect x="1731.7" y="229" width="1.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1734.66" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (17 samples, 0.00%)</title><rect x="2362.8" y="109" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2365.77" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::insert (2,800 samples, 0.37%)</title><rect x="1900.5" y="277" width="17.5" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="1903.49" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (509 samples, 0.07%)</title><rect x="3853.6" y="85" width="3.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3856.58" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (25 samples, 0.00%)</title><rect x="30.7" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (58 samples, 0.01%)</title><rect x="1081.3" y="157" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="1084.35" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (16 samples, 0.00%)</title><rect x="261.7" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="264.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (315 samples, 0.04%)</title><rect x="304.4" y="1045" width="1.9" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="307.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (18 samples, 0.00%)</title><rect x="467.4" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (39 samples, 0.01%)</title><rect x="159.4" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="162.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (762 samples, 0.10%)</title><rect x="4003.7" y="301" width="4.8" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4006.68" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::updateConfig (67 samples, 0.01%)</title><rect x="764.9" y="325" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QTypedArrayData<KTextEditor::Range>*&> (132 samples, 0.02%)</title><rect x="4692.0" y="301" width="0.9" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="4695.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (80 samples, 0.01%)</title><rect x="742.5" y="565" width="0.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (25 samples, 0.00%)</title><rect x="4537.7" y="229" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4540.69" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (26 samples, 0.00%)</title><rect x="59.7" y="1021" width="0.2" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="62.73" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (461 samples, 0.06%)</title><rect x="4173.5" y="349" width="2.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4176.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (1,505 samples, 0.20%)</title><rect x="3227.8" y="229" width="9.4" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="3230.80" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (2,189 samples, 0.29%)</title><rect x="1795.4" y="277" width="13.7" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="1798.40" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::global (390 samples, 0.05%)</title><rect x="470.9" y="1045" width="2.5" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="473.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (143 samples, 0.02%)</title><rect x="3864.7" y="157" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3867.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (70 samples, 0.01%)</title><rect x="4520.8" y="253" width="0.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4523.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (752 samples, 0.10%)</title><rect x="2358.2" y="133" width="4.7" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2361.16" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (19 samples, 0.00%)</title><rect x="4672.3" y="253" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4675.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="335.7" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="338.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (336 samples, 0.04%)</title><rect x="4014.2" y="253" width="2.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4017.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::isActive (231 samples, 0.03%)</title><rect x="66.9" y="1045" width="1.5" height="23.0" fill="rgb(238,161,36)" rx="2" ry="2" />
<text text-anchor="" x="69.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (19 samples, 0.00%)</title><rect x="3666.4" y="205" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3669.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMapLessThanKey<QChar> (152 samples, 0.02%)</title><rect x="124.0" y="1045" width="1.0" height="23.0" fill="rgb(246,202,45)" rx="2" ry="2" />
<text text-anchor="" x="127.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (424 samples, 0.06%)</title><rect x="2471.5" y="277" width="2.6" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2474.49" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::feedback (187 samples, 0.02%)</title><rect x="377.3" y="1045" width="1.1" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="380.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (245 samples, 0.03%)</title><rect x="1083.1" y="253" width="1.5" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="1086.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7062d8be (42 samples, 0.01%)</title><rect x="691.7" y="733" width="0.3" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (185 samples, 0.02%)</title><rect x="4536.7" y="277" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4539.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (23 samples, 0.00%)</title><rect x="695.3" y="589" width="0.1" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="698.29" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b63f (1,117 samples, 0.15%)</title><rect x="577.0" y="1069" width="7.0" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="579.98" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af3f (162 samples, 0.02%)</title><rect x="121.2" y="1069" width="1.0" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="124.18" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (111 samples, 0.01%)</title><rect x="4668.2" y="277" width="0.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4671.24" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (325 samples, 0.04%)</title><rect x="4519.2" y="277" width="2.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4522.17" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (17 samples, 0.00%)</title><rect x="627.7" y="565" width="0.1" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (214 samples, 0.03%)</title><rect x="3614.2" y="205" width="1.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="3617.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (264 samples, 0.03%)</title><rect x="4579.8" y="229" width="1.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4582.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (168 samples, 0.02%)</title><rect x="4165.3" y="349" width="1.0" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="4168.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (150 samples, 0.02%)</title><rect x="4700.0" y="301" width="0.9" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4703.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (21 samples, 0.00%)</title><rect x="526.7" y="1045" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="529.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::load (3,272 samples, 0.43%)</title><rect x="744.0" y="349" width="20.5" height="23.0" fill="rgb(243,118,41)" rx="2" ry="2" />
<text text-anchor="" x="746.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (148 samples, 0.02%)</title><rect x="629.7" y="541" width="0.9" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="632.65" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (40 samples, 0.01%)</title><rect x="1739.9" y="229" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1742.90" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (48 samples, 0.01%)</title><rect x="319.4" y="1045" width="0.3" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="322.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendThroughObjectEventFilters (23 samples, 0.00%)</title><rect x="743.6" y="637" width="0.1" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="746.55" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uninitialized_move_if_noexcept_a<Kate::TextRange**, (33 samples, 0.00%)</title><rect x="269.6" y="1045" width="0.2" height="23.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text text-anchor="" x="272.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (184 samples, 0.02%)</title><rect x="1778.7" y="205" width="1.2" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="1781.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (137 samples, 0.02%)</title><rect x="4442.1" y="301" width="0.9" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4445.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator-- (19 samples, 0.00%)</title><rect x="3952.4" y="253" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="3955.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (963 samples, 0.13%)</title><rect x="2982.3" y="253" width="6.1" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="2985.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QTypedArrayData<KTextEditor::Range>*> (221 samples, 0.03%)</title><rect x="542.3" y="1045" width="1.4" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="545.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af8f (1,149 samples, 0.15%)</title><rect x="133.1" y="1069" width="7.2" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="136.11" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1d9f0 (251 samples, 0.03%)</title><rect x="2551.2" y="325" width="1.6" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="2554.21" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::kateTextLine (5,473 samples, 0.72%)</title><rect x="1050.9" y="325" width="34.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1053.91" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KT..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (78 samples, 0.01%)</title><rect x="866.8" y="229" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="869.78" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (113 samples, 0.01%)</title><rect x="4531.8" y="277" width="0.7" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="4534.84" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f7da70 (421 samples, 0.06%)</title><rect x="3369.2" y="253" width="2.7" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="3372.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<int, (130 samples, 0.02%)</title><rect x="170.3" y="1045" width="0.9" height="23.0" fill="rgb(240,183,38)" rx="2" ry="2" />
<text text-anchor="" x="173.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (108 samples, 0.01%)</title><rect x="645.1" y="1069" width="0.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="648.14" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73104189 (18 samples, 0.00%)</title><rect x="2156.3" y="157" width="0.2" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="2159.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fad40 (23 samples, 0.00%)</title><rect x="2215.0" y="109" width="0.1" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="2218.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (892 samples, 0.12%)</title><rect x="2508.8" y="349" width="5.6" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2511.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (26 samples, 0.00%)</title><rect x="2369.2" y="181" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2372.23" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (36 samples, 0.00%)</title><rect x="498.0" y="1045" width="0.2" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="500.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::isEmpty (1,554 samples, 0.20%)</title><rect x="981.5" y="421" width="9.8" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="984.53" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (50 samples, 0.01%)</title><rect x="637.3" y="997" width="0.3" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (26 samples, 0.00%)</title><rect x="191.6" y="1045" width="0.1" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="194.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (204 samples, 0.03%)</title><rect x="2189.0" y="205" width="1.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2192.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfb23c1 (19 samples, 0.00%)</title><rect x="256.9" y="1045" width="0.1" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="259.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (40 samples, 0.01%)</title><rect x="3792.9" y="205" width="0.3" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3795.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f00b652b3df (120 samples, 0.02%)</title><rect x="104.6" y="1069" width="0.7" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="107.57" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b29f (570 samples, 0.07%)</title><rect x="411.5" y="1069" width="3.5" height="23.0" fill="rgb(247,92,47)" rx="2" ry="2" />
<text text-anchor="" x="414.45" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (286 samples, 0.04%)</title><rect x="2426.8" y="181" width="1.8" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="2429.76" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::unlock (1,088 samples, 0.14%)</title><rect x="2638.2" y="277" width="6.8" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="2641.15" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::setLineLengthLimit (67 samples, 0.01%)</title><rect x="764.9" y="397" width="0.4" height="23.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidget::event (28 samples, 0.00%)</title><rect x="740.2" y="277" width="0.1" height="23.0" fill="rgb(241,173,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (54 samples, 0.01%)</title><rect x="637.9" y="613" width="0.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.90" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (22 samples, 0.00%)</title><rect x="653.1" y="853" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::documentTextRemoved (68 samples, 0.01%)</title><rect x="626.3" y="1069" width="0.5" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="629.34" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (1,737 samples, 0.23%)</title><rect x="4443.0" y="349" width="10.9" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4446.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (213 samples, 0.03%)</title><rect x="3223.2" y="205" width="1.3" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3226.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::KatePlainTextSearch (210 samples, 0.03%)</title><rect x="554.9" y="1045" width="1.3" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="557.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (1,034 samples, 0.14%)</title><rect x="4039.8" y="373" width="6.5" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4042.77" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (392 samples, 0.05%)</title><rect x="4049.9" y="349" width="2.5" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="4052.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (382 samples, 0.05%)</title><rect x="874.1" y="301" width="2.4" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="877.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (25 samples, 0.00%)</title><rect x="2463.7" y="277" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2466.72" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (51 samples, 0.01%)</title><rect x="312.8" y="1045" width="0.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="315.84" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fc8f1 (190 samples, 0.02%)</title><rect x="2222.7" y="85" width="1.2" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="2225.72" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23fb0f (98 samples, 0.01%)</title><rect x="63.0" y="1069" width="0.6" height="23.0" fill="rgb(245,99,44)" rx="2" ry="2" />
<text text-anchor="" x="66.02" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afff (535 samples, 0.07%)</title><rect x="169.5" y="1069" width="3.4" height="23.0" fill="rgb(244,92,42)" rx="2" ry="2" />
<text text-anchor="" x="172.51" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (93 samples, 0.01%)</title><rect x="4027.1" y="325" width="0.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4030.12" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (25 samples, 0.00%)</title><rect x="171.9" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="174.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f735478f0 (52 samples, 0.01%)</title><rect x="668.6" y="829" width="0.4" height="23.0" fill="rgb(232,92,29)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (4,336 samples, 0.57%)</title><rect x="1058.0" y="301" width="27.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1061.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (159 samples, 0.02%)</title><rect x="468.2" y="1045" width="1.0" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="471.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (52 samples, 0.01%)</title><rect x="2993.2" y="277" width="0.3" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="2996.18" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (83 samples, 0.01%)</title><rect x="387.8" y="1045" width="0.5" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="390.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb233 (53 samples, 0.01%)</title><rect x="2236.3" y="133" width="0.3" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="2239.28" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (18 samples, 0.00%)</title><rect x="348.5" y="1045" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="351.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QTypedArrayData<KTextEditor::Range>*> (16 samples, 0.00%)</title><rect x="553.3" y="1045" width="0.1" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="556.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed573 (25 samples, 0.00%)</title><rect x="2100.4" y="157" width="0.2" height="23.0" fill="rgb(249,92,49)" rx="2" ry="2" />
<text text-anchor="" x="2103.41" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (17 samples, 0.00%)</title><rect x="2094.2" y="133" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2097.17" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (18 samples, 0.00%)</title><rect x="260.5" y="1045" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="263.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (27 samples, 0.00%)</title><rect x="1780.4" y="229" width="0.1" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="1783.35" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<bool (17 samples, 0.00%)</title><rect x="168.1" y="1045" width="0.1" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="171.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (51 samples, 0.01%)</title><rect x="3863.8" y="181" width="0.4" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="3866.84" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (407 samples, 0.05%)</title><rect x="628.1" y="901" width="2.5" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::~DocumentPrivate (6,086 samples, 0.80%)</title><rect x="701.3" y="565" width="38.1" height="23.0" fill="rgb(245,138,45)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (67 samples, 0.01%)</title><rect x="388.3" y="1045" width="0.4" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (27 samples, 0.00%)</title><rect x="693.0" y="565" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="695.99" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (17 samples, 0.00%)</title><rect x="4717.2" y="301" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4720.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b05b (31 samples, 0.00%)</title><rect x="191.5" y="1069" width="0.2" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="194.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::atEndOfDocument (17,486 samples, 2.29%)</title><rect x="777.9" y="421" width="109.7" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="780.94" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (50 samples, 0.01%)</title><rect x="63.8" y="1045" width="0.4" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="66.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (28 samples, 0.00%)</title><rect x="637.7" y="757" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (185 samples, 0.02%)</title><rect x="2502.3" y="325" width="1.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="2505.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (33 samples, 0.00%)</title><rect x="637.7" y="1069" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.66" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::end (197 samples, 0.03%)</title><rect x="3956.9" y="205" width="1.3" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="3959.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7120caac (16 samples, 0.00%)</title><rect x="669.0" y="781" width="0.1" height="23.0" fill="rgb(228,92,26)" rx="2" ry="2" />
<text text-anchor="" x="672.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextInserted (18,039 samples, 2.37%)</title><rect x="2346.2" y="325" width="113.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2349.19" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateUndoManag..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (40 samples, 0.01%)</title><rect x="4252.4" y="253" width="0.2" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4255.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::get<0ul, (32 samples, 0.00%)</title><rect x="537.2" y="1045" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="540.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (20 samples, 0.00%)</title><rect x="294.2" y="1045" width="0.1" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="297.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7 (125 samples, 0.02%)</title><rect x="100.1" y="1069" width="0.8" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="103.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (41 samples, 0.01%)</title><rect x="268.7" y="1045" width="0.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="271.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy<Kate::TextRange**, (25 samples, 0.00%)</title><rect x="1955.6" y="277" width="0.1" height="23.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text text-anchor="" x="1958.56" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (17 samples, 0.00%)</title><rect x="627.7" y="493" width="0.1" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (16 samples, 0.00%)</title><rect x="442.7" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="445.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="4232.4" y="253" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4235.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (28 samples, 0.00%)</title><rect x="3575.1" y="277" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="3578.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23facf (1,079 samples, 0.14%)</title><rect x="53.1" y="1069" width="6.8" height="23.0" fill="rgb(250,99,50)" rx="2" ry="2" />
<text text-anchor="" x="56.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (119 samples, 0.02%)</title><rect x="2341.2" y="253" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2344.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTemplateHandler::qt_metacall (16 samples, 0.00%)</title><rect x="82.0" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="85.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (89 samples, 0.01%)</title><rect x="3574.4" y="205" width="0.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3577.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (79 samples, 0.01%)</title><rect x="142.0" y="1045" width="0.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="144.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::applyMainWindowSettings (254 samples, 0.03%)</title><rect x="666.1" y="949" width="1.6" height="23.0" fill="rgb(240,186,39)" rx="2" ry="2" />
<text text-anchor="" x="669.08" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (1,384 samples, 0.18%)</title><rect x="3803.0" y="253" width="8.7" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="3805.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator= (191 samples, 0.03%)</title><rect x="570.6" y="1045" width="1.2" height="23.0" fill="rgb(246,160,45)" rx="2" ry="2" />
<text text-anchor="" x="573.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (28 samples, 0.00%)</title><rect x="128.1" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="131.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (118 samples, 0.02%)</title><rect x="661.6" y="925" width="0.7" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (282 samples, 0.04%)</title><rect x="4311.4" y="325" width="1.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4314.37" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72ede170 (449 samples, 0.06%)</title><rect x="4480.1" y="325" width="2.8" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="4483.09" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (37 samples, 0.00%)</title><rect x="592.3" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="595.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (313 samples, 0.04%)</title><rect x="739.6" y="613" width="2.0" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="742.59" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markedAsModified (203 samples, 0.03%)</title><rect x="2374.4" y="277" width="1.2" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="2377.36" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (108 samples, 0.01%)</title><rect x="1564.2" y="301" width="0.6" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1567.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (19 samples, 0.00%)</title><rect x="2445.5" y="229" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2448.45" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (922 samples, 0.12%)</title><rect x="3885.0" y="253" width="5.8" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3888.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward<QSet<Kate::TextCursor*>&> (44 samples, 0.01%)</title><rect x="1951.7" y="253" width="0.3" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="1954.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::clear (2,832 samples, 0.37%)</title><rect x="3960.9" y="277" width="17.8" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="3963.94" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (492 samples, 0.06%)</title><rect x="809.1" y="277" width="3.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="812.09" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (18 samples, 0.00%)</title><rect x="3224.5" y="205" width="0.2" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3227.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLineLayoutMap::slotEditDone (11,316 samples, 1.48%)</title><rect x="3722.0" y="205" width="70.9" height="23.0" fill="rgb(251,118,50)" rx="2" ry="2" />
<text text-anchor="" x="3725.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLine..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isSharable (32 samples, 0.00%)</title><rect x="4672.6" y="349" width="0.2" height="23.0" fill="rgb(241,166,40)" rx="2" ry="2" />
<text text-anchor="" x="4675.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (21 samples, 0.00%)</title><rect x="442.1" y="1045" width="0.1" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="445.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uninitialized_copy<true>::__uninit_copy<std::move_iterator<Kate::TextRange**>, (26 samples, 0.00%)</title><rect x="191.4" y="1045" width="0.1" height="23.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text text-anchor="" x="194.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (216 samples, 0.03%)</title><rect x="4782.1" y="901" width="1.3" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::textInserted (39 samples, 0.01%)</title><rect x="477.4" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="480.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::Marks::setLastChange (42 samples, 0.01%)</title><rect x="259.6" y="1045" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="262.59" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__iterator_category<QPair<int, (33 samples, 0.00%)</title><rect x="139.9" y="1045" width="0.2" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="142.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (385 samples, 0.05%)</title><rect x="4091.7" y="301" width="2.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4094.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (45 samples, 0.01%)</title><rect x="224.9" y="1045" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="227.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (40 samples, 0.01%)</title><rect x="638.7" y="637" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a9e5 (25 samples, 0.00%)</title><rect x="4508.0" y="301" width="0.1" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="4510.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markedAsModified (271 samples, 0.04%)</title><rect x="3869.3" y="277" width="1.7" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="3872.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (179 samples, 0.02%)</title><rect x="1719.7" y="181" width="1.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1722.68" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markAsModified (295 samples, 0.04%)</title><rect x="3170.3" y="277" width="1.8" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="3173.28" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (160 samples, 0.02%)</title><rect x="654.7" y="1021" width="1.0" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (144 samples, 0.02%)</title><rect x="4085.7" y="325" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4088.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (970 samples, 0.13%)</title><rect x="3078.0" y="277" width="6.1" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="3081.02" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::operator= (72 samples, 0.01%)</title><rect x="249.9" y="1045" width="0.4" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="252.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (27 samples, 0.00%)</title><rect x="4314.2" y="301" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4317.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::size (82 samples, 0.01%)</title><rect x="3168.8" y="229" width="0.5" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="3171.78" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b03f (168 samples, 0.02%)</title><rect x="182.4" y="1069" width="1.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="185.43" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (53 samples, 0.01%)</title><rect x="646.5" y="1069" width="0.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="649.52" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (32 samples, 0.00%)</title><rect x="3362.9" y="229" width="0.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3365.92" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (33 samples, 0.00%)</title><rect x="1069.0" y="157" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1071.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (18 samples, 0.00%)</title><rect x="494.6" y="1045" width="0.2" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="497.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d9bbac7 (25 samples, 0.00%)</title><rect x="83.4" y="1069" width="0.1" height="23.0" fill="rgb(245,99,44)" rx="2" ry="2" />
<text text-anchor="" x="86.37" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faf38 (21 samples, 0.00%)</title><rect x="2221.3" y="109" width="0.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="2224.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (21 samples, 0.00%)</title><rect x="1719.1" y="181" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="1722.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (25 samples, 0.00%)</title><rect x="453.7" y="1045" width="0.2" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="456.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (164 samples, 0.02%)</title><rect x="967.5" y="373" width="1.0" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="970.45" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::QSharedPointer (36 samples, 0.00%)</title><rect x="227.8" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="230.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (125 samples, 0.02%)</title><rect x="653.7" y="805" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (78 samples, 0.01%)</title><rect x="937.6" y="349" width="0.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="940.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b28f (239 samples, 0.03%)</title><rect x="409.8" y="1069" width="1.5" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="412.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (18 samples, 0.00%)</title><rect x="627.7" y="829" width="0.1" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (293 samples, 0.04%)</title><rect x="4048.1" y="301" width="1.8" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4051.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (137 samples, 0.02%)</title><rect x="4670.0" y="277" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4673.01" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::replace (20 samples, 0.00%)</title><rect x="743.1" y="589" width="0.1" height="23.0" fill="rgb(252,138,52)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (288 samples, 0.04%)</title><rect x="4014.4" y="229" width="1.8" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4017.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3f (46 samples, 0.01%)</title><rect x="36.6" y="1069" width="0.3" height="23.0" fill="rgb(243,105,42)" rx="2" ry="2" />
<text text-anchor="" x="39.59" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (237 samples, 0.03%)</title><rect x="1782.1" y="181" width="1.5" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1785.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (682 samples, 0.09%)</title><rect x="4371.9" y="181" width="4.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4374.91" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (453 samples, 0.06%)</title><rect x="4676.8" y="349" width="2.8" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4679.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (116 samples, 0.02%)</title><rect x="661.6" y="397" width="0.7" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="664.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (1,298 samples, 0.17%)</title><rect x="1565.5" y="277" width="8.2" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="1568.55" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListSpecialMethods<KateUndoGroup*>::~QListSpecialMethods (19 samples, 0.00%)</title><rect x="2445.6" y="229" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="2448.57" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8b0 (22 samples, 0.00%)</title><rect x="4506.4" y="301" width="0.1" height="23.0" fill="rgb(224,92,21)" rx="2" ry="2" />
<text text-anchor="" x="4509.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwapDiffCreator::qt_metacall (28 samples, 0.00%)</title><rect x="2138.3" y="85" width="0.2" height="23.0" fill="rgb(230,157,28)" rx="2" ry="2" />
<text text-anchor="" x="2141.32" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::close_helper (81 samples, 0.01%)</title><rect x="742.5" y="733" width="0.5" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (216 samples, 0.03%)</title><rect x="4782.1" y="805" width="1.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::destruct (69 samples, 0.01%)</title><rect x="4703.5" y="325" width="0.4" height="23.0" fill="rgb(238,160,36)" rx="2" ry="2" />
<text text-anchor="" x="4706.50" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (349 samples, 0.05%)</title><rect x="971.3" y="349" width="2.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="974.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (20 samples, 0.00%)</title><rect x="743.1" y="757" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (59 samples, 0.01%)</title><rect x="637.9" y="733" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::insertText (21 samples, 0.00%)</title><rect x="269.9" y="1045" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="272.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (406 samples, 0.05%)</title><rect x="2582.0" y="229" width="2.5" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="2585.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (117 samples, 0.02%)</title><rect x="661.6" y="589" width="0.7" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qDeleteAll<QList<KateUndoGroup*> (1,070 samples, 0.14%)</title><rect x="2447.8" y="277" width="6.7" height="23.0" fill="rgb(238,179,37)" rx="2" ry="2" />
<text text-anchor="" x="2450.83" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (138 samples, 0.02%)</title><rect x="879.6" y="325" width="0.9" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="882.61" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::Node::t (158 samples, 0.02%)</title><rect x="1722.4" y="181" width="1.0" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="1725.42" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Editor::instance (149 samples, 0.02%)</title><rect x="668.2" y="973" width="0.9" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="671.17" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (39 samples, 0.01%)</title><rect x="148.8" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="151.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctorCall<QtPrivate::IndexesList<0, (22 samples, 0.00%)</title><rect x="424.5" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="427.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (24 samples, 0.00%)</title><rect x="138.7" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="141.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd50 (127 samples, 0.02%)</title><rect x="444.5" y="1045" width="0.8" height="23.0" fill="rgb(228,92,25)" rx="2" ry="2" />
<text text-anchor="" x="447.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (240 samples, 0.03%)</title><rect x="653.2" y="1069" width="1.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.23" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (651 samples, 0.09%)</title><rect x="2390.8" y="205" width="4.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2393.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (17 samples, 0.00%)</title><rect x="319.7" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="322.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (259 samples, 0.03%)</title><rect x="699.3" y="661" width="1.7" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (50 samples, 0.01%)</title><rect x="637.3" y="829" width="0.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (324 samples, 0.04%)</title><rect x="608.2" y="805" width="2.0" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (17 samples, 0.00%)</title><rect x="562.9" y="1045" width="0.1" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="565.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::flush (20 samples, 0.00%)</title><rect x="3636.5" y="133" width="0.2" height="23.0" fill="rgb(236,172,34)" rx="2" ry="2" />
<text text-anchor="" x="3639.55" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (77 samples, 0.01%)</title><rect x="1124.9" y="253" width="0.5" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="1127.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<= (150 samples, 0.02%)</title><rect x="150.9" y="1045" width="0.9" height="23.0" fill="rgb(243,195,42)" rx="2" ry="2" />
<text text-anchor="" x="153.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (544 samples, 0.07%)</title><rect x="1013.4" y="373" width="3.4" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="1016.42" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="168.2" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="171.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move_iterator<Kate::TextRange**>::base (181 samples, 0.02%)</title><rect x="146.4" y="1045" width="1.1" height="23.0" fill="rgb(247,146,46)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity (10,433 samples, 1.37%)</title><rect x="3172.3" y="277" width="65.5" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="3175.34" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::T..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontEngine::getGlyphPositions (35 samples, 0.00%)</title><rect x="619.0" y="949" width="0.3" height="23.0" fill="rgb(244,192,43)" rx="2" ry="2" />
<text text-anchor="" x="622.05" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (240 samples, 0.03%)</title><rect x="4579.9" y="205" width="1.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4582.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (368 samples, 0.05%)</title><rect x="4014.1" y="277" width="2.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4017.08" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (656,339 samples, 86.09%)</title><rect x="666.1" y="1021" width="4115.3" height="23.0" fill="rgb(247,83,46)" rx="2" ry="2" />
<text text-anchor="" x="669.08" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (63 samples, 0.01%)</title><rect x="3793.3" y="205" width="0.4" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="3796.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (236 samples, 0.03%)</title><rect x="4258.6" y="205" width="1.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4261.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (24 samples, 0.00%)</title><rect x="701.1" y="469" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (46 samples, 0.01%)</title><rect x="334.6" y="1045" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="337.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (126 samples, 0.02%)</title><rect x="661.6" y="1069" width="0.8" height="23.0" fill="rgb(247,154,46)" rx="2" ry="2" />
<text text-anchor="" x="664.59" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::node_construct (98 samples, 0.01%)</title><rect x="2417.5" y="229" width="0.6" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="2420.53" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (26 samples, 0.00%)</title><rect x="324.5" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="327.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc097 (64 samples, 0.01%)</title><rect x="3686.8" y="157" width="0.4" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="3689.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::unregisterTimer (49 samples, 0.01%)</title><rect x="78.8" y="1045" width="0.3" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="81.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (215 samples, 0.03%)</title><rect x="4782.1" y="541" width="1.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (23 samples, 0.00%)</title><rect x="169.9" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="172.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb222 (19 samples, 0.00%)</title><rect x="98.1" y="1045" width="0.2" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="101.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (66 samples, 0.01%)</title><rect x="23.7" y="1045" width="0.4" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="26.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (19 samples, 0.00%)</title><rect x="283.6" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="286.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::insertText (41 samples, 0.01%)</title><rect x="273.4" y="1045" width="0.2" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="276.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::setVisible (17 samples, 0.00%)</title><rect x="669.2" y="781" width="0.1" height="23.0" fill="rgb(241,142,40)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (33 samples, 0.00%)</title><rect x="653.3" y="877" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.26" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (35 samples, 0.00%)</title><rect x="3427.7" y="277" width="0.3" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="3430.74" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3cfb171f (447 samples, 0.06%)</title><rect x="40.7" y="1069" width="2.8" height="23.0" fill="rgb(241,99,39)" rx="2" ry="2" />
<text text-anchor="" x="43.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::end (51 samples, 0.01%)</title><rect x="362.2" y="1045" width="0.4" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="365.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::qt_static_metacall (20 samples, 0.00%)</title><rect x="743.1" y="613" width="0.1" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (50 samples, 0.01%)</title><rect x="637.3" y="349" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (18 samples, 0.00%)</title><rect x="485.7" y="1045" width="0.1" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="488.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (146 samples, 0.02%)</title><rect x="4159.5" y="253" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4162.47" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (86 samples, 0.01%)</title><rect x="4031.2" y="325" width="0.5" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4034.20" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (266 samples, 0.03%)</title><rect x="4605.6" y="229" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4608.60" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (121 samples, 0.02%)</title><rect x="47.5" y="1045" width="0.7" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="50.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (326 samples, 0.04%)</title><rect x="4534.6" y="277" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4537.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (38 samples, 0.00%)</title><rect x="389.3" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="392.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (40 samples, 0.01%)</title><rect x="638.7" y="541" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8c5 (29 samples, 0.00%)</title><rect x="4507.3" y="301" width="0.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="4510.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (17 samples, 0.00%)</title><rect x="4034.9" y="373" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4037.89" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::event (35 samples, 0.00%)</title><rect x="630.7" y="1045" width="0.2" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b40f (1,815 samples, 0.24%)</title><rect x="499.0" y="1069" width="11.4" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="502.01" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::atEndOfDocument (18 samples, 0.00%)</title><rect x="577.0" y="1045" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="580.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (65 samples, 0.01%)</title><rect x="112.3" y="997" width="0.4" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="115.29" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (77 samples, 0.01%)</title><rect x="2541.2" y="277" width="0.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2544.18" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QList<KateUndoGroup*>&> (24 samples, 0.00%)</title><rect x="361.7" y="1045" width="0.1" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="364.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (43 samples, 0.01%)</title><rect x="740.1" y="421" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="743.09" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (40 samples, 0.01%)</title><rect x="638.7" y="733" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<int, (16 samples, 0.00%)</title><rect x="183.5" y="1045" width="0.1" height="23.0" fill="rgb(240,183,38)" rx="2" ry="2" />
<text text-anchor="" x="186.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::dealloc (229 samples, 0.03%)</title><rect x="457.6" y="1045" width="1.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="460.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a7d5 (19 samples, 0.00%)</title><rect x="4506.0" y="301" width="0.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="4508.97" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::init (119 samples, 0.02%)</title><rect x="691.2" y="949" width="0.8" height="23.0" fill="rgb(236,207,34)" rx="2" ry="2" />
<text text-anchor="" x="694.24" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (113 samples, 0.01%)</title><rect x="4181.9" y="325" width="0.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4184.92" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (49 samples, 0.01%)</title><rect x="2311.1" y="205" width="0.3" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="2314.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*>@plt (92 samples, 0.01%)</title><rect x="3970.9" y="181" width="0.6" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="3973.94" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (402 samples, 0.05%)</title><rect x="971.0" y="373" width="2.5" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="973.98" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (21 samples, 0.00%)</title><rect x="4431.0" y="277" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4434.01" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (78 samples, 0.01%)</title><rect x="4629.0" y="373" width="0.5" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4631.99" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<KTextEditor::MovingCursor*> (22 samples, 0.00%)</title><rect x="158.3" y="1045" width="0.2" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="161.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<= (61 samples, 0.01%)</title><rect x="169.1" y="1045" width="0.4" height="23.0" fill="rgb(243,195,42)" rx="2" ry="2" />
<text text-anchor="" x="172.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::updateView (17 samples, 0.00%)</title><rect x="669.2" y="469" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (148 samples, 0.02%)</title><rect x="4671.5" y="301" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4674.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (44 samples, 0.01%)</title><rect x="489.1" y="1045" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="492.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (22 samples, 0.00%)</title><rect x="551.9" y="1045" width="0.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="554.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (482 samples, 0.06%)</title><rect x="4508.2" y="325" width="3.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4511.25" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (608 samples, 0.08%)</title><rect x="4658.6" y="325" width="3.8" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4661.57" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::QSharedPointer (24 samples, 0.00%)</title><rect x="223.1" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="226.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (19 samples, 0.00%)</title><rect x="115.1" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="118.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (573 samples, 0.08%)</title><rect x="611.8" y="613" width="3.6" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="614.84" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,175 samples, 0.15%)</title><rect x="3849.7" y="181" width="7.4" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="3852.71" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (18 samples, 0.00%)</title><rect x="462.9" y="1045" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="465.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (24 samples, 0.00%)</title><rect x="328.7" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="331.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (3,362 samples, 0.44%)</title><rect x="3846.9" y="229" width="21.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3849.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::operator<< (42 samples, 0.01%)</title><rect x="499.6" y="1045" width="0.3" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="502.59" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeText (17 samples, 0.00%)</title><rect x="765.0" y="85" width="0.1" height="23.0" fill="rgb(230,170,27)" rx="2" ry="2" />
<text text-anchor="" x="767.97" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (24 samples, 0.00%)</title><rect x="3852.6" y="133" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3855.62" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::string (28 samples, 0.00%)</title><rect x="4364.9" y="325" width="0.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4367.91" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (20 samples, 0.00%)</title><rect x="105.1" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="108.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (50 samples, 0.01%)</title><rect x="637.3" y="661" width="0.3" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b22f (320 samples, 0.04%)</title><rect x="335.6" y="1069" width="2.0" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="338.61" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (20 samples, 0.00%)</title><rect x="765.0" y="109" width="0.1" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="767.95" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition@plt (92 samples, 0.01%)</title><rect x="935.9" y="373" width="0.6" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="938.91" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1,435 samples, 0.19%)</title><rect x="3372.9" y="253" width="9.0" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3375.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (24 samples, 0.00%)</title><rect x="599.8" y="1045" width="0.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="602.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::d_func (102 samples, 0.01%)</title><rect x="1045.3" y="301" width="0.7" height="23.0" fill="rgb(233,171,30)" rx="2" ry="2" />
<text text-anchor="" x="1048.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (381 samples, 0.05%)</title><rect x="2118.8" y="133" width="2.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2121.78" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::KateUndo (278 samples, 0.04%)</title><rect x="2378.3" y="253" width="1.7" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="2381.30" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::document (312 samples, 0.04%)</title><rect x="563.4" y="1045" width="2.0" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="566.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (52 samples, 0.01%)</title><rect x="237.9" y="1045" width="0.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="240.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::setColumn (53 samples, 0.01%)</title><rect x="239.9" y="1045" width="0.4" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="242.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (209 samples, 0.03%)</title><rect x="2094.5" y="133" width="1.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2097.54" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7316763f (28 samples, 0.00%)</title><rect x="110.3" y="1069" width="0.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="113.31" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (28 samples, 0.00%)</title><rect x="383.5" y="1045" width="0.2" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="386.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (410 samples, 0.05%)</title><rect x="628.1" y="997" width="2.5" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="631.07" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (410 samples, 0.05%)</title><rect x="628.1" y="973" width="2.5" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="631.07" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QTypedArrayData<KTextEditor::Range>*&> (53 samples, 0.01%)</title><rect x="538.8" y="1045" width="0.4" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="541.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (19 samples, 0.00%)</title><rect x="82.4" y="1045" width="0.1" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="85.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a803 (20 samples, 0.00%)</title><rect x="4506.3" y="301" width="0.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="4509.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qHash (34 samples, 0.00%)</title><rect x="178.3" y="1045" width="0.2" height="23.0" fill="rgb(241,172,40)" rx="2" ry="2" />
<text text-anchor="" x="181.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::operator<<@plt (22 samples, 0.00%)</title><rect x="4190.5" y="349" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4193.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawPoints (55 samples, 0.01%)</title><rect x="700.2" y="565" width="0.3" height="23.0" fill="rgb(238,203,36)" rx="2" ry="2" />
<text text-anchor="" x="703.20" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (832 samples, 0.11%)</title><rect x="2128.2" y="157" width="5.2" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="2131.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (28 samples, 0.00%)</title><rect x="984.9" y="373" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="987.85" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::fillRect (42 samples, 0.01%)</title><rect x="739.8" y="469" width="0.2" height="23.0" fill="rgb(241,193,39)" rx="2" ry="2" />
<text text-anchor="" x="742.77" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (333 samples, 0.04%)</title><rect x="4270.8" y="229" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4273.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (17 samples, 0.00%)</title><rect x="693.3" y="493" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="696.30" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4e7 (25 samples, 0.00%)</title><rect x="561.8" y="1069" width="0.2" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="564.83" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (28 samples, 0.00%)</title><rect x="1740.2" y="253" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1743.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (175 samples, 0.02%)</title><rect x="439.4" y="1045" width="1.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="442.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (84 samples, 0.01%)</title><rect x="30.1" y="1045" width="0.5" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="33.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (20 samples, 0.00%)</title><rect x="361.9" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="364.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (49 samples, 0.01%)</title><rect x="4469.0" y="349" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4471.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (33 samples, 0.00%)</title><rect x="4233.5" y="373" width="0.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4236.49" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (17 samples, 0.00%)</title><rect x="543.7" y="1045" width="0.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="546.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (10,576 samples, 1.39%)</title><rect x="1828.7" y="253" width="66.3" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1831.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHash<K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<KTextEditor::Range*, (83 samples, 0.01%)</title><rect x="193.3" y="1045" width="0.5" height="23.0" fill="rgb(234,183,32)" rx="2" ry="2" />
<text text-anchor="" x="196.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (73 samples, 0.01%)</title><rect x="4060.5" y="349" width="0.5" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="4063.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (30 samples, 0.00%)</title><rect x="654.5" y="901" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="657.54" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73acbed4 (18 samples, 0.00%)</title><rect x="114.7" y="1069" width="0.1" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="117.72" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,316 samples, 0.17%)</title><rect x="2584.7" y="253" width="8.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2587.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (276 samples, 0.04%)</title><rect x="4756.5" y="325" width="1.8" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4759.52" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateHighlighting::noHighlighting (207 samples, 0.03%)</title><rect x="1055.6" y="253" width="1.3" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="1058.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::unregisterTimer (2,000 samples, 0.26%)</title><rect x="3706.3" y="157" width="12.6" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="3709.31" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_get_addr (179 samples, 0.02%)</title><rect x="2241.8" y="85" width="1.1" height="23.0" fill="rgb(244,150,43)" rx="2" ry="2" />
<text text-anchor="" x="2244.78" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (24 samples, 0.00%)</title><rect x="103.3" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="106.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup (686 samples, 0.09%)</title><rect x="938.4" y="349" width="4.3" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="941.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (428 samples, 0.06%)</title><rect x="3161.5" y="181" width="2.7" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3164.47" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::global (819 samples, 0.11%)</title><rect x="2491.2" y="301" width="5.2" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2494.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::unsharableEmpty (265 samples, 0.03%)</title><rect x="4663.6" y="325" width="1.6" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4666.55" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::putChar (1,672 samples, 0.22%)</title><rect x="2096.9" y="181" width="10.5" height="23.0" fill="rgb(232,164,30)" rx="2" ry="2" />
<text text-anchor="" x="2099.87" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (878 samples, 0.12%)</title><rect x="3997.1" y="253" width="5.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4000.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (128 samples, 0.02%)</title><rect x="4662.6" y="301" width="0.8" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4665.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,982 samples, 0.26%)</title><rect x="799.8" y="301" width="12.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="802.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (521 samples, 0.07%)</title><rect x="4146.7" y="181" width="3.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4149.68" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1dc08 (114 samples, 0.01%)</title><rect x="2520.1" y="349" width="0.7" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2523.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6c3b587f (79 samples, 0.01%)</title><rect x="108.5" y="1069" width="0.5" height="23.0" fill="rgb(245,92,45)" rx="2" ry="2" />
<text text-anchor="" x="111.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b05f (527 samples, 0.07%)</title><rect x="191.7" y="1069" width="3.3" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="194.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (107 samples, 0.01%)</title><rect x="858.5" y="277" width="0.6" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="861.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (322 samples, 0.04%)</title><rect x="4527.7" y="205" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4530.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfc3d40 (128 samples, 0.02%)</title><rect x="415.0" y="1045" width="0.8" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="418.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::registerTimer (101 samples, 0.01%)</title><rect x="2209.9" y="133" width="0.6" height="23.0" fill="rgb(245,174,44)" rx="2" ry="2" />
<text text-anchor="" x="2212.89" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (20 samples, 0.00%)</title><rect x="208.1" y="1045" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="211.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::isGlobal (885 samples, 0.12%)</title><rect x="2490.8" y="325" width="5.6" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2493.81" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<<@plt (34 samples, 0.00%)</title><rect x="2159.4" y="205" width="0.2" height="23.0" fill="rgb(231,195,29)" rx="2" ry="2" />
<text text-anchor="" x="2162.41" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator+= (614 samples, 0.08%)</title><rect x="2191.4" y="205" width="3.9" height="23.0" fill="rgb(238,166,36)" rx="2" ry="2" />
<text text-anchor="" x="2194.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (1,129 samples, 0.15%)</title><rect x="692.3" y="781" width="7.0" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="695.25" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcher::registerTimer (24 samples, 0.00%)</title><rect x="186.7" y="1045" width="0.1" height="23.0" fill="rgb(245,165,44)" rx="2" ry="2" />
<text text-anchor="" x="189.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (21 samples, 0.00%)</title><rect x="104.4" y="1045" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="107.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (397 samples, 0.05%)</title><rect x="682.1" y="781" width="2.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="685.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateConfig::configEnd (67 samples, 0.01%)</title><rect x="764.9" y="373" width="0.4" height="23.0" fill="rgb(248,118,48)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23edef (21 samples, 0.00%)</title><rect x="49.4" y="1069" width="0.1" height="23.0" fill="rgb(246,99,45)" rx="2" ry="2" />
<text text-anchor="" x="52.37" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (1,102 samples, 0.14%)</title><rect x="865.1" y="253" width="7.0" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="868.15" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="532.5" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="535.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (23 samples, 0.00%)</title><rect x="460.5" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="463.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::qt_static_metacall (11,823 samples, 1.55%)</title><rect x="3719.8" y="253" width="74.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="3722.84" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLayo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (38 samples, 0.00%)</title><rect x="482.7" y="1045" width="0.3" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="485.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_start (656,454 samples, 86.11%)</title><rect x="666.0" y="1069" width="4116.0" height="23.0" fill="rgb(239,139,37)" rx="2" ry="2" />
<text text-anchor="" x="668.96" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (83 samples, 0.01%)</title><rect x="655.2" y="853" width="0.5" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="658.20" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (99 samples, 0.01%)</title><rect x="977.3" y="397" width="0.7" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="980.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (30 samples, 0.00%)</title><rect x="4670.7" y="253" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4673.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (315 samples, 0.04%)</title><rect x="3674.4" y="109" width="2.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3677.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (17 samples, 0.00%)</title><rect x="486.8" y="1045" width="0.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="489.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::revision@plt (31 samples, 0.00%)</title><rect x="3150.0" y="229" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3153.04" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (165 samples, 0.02%)</title><rect x="4201.9" y="277" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4204.92" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (51 samples, 0.01%)</title><rect x="442.4" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="445.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (102 samples, 0.01%)</title><rect x="3570.2" y="277" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3573.22" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (204 samples, 0.03%)</title><rect x="2460.0" y="301" width="1.3" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="2463.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (18 samples, 0.00%)</title><rect x="627.7" y="877" width="0.1" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontMetricsF::horizontalAdvance (53 samples, 0.01%)</title><rect x="4782.3" y="253" width="0.4" height="23.0" fill="rgb(251,192,51)" rx="2" ry="2" />
<text text-anchor="" x="4785.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b0af (580 samples, 0.08%)</title><rect x="234.2" y="1069" width="3.6" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="237.17" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (905 samples, 0.12%)</title><rect x="4108.2" y="349" width="5.6" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4111.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b207 (64 samples, 0.01%)</title><rect x="328.7" y="1069" width="0.4" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="331.66" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::reallocData (4,544 samples, 0.60%)</title><rect x="4644.0" y="349" width="28.5" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="4646.96" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QV..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (21 samples, 0.00%)</title><rect x="3818.9" y="301" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3821.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::childAt_helper (22 samples, 0.00%)</title><rect x="743.3" y="733" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="746.28" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (40 samples, 0.01%)</title><rect x="542.0" y="1045" width="0.2" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="544.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3f99572f (65 samples, 0.01%)</title><rect x="89.1" y="1069" width="0.4" height="23.0" fill="rgb(240,99,38)" rx="2" ry="2" />
<text text-anchor="" x="92.07" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator (278 samples, 0.04%)</title><rect x="3882.3" y="277" width="1.7" height="23.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text text-anchor="" x="3885.28" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (16 samples, 0.00%)</title><rect x="213.2" y="1045" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="216.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (17 samples, 0.00%)</title><rect x="261.2" y="1045" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="264.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImage::~QImage (84 samples, 0.01%)</title><rect x="624.4" y="901" width="0.6" height="23.0" fill="rgb(248,183,47)" rx="2" ry="2" />
<text text-anchor="" x="627.45" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,834 samples, 0.24%)</title><rect x="2353.9" y="205" width="11.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2356.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InputModeManager::marks (41 samples, 0.01%)</title><rect x="259.3" y="1045" width="0.3" height="23.0" fill="rgb(233,118,31)" rx="2" ry="2" />
<text text-anchor="" x="262.30" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (392 samples, 0.05%)</title><rect x="3094.8" y="277" width="2.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3097.83" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (37 samples, 0.00%)</title><rect x="3721.8" y="205" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="3724.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (249 samples, 0.03%)</title><rect x="859.1" y="277" width="1.6" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="862.13" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::exec (652,175 samples, 85.55%)</title><rect x="692.0" y="997" width="4089.2" height="23.0" fill="rgb(237,207,35)" rx="2" ry="2" />
<text text-anchor="" x="694.99" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QCoreApplication::exec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (19 samples, 0.00%)</title><rect x="463.1" y="1045" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="466.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (732 samples, 0.10%)</title><rect x="4182.6" y="325" width="4.6" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4185.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (27 samples, 0.00%)</title><rect x="652.9" y="733" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70cc1b6e (26 samples, 0.00%)</title><rect x="112.5" y="805" width="0.2" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="115.50" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (50 samples, 0.01%)</title><rect x="637.3" y="853" width="0.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4ff (85 samples, 0.01%)</title><rect x="562.7" y="1069" width="0.6" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="565.72" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (22 samples, 0.00%)</title><rect x="4150.1" y="205" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4153.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (1,473 samples, 0.19%)</title><rect x="1813.7" y="253" width="9.2" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1816.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (117 samples, 0.02%)</title><rect x="661.6" y="709" width="0.7" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (1,051 samples, 0.14%)</title><rect x="4166.6" y="325" width="6.6" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4169.57" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f70270 (148 samples, 0.02%)</title><rect x="4503.8" y="325" width="0.9" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="4506.76" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (44 samples, 0.01%)</title><rect x="2342.0" y="301" width="0.3" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="2344.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (257 samples, 0.03%)</title><rect x="3386.6" y="229" width="1.6" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3389.61" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::end (770 samples, 0.10%)</title><rect x="2425.6" y="229" width="4.8" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="2428.57" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffe00292860 (36 samples, 0.00%)</title><rect x="116.6" y="1069" width="0.2" height="23.0" fill="rgb(224,92,21)" rx="2" ry="2" />
<text text-anchor="" x="119.57" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (28 samples, 0.00%)</title><rect x="63.2" y="1045" width="0.2" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="66.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (174 samples, 0.02%)</title><rect x="113.0" y="757" width="1.1" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (2,978 samples, 0.39%)</title><rect x="3634.0" y="157" width="18.7" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="3636.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::endInternal (20 samples, 0.00%)</title><rect x="1754.9" y="205" width="0.1" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1757.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (171 samples, 0.02%)</title><rect x="3191.9" y="229" width="1.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3194.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (45 samples, 0.01%)</title><rect x="3988.2" y="301" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="3991.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (1,186 samples, 0.16%)</title><rect x="1926.7" y="277" width="7.5" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="1929.74" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (58 samples, 0.01%)</title><rect x="688.0" y="805" width="0.3" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="690.98" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (20 samples, 0.00%)</title><rect x="2394.8" y="181" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2397.79" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (2,116 samples, 0.28%)</title><rect x="1059.9" y="253" width="13.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1062.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::isOpen (646 samples, 0.08%)</title><rect x="3658.1" y="205" width="4.1" height="23.0" fill="rgb(250,164,49)" rx="2" ry="2" />
<text text-anchor="" x="3661.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (24 samples, 0.00%)</title><rect x="350.5" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="353.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (676 samples, 0.09%)</title><rect x="4146.0" y="229" width="4.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4149.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (48 samples, 0.01%)</title><rect x="509.7" y="1045" width="0.3" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="512.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uninitialized_move_if_noexcept_a<Kate::TextRange**, (37 samples, 0.00%)</title><rect x="267.2" y="1045" width="0.2" height="23.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text text-anchor="" x="270.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f63285334 (239 samples, 0.03%)</title><rect x="666.1" y="709" width="1.5" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (33 samples, 0.00%)</title><rect x="741.2" y="421" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qHash<Kate::TextRange> (24 samples, 0.00%)</title><rect x="181.5" y="1045" width="0.2" height="23.0" fill="rgb(244,172,43)" rx="2" ry="2" />
<text text-anchor="" x="184.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::ref (30 samples, 0.00%)</title><rect x="88.7" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="91.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b297 (28 samples, 0.00%)</title><rect x="411.3" y="1069" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="414.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::endInternal (29 samples, 0.00%)</title><rect x="3198.5" y="205" width="0.2" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3201.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::searchText (79 samples, 0.01%)</title><rect x="579.0" y="1045" width="0.5" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="582.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::updateView (16 samples, 0.00%)</title><rect x="669.5" y="757" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="672.54" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImage::load (54 samples, 0.01%)</title><rect x="668.6" y="901" width="0.4" height="23.0" fill="rgb(243,183,41)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (582 samples, 0.08%)</title><rect x="3799.3" y="253" width="3.7" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="3802.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (296 samples, 0.04%)</title><rect x="136.5" y="1045" width="1.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="139.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::Marks::isShowable (17 samples, 0.00%)</title><rect x="169.8" y="1045" width="0.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="172.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (161 samples, 0.02%)</title><rect x="4662.4" y="325" width="1.0" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4665.39" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (19 samples, 0.00%)</title><rect x="126.9" y="1045" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="129.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (110 samples, 0.01%)</title><rect x="655.1" y="925" width="0.6" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="658.06" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (81 samples, 0.01%)</title><rect x="742.5" y="829" width="0.5" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103ffe (33 samples, 0.00%)</title><rect x="2150.8" y="157" width="0.3" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="2153.84" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (30 samples, 0.00%)</title><rect x="173.3" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="176.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (583 samples, 0.08%)</title><rect x="611.8" y="709" width="3.6" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="614.79" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed4b9 (92 samples, 0.01%)</title><rect x="3622.2" y="157" width="0.6" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="3625.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (341 samples, 0.04%)</title><rect x="628.4" y="565" width="2.2" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="631.44" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (35 samples, 0.00%)</title><rect x="2459.4" y="325" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2462.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (85 samples, 0.01%)</title><rect x="492.2" y="1045" width="0.5" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="495.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1b652b1ff (23 samples, 0.00%)</title><rect x="24.7" y="1069" width="0.1" height="23.0" fill="rgb(247,112,46)" rx="2" ry="2" />
<text text-anchor="" x="27.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::d_func (122 samples, 0.02%)</title><rect x="2553.6" y="301" width="0.8" height="23.0" fill="rgb(233,171,30)" rx="2" ry="2" />
<text text-anchor="" x="2556.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (70 samples, 0.01%)</title><rect x="661.6" y="277" width="0.5" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="664.63" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (16 samples, 0.00%)</title><rect x="553.4" y="1021" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="556.37" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (19 samples, 0.00%)</title><rect x="114.6" y="1069" width="0.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::searchText (53,961 samples, 7.08%)</title><rect x="4341.4" y="397" width="338.3" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="4344.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::searchText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (59 samples, 0.01%)</title><rect x="2502.0" y="325" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2504.96" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (24 samples, 0.00%)</title><rect x="83.1" y="1045" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="86.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (139 samples, 0.02%)</title><rect x="3574.1" y="253" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3577.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (215 samples, 0.03%)</title><rect x="4782.1" y="589" width="1.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::toRange (26 samples, 0.00%)</title><rect x="566.7" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="569.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::removeText (11,689 samples, 1.53%)</title><rect x="3720.6" y="229" width="73.3" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3723.58" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLayo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (19 samples, 0.00%)</title><rect x="3880.7" y="181" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3883.73" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoGroup::addItem (10,856 samples, 1.42%)</title><rect x="3892.4" y="277" width="68.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3895.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateUnd..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (538 samples, 0.07%)</title><rect x="3086.6" y="277" width="3.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="3089.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b46f (447 samples, 0.06%)</title><rect x="540.9" y="1069" width="2.8" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="543.91" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (453 samples, 0.06%)</title><rect x="4555.4" y="253" width="2.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4558.42" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (194 samples, 0.03%)</title><rect x="425.9" y="1045" width="1.2" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="428.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLayout::draw (975 samples, 0.13%)</title><rect x="619.0" y="1045" width="6.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="622.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (49 samples, 0.01%)</title><rect x="742.5" y="229" width="0.3" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="745.52" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append@plt (18 samples, 0.00%)</title><rect x="2418.8" y="229" width="0.1" height="23.0" fill="rgb(231,142,29)" rx="2" ry="2" />
<text text-anchor="" x="2421.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (171 samples, 0.02%)</title><rect x="4029.4" y="325" width="1.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4032.37" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (203 samples, 0.03%)</title><rect x="653.2" y="973" width="1.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.24" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::setLineWidth (77 samples, 0.01%)</title><rect x="112.2" y="1045" width="0.5" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="115.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (34 samples, 0.00%)</title><rect x="488.6" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="491.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast (1,595 samples, 0.21%)</title><rect x="2404.7" y="229" width="10.0" height="23.0" fill="rgb(238,141,36)" rx="2" ry="2" />
<text text-anchor="" x="2407.74" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (33 samples, 0.00%)</title><rect x="652.9" y="877" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (25 samples, 0.00%)</title><rect x="125.2" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="128.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::documentTextInserted (119 samples, 0.02%)</title><rect x="267.9" y="1045" width="0.7" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="270.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (204 samples, 0.03%)</title><rect x="3991.7" y="301" width="1.3" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="3994.73" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (213 samples, 0.03%)</title><rect x="1649.7" y="277" width="1.4" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="1652.75" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMap<QChar, (237 samples, 0.03%)</title><rect x="187.2" y="1045" width="1.5" height="23.0" fill="rgb(242,218,41)" rx="2" ry="2" />
<text text-anchor="" x="190.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::config (62 samples, 0.01%)</title><rect x="514.0" y="1045" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="517.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (48 samples, 0.01%)</title><rect x="562.0" y="1045" width="0.3" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="564.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbIntegration::QXcbIntegration (46 samples, 0.01%)</title><rect x="691.3" y="829" width="0.2" height="23.0" fill="rgb(247,212,46)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::remove (191 samples, 0.03%)</title><rect x="385.1" y="1045" width="1.2" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="388.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (113 samples, 0.01%)</title><rect x="2427.8" y="133" width="0.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2430.84" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (115 samples, 0.02%)</title><rect x="661.6" y="301" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="664.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (410 samples, 0.05%)</title><rect x="628.1" y="1021" width="2.5" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="631.07" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (98 samples, 0.01%)</title><rect x="156.6" y="1045" width="0.6" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="159.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (23 samples, 0.00%)</title><rect x="526.4" y="1045" width="0.1" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="529.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (37 samples, 0.00%)</title><rect x="2362.9" y="181" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2365.87" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (19 samples, 0.00%)</title><rect x="204.5" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="207.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (43 samples, 0.01%)</title><rect x="4426.5" y="325" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4429.52" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (131 samples, 0.02%)</title><rect x="143.8" y="1045" width="0.9" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="146.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QList<KateUndoGroup*>&> (54 samples, 0.01%)</title><rect x="3974.8" y="229" width="0.4" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="3977.84" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (21 samples, 0.00%)</title><rect x="4638.8" y="349" width="0.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4641.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::thread (126 samples, 0.02%)</title><rect x="3693.1" y="157" width="0.8" height="23.0" fill="rgb(241,205,40)" rx="2" ry="2" />
<text text-anchor="" x="3696.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::calculateTabWidth (16 samples, 0.00%)</title><rect x="114.5" y="709" width="0.1" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="117.45" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (308 samples, 0.04%)</title><rect x="4704.9" y="301" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4707.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator+= (52 samples, 0.01%)</title><rect x="252.3" y="1045" width="0.4" height="23.0" fill="rgb(238,166,36)" rx="2" ry="2" />
<text text-anchor="" x="255.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652aecf (24 samples, 0.00%)</title><rect x="118.6" y="1069" width="0.1" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="121.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetItemV2::updateCacheIfNecessary (17 samples, 0.00%)</title><rect x="114.7" y="1021" width="0.1" height="23.0" fill="rgb(248,142,47)" rx="2" ry="2" />
<text text-anchor="" x="117.72" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (943 samples, 0.12%)</title><rect x="2090.0" y="181" width="5.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2093.03" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (141 samples, 0.02%)</title><rect x="875.6" y="253" width="0.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="878.56" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (18 samples, 0.00%)</title><rect x="442.3" y="1045" width="0.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="445.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<int> (43 samples, 0.01%)</title><rect x="414.7" y="1045" width="0.2" height="23.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text text-anchor="" x="417.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAction::triggered (3,438 samples, 0.45%)</title><rect x="743.7" y="493" width="21.6" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (264 samples, 0.03%)</title><rect x="206.4" y="1045" width="1.6" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="209.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward<Kate::TextRange*> (17 samples, 0.00%)</title><rect x="254.8" y="1045" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="257.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<KTextEditor::Range*, (64 samples, 0.01%)</title><rect x="203.5" y="1045" width="0.4" height="23.0" fill="rgb(234,183,32)" rx="2" ry="2" />
<text text-anchor="" x="206.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function<bool (29 samples, 0.00%)</title><rect x="653.5" y="757" width="0.2" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (9,798 samples, 1.29%)</title><rect x="4365.1" y="325" width="61.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4368.09" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateBu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedRemoveText::KateModifiedRemoveText (7,871 samples, 1.03%)</title><rect x="3841.5" y="301" width="49.4" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3844.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (18 samples, 0.00%)</title><rect x="233.2" y="1045" width="0.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="236.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (34 samples, 0.00%)</title><rect x="2430.6" y="205" width="0.2" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="2433.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (640,456 samples, 84.01%)</title><rect x="765.3" y="637" width="4015.7" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="768.29" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QWidget::event</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (42 samples, 0.01%)</title><rect x="693.3" y="565" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.25" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (407 samples, 0.05%)</title><rect x="628.1" y="805" width="2.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::textRemoved (30 samples, 0.00%)</title><rect x="436.6" y="1045" width="0.2" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="439.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (21 samples, 0.00%)</title><rect x="121.0" y="1045" width="0.2" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="124.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move<true, (37 samples, 0.00%)</title><rect x="132.9" y="1045" width="0.2" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="135.87" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (1,239 samples, 0.16%)</title><rect x="4086.6" y="349" width="7.8" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4089.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (41 samples, 0.01%)</title><rect x="638.7" y="925" width="0.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (690 samples, 0.09%)</title><rect x="4134.5" y="301" width="4.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4137.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d48897f (720 samples, 0.09%)</title><rect x="74.8" y="1069" width="4.5" height="23.0" fill="rgb(245,99,44)" rx="2" ry="2" />
<text text-anchor="" x="77.79" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73704588 (33 samples, 0.00%)</title><rect x="111.8" y="1045" width="0.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="114.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (50 samples, 0.01%)</title><rect x="654.7" y="973" width="0.4" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (1,245 samples, 0.16%)</title><rect x="3995.0" y="301" width="7.8" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3997.97" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23faef (498 samples, 0.07%)</title><rect x="59.9" y="1069" width="3.1" height="23.0" fill="rgb(248,99,47)" rx="2" ry="2" />
<text text-anchor="" x="62.90" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (37 samples, 0.00%)</title><rect x="2371.1" y="205" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2374.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (433 samples, 0.06%)</title><rect x="4451.2" y="301" width="2.7" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4454.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QList<QSet<Kate::TextRange*> (17 samples, 0.00%)</title><rect x="694.2" y="541" width="0.1" height="23.0" fill="rgb(238,166,36)" rx="2" ry="2" />
<text text-anchor="" x="697.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (17 samples, 0.00%)</title><rect x="654.8" y="781" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="657.78" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::closeEvent (80 samples, 0.01%)</title><rect x="742.5" y="541" width="0.5" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (23 samples, 0.00%)</title><rect x="644.8" y="1069" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="647.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (43 samples, 0.01%)</title><rect x="3960.7" y="277" width="0.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3963.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (975 samples, 0.13%)</title><rect x="4046.3" y="373" width="6.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4049.26" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (1,317 samples, 0.17%)</title><rect x="2406.5" y="205" width="8.2" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="2409.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (50 samples, 0.01%)</title><rect x="637.3" y="517" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (19 samples, 0.00%)</title><rect x="3890.8" y="277" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3893.78" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine (46 samples, 0.01%)</title><rect x="693.2" y="589" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="696.23" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (16 samples, 0.00%)</title><rect x="4527.6" y="205" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4530.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (16 samples, 0.00%)</title><rect x="4016.2" y="229" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4019.21" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (28 samples, 0.00%)</title><rect x="637.7" y="877" width="0.2" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b0cf (2,898 samples, 0.38%)</title><rect x="238.7" y="1069" width="18.2" height="23.0" fill="rgb(251,92,51)" rx="2" ry="2" />
<text text-anchor="" x="241.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (253 samples, 0.03%)</title><rect x="4719.0" y="253" width="1.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4721.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (17 samples, 0.00%)</title><rect x="525.8" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="528.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::removeText (17 samples, 0.00%)</title><rect x="3719.3" y="253" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3722.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fada2 (20 samples, 0.00%)</title><rect x="2215.4" y="109" width="0.1" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="2218.40" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eece59 (22 samples, 0.00%)</title><rect x="4501.0" y="301" width="0.1" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="4503.97" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (22 samples, 0.00%)</title><rect x="103.0" y="1045" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="105.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b0bf (140 samples, 0.02%)</title><rect x="237.8" y="1069" width="0.9" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="240.81" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (160 samples, 0.02%)</title><rect x="654.7" y="997" width="1.0" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (50 samples, 0.01%)</title><rect x="637.3" y="565" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::NormalViMode::textRemoved (38 samples, 0.00%)</title><rect x="263.9" y="1045" width="0.3" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="266.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::replaceAll (640,346 samples, 84.00%)</title><rect x="766.0" y="469" width="4015.0" height="23.0" fill="rgb(227,118,24)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateSearchBar::replaceAll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (29 samples, 0.00%)</title><rect x="741.2" y="349" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::removeText (5,278 samples, 0.69%)</title><rect x="3136.7" y="277" width="33.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3139.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ka..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::brush (24 samples, 0.00%)</title><rect x="697.2" y="493" width="0.2" height="23.0" fill="rgb(236,190,34)" rx="2" ry="2" />
<text text-anchor="" x="700.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_update_slotinfo (56 samples, 0.01%)</title><rect x="360.9" y="1045" width="0.3" height="23.0" fill="rgb(248,184,47)" rx="2" ry="2" />
<text text-anchor="" x="363.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (18 samples, 0.00%)</title><rect x="4109.0" y="325" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4111.98" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::KateEditRemoveTextUndo (1,565 samples, 0.21%)</title><rect x="3871.0" y="277" width="9.9" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="3874.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (26 samples, 0.00%)</title><rect x="803.4" y="229" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="806.44" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (183 samples, 0.02%)</title><rect x="3977.5" y="205" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3980.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faebd (114 samples, 0.01%)</title><rect x="2217.7" y="109" width="0.7" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="2220.69" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (105 samples, 0.01%)</title><rect x="2054.6" y="229" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2057.60" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (651 samples, 0.09%)</title><rect x="3829.0" y="277" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3832.01" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editRemoveText (240 samples, 0.03%)</title><rect x="1017.3" y="373" width="1.5" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="1020.34" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::end (26 samples, 0.00%)</title><rect x="348.3" y="1045" width="0.2" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="351.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (17 samples, 0.00%)</title><rect x="654.8" y="709" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="657.78" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::deallocate (37 samples, 0.00%)</title><rect x="2088.1" y="157" width="0.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="2091.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (34 samples, 0.00%)</title><rect x="3182.5" y="205" width="0.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="3185.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (133 samples, 0.02%)</title><rect x="4261.9" y="277" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4264.87" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::operator* (20 samples, 0.00%)</title><rect x="1723.7" y="229" width="0.1" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="1726.70" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::createPlatformIntegration (115 samples, 0.02%)</title><rect x="691.3" y="901" width="0.7" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (332 samples, 0.04%)</title><rect x="3830.1" y="205" width="2.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="3833.08" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Repository::Repository (52 samples, 0.01%)</title><rect x="668.2" y="877" width="0.3" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="671.22" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (30 samples, 0.00%)</title><rect x="637.3" y="325" width="0.2" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::feedback (126 samples, 0.02%)</title><rect x="1790.3" y="277" width="0.8" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="1793.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (210 samples, 0.03%)</title><rect x="3724.8" y="181" width="1.3" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3727.81" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move_iterator<Kate::TextRange**>::move_iterator (20 samples, 0.00%)</title><rect x="262.3" y="1045" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="265.30" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<Kate::TextLineData> (17 samples, 0.00%)</title><rect x="1069.4" y="229" width="0.1" height="23.0" fill="rgb(236,183,34)" rx="2" ry="2" />
<text text-anchor="" x="1072.42" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd7f (2,308 samples, 0.30%)</title><rect x="4485.8" y="301" width="14.5" height="23.0" fill="rgb(248,92,48)" rx="2" ry="2" />
<text text-anchor="" x="4488.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::Node::t (137 samples, 0.02%)</title><rect x="3167.6" y="181" width="0.8" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="3170.57" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (754 samples, 0.10%)</title><rect x="4371.6" y="205" width="4.7" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4374.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (77 samples, 0.01%)</title><rect x="2589.0" y="229" width="0.5" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2592.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (22 samples, 0.00%)</title><rect x="2086.3" y="205" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2089.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::isActive (28 samples, 0.00%)</title><rect x="416.4" y="1045" width="0.2" height="23.0" fill="rgb(238,161,36)" rx="2" ry="2" />
<text text-anchor="" x="419.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lineLength (15,325 samples, 2.01%)</title><rect x="790.2" y="373" width="96.1" height="23.0" fill="rgb(236,138,34)" rx="2" ry="2" />
<text text-anchor="" x="793.23" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::timerInsert (1,009 samples, 0.13%)</title><rect x="2228.5" y="133" width="6.3" height="23.0" fill="rgb(236,157,34)" rx="2" ry="2" />
<text text-anchor="" x="2231.51" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (652,175 samples, 85.55%)</title><rect x="692.0" y="973" width="4089.2" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="694.99" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QEventLoop::exec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (28 samples, 0.00%)</title><rect x="637.7" y="637" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (21 samples, 0.00%)</title><rect x="444.2" y="1045" width="0.1" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="447.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (307 samples, 0.04%)</title><rect x="4625.5" y="325" width="1.9" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4628.51" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::addEntry@plt (45 samples, 0.01%)</title><rect x="3169.3" y="253" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3172.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::ensureHighlighted@plt (79 samples, 0.01%)</title><rect x="1057.5" y="301" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1060.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::sharedNull (27 samples, 0.00%)</title><rect x="494.8" y="1045" width="0.1" height="23.0" fill="rgb(224,183,21)" rx="2" ry="2" />
<text text-anchor="" x="497.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::global (101 samples, 0.01%)</title><rect x="186.0" y="1045" width="0.6" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="189.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b17f (545 samples, 0.07%)</title><rect x="287.7" y="1069" width="3.4" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="290.71" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (967 samples, 0.13%)</title><rect x="3623.8" y="133" width="6.1" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="3626.79" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (407 samples, 0.05%)</title><rect x="628.1" y="925" width="2.5" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::layout_helper (77 samples, 0.01%)</title><rect x="112.2" y="1021" width="0.5" height="23.0" fill="rgb(243,170,41)" rx="2" ry="2" />
<text text-anchor="" x="115.21" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (220 samples, 0.03%)</title><rect x="4205.7" y="205" width="1.4" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4208.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::detach (31 samples, 0.00%)</title><rect x="652.5" y="1069" width="0.2" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="655.52" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (42 samples, 0.01%)</title><rect x="430.2" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="433.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (50 samples, 0.01%)</title><rect x="141.4" y="1045" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="144.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (48 samples, 0.01%)</title><rect x="64.3" y="1045" width="0.3" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="67.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (22 samples, 0.00%)</title><rect x="742.5" y="109" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (33 samples, 0.00%)</title><rect x="741.2" y="445" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (142 samples, 0.02%)</title><rect x="376.4" y="1045" width="0.9" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="379.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (142 samples, 0.02%)</title><rect x="2054.4" y="253" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2057.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcherPrivate::allocateTimerId (176 samples, 0.02%)</title><rect x="76.7" y="1045" width="1.1" height="23.0" fill="rgb(243,165,41)" rx="2" ry="2" />
<text text-anchor="" x="79.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (190 samples, 0.02%)</title><rect x="4611.0" y="325" width="1.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4614.00" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::search(QString (858 samples, 0.11%)</title><rect x="4461.7" y="349" width="5.4" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4464.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (30 samples, 0.00%)</title><rect x="4280.4" y="373" width="0.1" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4283.35" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (18 samples, 0.00%)</title><rect x="157.2" y="1045" width="0.2" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="160.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (243 samples, 0.03%)</title><rect x="4129.2" y="349" width="1.5" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4132.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editRemoveText (235,498 samples, 30.89%)</title><rect x="2541.9" y="349" width="1476.6" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="2544.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::editRemoveText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (82 samples, 0.01%)</title><rect x="3865.1" y="109" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3868.12" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QSet<Kate::TextCursor*>&> (3,605 samples, 0.47%)</title><rect x="3400.9" y="277" width="22.6" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="3403.87" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (162 samples, 0.02%)</title><rect x="4442.0" y="325" width="1.0" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4444.99" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (158 samples, 0.02%)</title><rect x="2340.9" y="277" width="1.0" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2343.94" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::count (115 samples, 0.02%)</title><rect x="532.7" y="1045" width="0.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="535.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (270 samples, 0.04%)</title><rect x="3164.4" y="205" width="1.7" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3167.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (372 samples, 0.05%)</title><rect x="3857.4" y="181" width="2.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3860.37" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (337 samples, 0.04%)</title><rect x="4704.8" y="325" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4707.78" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast (454 samples, 0.06%)</title><rect x="658.3" y="1069" width="2.9" height="23.0" fill="rgb(238,141,36)" rx="2" ry="2" />
<text text-anchor="" x="661.34" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (54 samples, 0.01%)</title><rect x="637.9" y="589" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.90" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (14,720 samples, 1.93%)</title><rect x="1956.3" y="277" width="92.3" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1959.26" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::vector..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (40 samples, 0.01%)</title><rect x="3958.4" y="205" width="0.3" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3961.41" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (643,944 samples, 84.47%)</title><rect x="743.5" y="685" width="4037.5" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="746.48" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QApplication::notify</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (74 samples, 0.01%)</title><rect x="3195.8" y="205" width="0.4" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3198.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::readVariables (39 samples, 0.01%)</title><rect x="743.7" y="373" width="0.3" height="23.0" fill="rgb(244,138,43)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="1713.8" y="133" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1716.80" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (96 samples, 0.01%)</title><rect x="122.2" y="1045" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="125.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (235 samples, 0.03%)</title><rect x="2420.1" y="205" width="1.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2423.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (28 samples, 0.00%)</title><rect x="116.6" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="119.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (643,931 samples, 84.47%)</title><rect x="743.5" y="661" width="4037.5" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="746.50" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QApplicationPrivate::notify_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (25 samples, 0.00%)</title><rect x="154.5" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="157.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::metaObject (66 samples, 0.01%)</title><rect x="2081.2" y="253" width="0.5" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="2084.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (296 samples, 0.04%)</title><rect x="4253.1" y="301" width="1.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4256.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,101 samples, 0.14%)</title><rect x="4266.9" y="277" width="6.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4269.88" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (159 samples, 0.02%)</title><rect x="4723.0" y="349" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4725.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (3,568 samples, 0.47%)</title><rect x="4140.3" y="325" width="22.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4143.28" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::paintEvent (38 samples, 0.00%)</title><rect x="627.8" y="973" width="0.3" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (59 samples, 0.01%)</title><rect x="637.9" y="805" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (55 samples, 0.01%)</title><rect x="328.1" y="1045" width="0.4" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="331.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (329 samples, 0.04%)</title><rect x="3988.5" y="301" width="2.1" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="3991.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (18 samples, 0.00%)</title><rect x="627.7" y="589" width="0.1" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::QSharedPointer (18 samples, 0.00%)</title><rect x="48.9" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="51.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (328 samples, 0.04%)</title><rect x="2477.4" y="277" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2480.41" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::MatchHighlighter::qt_metacall (16 samples, 0.00%)</title><rect x="4653.5" y="277" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="4656.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (22 samples, 0.00%)</title><rect x="460.7" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="463.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleTextCursorEvent::QAccessibleTextCursorEvent (19 samples, 0.00%)</title><rect x="182.8" y="1045" width="0.1" height="23.0" fill="rgb(241,161,39)" rx="2" ry="2" />
<text text-anchor="" x="185.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (23 samples, 0.00%)</title><rect x="214.1" y="1045" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="217.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line@plt (23 samples, 0.00%)</title><rect x="1084.7" y="277" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1087.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::searchText@plt (476 samples, 0.06%)</title><rect x="4679.7" y="397" width="3.0" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="4682.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (949 samples, 0.12%)</title><rect x="4753.9" y="421" width="5.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4756.88" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (32 samples, 0.00%)</title><rect x="4779.6" y="445" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4782.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (6,425 samples, 0.84%)</title><rect x="701.3" y="709" width="40.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KXm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (44 samples, 0.01%)</title><rect x="754.4" y="277" width="0.3" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="757.41" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (71 samples, 0.01%)</title><rect x="655.7" y="1021" width="0.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawPoints (238 samples, 0.03%)</title><rect x="696.2" y="541" width="1.5" height="23.0" fill="rgb(238,193,36)" rx="2" ry="2" />
<text text-anchor="" x="699.16" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (118 samples, 0.02%)</title><rect x="661.6" y="829" width="0.7" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::xToCursor (27 samples, 0.00%)</title><rect x="765.6" y="517" width="0.2" height="23.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text text-anchor="" x="768.61" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (669 samples, 0.09%)</title><rect x="1791.2" y="277" width="4.2" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1794.21" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::updateAccessibility (167 samples, 0.02%)</title><rect x="70.6" y="1045" width="1.0" height="23.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text text-anchor="" x="73.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy<Kate::TextRange**> (57 samples, 0.01%)</title><rect x="4785.8" y="1069" width="0.4" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="4788.84" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (284 samples, 0.04%)</title><rect x="739.7" y="565" width="1.8" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="742.73" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d9bbaf7 (24 samples, 0.00%)</title><rect x="83.5" y="1069" width="0.2" height="23.0" fill="rgb(242,99,41)" rx="2" ry="2" />
<text text-anchor="" x="86.52" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (865 samples, 0.11%)</title><rect x="2357.4" y="157" width="5.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2360.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (554 samples, 0.07%)</title><rect x="3877.4" y="229" width="3.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3880.38" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (336 samples, 0.04%)</title><rect x="1786.8" y="109" width="2.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1789.84" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (140 samples, 0.02%)</title><rect x="4428.6" y="301" width="0.9" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="4431.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (18 samples, 0.00%)</title><rect x="328.5" y="1045" width="0.1" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="331.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (519 samples, 0.07%)</title><rect x="3975.4" y="253" width="3.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3978.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractButton::mouseReleaseEvent (640,346 samples, 84.00%)</title><rect x="766.0" y="613" width="4015.0" height="23.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QAbstractButton::mouseReleaseEvent</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawLines (16 samples, 0.00%)</title><rect x="114.6" y="709" width="0.1" height="23.0" fill="rgb(242,203,41)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (21 samples, 0.00%)</title><rect x="80.8" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="83.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__get_helper<0ul, (52 samples, 0.01%)</title><rect x="525.2" y="1045" width="0.3" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="528.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator!= (560 samples, 0.07%)</title><rect x="2180.2" y="205" width="3.5" height="23.0" fill="rgb(249,138,48)" rx="2" ry="2" />
<text text-anchor="" x="2183.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (40 samples, 0.01%)</title><rect x="638.7" y="781" width="0.2" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (176 samples, 0.02%)</title><rect x="4787.0" y="1069" width="1.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4790.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (676 samples, 0.09%)</title><rect x="3156.7" y="157" width="4.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3159.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (38,525 samples, 5.05%)</title><rect x="3577.2" y="277" width="241.5" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="3580.19" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaObject::activate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (26 samples, 0.00%)</title><rect x="4258.1" y="205" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4261.09" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (250 samples, 0.03%)</title><rect x="956.9" y="301" width="1.6" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="959.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (54 samples, 0.01%)</title><rect x="335.1" y="1045" width="0.4" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="338.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextInserted (47 samples, 0.01%)</title><rect x="482.0" y="1045" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="485.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (50 samples, 0.01%)</title><rect x="637.3" y="757" width="0.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7062d8be (177 samples, 0.02%)</title><rect x="666.1" y="589" width="1.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::_Iter_comp_val<bool (47 samples, 0.01%)</title><rect x="167.3" y="1045" width="0.2" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="170.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (188 samples, 0.02%)</title><rect x="616.7" y="1069" width="1.2" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="619.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74fb9dbd (104 samples, 0.01%)</title><rect x="110.5" y="1045" width="0.6" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="113.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::range (749 samples, 0.10%)</title><rect x="994.7" y="397" width="4.7" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="997.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (21 samples, 0.00%)</title><rect x="4679.6" y="373" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4682.60" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid@plt (52 samples, 0.01%)</title><rect x="4009.0" y="325" width="0.3" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4012.01" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart (100 samples, 0.01%)</title><rect x="2560.0" y="325" width="0.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="2562.96" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (178 samples, 0.02%)</title><rect x="2190.3" y="205" width="1.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="2193.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (284 samples, 0.04%)</title><rect x="1787.2" y="85" width="1.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1790.16" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (24 samples, 0.00%)</title><rect x="2468.8" y="253" width="0.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2471.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleCache::instance (18 samples, 0.00%)</title><rect x="627.1" y="1069" width="0.1" height="23.0" fill="rgb(251,161,51)" rx="2" ry="2" />
<text text-anchor="" x="630.09" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (25 samples, 0.00%)</title><rect x="493.4" y="1045" width="0.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="496.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf666b3 (28 samples, 0.00%)</title><rect x="620.1" y="877" width="0.2" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="623.11" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (95 samples, 0.01%)</title><rect x="872.1" y="253" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="875.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::qt_static_metacall (3,438 samples, 0.45%)</title><rect x="743.7" y="445" width="21.6" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (119 samples, 0.02%)</title><rect x="320.6" y="1045" width="0.7" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="323.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMessageWidget::postMessage (17 samples, 0.00%)</title><rect x="669.2" y="829" width="0.1" height="23.0" fill="rgb(248,118,47)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (211 samples, 0.03%)</title><rect x="955.3" y="253" width="1.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="958.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (230 samples, 0.03%)</title><rect x="568.3" y="1045" width="1.4" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="571.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::updateFontHeight (19 samples, 0.00%)</title><rect x="668.0" y="901" width="0.1" height="23.0" fill="rgb(234,118,32)" rx="2" ry="2" />
<text text-anchor="" x="671.02" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (896 samples, 0.12%)</title><rect x="3965.9" y="229" width="5.6" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="3968.90" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f202b7 (47 samples, 0.01%)</title><rect x="114.9" y="1069" width="0.3" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="117.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::swap (28 samples, 0.00%)</title><rect x="236.9" y="1045" width="0.2" height="23.0" fill="rgb(233,166,31)" rx="2" ry="2" />
<text text-anchor="" x="239.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::end (407 samples, 0.05%)</title><rect x="4700.9" y="325" width="2.6" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4703.95" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (29 samples, 0.00%)</title><rect x="2357.3" y="157" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2360.27" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::viewLineOffset (33 samples, 0.00%)</title><rect x="765.1" y="205" width="0.2" height="23.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (34 samples, 0.00%)</title><rect x="523.7" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="526.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (59 samples, 0.01%)</title><rect x="637.9" y="949" width="0.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (25 samples, 0.00%)</title><rect x="127.2" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="130.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine@plt (17 samples, 0.00%)</title><rect x="2055.5" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2058.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffffffff (29 samples, 0.00%)</title><rect x="596.1" y="1069" width="0.2" height="23.0" fill="rgb(244,92,42)" rx="2" ry="2" />
<text text-anchor="" x="599.14" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::paintEvent (46 samples, 0.01%)</title><rect x="655.7" y="877" width="0.3" height="23.0" fill="rgb(241,207,39)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (17 samples, 0.00%)</title><rect x="637.8" y="517" width="0.1" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="640.75" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (63,844 samples, 8.37%)</title><rect x="1148.0" y="277" width="400.4" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="1151.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QtPrivate::QSlotObject<void</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (781 samples, 0.10%)</title><rect x="3876.0" y="253" width="4.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3878.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dl_main (95 samples, 0.01%)</title><rect x="4781.4" y="997" width="0.6" height="23.0" fill="rgb(247,149,46)" rx="2" ry="2" />
<text text-anchor="" x="4784.37" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (30 samples, 0.00%)</title><rect x="873.9" y="301" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (25 samples, 0.00%)</title><rect x="441.4" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="444.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (80 samples, 0.01%)</title><rect x="742.5" y="661" width="0.5" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidget::paintEvent (28 samples, 0.00%)</title><rect x="740.2" y="205" width="0.1" height="23.0" fill="rgb(241,173,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3af (19 samples, 0.00%)</title><rect x="488.5" y="1069" width="0.1" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="491.46" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::KatePlainTextSearch (21 samples, 0.00%)</title><rect x="4682.7" y="397" width="0.1" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4685.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (27 samples, 0.00%)</title><rect x="876.5" y="301" width="0.2" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="879.50" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="496.4" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="499.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (48 samples, 0.01%)</title><rect x="3668.2" y="157" width="0.3" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="3671.22" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (40 samples, 0.01%)</title><rect x="121.9" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="124.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (331 samples, 0.04%)</title><rect x="3972.5" y="205" width="2.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3975.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (195 samples, 0.03%)</title><rect x="1080.5" y="229" width="1.3" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="1083.54" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (30 samples, 0.00%)</title><rect x="23.0" y="1045" width="0.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="26.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::d_func (26 samples, 0.00%)</title><rect x="476.5" y="1045" width="0.1" height="23.0" fill="rgb(233,171,30)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (808 samples, 0.11%)</title><rect x="4525.8" y="253" width="5.0" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4528.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a0780 (52 samples, 0.01%)</title><rect x="668.6" y="781" width="0.4" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (74 samples, 0.01%)</title><rect x="548.1" y="1045" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="551.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (115 samples, 0.02%)</title><rect x="763.0" y="301" width="0.7" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="765.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (18 samples, 0.00%)</title><rect x="462.2" y="1045" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="465.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (56 samples, 0.01%)</title><rect x="363.4" y="1045" width="0.4" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="366.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::textInserted (73 samples, 0.01%)</title><rect x="436.2" y="1045" width="0.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="439.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line@plt (30 samples, 0.00%)</title><rect x="934.6" y="373" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="937.61" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (6,593 samples, 0.86%)</title><rect x="701.0" y="781" width="41.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="704.01" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QCo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::Part::~Part (6,086 samples, 0.80%)</title><rect x="701.3" y="469" width="38.1" height="23.0" fill="rgb(239,171,37)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KPa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (132 samples, 0.02%)</title><rect x="2470.7" y="253" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2473.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::removeText (78 samples, 0.01%)</title><rect x="479.3" y="1045" width="0.5" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="482.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::metaObject (18 samples, 0.00%)</title><rect x="3577.0" y="277" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3579.96" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (234 samples, 0.03%)</title><rect x="3820.0" y="301" width="1.5" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="3823.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a9a9 (35 samples, 0.00%)</title><rect x="425.2" y="1045" width="0.2" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="428.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed672 (47 samples, 0.01%)</title><rect x="3629.9" y="157" width="0.3" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="3632.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (19 samples, 0.00%)</title><rect x="2403.4" y="205" width="0.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="2406.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLoader::readLine (3,133 samples, 0.41%)</title><rect x="744.1" y="325" width="19.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="747.07" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (61 samples, 0.01%)</title><rect x="4173.2" y="349" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4176.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (25 samples, 0.00%)</title><rect x="2358.0" y="133" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2361.00" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (17 samples, 0.00%)</title><rect x="411.3" y="1045" width="0.1" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="414.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::event (38 samples, 0.00%)</title><rect x="627.8" y="1021" width="0.3" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::QPen (17 samples, 0.00%)</title><rect x="4782.9" y="277" width="0.1" height="23.0" fill="rgb(247,190,46)" rx="2" ry="2" />
<text text-anchor="" x="4785.90" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcherPrivate::allocateTimerId (779 samples, 0.10%)</title><rect x="350.8" y="1045" width="4.9" height="23.0" fill="rgb(243,165,41)" rx="2" ry="2" />
<text text-anchor="" x="353.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (19 samples, 0.00%)</title><rect x="2480.4" y="229" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2483.40" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::resize (337 samples, 0.04%)</title><rect x="2153.2" y="133" width="2.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2156.24" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (124 samples, 0.02%)</title><rect x="2523.5" y="349" width="0.8" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2526.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (6,590 samples, 0.86%)</title><rect x="701.0" y="757" width="41.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="704.03" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QAp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::~QByteArray (1,519 samples, 0.20%)</title><rect x="2086.4" y="205" width="9.5" height="23.0" fill="rgb(239,218,37)" rx="2" ry="2" />
<text text-anchor="" x="2089.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (358 samples, 0.05%)</title><rect x="3182.7" y="205" width="2.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3185.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (64 samples, 0.01%)</title><rect x="410.9" y="1045" width="0.4" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="413.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (20 samples, 0.00%)</title><rect x="89.5" y="1045" width="0.1" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="92.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::at (1,962 samples, 0.26%)</title><rect x="675.7" y="805" width="12.3" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="678.67" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (295 samples, 0.04%)</title><rect x="1898.6" y="253" width="1.8" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="1901.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (32 samples, 0.00%)</title><rect x="3851.6" y="157" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3854.60" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move<true, (28 samples, 0.00%)</title><rect x="125.9" y="1045" width="0.2" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="128.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (2,734 samples, 0.36%)</title><rect x="1755.1" y="205" width="17.2" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="1758.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::detach (962 samples, 0.13%)</title><rect x="3231.0" y="181" width="6.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="3234.02" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (9,514 samples, 1.25%)</title><rect x="4365.9" y="301" width="59.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4368.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b49f (93 samples, 0.01%)</title><rect x="551.3" y="1069" width="0.6" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="554.29" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::fontEngine (135 samples, 0.02%)</title><rect x="612.3" y="565" width="0.9" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="615.31" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (50 samples, 0.01%)</title><rect x="554.0" y="1045" width="0.3" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="557.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (30 samples, 0.00%)</title><rect x="4233.2" y="349" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4236.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (38 samples, 0.00%)</title><rect x="238.2" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="241.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (30 samples, 0.00%)</title><rect x="637.7" y="997" width="0.2" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.67" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (21 samples, 0.00%)</title><rect x="49.4" y="1045" width="0.1" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="52.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73104044 (28 samples, 0.00%)</title><rect x="2152.5" y="157" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="2155.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTextLayout::endCol (21 samples, 0.00%)</title><rect x="662.2" y="277" width="0.1" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="665.18" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfaa746 (17 samples, 0.00%)</title><rect x="619.6" y="901" width="0.1" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="622.57" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::unicode (142 samples, 0.02%)</title><rect x="504.4" y="1045" width="0.9" height="23.0" fill="rgb(250,191,49)" rx="2" ry="2" />
<text text-anchor="" x="507.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbConnection::xi2HandleEvent (21 samples, 0.00%)</title><rect x="742.1" y="637" width="0.2" height="23.0" fill="rgb(241,212,39)" rx="2" ry="2" />
<text text-anchor="" x="745.13" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (402 samples, 0.05%)</title><rect x="628.1" y="661" width="2.5" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="631.12" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (155 samples, 0.02%)</title><rect x="3866.9" y="181" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3869.85" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QVector<KTextEditor::Range> (2,359 samples, 0.31%)</title><rect x="4285.6" y="373" width="14.8" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="4288.56" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (656,352 samples, 86.10%)</title><rect x="666.0" y="1045" width="4115.4" height="23.0" fill="rgb(247,154,46)" rx="2" ry="2" />
<text text-anchor="" x="669.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QSet<Kate::TextRange*> (23 samples, 0.00%)</title><rect x="693.9" y="517" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="696.90" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::clearBlockContent (38 samples, 0.00%)</title><rect x="764.6" y="349" width="0.3" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="767.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (45 samples, 0.01%)</title><rect x="379.9" y="1045" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="382.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::updateConfig (18 samples, 0.00%)</title><rect x="669.3" y="829" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (2,199 samples, 0.29%)</title><rect x="1809.1" y="277" width="13.8" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="1812.13" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (841 samples, 0.11%)</title><rect x="3851.8" y="157" width="5.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3854.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (815 samples, 0.11%)</title><rect x="1064.1" y="205" width="5.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="1067.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfc3d40 (46 samples, 0.01%)</title><rect x="424.7" y="1045" width="0.3" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="427.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f61ef1667 (33 samples, 0.00%)</title><rect x="667.2" y="613" width="0.2" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::clear (30 samples, 0.00%)</title><rect x="414.0" y="1045" width="0.2" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="417.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::at (1,917 samples, 0.25%)</title><rect x="749.9" y="301" width="12.0" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="752.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72ede17e (203 samples, 0.03%)</title><rect x="4483.3" y="325" width="1.3" height="23.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text text-anchor="" x="4486.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (16 samples, 0.00%)</title><rect x="4653.5" y="253" width="0.1" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4656.48" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (52 samples, 0.01%)</title><rect x="4232.8" y="349" width="0.3" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4235.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1ef (602 samples, 0.08%)</title><rect x="323.9" y="1069" width="3.8" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="326.90" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::~QApplication (23 samples, 0.00%)</title><rect x="691.0" y="997" width="0.1" height="23.0" fill="rgb(247,158,46)" rx="2" ry="2" />
<text text-anchor="" x="693.98" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::~QExplicitlySharedDataPointer (17 samples, 0.00%)</title><rect x="3793.2" y="205" width="0.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3796.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QListData::Data*&> (84 samples, 0.01%)</title><rect x="3970.4" y="157" width="0.5" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="3973.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::unregisterTimer (56 samples, 0.01%)</title><rect x="193.0" y="1045" width="0.3" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="195.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (240 samples, 0.03%)</title><rect x="4237.1" y="277" width="1.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4240.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (19 samples, 0.00%)</title><rect x="114.6" y="949" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::KateRenderer (21 samples, 0.00%)</title><rect x="668.0" y="925" width="0.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="671.01" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23795f (271 samples, 0.04%)</title><rect x="47.2" y="1069" width="1.7" height="23.0" fill="rgb(235,99,33)" rx="2" ry="2" />
<text text-anchor="" x="50.22" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement (16 samples, 0.00%)</title><rect x="575.8" y="1045" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="578.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::search (28,536 samples, 3.74%)</title><rect x="4359.3" y="373" width="179.0" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4362.33" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KatePlainTextSearch::se..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (1,485 samples, 0.19%)</title><rect x="4068.0" y="373" width="9.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4070.97" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingChangedBuffer (180 samples, 0.02%)</title><rect x="2540.7" y="301" width="1.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="2543.69" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (22 samples, 0.00%)</title><rect x="742.5" y="133" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (111 samples, 0.01%)</title><rect x="100.2" y="1045" width="0.7" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="103.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (455 samples, 0.06%)</title><rect x="1553.7" y="301" width="2.8" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="1556.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::atEndOfDocument (17 samples, 0.00%)</title><rect x="766.0" y="445" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="769.04" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (98 samples, 0.01%)</title><rect x="608.2" y="613" width="0.6" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="611.20" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (17 samples, 0.00%)</title><rect x="3826.4" y="277" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3829.39" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (128 samples, 0.02%)</title><rect x="2994.6" y="253" width="0.8" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2997.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (17 samples, 0.00%)</title><rect x="189.0" y="1045" width="0.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="192.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line@plt (40 samples, 0.01%)</title><rect x="3187.8" y="253" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3190.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (135 samples, 0.02%)</title><rect x="4057.7" y="373" width="0.9" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4060.71" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3b7ffeb652b437 (28 samples, 0.00%)</title><rect x="35.3" y="1069" width="0.1" height="23.0" fill="rgb(235,105,33)" rx="2" ry="2" />
<text text-anchor="" x="38.26" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (204 samples, 0.03%)</title><rect x="972.2" y="301" width="1.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="975.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (22 samples, 0.00%)</title><rect x="1013.3" y="373" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1016.27" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb652b02f (17 samples, 0.00%)</title><rect x="600.7" y="1069" width="0.1" height="23.0" fill="rgb(244,109,43)" rx="2" ry="2" />
<text text-anchor="" x="603.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b24f (1,965 samples, 0.26%)</title><rect x="349.5" y="1069" width="12.3" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="352.48" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (24 samples, 0.00%)</title><rect x="430.7" y="1045" width="0.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="433.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (35 samples, 0.00%)</title><rect x="748.6" y="277" width="0.2" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="751.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (128 samples, 0.02%)</title><rect x="2554.5" y="325" width="0.8" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="2557.47" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (584 samples, 0.08%)</title><rect x="611.8" y="901" width="3.6" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (979 samples, 0.13%)</title><rect x="2100.7" y="133" width="6.1" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="2103.66" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (18 samples, 0.00%)</title><rect x="601.6" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="604.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (130 samples, 0.02%)</title><rect x="4254.2" y="277" width="0.8" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4257.17" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (532 samples, 0.07%)</title><rect x="4696.7" y="301" width="3.3" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="4699.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qt_defaultDpiY (32 samples, 0.00%)</title><rect x="615.2" y="541" width="0.2" height="23.0" fill="rgb(229,140,27)" rx="2" ry="2" />
<text text-anchor="" x="618.24" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<Kate::TextLineData> (56 samples, 0.01%)</title><rect x="651.9" y="1069" width="0.4" height="23.0" fill="rgb(236,183,34)" rx="2" ry="2" />
<text text-anchor="" x="654.94" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (203 samples, 0.03%)</title><rect x="4073.2" y="349" width="1.3" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="4076.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::createView (72 samples, 0.01%)</title><rect x="667.7" y="973" width="0.5" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="670.72" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (33 samples, 0.00%)</title><rect x="741.2" y="469" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::registerTimer (34 samples, 0.00%)</title><rect x="78.4" y="1045" width="0.2" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="81.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (48 samples, 0.01%)</title><rect x="302.8" y="1045" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="305.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (94 samples, 0.01%)</title><rect x="1035.8" y="277" width="0.6" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1038.83" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eece6a (21 samples, 0.00%)</title><rect x="4501.2" y="301" width="0.1" height="23.0" fill="rgb(228,92,25)" rx="2" ry="2" />
<text text-anchor="" x="4504.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (17 samples, 0.00%)</title><rect x="237.6" y="1045" width="0.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="240.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (110 samples, 0.01%)</title><rect x="366.2" y="1045" width="0.7" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="369.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (42 samples, 0.01%)</title><rect x="2095.6" y="109" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2098.59" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (54 samples, 0.01%)</title><rect x="688.7" y="805" width="0.3" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="691.67" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (59 samples, 0.01%)</title><rect x="637.9" y="829" width="0.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::alphaPenBlt (313 samples, 0.04%)</title><rect x="647.5" y="973" width="1.9" height="23.0" fill="rgb(230,193,28)" rx="2" ry="2" />
<text text-anchor="" x="650.45" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b33f (752 samples, 0.10%)</title><rect x="462.6" y="1069" width="4.8" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="465.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="4254.9" y="229" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4257.85" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (116 samples, 0.02%)</title><rect x="661.6" y="445" width="0.7" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="664.61" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faeb0 (126 samples, 0.02%)</title><rect x="2216.6" y="109" width="0.8" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="2219.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (25 samples, 0.00%)</title><rect x="238.4" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="241.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::operator (37 samples, 0.00%)</title><rect x="577.1" y="1045" width="0.3" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="580.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b34f (485 samples, 0.06%)</title><rect x="467.4" y="1069" width="3.0" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (118 samples, 0.02%)</title><rect x="661.6" y="973" width="0.7" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::split (145 samples, 0.02%)</title><rect x="587.6" y="1045" width="1.0" height="23.0" fill="rgb(237,166,36)" rx="2" ry="2" />
<text text-anchor="" x="590.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (26 samples, 0.00%)</title><rect x="652.9" y="685" width="0.2" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (23 samples, 0.00%)</title><rect x="675.5" y="805" width="0.1" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="678.47" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (87 samples, 0.01%)</title><rect x="3867.3" y="133" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3870.28" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::global (365 samples, 0.05%)</title><rect x="2177.5" y="133" width="2.3" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2180.48" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::documentEnd (19 samples, 0.00%)</title><rect x="565.4" y="1045" width="0.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="568.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (24 samples, 0.00%)</title><rect x="958.5" y="349" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="961.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (48 samples, 0.01%)</title><rect x="2498.4" y="349" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2501.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (28 samples, 0.00%)</title><rect x="637.7" y="661" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (177 samples, 0.02%)</title><rect x="330.0" y="1045" width="1.1" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="333.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetItem::setGeometry (17 samples, 0.00%)</title><rect x="669.2" y="661" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_construct (26 samples, 0.00%)</title><rect x="533.4" y="1045" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="536.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::style (19 samples, 0.00%)</title><rect x="691.1" y="949" width="0.1" height="23.0" fill="rgb(242,158,41)" rx="2" ry="2" />
<text text-anchor="" x="694.12" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (19 samples, 0.00%)</title><rect x="3877.3" y="229" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3880.26" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::mergeWith (2,224 samples, 0.29%)</title><rect x="393.6" y="1045" width="13.9" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="396.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<Kate::TextLineData> (286 samples, 0.04%)</title><rect x="314.2" y="1045" width="1.8" height="23.0" fill="rgb(236,183,34)" rx="2" ry="2" />
<text text-anchor="" x="317.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::documentTextRemoved (149 samples, 0.02%)</title><rect x="264.2" y="1045" width="0.9" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="267.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (31 samples, 0.00%)</title><rect x="486.5" y="1045" width="0.2" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="489.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (26 samples, 0.00%)</title><rect x="313.2" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="316.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::iterator (68 samples, 0.01%)</title><rect x="3956.5" y="205" width="0.4" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="3959.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateDocumentConfig (25 samples, 0.00%)</title><rect x="690.7" y="757" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (321 samples, 0.04%)</title><rect x="608.2" y="661" width="2.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="611.18" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (79 samples, 0.01%)</title><rect x="3944.9" y="229" width="0.5" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="3947.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (3,563 samples, 0.47%)</title><rect x="2351.9" y="253" width="22.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2354.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (223 samples, 0.03%)</title><rect x="4782.1" y="1021" width="1.4" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (117 samples, 0.02%)</title><rect x="661.6" y="733" width="0.7" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (16 samples, 0.00%)</title><rect x="4518.6" y="277" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4521.60" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (52 samples, 0.01%)</title><rect x="742.5" y="301" width="0.3" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="745.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::distance<QPair<int, (209 samples, 0.03%)</title><rect x="162.1" y="1045" width="1.3" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="165.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTextLayout::endCol (26 samples, 0.00%)</title><rect x="4783.2" y="301" width="0.2" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="4786.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (60 samples, 0.01%)</title><rect x="3237.2" y="229" width="0.4" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="3240.24" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::_Iter_comp_val<bool (16 samples, 0.00%)</title><rect x="172.2" y="1045" width="0.1" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="175.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (670 samples, 0.09%)</title><rect x="4572.3" y="277" width="4.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4575.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<KTextEditor::Range>*> (843 samples, 0.11%)</title><rect x="4687.6" y="349" width="5.3" height="23.0" fill="rgb(240,140,38)" rx="2" ry="2" />
<text text-anchor="" x="4690.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23ee1f (561 samples, 0.07%)</title><rect x="49.5" y="1069" width="3.5" height="23.0" fill="rgb(242,99,41)" rx="2" ry="2" />
<text text-anchor="" x="52.50" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (16 samples, 0.00%)</title><rect x="592.7" y="1045" width="0.1" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="595.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::insertText (75,650 samples, 9.92%)</title><rect x="1574.2" y="301" width="474.4" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1577.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBlock::insertText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652aebf (48 samples, 0.01%)</title><rect x="118.3" y="1069" width="0.3" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="121.26" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (623 samples, 0.08%)</title><rect x="2555.3" y="325" width="3.9" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="2558.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancelList (77 samples, 0.01%)</title><rect x="742.5" y="445" width="0.5" height="23.0" fill="rgb(232,173,30)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb233 (18 samples, 0.00%)</title><rect x="3694.0" y="133" width="0.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="3697.04" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (123 samples, 0.02%)</title><rect x="4095.6" y="325" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4098.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::setPen (28 samples, 0.00%)</title><rect x="4782.7" y="277" width="0.2" height="23.0" fill="rgb(247,203,46)" rx="2" ry="2" />
<text text-anchor="" x="4785.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::operator<<@plt (58 samples, 0.01%)</title><rect x="4568.2" y="325" width="0.4" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4571.19" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::dispose@plt (93 samples, 0.01%)</title><rect x="4531.1" y="277" width="0.6" height="23.0" fill="rgb(231,142,29)" rx="2" ry="2" />
<text text-anchor="" x="4534.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (611 samples, 0.08%)</title><rect x="4578.7" y="277" width="3.8" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4581.70" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (35 samples, 0.00%)</title><rect x="2245.4" y="205" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2248.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (50 samples, 0.01%)</title><rect x="637.3" y="733" width="0.3" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (37 samples, 0.00%)</title><rect x="440.5" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="443.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (117 samples, 0.02%)</title><rect x="661.6" y="541" width="0.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (59 samples, 0.01%)</title><rect x="4657.5" y="253" width="0.3" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4660.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::append (3,356 samples, 0.44%)</title><rect x="4241.7" y="349" width="21.0" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="4244.66" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::kateRange (156 samples, 0.02%)</title><rect x="366.9" y="1045" width="1.0" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="369.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity (1,002 samples, 0.13%)</title><rect x="936.5" y="373" width="6.3" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="939.49" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawTextItem (338 samples, 0.04%)</title><rect x="647.3" y="1021" width="2.1" height="23.0" fill="rgb(231,193,29)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (127 samples, 0.02%)</title><rect x="740.4" y="349" width="0.8" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="743.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (504 samples, 0.07%)</title><rect x="4450.7" y="325" width="3.2" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="4453.74" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (17 samples, 0.00%)</title><rect x="497.9" y="1045" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="500.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::timerInsert (22 samples, 0.00%)</title><rect x="78.6" y="1045" width="0.2" height="23.0" fill="rgb(236,157,34)" rx="2" ry="2" />
<text text-anchor="" x="81.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (127 samples, 0.02%)</title><rect x="740.4" y="373" width="0.8" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="743.36" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (124 samples, 0.02%)</title><rect x="3878.0" y="205" width="0.8" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3881.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawPixmap (28 samples, 0.00%)</title><rect x="740.2" y="157" width="0.1" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::isOpen (348 samples, 0.05%)</title><rect x="2133.4" y="205" width="2.2" height="23.0" fill="rgb(250,164,49)" rx="2" ry="2" />
<text text-anchor="" x="2136.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3ffffffff (26 samples, 0.00%)</title><rect x="37.0" y="1069" width="0.2" height="23.0" fill="rgb(244,105,42)" rx="2" ry="2" />
<text text-anchor="" x="40.02" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::~QSet (52 samples, 0.01%)</title><rect x="348.6" y="1045" width="0.3" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="351.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::layout_helper (32 samples, 0.00%)</title><rect x="765.1" y="109" width="0.2" height="23.0" fill="rgb(243,170,41)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (25 samples, 0.00%)</title><rect x="3825.5" y="301" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3828.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::kateRange (449 samples, 0.06%)</title><rect x="3092.0" y="277" width="2.8" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3095.02" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::decorationsForLine (17 samples, 0.00%)</title><rect x="699.7" y="589" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="702.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (37 samples, 0.00%)</title><rect x="976.2" y="421" width="0.3" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="979.23" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (8,009 samples, 1.05%)</title><rect x="692.2" y="877" width="50.2" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="695.23" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb220 (20 samples, 0.00%)</title><rect x="98.0" y="1045" width="0.1" height="23.0" fill="rgb(233,92,30)" rx="2" ry="2" />
<text text-anchor="" x="101.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWindowSystemInterface::sendWindowSystemEvents (644,125 samples, 84.49%)</title><rect x="742.5" y="925" width="4038.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="745.46" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QWindowSystemInterface::sendWindowSystemEvents</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (89 samples, 0.01%)</title><rect x="3570.3" y="253" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3573.30" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afdf (916 samples, 0.12%)</title><rect x="158.5" y="1069" width="5.7" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="161.49" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (118 samples, 0.02%)</title><rect x="661.6" y="781" width="0.7" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (206 samples, 0.03%)</title><rect x="1748.0" y="229" width="1.3" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1751.04" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (20 samples, 0.00%)</title><rect x="743.1" y="733" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (16 samples, 0.00%)</title><rect x="104.9" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="107.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (29 samples, 0.00%)</title><rect x="4134.4" y="277" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4137.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (27 samples, 0.00%)</title><rect x="66.2" y="1045" width="0.2" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="69.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (119 samples, 0.02%)</title><rect x="1742.0" y="229" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1744.99" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::EditorPrivate::EditorPrivate (149 samples, 0.02%)</title><rect x="668.2" y="925" width="0.9" height="23.0" fill="rgb(245,138,45)" rx="2" ry="2" />
<text text-anchor="" x="671.17" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (274 samples, 0.04%)</title><rect x="4258.4" y="229" width="1.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4261.42" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateHlManager::KateHlManager (55 samples, 0.01%)</title><rect x="668.2" y="901" width="0.3" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="671.20" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::createEventDispatcher (115 samples, 0.02%)</title><rect x="691.3" y="925" width="0.7" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (178 samples, 0.02%)</title><rect x="58.6" y="1045" width="1.1" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="61.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (343 samples, 0.04%)</title><rect x="4050.2" y="325" width="2.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4053.22" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (45 samples, 0.01%)</title><rect x="3185.0" y="229" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3188.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (583 samples, 0.08%)</title><rect x="611.8" y="733" width="3.6" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="614.79" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (215 samples, 0.03%)</title><rect x="4782.1" y="493" width="1.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (226 samples, 0.03%)</title><rect x="973.8" y="349" width="1.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="976.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (42 samples, 0.01%)</title><rect x="1731.4" y="229" width="0.3" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="1734.40" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (78 samples, 0.01%)</title><rect x="534.2" y="1045" width="0.5" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="537.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (382 samples, 0.05%)</title><rect x="2343.4" y="301" width="2.4" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="2346.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (24 samples, 0.00%)</title><rect x="701.1" y="421" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (301 samples, 0.04%)</title><rect x="4199.9" y="253" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4202.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7d9 (33 samples, 0.00%)</title><rect x="2627.2" y="277" width="0.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="2630.25" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (1,795 samples, 0.24%)</title><rect x="2138.5" y="85" width="11.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="2141.49" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::insert (39 samples, 0.01%)</title><rect x="645.8" y="1069" width="0.3" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="648.85" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::isEmpty (69 samples, 0.01%)</title><rect x="3958.2" y="229" width="0.5" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3961.23" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (208 samples, 0.03%)</title><rect x="4127.2" y="349" width="1.3" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="4130.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadOnlyPart::~ReadOnlyPart (6,086 samples, 0.80%)</title><rect x="701.3" y="493" width="38.1" height="23.0" fill="rgb(239,171,37)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KPa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (203 samples, 0.03%)</title><rect x="1555.2" y="229" width="1.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1558.24" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (42 samples, 0.01%)</title><rect x="938.9" y="325" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="941.88" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (271 samples, 0.04%)</title><rect x="4584.1" y="253" width="1.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4587.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (265 samples, 0.03%)</title><rect x="2593.4" y="253" width="1.7" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="2596.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (33 samples, 0.00%)</title><rect x="652.9" y="901" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::textReadWrite (38 samples, 0.00%)</title><rect x="1727.1" y="277" width="0.2" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="1730.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fc8f6 (22 samples, 0.00%)</title><rect x="2223.9" y="85" width="0.2" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="2226.92" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::isEmpty (68 samples, 0.01%)</title><rect x="2430.4" y="229" width="0.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="2433.40" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStack<QSharedPointer<KTextEditor::MovingCursor> (45 samples, 0.01%)</title><rect x="260.7" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="263.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3ff (296 samples, 0.04%)</title><rect x="497.2" y="1069" width="1.8" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="500.15" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::maxStartPos (33 samples, 0.00%)</title><rect x="765.1" y="229" width="0.2" height="23.0" fill="rgb(239,118,38)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (117 samples, 0.02%)</title><rect x="661.6" y="637" width="0.7" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (1,707 samples, 0.22%)</title><rect x="1548.4" y="325" width="10.7" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1551.43" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (80 samples, 0.01%)</title><rect x="742.5" y="589" width="0.5" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (160 samples, 0.02%)</title><rect x="3615.5" y="205" width="1.0" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="3618.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (18 samples, 0.00%)</title><rect x="4052.8" y="397" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4055.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (6,588 samples, 0.86%)</title><rect x="701.0" y="733" width="41.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="704.04" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QAp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::textInserted (44,220 samples, 5.80%)</title><rect x="2055.6" y="301" width="277.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2058.57" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBuffer::textInserted</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (338 samples, 0.04%)</title><rect x="3185.7" y="253" width="2.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3188.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (17 samples, 0.00%)</title><rect x="532.3" y="1045" width="0.1" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="535.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::setEncoding (27 samples, 0.00%)</title><rect x="690.7" y="853" width="0.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="693.70" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (348 samples, 0.05%)</title><rect x="4188.2" y="301" width="2.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="4191.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlopen (52 samples, 0.01%)</title><rect x="668.6" y="709" width="0.4" height="23.0" fill="rgb(250,174,49)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QListData::Data*&> (89 samples, 0.01%)</title><rect x="2440.4" y="157" width="0.5" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="2443.38" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f704a9 (182 samples, 0.02%)</title><rect x="4359.9" y="349" width="1.1" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="4362.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<char>::deallocate (23 samples, 0.00%)</title><rect x="213.9" y="1045" width="0.2" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="216.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (50 samples, 0.01%)</title><rect x="637.3" y="685" width="0.3" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (196 samples, 0.03%)</title><rect x="1903.5" y="229" width="1.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="1906.48" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (1,090 samples, 0.14%)</title><rect x="4166.3" y="349" width="6.9" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4169.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::view (23 samples, 0.00%)</title><rect x="182.7" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="185.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (40 samples, 0.01%)</title><rect x="638.7" y="565" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b50f (1,970 samples, 0.26%)</title><rect x="563.3" y="1069" width="12.3" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="566.25" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcher::registerTimer (362 samples, 0.05%)</title><rect x="40.8" y="1045" width="2.2" height="23.0" fill="rgb(245,165,44)" rx="2" ry="2" />
<text text-anchor="" x="43.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (26 samples, 0.00%)</title><rect x="4514.1" y="325" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4517.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (184 samples, 0.02%)</title><rect x="974.1" y="325" width="1.2" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="977.10" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (60 samples, 0.01%)</title><rect x="60.7" y="1045" width="0.4" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="63.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (22 samples, 0.00%)</title><rect x="886.2" y="277" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="889.18" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::xToCursor (27 samples, 0.00%)</title><rect x="765.6" y="541" width="0.2" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="768.61" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (143 samples, 0.02%)</title><rect x="3096.4" y="253" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3099.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uniq_ptr_impl<KTextEditor::MovingRange, (17 samples, 0.00%)</title><rect x="107.4" y="1045" width="0.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="110.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (266 samples, 0.03%)</title><rect x="112.9" y="1069" width="1.7" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (1,068 samples, 0.14%)</title><rect x="2631.5" y="277" width="6.7" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="2634.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (38 samples, 0.00%)</title><rect x="693.3" y="541" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawImage (28 samples, 0.00%)</title><rect x="740.2" y="133" width="0.1" height="23.0" fill="rgb(248,193,47)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (22 samples, 0.00%)</title><rect x="261.4" y="1045" width="0.2" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="264.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (180 samples, 0.02%)</title><rect x="922.7" y="301" width="1.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="925.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editInsertText (138 samples, 0.02%)</title><rect x="514.4" y="1045" width="0.9" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="517.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (33 samples, 0.00%)</title><rect x="360.5" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="363.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (79 samples, 0.01%)</title><rect x="4499.8" y="229" width="0.5" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4502.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (44 samples, 0.01%)</title><rect x="4423.0" y="277" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4426.04" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (73 samples, 0.01%)</title><rect x="989.4" y="301" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="992.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (485 samples, 0.06%)</title><rect x="2314.6" y="253" width="3.0" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="2317.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::upper_bound<QPair<int, (2,016 samples, 0.26%)</title><rect x="3780.3" y="181" width="12.6" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="3783.31" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (215 samples, 0.03%)</title><rect x="4782.1" y="517" width="1.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (206 samples, 0.03%)</title><rect x="560.4" y="1045" width="1.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="563.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (20 samples, 0.00%)</title><rect x="656.9" y="1069" width="0.1" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="659.90" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (28 samples, 0.00%)</title><rect x="637.7" y="781" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (20 samples, 0.00%)</title><rect x="226.4" y="1045" width="0.2" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="229.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (40 samples, 0.01%)</title><rect x="89.1" y="1045" width="0.3" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="92.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (6,425 samples, 0.84%)</title><rect x="701.3" y="685" width="40.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KMa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::unicode (162 samples, 0.02%)</title><rect x="4586.8" y="325" width="1.0" height="23.0" fill="rgb(250,191,49)" rx="2" ry="2" />
<text text-anchor="" x="4589.79" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (293 samples, 0.04%)</title><rect x="2382.9" y="181" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2385.92" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (164 samples, 0.02%)</title><rect x="653.5" y="877" width="1.0" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::~KateBuffer (1,361 samples, 0.18%)</title><rect x="701.3" y="397" width="8.5" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::startInternal (20 samples, 0.00%)</title><rect x="3198.7" y="205" width="0.1" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3201.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (31 samples, 0.00%)</title><rect x="4035.2" y="373" width="0.2" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="4038.17" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (31 samples, 0.00%)</title><rect x="287.0" y="1045" width="0.2" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="289.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (40 samples, 0.01%)</title><rect x="638.7" y="517" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleObject::isValid (20 samples, 0.00%)</title><rect x="627.5" y="1069" width="0.1" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="630.45" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup (330 samples, 0.04%)</title><rect x="4096.5" y="349" width="2.1" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="4099.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::copy<std::move_iterator<Kate::TextRange**>, (19 samples, 0.00%)</title><rect x="182.0" y="1045" width="0.1" height="23.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text text-anchor="" x="184.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (171 samples, 0.02%)</title><rect x="657.0" y="1069" width="1.1" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="660.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (22 samples, 0.00%)</title><rect x="2421.4" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2424.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (211 samples, 0.03%)</title><rect x="1738.5" y="181" width="1.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1741.55" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (23 samples, 0.00%)</title><rect x="141.3" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="144.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::documentEnd (16,752 samples, 2.20%)</title><rect x="781.7" y="397" width="105.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="784.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7374c4eb (338 samples, 0.04%)</title><rect x="647.3" y="1045" width="2.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (74 samples, 0.01%)</title><rect x="483.7" y="1045" width="0.4" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="486.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (85 samples, 0.01%)</title><rect x="4379.0" y="277" width="0.6" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4382.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (1,089 samples, 0.14%)</title><rect x="4087.3" y="325" width="6.8" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4090.25" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1d7d8 (104 samples, 0.01%)</title><rect x="2972.3" y="301" width="0.6" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2975.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (173 samples, 0.02%)</title><rect x="4607.7" y="253" width="1.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4610.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isEmpty (744 samples, 0.10%)</title><rect x="2990.8" y="301" width="4.6" height="23.0" fill="rgb(243,138,42)" rx="2" ry="2" />
<text text-anchor="" x="2993.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::isValid (17 samples, 0.00%)</title><rect x="297.8" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="300.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (21 samples, 0.00%)</title><rect x="225.3" y="1045" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="228.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator<Kate::TextRange*>::construct<Kate::TextRange*, (78 samples, 0.01%)</title><rect x="253.5" y="1045" width="0.4" height="23.0" fill="rgb(234,132,32)" rx="2" ry="2" />
<text text-anchor="" x="256.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (39 samples, 0.01%)</title><rect x="2444.1" y="229" width="0.2" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="2447.06" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffe00000002 (23 samples, 0.00%)</title><rect x="116.4" y="1069" width="0.2" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="119.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (88 samples, 0.01%)</title><rect x="2595.3" y="277" width="0.6" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2598.31" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow@plt (38 samples, 0.00%)</title><rect x="4252.6" y="301" width="0.3" height="23.0" fill="rgb(231,142,29)" rx="2" ry="2" />
<text text-anchor="" x="4255.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (41 samples, 0.01%)</title><rect x="3177.1" y="229" width="0.3" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="3180.12" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b7ff (934 samples, 0.12%)</title><rect x="585.8" y="1069" width="5.9" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="588.85" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23fe2f (111 samples, 0.01%)</title><rect x="63.6" y="1069" width="0.7" height="23.0" fill="rgb(241,99,40)" rx="2" ry="2" />
<text text-anchor="" x="66.63" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPlatformIntegrationFactory::create (58 samples, 0.01%)</title><rect x="691.3" y="877" width="0.3" height="23.0" fill="rgb(245,206,45)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (32 samples, 0.00%)</title><rect x="145.3" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="148.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (876 samples, 0.11%)</title><rect x="3673.5" y="157" width="5.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3676.53" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (313 samples, 0.04%)</title><rect x="4258.3" y="253" width="1.9" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4261.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (53 samples, 0.01%)</title><rect x="1084.8" y="277" width="0.4" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1087.84" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (46 samples, 0.01%)</title><rect x="147.7" y="1045" width="0.3" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="150.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (3,804 samples, 0.50%)</title><rect x="2571.4" y="277" width="23.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2574.39" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::paintEvent (29 samples, 0.00%)</title><rect x="653.5" y="805" width="0.2" height="23.0" fill="rgb(241,207,39)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (17 samples, 0.00%)</title><rect x="627.7" y="469" width="0.1" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QVector<QTextLayout::FormatRange> (21 samples, 0.00%)</title><rect x="694.8" y="565" width="0.1" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="697.76" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736d0389 (59 samples, 0.01%)</title><rect x="696.4" y="517" width="0.4" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="699.45" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (134 samples, 0.02%)</title><rect x="3226.3" y="181" width="0.8" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3229.28" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (520 samples, 0.07%)</title><rect x="4717.3" y="301" width="3.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4720.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::insertText (12,978 samples, 1.70%)</title><rect x="2162.0" y="229" width="81.4" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2165.04" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateCompl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b6bf (42 samples, 0.01%)</title><rect x="584.3" y="1069" width="0.2" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="587.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (33 samples, 0.00%)</title><rect x="741.2" y="397" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::swap (946 samples, 0.12%)</title><rect x="4686.9" y="373" width="6.0" height="23.0" fill="rgb(233,160,31)" rx="2" ry="2" />
<text text-anchor="" x="4689.93" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (112 samples, 0.01%)</title><rect x="386.3" y="1045" width="0.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="389.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (110 samples, 0.01%)</title><rect x="655.1" y="901" width="0.6" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="658.06" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawComplexControl (29 samples, 0.00%)</title><rect x="653.5" y="781" width="0.2" height="23.0" fill="rgb(235,145,33)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="4583.9" y="253" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4586.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3ef (112 samples, 0.01%)</title><rect x="495.8" y="1069" width="0.7" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="498.82" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73727fc2 (42 samples, 0.01%)</title><rect x="739.8" y="445" width="0.2" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="742.77" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (202 samples, 0.03%)</title><rect x="4714.0" y="325" width="1.2" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4716.98" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingChangedBuffer (176 samples, 0.02%)</title><rect x="2558.1" y="277" width="1.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="2561.12" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (144 samples, 0.02%)</title><rect x="997.4" y="325" width="0.9" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="1000.42" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (34 samples, 0.00%)</title><rect x="701.1" y="661" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::remove (63 samples, 0.01%)</title><rect x="3716.4" y="133" width="0.4" height="23.0" fill="rgb(242,142,41)" rx="2" ry="2" />
<text text-anchor="" x="3719.41" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (40 samples, 0.01%)</title><rect x="638.7" y="445" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (33 samples, 0.00%)</title><rect x="4184.6" y="205" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4187.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::setLineWidth (32 samples, 0.00%)</title><rect x="765.1" y="133" width="0.2" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::history (42 samples, 0.01%)</title><rect x="1649.5" y="277" width="0.2" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="1652.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736fde1e (19 samples, 0.00%)</title><rect x="111.6" y="1069" width="0.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="114.59" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (80 samples, 0.01%)</title><rect x="742.5" y="613" width="0.5" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (266 samples, 0.03%)</title><rect x="112.9" y="1021" width="1.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::end (44 samples, 0.01%)</title><rect x="4252.9" y="301" width="0.2" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="4255.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (19 samples, 0.00%)</title><rect x="120.7" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="123.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::openFile (3,284 samples, 0.43%)</title><rect x="744.0" y="373" width="20.6" height="23.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text text-anchor="" x="746.97" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (16 samples, 0.00%)</title><rect x="653.3" y="781" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.27" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (289 samples, 0.04%)</title><rect x="2371.4" y="205" width="1.8" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="2374.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::view (507 samples, 0.07%)</title><rect x="245.3" y="1045" width="3.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="248.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (874 samples, 0.11%)</title><rect x="2954.6" y="301" width="5.5" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="2957.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (1,102 samples, 0.14%)</title><rect x="4514.3" y="325" width="6.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4517.30" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI__dl_catch_error (52 samples, 0.01%)</title><rect x="668.6" y="661" width="0.4" height="23.0" fill="rgb(242,119,41)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::tabWidth@plt (27 samples, 0.00%)</title><rect x="2496.4" y="349" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2499.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (825 samples, 0.11%)</title><rect x="4191.1" y="325" width="5.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4194.13" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (1,865 samples, 0.24%)</title><rect x="2109.5" y="157" width="11.7" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="2112.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (166 samples, 0.02%)</title><rect x="4438.5" y="253" width="1.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4441.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (255 samples, 0.03%)</title><rect x="635.0" y="1069" width="1.6" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="638.04" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (39 samples, 0.01%)</title><rect x="4610.4" y="349" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4613.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (38 samples, 0.00%)</title><rect x="656.4" y="1069" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="659.45" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (139 samples, 0.02%)</title><rect x="2149.7" y="85" width="0.9" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="2152.75" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (18 samples, 0.00%)</title><rect x="2475.5" y="325" width="0.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="2478.49" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (106 samples, 0.01%)</title><rect x="876.8" y="325" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="879.80" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (41 samples, 0.01%)</title><rect x="4163.2" y="349" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4166.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (59 samples, 0.01%)</title><rect x="222.7" y="1045" width="0.4" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="225.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b23f (1,892 samples, 0.25%)</title><rect x="337.6" y="1069" width="11.9" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="340.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (27 samples, 0.00%)</title><rect x="495.9" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="498.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (31 samples, 0.00%)</title><rect x="140.1" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="143.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736f1d11 (31 samples, 0.00%)</title><rect x="739.8" y="421" width="0.2" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="742.78" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4bf (56 samples, 0.01%)</title><rect x="553.5" y="1069" width="0.3" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="556.47" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::postMessage (17 samples, 0.00%)</title><rect x="669.2" y="877" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (90 samples, 0.01%)</title><rect x="2503.5" y="349" width="0.6" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2506.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawLines (26 samples, 0.00%)</title><rect x="652.9" y="637" width="0.2" height="23.0" fill="rgb(242,193,41)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (21 samples, 0.00%)</title><rect x="4573.1" y="253" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4576.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (30 samples, 0.00%)</title><rect x="2514.2" y="253" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2517.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (193 samples, 0.03%)</title><rect x="4438.4" y="277" width="1.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4441.36" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (22 samples, 0.00%)</title><rect x="654.6" y="805" width="0.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="657.59" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine@plt (122 samples, 0.02%)</title><rect x="1081.9" y="253" width="0.8" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1084.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::upper_bound<QPair<int, (16 samples, 0.00%)</title><rect x="24.2" y="1045" width="0.1" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="27.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (151 samples, 0.02%)</title><rect x="3184.0" y="181" width="1.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3187.04" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (44 samples, 0.01%)</title><rect x="4651.8" y="325" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4654.83" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (46 samples, 0.01%)</title><rect x="416.1" y="1045" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="419.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStaticStringData<1>::data_ptr (82 samples, 0.01%)</title><rect x="465.9" y="1045" width="0.5" height="23.0" fill="rgb(238,166,37)" rx="2" ry="2" />
<text text-anchor="" x="468.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::removeText (8,430 samples, 1.11%)</title><rect x="3609.9" y="229" width="52.8" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3612.88" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (760 samples, 0.10%)</title><rect x="881.6" y="301" width="4.7" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="884.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (216 samples, 0.03%)</title><rect x="64.7" y="1045" width="1.4" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="67.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (49 samples, 0.01%)</title><rect x="1788.6" y="61" width="0.3" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1791.63" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (162 samples, 0.02%)</title><rect x="4449.7" y="253" width="1.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4452.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (41 samples, 0.01%)</title><rect x="638.7" y="973" width="0.2" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (210 samples, 0.03%)</title><rect x="4112.5" y="277" width="1.3" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4115.51" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x458067b9b652afff (35 samples, 0.00%)</title><rect x="38.5" y="1069" width="0.2" height="23.0" fill="rgb(244,102,42)" rx="2" ry="2" />
<text text-anchor="" x="41.46" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (111 samples, 0.01%)</title><rect x="4249.4" y="277" width="0.7" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4252.40" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (289 samples, 0.04%)</title><rect x="3159.1" y="109" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3162.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::escapePlaintext (11,965 samples, 1.57%)</title><rect x="4540.4" y="373" width="75.0" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="4543.40" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateRegE..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::operator (1,585 samples, 0.21%)</title><rect x="888.2" y="421" width="9.9" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="891.17" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (425 samples, 0.06%)</title><rect x="3946.5" y="229" width="2.7" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3949.55" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (215 samples, 0.03%)</title><rect x="4782.1" y="685" width="1.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (94 samples, 0.01%)</title><rect x="3226.5" y="157" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3229.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KWrite::KWrite (500 samples, 0.07%)</title><rect x="666.1" y="997" width="3.1" height="23.0" fill="rgb(240,120,38)" rx="2" ry="2" />
<text text-anchor="" x="669.08" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (18 samples, 0.00%)</title><rect x="385.0" y="1045" width="0.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (402 samples, 0.05%)</title><rect x="628.1" y="733" width="2.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="631.12" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (23 samples, 0.00%)</title><rect x="4628.5" y="277" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4631.47" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcherPrivate::releaseTimerId (800 samples, 0.10%)</title><rect x="3687.4" y="157" width="5.0" height="23.0" fill="rgb(243,165,41)" rx="2" ry="2" />
<text text-anchor="" x="3690.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine@plt (21 samples, 0.00%)</title><rect x="3227.3" y="229" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3230.33" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf24 (39 samples, 0.01%)</title><rect x="4501.4" y="325" width="0.2" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="4504.36" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (279 samples, 0.04%)</title><rect x="1078.8" y="229" width="1.7" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="1081.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (285 samples, 0.04%)</title><rect x="2091.9" y="109" width="1.8" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2094.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::internalSwap (19 samples, 0.00%)</title><rect x="177.1" y="1045" width="0.1" height="23.0" fill="rgb(233,166,31)" rx="2" ry="2" />
<text text-anchor="" x="180.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::isDetached (763 samples, 0.10%)</title><rect x="4715.8" y="325" width="4.8" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="4718.79" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (28 samples, 0.00%)</title><rect x="4679.4" y="277" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4682.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (81 samples, 0.01%)</title><rect x="484.3" y="1045" width="0.5" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="487.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (40 samples, 0.01%)</title><rect x="638.7" y="589" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (26 samples, 0.00%)</title><rect x="309.0" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="312.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (78 samples, 0.01%)</title><rect x="2093.7" y="109" width="0.5" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2096.68" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (92 samples, 0.01%)</title><rect x="4156.2" y="253" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="4159.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (56 samples, 0.01%)</title><rect x="4061.8" y="349" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4064.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (1,304 samples, 0.17%)</title><rect x="3994.6" y="325" width="8.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="3997.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (29 samples, 0.00%)</title><rect x="322.2" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="325.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (816 samples, 0.11%)</title><rect x="4394.9" y="229" width="5.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="4397.92" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (4,382 samples, 0.57%)</title><rect x="3734.5" y="181" width="27.5" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="3737.50" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (214 samples, 0.03%)</title><rect x="4594.0" y="325" width="1.3" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="4596.95" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (327 samples, 0.04%)</title><rect x="1554.5" y="253" width="2.0" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="1557.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (260 samples, 0.03%)</title><rect x="699.3" y="709" width="1.7" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b5ff (30 samples, 0.00%)</title><rect x="576.8" y="1069" width="0.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="579.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f733392b7 (26 samples, 0.00%)</title><rect x="111.1" y="1069" width="0.2" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="114.15" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (9,448 samples, 1.24%)</title><rect x="2395.3" y="301" width="59.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2398.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateUn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::insertText (211 samples, 0.03%)</title><rect x="434.5" y="1045" width="1.4" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="437.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73549a35 (53 samples, 0.01%)</title><rect x="668.6" y="853" width="0.4" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (160 samples, 0.02%)</title><rect x="1782.6" y="133" width="1.0" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="1785.60" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (35 samples, 0.00%)</title><rect x="4667.6" y="253" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4670.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (30 samples, 0.00%)</title><rect x="468.0" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="470.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::rangesForLine (17 samples, 0.00%)</title><rect x="699.7" y="565" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="702.71" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::atEndOfDocument@plt (21 samples, 0.00%)</title><rect x="887.6" y="421" width="0.1" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="890.58" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite (251 samples, 0.03%)</title><rect x="1044.4" y="325" width="1.6" height="23.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="1047.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::startInternal (22 samples, 0.00%)</title><rect x="258.9" y="1045" width="0.1" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="261.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (562 samples, 0.07%)</title><rect x="2465.2" y="229" width="3.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2468.20" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::last (1,249 samples, 0.16%)</title><rect x="3952.6" y="253" width="7.8" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="3955.56" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (164 samples, 0.02%)</title><rect x="653.5" y="901" width="1.0" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy_aux<true>::__destroy<Kate::TextRange**> (23 samples, 0.00%)</title><rect x="82.5" y="1045" width="0.2" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="85.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (155 samples, 0.02%)</title><rect x="4460.7" y="325" width="1.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4463.72" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwapDiffCreator::qt_metacall (79 samples, 0.01%)</title><rect x="606.5" y="1045" width="0.5" height="23.0" fill="rgb(230,157,28)" rx="2" ry="2" />
<text text-anchor="" x="609.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::xToCursor (25 samples, 0.00%)</title><rect x="765.4" y="541" width="0.1" height="23.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text text-anchor="" x="768.37" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (1,554 samples, 0.20%)</title><rect x="834.5" y="277" width="9.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="837.51" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::isNull (45 samples, 0.01%)</title><rect x="226.1" y="1045" width="0.3" height="23.0" fill="rgb(224,218,21)" rx="2" ry="2" />
<text text-anchor="" x="229.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (48,234 samples, 6.33%)</title><rect x="2645.7" y="277" width="302.4" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2648.68" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QtPrivate::QSlotObject<void</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (755 samples, 0.10%)</title><rect x="2955.3" y="277" width="4.8" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="2958.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (10,712 samples, 1.41%)</title><rect x="3276.9" y="253" width="67.1" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="3279.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHash<K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (173 samples, 0.02%)</title><rect x="740.1" y="445" width="1.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="743.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::split@plt (174 samples, 0.02%)</title><rect x="4511.3" y="349" width="1.1" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4514.27" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (30 samples, 0.00%)</title><rect x="3882.1" y="277" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3885.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (280 samples, 0.04%)</title><rect x="973.5" y="373" width="1.8" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="976.50" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (57 samples, 0.01%)</title><rect x="490.4" y="1045" width="0.3" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="493.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (184 samples, 0.02%)</title><rect x="4362.4" y="349" width="1.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4365.42" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::size (61 samples, 0.01%)</title><rect x="1723.8" y="229" width="0.4" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="1726.83" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::resize (109 samples, 0.01%)</title><rect x="636.6" y="1069" width="0.7" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="639.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (373 samples, 0.05%)</title><rect x="300.1" y="1045" width="2.3" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (16 samples, 0.00%)</title><rect x="601.4" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="604.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b10675 (81 samples, 0.01%)</title><rect x="742.5" y="781" width="0.5" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (26 samples, 0.00%)</title><rect x="937.9" y="301" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="940.89" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb652b4bf (26 samples, 0.00%)</title><rect x="602.0" y="1069" width="0.1" height="23.0" fill="rgb(237,109,36)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (33 samples, 0.00%)</title><rect x="780.6" y="397" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="783.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b47f (954 samples, 0.13%)</title><rect x="543.7" y="1069" width="6.0" height="23.0" fill="rgb(248,92,48)" rx="2" ry="2" />
<text text-anchor="" x="546.71" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (159 samples, 0.02%)</title><rect x="4532.5" y="277" width="1.0" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4535.55" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>typeinfo (19 samples, 0.00%)</title><rect x="4789.4" y="1069" width="0.2" height="23.0" fill="rgb(248,169,47)" rx="2" ry="2" />
<text text-anchor="" x="4792.44" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (672 samples, 0.09%)</title><rect x="3141.5" y="253" width="4.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="3144.49" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (380 samples, 0.05%)</title><rect x="4188.0" y="325" width="2.4" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="4191.05" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (30 samples, 0.00%)</title><rect x="430.9" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="433.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (131 samples, 0.02%)</title><rect x="478.1" y="1045" width="0.8" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="481.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::setAutoSaveSettings (254 samples, 0.03%)</title><rect x="666.1" y="973" width="1.6" height="23.0" fill="rgb(240,186,39)" rx="2" ry="2" />
<text text-anchor="" x="669.08" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (35 samples, 0.00%)</title><rect x="304.0" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="306.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>git_libgit2_init (19 samples, 0.00%)</title><rect x="669.0" y="901" width="0.1" height="23.0" fill="rgb(236,149,34)" rx="2" ry="2" />
<text text-anchor="" x="671.98" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7d0 (22 samples, 0.00%)</title><rect x="3604.0" y="253" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="3607.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (260 samples, 0.03%)</title><rect x="204.7" y="1045" width="1.6" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="207.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2 (32 samples, 0.00%)</title><rect x="31.2" y="1069" width="0.2" height="23.0" fill="rgb(244,109,42)" rx="2" ry="2" />
<text text-anchor="" x="34.24" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (267 samples, 0.04%)</title><rect x="4460.0" y="349" width="1.7" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="4463.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (21 samples, 0.00%)</title><rect x="4582.4" y="205" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4585.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (1,069 samples, 0.14%)</title><rect x="2462.3" y="301" width="6.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2465.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (35 samples, 0.00%)</title><rect x="151.8" y="1045" width="0.3" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="154.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::removeText@plt (51 samples, 0.01%)</title><rect x="3719.0" y="229" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3721.99" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListSpecialMethods<KateUndoGroup*>::~QListSpecialMethods (16 samples, 0.00%)</title><rect x="3972.4" y="205" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="3975.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (334 samples, 0.04%)</title><rect x="608.1" y="925" width="2.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (205 samples, 0.03%)</title><rect x="317.7" y="1045" width="1.3" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="320.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (75 samples, 0.01%)</title><rect x="32.3" y="1045" width="0.5" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="35.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b5af (78 samples, 0.01%)</title><rect x="575.8" y="1069" width="0.5" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="578.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qHash (139 samples, 0.02%)</title><rect x="175.2" y="1045" width="0.9" height="23.0" fill="rgb(241,172,40)" rx="2" ry="2" />
<text text-anchor="" x="178.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::xToCursor (25 samples, 0.00%)</title><rect x="765.4" y="565" width="0.1" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="768.37" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (17 samples, 0.00%)</title><rect x="669.2" y="565" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::mergeWith (295 samples, 0.04%)</title><rect x="391.7" y="1045" width="1.8" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="394.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlopen (177 samples, 0.02%)</title><rect x="666.1" y="613" width="1.1" height="23.0" fill="rgb(250,174,49)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (71 samples, 0.01%)</title><rect x="655.7" y="973" width="0.5" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (126 samples, 0.02%)</title><rect x="661.6" y="1045" width="0.8" height="23.0" fill="rgb(247,83,46)" rx="2" ry="2" />
<text text-anchor="" x="664.59" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (18 samples, 0.00%)</title><rect x="601.3" y="1045" width="0.1" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="604.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (17 samples, 0.00%)</title><rect x="3878.7" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3881.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (34 samples, 0.00%)</title><rect x="452.2" y="1045" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="455.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,354 samples, 0.18%)</title><rect x="1073.4" y="253" width="8.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1076.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (133 samples, 0.02%)</title><rect x="4025.4" y="325" width="0.8" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="4028.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (25 samples, 0.00%)</title><rect x="655.4" y="733" width="0.1" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="658.38" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::shared_null (31 samples, 0.00%)</title><rect x="642.4" y="1069" width="0.2" height="23.0" fill="rgb(224,142,21)" rx="2" ry="2" />
<text text-anchor="" x="645.36" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (154 samples, 0.02%)</title><rect x="650.5" y="1069" width="1.0" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="653.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (81 samples, 0.01%)</title><rect x="521.2" y="1045" width="0.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="524.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (185 samples, 0.02%)</title><rect x="4021.6" y="301" width="1.1" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4024.57" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (48 samples, 0.01%)</title><rect x="2333.0" y="301" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2335.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (501 samples, 0.07%)</title><rect x="4059.0" y="373" width="3.2" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="4062.04" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (54 samples, 0.01%)</title><rect x="637.9" y="661" width="0.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.90" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (363 samples, 0.05%)</title><rect x="416.6" y="1045" width="2.3" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="419.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement@plt (22 samples, 0.00%)</title><rect x="4233.4" y="373" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4236.35" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::_Val_comp_iter<bool (27 samples, 0.00%)</title><rect x="167.5" y="1045" width="0.2" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="170.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (23 samples, 0.00%)</title><rect x="4574.2" y="205" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4577.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::kateTextLine (66 samples, 0.01%)</title><rect x="476.9" y="1045" width="0.4" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="479.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (121 samples, 0.02%)</title><rect x="128.6" y="1045" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="131.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::processWindowSystemEvent (644,120 samples, 84.49%)</title><rect x="742.5" y="901" width="4038.6" height="23.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text text-anchor="" x="745.46" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QGuiApplicationPrivate::processWindowSystemEvent</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (205 samples, 0.03%)</title><rect x="788.9" y="301" width="1.3" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="791.89" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,144 samples, 0.15%)</title><rect x="4153.4" y="301" width="7.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4156.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (417 samples, 0.05%)</title><rect x="4135.9" y="277" width="2.6" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4138.86" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (76 samples, 0.01%)</title><rect x="634.1" y="1069" width="0.5" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="637.10" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<KTextEditor::SearchOption>::testFlag (292 samples, 0.04%)</title><rect x="556.6" y="1045" width="1.8" height="23.0" fill="rgb(239,201,38)" rx="2" ry="2" />
<text text-anchor="" x="559.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (21 samples, 0.00%)</title><rect x="2480.6" y="325" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2483.59" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (113 samples, 0.01%)</title><rect x="4128.5" y="349" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4131.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::qt_static_metacall (259 samples, 0.03%)</title><rect x="699.3" y="637" width="1.7" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::text (63 samples, 0.01%)</title><rect x="257.9" y="1045" width="0.4" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="260.87" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (73 samples, 0.01%)</title><rect x="4159.9" y="205" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4162.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (129 samples, 0.02%)</title><rect x="1053.7" y="277" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1056.70" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::isEmpty (27 samples, 0.00%)</title><rect x="302.5" y="1045" width="0.1" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="305.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (28 samples, 0.00%)</title><rect x="637.7" y="685" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (4,613 samples, 0.61%)</title><rect x="3910.3" y="205" width="28.9" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="3913.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::editEnd (25 samples, 0.00%)</title><rect x="887.9" y="349" width="0.1" height="23.0" fill="rgb(248,118,48)" rx="2" ry="2" />
<text text-anchor="" x="890.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (117 samples, 0.02%)</title><rect x="642.7" y="1069" width="0.7" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="645.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWindowPrivate::create (251 samples, 0.03%)</title><rect x="666.1" y="829" width="1.6" height="23.0" fill="rgb(245,142,45)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<KTextEditor::Range>*> (36 samples, 0.00%)</title><rect x="4709.4" y="373" width="0.2" height="23.0" fill="rgb(240,140,38)" rx="2" ry="2" />
<text text-anchor="" x="4712.36" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator* (19 samples, 0.00%)</title><rect x="362.7" y="1045" width="0.1" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="365.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::empty (493 samples, 0.06%)</title><rect x="3150.3" y="229" width="3.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3153.32" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (48 samples, 0.01%)</title><rect x="474.8" y="1045" width="0.3" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="477.84" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (31 samples, 0.00%)</title><rect x="233.3" y="1045" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="236.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (497 samples, 0.07%)</title><rect x="3669.5" y="181" width="3.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3672.49" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (55 samples, 0.01%)</title><rect x="652.9" y="925" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (110 samples, 0.01%)</title><rect x="4074.5" y="349" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4077.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoGroup::addItem (132 samples, 0.02%)</title><rect x="412.9" y="1045" width="0.9" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="415.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (341 samples, 0.04%)</title><rect x="608.1" y="1021" width="2.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="611.06" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (105 samples, 0.01%)</title><rect x="4643.3" y="301" width="0.7" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4646.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawCachedGlyphs (338 samples, 0.04%)</title><rect x="647.3" y="997" width="2.1" height="23.0" fill="rgb(238,193,36)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InputModeManager::marks (52 samples, 0.01%)</title><rect x="249.0" y="1045" width="0.3" height="23.0" fill="rgb(233,118,31)" rx="2" ry="2" />
<text text-anchor="" x="251.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (32 samples, 0.00%)</title><rect x="935.7" y="349" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="938.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb658ca30 (36 samples, 0.00%)</title><rect x="593.0" y="1069" width="0.2" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="595.96" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>(anonymous (39 samples, 0.01%)</title><rect x="140.3" y="1045" width="0.3" height="23.0" fill="rgb(236,178,34)" rx="2" ry="2" />
<text text-anchor="" x="143.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (112 samples, 0.01%)</title><rect x="2370.2" y="157" width="0.7" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2373.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InsertViMode::textInserted (90 samples, 0.01%)</title><rect x="1126.1" y="253" width="0.6" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1129.09" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (83 samples, 0.01%)</title><rect x="793.6" y="277" width="0.5" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="796.63" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (25 samples, 0.00%)</title><rect x="466.6" y="1045" width="0.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="469.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (102 samples, 0.01%)</title><rect x="296.3" y="1045" width="0.6" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="299.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (115 samples, 0.02%)</title><rect x="115.2" y="1045" width="0.8" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="118.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::feedback (125 samples, 0.02%)</title><rect x="3238.2" y="277" width="0.8" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="3241.23" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QtSharedPointer::ExternalRefCountData*> (22 samples, 0.00%)</title><rect x="181.8" y="1045" width="0.2" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="184.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (96 samples, 0.01%)</title><rect x="3363.1" y="253" width="0.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="3366.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (51 samples, 0.01%)</title><rect x="3195.9" y="181" width="0.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3198.91" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__class_type_info::__do_dyncast (26 samples, 0.00%)</title><rect x="3910.1" y="205" width="0.2" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="3913.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (289 samples, 0.04%)</title><rect x="3878.9" y="181" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3881.92" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::search(QString (101 samples, 0.01%)</title><rect x="618.4" y="1069" width="0.6" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="621.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::QByteArray (16 samples, 0.00%)</title><rect x="235.1" y="1045" width="0.1" height="23.0" fill="rgb(239,218,37)" rx="2" ry="2" />
<text text-anchor="" x="238.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::allocate (93 samples, 0.01%)</title><rect x="494.0" y="1045" width="0.6" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="496.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QSet<Kate::TextCursor*>&> (24 samples, 0.00%)</title><rect x="322.7" y="1045" width="0.1" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="325.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (28 samples, 0.00%)</title><rect x="637.7" y="805" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (86 samples, 0.01%)</title><rect x="615.5" y="1069" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="618.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (22 samples, 0.00%)</title><rect x="147.5" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="150.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (209 samples, 0.03%)</title><rect x="3717.1" y="133" width="1.3" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="3720.13" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (340 samples, 0.04%)</title><rect x="608.1" y="997" width="2.1" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="611.07" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::updatePixmap (1,051 samples, 0.14%)</title><rect x="692.5" y="613" width="6.6" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="695.51" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (1,907 samples, 0.25%)</title><rect x="3351.2" y="253" width="11.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3354.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (137 samples, 0.02%)</title><rect x="4614.5" y="253" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4617.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b0df (904 samples, 0.12%)</title><rect x="256.9" y="1069" width="5.6" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="259.86" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::killTimer (141 samples, 0.02%)</title><rect x="357.0" y="1045" width="0.9" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="360.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uninitialized_copy<true>::__uninit_copy<std::move_iterator<Kate::TextRange**>, (39 samples, 0.01%)</title><rect x="194.8" y="1045" width="0.2" height="23.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text text-anchor="" x="197.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toUtf8_helper@plt (365 samples, 0.05%)</title><rect x="2156.5" y="181" width="2.2" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="2159.46" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (140 samples, 0.02%)</title><rect x="4456.8" y="325" width="0.9" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4459.78" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawPoint (58 samples, 0.01%)</title><rect x="700.2" y="589" width="0.3" height="23.0" fill="rgb(238,203,36)" rx="2" ry="2" />
<text text-anchor="" x="703.18" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (165 samples, 0.02%)</title><rect x="218.5" y="1045" width="1.0" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="221.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (22 samples, 0.00%)</title><rect x="488.8" y="1045" width="0.1" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="491.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::setColumn (162 samples, 0.02%)</title><rect x="2168.9" y="205" width="1.0" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2171.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f7da7f (104 samples, 0.01%)</title><rect x="3372.3" y="253" width="0.6" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="3375.27" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::onSingleLine (572 samples, 0.08%)</title><rect x="4028.2" y="349" width="3.5" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4031.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (25 samples, 0.00%)</title><rect x="887.9" y="397" width="0.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="890.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (267 samples, 0.04%)</title><rect x="4471.8" y="349" width="1.7" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="4474.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (1,780 samples, 0.23%)</title><rect x="4709.8" y="397" width="11.2" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4712.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::event (29 samples, 0.00%)</title><rect x="653.5" y="853" width="0.2" height="23.0" fill="rgb(241,207,39)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (33 samples, 0.00%)</title><rect x="3234.7" y="109" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3237.65" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a920 (33 samples, 0.00%)</title><rect x="4507.5" y="301" width="0.2" height="23.0" fill="rgb(228,92,25)" rx="2" ry="2" />
<text text-anchor="" x="4510.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (775 samples, 0.10%)</title><rect x="2436.2" y="229" width="4.9" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="2439.24" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (148 samples, 0.02%)</title><rect x="1563.2" y="301" width="1.0" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="1566.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (20 samples, 0.00%)</title><rect x="116.2" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="119.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (2,203 samples, 0.29%)</title><rect x="844.3" y="277" width="13.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="847.26" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (507 samples, 0.07%)</title><rect x="4444.9" y="325" width="3.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4447.86" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (20 samples, 0.00%)</title><rect x="653.3" y="853" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.27" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::isDetached (16 samples, 0.00%)</title><rect x="550.1" y="1045" width="0.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="553.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendThroughApplicationEventFilters (26 samples, 0.00%)</title><rect x="741.6" y="709" width="0.1" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="744.55" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextRemoved (21 samples, 0.00%)</title><rect x="625.4" y="1069" width="0.1" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="628.38" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (16 samples, 0.00%)</title><rect x="265.2" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="268.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb247 (36 samples, 0.00%)</title><rect x="2242.9" y="133" width="0.2" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="2245.90" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xc (40 samples, 0.01%)</title><rect x="606.0" y="1069" width="0.2" height="23.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text text-anchor="" x="608.97" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (50 samples, 0.01%)</title><rect x="637.3" y="709" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::MatchHighlighter::qt_metacall (29 samples, 0.00%)</title><rect x="4134.4" y="301" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="4137.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (493 samples, 0.06%)</title><rect x="627.6" y="1045" width="3.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="630.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<KTextEditor::MovingCursor*> (21 samples, 0.00%)</title><rect x="181.7" y="1045" width="0.1" height="23.0" fill="rgb(237,140,35)" rx="2" ry="2" />
<text text-anchor="" x="184.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line@plt (412 samples, 0.05%)</title><rect x="4065.4" y="373" width="2.6" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4068.39" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::swap (38 samples, 0.00%)</title><rect x="4721.0" y="397" width="0.2" height="23.0" fill="rgb(233,160,31)" rx="2" ry="2" />
<text text-anchor="" x="4723.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (215 samples, 0.03%)</title><rect x="4782.1" y="661" width="1.3" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::startTimer (25 samples, 0.00%)</title><rect x="74.2" y="1045" width="0.2" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="77.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (24 samples, 0.00%)</title><rect x="4609.0" y="325" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4611.97" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::~QExplicitlySharedDataPointer (261 samples, 0.03%)</title><rect x="2249.8" y="181" width="1.7" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="2252.85" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (364 samples, 0.05%)</title><rect x="628.4" y="613" width="2.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="631.36" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::applyMainWindowSettings (254 samples, 0.03%)</title><rect x="666.1" y="925" width="1.6" height="23.0" fill="rgb(240,186,39)" rx="2" ry="2" />
<text text-anchor="" x="669.08" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontEngine::unlockAlphaMapForGlyph (102 samples, 0.01%)</title><rect x="624.4" y="925" width="0.6" height="23.0" fill="rgb(245,192,44)" rx="2" ry="2" />
<text text-anchor="" x="627.39" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontDatabase::findFont (19 samples, 0.00%)</title><rect x="668.0" y="805" width="0.1" height="23.0" fill="rgb(242,192,41)" rx="2" ry="2" />
<text text-anchor="" x="671.02" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::ref (24 samples, 0.00%)</title><rect x="223.4" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="226.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::kateTextLine@plt (148 samples, 0.02%)</title><rect x="2595.9" y="325" width="1.0" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="2598.94" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (486 samples, 0.06%)</title><rect x="3971.5" y="229" width="3.1" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3974.52" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (215 samples, 0.03%)</title><rect x="4782.1" y="757" width="1.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (16 samples, 0.00%)</title><rect x="942.6" y="181" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="945.59" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2bf (937 samples, 0.12%)</title><rect x="424.7" y="1069" width="5.9" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="427.72" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (364 samples, 0.05%)</title><rect x="2363.1" y="181" width="2.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="2366.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::itemize (36 samples, 0.00%)</title><rect x="647.0" y="1069" width="0.2" height="23.0" fill="rgb(245,170,44)" rx="2" ry="2" />
<text text-anchor="" x="650.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (23 samples, 0.00%)</title><rect x="4709.2" y="277" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4712.20" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="3388.1" y="181" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3391.07" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (525 samples, 0.07%)</title><rect x="2504.7" y="349" width="3.3" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="2507.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (50 samples, 0.01%)</title><rect x="637.3" y="949" width="0.3" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (415 samples, 0.05%)</title><rect x="1033.9" y="349" width="2.6" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="1036.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::updateAccessibility (305 samples, 0.04%)</title><rect x="68.4" y="1045" width="1.9" height="23.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text text-anchor="" x="71.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (32 samples, 0.00%)</title><rect x="273.8" y="1045" width="0.2" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="276.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::isDetached (28 samples, 0.00%)</title><rect x="4720.8" y="349" width="0.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="4723.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (40 samples, 0.01%)</title><rect x="483.0" y="1045" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="486.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::at (62 samples, 0.01%)</title><rect x="690.2" y="829" width="0.4" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="693.21" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (831 samples, 0.11%)</title><rect x="4577.3" y="301" width="5.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4580.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (17 samples, 0.00%)</title><rect x="452.1" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="455.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (44 samples, 0.01%)</title><rect x="454.7" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="457.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::searchPattern@plt (571 samples, 0.07%)</title><rect x="4750.3" y="421" width="3.6" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4753.30" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (74 samples, 0.01%)</title><rect x="984.4" y="373" width="0.5" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="987.39" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (312 samples, 0.04%)</title><rect x="4566.0" y="277" width="2.0" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="4569.02" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (40 samples, 0.01%)</title><rect x="638.7" y="685" width="0.2" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (448 samples, 0.06%)</title><rect x="3636.7" y="133" width="2.8" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="3639.67" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__iterator_category<QPair<int, (21 samples, 0.00%)</title><rect x="83.5" y="1045" width="0.2" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="86.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb246 (998 samples, 0.13%)</title><rect x="2236.6" y="133" width="6.3" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2239.64" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (12,547 samples, 1.65%)</title><rect x="798.0" y="325" width="78.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="801.02" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::Tex..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::QPen (19 samples, 0.00%)</title><rect x="700.6" y="565" width="0.1" height="23.0" fill="rgb(247,190,46)" rx="2" ry="2" />
<text text-anchor="" x="703.55" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a01b5 (42 samples, 0.01%)</title><rect x="691.7" y="805" width="0.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLineEdit::text (2,859 samples, 0.38%)</title><rect x="4732.3" y="373" width="17.9" height="23.0" fill="rgb(230,142,27)" rx="2" ry="2" />
<text text-anchor="" x="4735.29" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (180 samples, 0.02%)</title><rect x="4175.3" y="301" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4178.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (222 samples, 0.03%)</title><rect x="747.4" y="301" width="1.4" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="750.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (252 samples, 0.03%)</title><rect x="2477.8" y="229" width="1.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2480.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (21 samples, 0.00%)</title><rect x="443.3" y="1045" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="446.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QSet<Kate::TextCursor*>&> (2,836 samples, 0.37%)</title><rect x="1934.2" y="277" width="17.8" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="1937.18" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (16 samples, 0.00%)</title><rect x="3978.8" y="277" width="0.1" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3981.85" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (449 samples, 0.06%)</title><rect x="953.8" y="325" width="2.8" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (308 samples, 0.04%)</title><rect x="1557.2" y="253" width="1.9" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="1560.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (32 samples, 0.00%)</title><rect x="4202.7" y="229" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4205.75" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_self (19 samples, 0.00%)</title><rect x="287.5" y="1045" width="0.1" height="23.0" fill="rgb(238,158,36)" rx="2" ry="2" />
<text text-anchor="" x="290.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="451.8" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="454.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMapLessThanKey<QChar> (83 samples, 0.01%)</title><rect x="132.4" y="1045" width="0.5" height="23.0" fill="rgb(246,202,45)" rx="2" ry="2" />
<text text-anchor="" x="135.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (107 samples, 0.01%)</title><rect x="644.1" y="1069" width="0.7" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="647.11" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::setGeometry_sys (17 samples, 0.00%)</title><rect x="669.2" y="613" width="0.1" height="23.0" fill="rgb(241,142,40)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_avx2 (897 samples, 0.12%)</title><rect x="2409.1" y="181" width="5.6" height="23.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text text-anchor="" x="2412.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (590 samples, 0.08%)</title><rect x="4019.1" y="349" width="3.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4022.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (187 samples, 0.02%)</title><rect x="1777.6" y="205" width="1.1" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="1780.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (19 samples, 0.00%)</title><rect x="164.5" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancel (77 samples, 0.01%)</title><rect x="742.5" y="469" width="0.5" height="23.0" fill="rgb(236,173,34)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (181 samples, 0.02%)</title><rect x="173.5" y="1045" width="1.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="176.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (51 samples, 0.01%)</title><rect x="4044.7" y="349" width="0.4" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4047.73" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (32 samples, 0.00%)</title><rect x="749.7" y="301" width="0.2" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="752.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (215 samples, 0.03%)</title><rect x="4782.1" y="565" width="1.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateHighlighting::noHighlighting (197 samples, 0.03%)</title><rect x="2566.1" y="253" width="1.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="2569.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736f1d11 (18 samples, 0.00%)</title><rect x="628.2" y="493" width="0.2" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (102 samples, 0.01%)</title><rect x="1031.5" y="349" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1034.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (29 samples, 0.00%)</title><rect x="441.2" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="444.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (41 samples, 0.01%)</title><rect x="638.7" y="1045" width="0.2" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (40 samples, 0.01%)</title><rect x="266.0" y="1045" width="0.3" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="269.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (26 samples, 0.00%)</title><rect x="585.0" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="588.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (22 samples, 0.00%)</title><rect x="654.8" y="805" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.75" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (21 samples, 0.00%)</title><rect x="491.0" y="1045" width="0.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="493.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (51 samples, 0.01%)</title><rect x="533.7" y="1045" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="536.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_update_slotinfo (26 samples, 0.00%)</title><rect x="43.2" y="1045" width="0.2" height="23.0" fill="rgb(248,184,47)" rx="2" ry="2" />
<text text-anchor="" x="46.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (863 samples, 0.11%)</title><rect x="4703.9" y="349" width="5.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4706.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (198 samples, 0.03%)</title><rect x="4303.5" y="325" width="1.3" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4306.51" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::detach (740 samples, 0.10%)</title><rect x="1711.3" y="181" width="4.7" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="1714.32" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::metaObject (31 samples, 0.00%)</title><rect x="333.5" y="1045" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="336.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::d_func (129 samples, 0.02%)</title><rect x="1029.1" y="325" width="0.8" height="23.0" fill="rgb(233,171,30)" rx="2" ry="2" />
<text text-anchor="" x="1032.07" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b5ef (69 samples, 0.01%)</title><rect x="576.3" y="1069" width="0.4" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="579.26" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (220 samples, 0.03%)</title><rect x="754.7" y="277" width="1.4" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="757.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator<Kate::TextRange*>::~allocator (20 samples, 0.00%)</title><rect x="82.1" y="1045" width="0.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="85.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736fb4c2 (19 samples, 0.00%)</title><rect x="648.7" y="949" width="0.1" height="23.0" fill="rgb(252,92,51)" rx="2" ry="2" />
<text text-anchor="" x="651.71" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (16 samples, 0.00%)</title><rect x="103.2" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="106.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (33 samples, 0.00%)</title><rect x="483.4" y="1045" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="486.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (670 samples, 0.09%)</title><rect x="4431.8" y="253" width="4.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4434.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (125 samples, 0.02%)</title><rect x="2460.5" y="277" width="0.8" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="2463.54" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (325 samples, 0.04%)</title><rect x="4311.2" y="349" width="2.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4314.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (117 samples, 0.02%)</title><rect x="661.6" y="613" width="0.7" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (395 samples, 0.05%)</title><rect x="2091.7" y="133" width="2.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2094.69" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (116 samples, 0.02%)</title><rect x="319.8" y="1045" width="0.8" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="322.84" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::_Iter_comp_val<bool (284 samples, 0.04%)</title><rect x="159.9" y="1045" width="1.8" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="162.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (54 samples, 0.01%)</title><rect x="637.9" y="685" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.90" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (216 samples, 0.03%)</title><rect x="21.7" y="1045" width="1.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="24.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (419 samples, 0.05%)</title><rect x="2418.9" y="229" width="2.6" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="2421.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (37 samples, 0.00%)</title><rect x="535.9" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="538.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (21 samples, 0.00%)</title><rect x="646.3" y="1069" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="649.27" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (22 samples, 0.00%)</title><rect x="119.1" y="1045" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="122.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (203 samples, 0.03%)</title><rect x="2500.7" y="325" width="1.3" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="2503.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMapNode<QChar, (134 samples, 0.02%)</title><rect x="168.3" y="1045" width="0.8" height="23.0" fill="rgb(242,218,41)" rx="2" ry="2" />
<text text-anchor="" x="171.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="462.5" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="465.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (26 samples, 0.00%)</title><rect x="611.2" y="1069" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="614.17" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (260 samples, 0.03%)</title><rect x="699.3" y="733" width="1.7" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (21 samples, 0.00%)</title><rect x="322.8" y="1045" width="0.2" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="325.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::unlock (1,279 samples, 0.17%)</title><rect x="1139.4" y="277" width="8.1" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="1142.43" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (19 samples, 0.00%)</title><rect x="213.8" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="216.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (37 samples, 0.00%)</title><rect x="309.2" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="312.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (213 samples, 0.03%)</title><rect x="2557.9" y="301" width="1.3" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="2560.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (211 samples, 0.03%)</title><rect x="878.1" y="325" width="1.4" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="881.13" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::qt_static_metacall (12,524 samples, 1.64%)</title><rect x="2081.7" y="253" width="78.5" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="2084.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::Swa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (28 samples, 0.00%)</title><rect x="652.9" y="829" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="655.89" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (163 samples, 0.02%)</title><rect x="3229.9" y="133" width="1.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3232.95" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (106 samples, 0.01%)</title><rect x="957.8" y="253" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="960.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (44 samples, 0.01%)</title><rect x="4138.9" y="301" width="0.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4141.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (94 samples, 0.01%)</title><rect x="3178.0" y="205" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3180.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652bedf (37 samples, 0.00%)</title><rect x="592.3" y="1069" width="0.2" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="595.25" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::end (554 samples, 0.07%)</title><rect x="4639.0" y="349" width="3.5" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4641.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::fontEngine (36 samples, 0.00%)</title><rect x="629.4" y="517" width="0.3" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="632.43" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::Node::t (32 samples, 0.00%)</title><rect x="335.9" y="1045" width="0.2" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="338.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73acd404 (17 samples, 0.00%)</title><rect x="669.2" y="685" width="0.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (263 samples, 0.03%)</title><rect x="112.9" y="949" width="1.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1d8f0 (49 samples, 0.01%)</title><rect x="1562.9" y="301" width="0.3" height="23.0" fill="rgb(232,92,29)" rx="2" ry="2" />
<text text-anchor="" x="1565.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::replace (16 samples, 0.00%)</title><rect x="618.1" y="1069" width="0.1" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="621.12" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::isEmpty (505 samples, 0.07%)</title><rect x="2421.6" y="253" width="3.2" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="2424.63" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move_a<true, (28 samples, 0.00%)</title><rect x="145.7" y="1045" width="0.2" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="148.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawPrimitive (35 samples, 0.00%)</title><rect x="630.7" y="925" width="0.2" height="23.0" fill="rgb(238,145,36)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markAsModified (270 samples, 0.04%)</title><rect x="1725.4" y="277" width="1.7" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="1728.36" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::isEmpty (355 samples, 0.05%)</title><rect x="1895.6" y="253" width="2.2" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="1898.56" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b7cf (29 samples, 0.00%)</title><rect x="585.7" y="1069" width="0.1" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="588.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7e5 (36 samples, 0.00%)</title><rect x="2627.5" y="277" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="2630.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<Kate::TextRange*&> (20 samples, 0.00%)</title><rect x="304.2" y="1045" width="0.1" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="307.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (40 samples, 0.01%)</title><rect x="638.7" y="493" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (154 samples, 0.02%)</title><rect x="2427.6" y="157" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2430.59" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b70f (36 samples, 0.00%)</title><rect x="584.7" y="1069" width="0.2" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="587.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (69 samples, 0.01%)</title><rect x="740.7" y="277" width="0.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="743.68" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (36 samples, 0.00%)</title><rect x="429.5" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="432.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTemplateHandler::qt_metacall (19 samples, 0.00%)</title><rect x="82.3" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="85.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,144 samples, 0.15%)</title><rect x="801.7" y="277" width="7.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="804.67" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (187 samples, 0.02%)</title><rect x="1776.3" y="205" width="1.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1779.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (32 samples, 0.00%)</title><rect x="808.8" y="277" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="811.84" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fad0a (73 samples, 0.01%)</title><rect x="2214.3" y="109" width="0.5" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="2217.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (38 samples, 0.00%)</title><rect x="523.9" y="1045" width="0.2" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="526.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (18 samples, 0.00%)</title><rect x="548.9" y="1045" width="0.1" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="551.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::addEntry (3,380 samples, 0.44%)</title><rect x="1703.0" y="253" width="21.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="1706.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (600 samples, 0.08%)</title><rect x="4372.3" y="157" width="3.8" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4375.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (32 samples, 0.00%)</title><rect x="3978.4" y="157" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3981.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6329d60d (177 samples, 0.02%)</title><rect x="666.1" y="661" width="1.1" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (958 samples, 0.13%)</title><rect x="2389.1" y="253" width="6.0" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2392.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_copy (18 samples, 0.00%)</title><rect x="4260.5" y="325" width="0.1" height="23.0" fill="rgb(248,142,48)" rx="2" ry="2" />
<text text-anchor="" x="4263.47" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (161 samples, 0.02%)</title><rect x="51.5" y="1045" width="1.0" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="54.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1bf (97 samples, 0.01%)</title><rect x="313.2" y="1069" width="0.6" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="316.16" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate@plt (159 samples, 0.02%)</title><rect x="2988.4" y="277" width="1.0" height="23.0" fill="rgb(231,205,29)" rx="2" ry="2" />
<text text-anchor="" x="2991.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (18 samples, 0.00%)</title><rect x="114.6" y="877" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (73,733 samples, 9.67%)</title><rect x="1086.0" y="301" width="462.4" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="1089.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaObject::activate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (657 samples, 0.09%)</title><rect x="4526.7" y="229" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4529.71" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (37 samples, 0.00%)</title><rect x="968.5" y="373" width="0.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="971.51" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (253 samples, 0.03%)</title><rect x="3993.0" y="325" width="1.6" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3996.01" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (79 samples, 0.01%)</title><rect x="4157.4" y="277" width="0.5" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4160.38" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (444 samples, 0.06%)</title><rect x="3649.9" y="133" width="2.8" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3652.88" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (27 samples, 0.00%)</title><rect x="1788.9" y="157" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="1791.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (515 samples, 0.07%)</title><rect x="4612.2" y="349" width="3.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4615.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (35 samples, 0.00%)</title><rect x="4537.9" y="349" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4540.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (55 samples, 0.01%)</title><rect x="652.9" y="1045" width="0.3" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::automaticCompletionInvocation@plt (65 samples, 0.01%)</title><rect x="2179.8" y="181" width="0.4" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2182.77" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf19936 (18 samples, 0.00%)</title><rect x="691.3" y="757" width="0.1" height="23.0" fill="rgb(234,92,31)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (3,440 samples, 0.45%)</title><rect x="743.7" y="613" width="21.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="746.72" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (121 samples, 0.02%)</title><rect x="3084.1" y="277" width="0.8" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="3087.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity (2,916 samples, 0.38%)</title><rect x="4080.6" y="373" width="18.3" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="4083.59" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (169 samples, 0.02%)</title><rect x="930.8" y="349" width="1.1" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="933.82" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (134 samples, 0.02%)</title><rect x="4202.1" y="253" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4205.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (251 samples, 0.03%)</title><rect x="2094.3" y="157" width="1.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2097.27" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (34 samples, 0.00%)</title><rect x="1723.5" y="229" width="0.2" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1726.49" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (182 samples, 0.02%)</title><rect x="4551.5" y="301" width="1.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4554.47" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (33 samples, 0.00%)</title><rect x="3975.2" y="253" width="0.2" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="3978.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d95dd27 (165 samples, 0.02%)</title><rect x="82.3" y="1069" width="1.0" height="23.0" fill="rgb(236,99,35)" rx="2" ry="2" />
<text text-anchor="" x="85.26" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::qt_static_metacall (9,122 samples, 1.20%)</title><rect x="3605.7" y="253" width="57.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="3608.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (45 samples, 0.01%)</title><rect x="566.4" y="1045" width="0.3" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="569.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (27 samples, 0.00%)</title><rect x="652.9" y="757" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (32 samples, 0.00%)</title><rect x="485.2" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="488.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::event (22 samples, 0.00%)</title><rect x="653.1" y="805" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (42 samples, 0.01%)</title><rect x="441.7" y="1045" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="444.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (49 samples, 0.01%)</title><rect x="762.3" y="301" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="765.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QTypedArrayData<KTextEditor::Range>*> (724 samples, 0.09%)</title><rect x="4688.3" y="325" width="4.6" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="4691.32" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (58 samples, 0.01%)</title><rect x="761.9" y="301" width="0.4" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="764.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (96 samples, 0.01%)</title><rect x="150.3" y="1045" width="0.6" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="153.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f00b652b37f (153 samples, 0.02%)</title><rect x="103.6" y="1069" width="1.0" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="106.61" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::timeout (1,086 samples, 0.14%)</title><rect x="692.5" y="685" width="6.8" height="23.0" fill="rgb(234,157,32)" rx="2" ry="2" />
<text text-anchor="" x="695.51" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b07f (1,154 samples, 0.15%)</title><rect x="208.0" y="1069" width="7.3" height="23.0" fill="rgb(251,92,51)" rx="2" ry="2" />
<text text-anchor="" x="211.02" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (106 samples, 0.01%)</title><rect x="3884.2" y="253" width="0.6" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="3887.15" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::isEmpty (19 samples, 0.00%)</title><rect x="1897.8" y="277" width="0.1" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="1900.79" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (27 samples, 0.00%)</title><rect x="174.7" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="177.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,229 samples, 0.16%)</title><rect x="1061.5" y="229" width="7.7" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="1064.47" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af6f (272 samples, 0.04%)</title><rect x="126.3" y="1069" width="1.8" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="129.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::const_iterator::const_iterator (36 samples, 0.00%)</title><rect x="347.8" y="1045" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="350.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (124 samples, 0.02%)</title><rect x="980.7" y="421" width="0.7" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="983.66" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCharRef::operator (19 samples, 0.00%)</title><rect x="700.0" y="589" width="0.2" height="23.0" fill="rgb(241,191,39)" rx="2" ry="2" />
<text text-anchor="" x="703.03" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (44 samples, 0.01%)</title><rect x="3236.7" y="61" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3239.67" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (32 samples, 0.00%)</title><rect x="3890.5" y="181" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="3893.49" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (17 samples, 0.00%)</title><rect x="21.5" y="1045" width="0.1" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="24.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QVector<KTextEditor::Range> (783 samples, 0.10%)</title><rect x="4280.5" y="373" width="4.9" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="4283.54" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (595 samples, 0.08%)</title><rect x="1712.2" y="157" width="3.8" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="1715.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (23 samples, 0.00%)</title><rect x="4615.2" y="229" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4618.23" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (19 samples, 0.00%)</title><rect x="2498.3" y="349" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2501.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qDeleteAll<QList<KateUndoGroup*> (4,725 samples, 0.62%)</title><rect x="709.8" y="373" width="29.6" height="23.0" fill="rgb(238,179,37)" rx="2" ry="2" />
<text text-anchor="" x="712.82" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >qD..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (25 samples, 0.00%)</title><rect x="460.9" y="1021" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="463.93" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (18 samples, 0.00%)</title><rect x="495.3" y="1045" width="0.1" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="498.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (40 samples, 0.01%)</title><rect x="638.7" y="397" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x9b652b42f (36 samples, 0.00%)</title><rect x="599.3" y="1069" width="0.2" height="23.0" fill="rgb(242,86,40)" rx="2" ry="2" />
<text text-anchor="" x="602.31" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::DocumentCursor@plt (27 samples, 0.00%)</title><rect x="777.8" y="421" width="0.1" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="780.77" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (483 samples, 0.06%)</title><rect x="367.9" y="1045" width="3.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="370.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (18 samples, 0.00%)</title><rect x="265.3" y="1045" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="268.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::writeRawData (875 samples, 0.11%)</title><rect x="2127.9" y="181" width="5.5" height="23.0" fill="rgb(235,208,33)" rx="2" ry="2" />
<text text-anchor="" x="2130.91" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImageReader::read (54 samples, 0.01%)</title><rect x="668.6" y="877" width="0.4" height="23.0" fill="rgb(241,183,40)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f61eedbf8 (33 samples, 0.00%)</title><rect x="667.2" y="565" width="0.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (85 samples, 0.01%)</title><rect x="81.5" y="1045" width="0.5" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="84.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move_iterator<Kate::TextRange**>::base (147 samples, 0.02%)</title><rect x="152.3" y="1045" width="0.9" height="23.0" fill="rgb(247,146,46)" rx="2" ry="2" />
<text text-anchor="" x="155.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::start (16 samples, 0.00%)</title><rect x="261.3" y="1045" width="0.1" height="23.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text text-anchor="" x="264.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3d23facf (91 samples, 0.01%)</title><rect x="35.7" y="1069" width="0.6" height="23.0" fill="rgb(250,105,50)" rx="2" ry="2" />
<text text-anchor="" x="38.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (193 samples, 0.03%)</title><rect x="4110.7" y="253" width="1.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4113.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::constData (17 samples, 0.00%)</title><rect x="312.0" y="1045" width="0.1" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="315.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::~ReadWritePart (6,086 samples, 0.80%)</title><rect x="701.3" y="517" width="38.1" height="23.0" fill="rgb(239,171,37)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KPa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (45 samples, 0.01%)</title><rect x="4197.4" y="325" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4200.37" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function<bool (35 samples, 0.00%)</title><rect x="630.7" y="901" width="0.2" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (232 samples, 0.03%)</title><rect x="654.7" y="1045" width="1.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::QPen (17 samples, 0.00%)</title><rect x="698.2" y="541" width="0.1" height="23.0" fill="rgb(247,190,46)" rx="2" ry="2" />
<text text-anchor="" x="701.16" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (274 samples, 0.04%)</title><rect x="4439.8" y="229" width="1.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4442.78" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (122 samples, 0.02%)</title><rect x="1080.9" y="205" width="0.8" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1083.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (313 samples, 0.04%)</title><rect x="4111.9" y="325" width="1.9" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="4114.87" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x23f92e727 (19 samples, 0.00%)</title><rect x="27.7" y="1069" width="0.1" height="23.0" fill="rgb(234,109,32)" rx="2" ry="2" />
<text text-anchor="" x="30.66" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tls_get_addr_slow (59 samples, 0.01%)</title><rect x="2241.4" y="85" width="0.4" height="23.0" fill="rgb(238,128,36)" rx="2" ry="2" />
<text text-anchor="" x="2244.41" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::ensureHighlighted (879 samples, 0.12%)</title><rect x="1052.0" y="301" width="5.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1055.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (26 samples, 0.00%)</title><rect x="36.0" y="1021" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="39.00" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI__dl_catch_error (42 samples, 0.01%)</title><rect x="691.7" y="709" width="0.3" height="23.0" fill="rgb(242,119,41)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (790 samples, 0.10%)</title><rect x="4431.1" y="277" width="5.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4434.14" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (97 samples, 0.01%)</title><rect x="887.0" y="397" width="0.6" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="889.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (540 samples, 0.07%)</title><rect x="684.6" y="781" width="3.4" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="687.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInternal (26 samples, 0.00%)</title><rect x="1780.2" y="229" width="0.2" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1783.19" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (758 samples, 0.10%)</title><rect x="3886.0" y="229" width="4.8" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3889.03" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::doc (24 samples, 0.00%)</title><rect x="195.7" y="1045" width="0.2" height="23.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text text-anchor="" x="198.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (17 samples, 0.00%)</title><rect x="289.8" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="292.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b327 (37 samples, 0.00%)</title><rect x="460.4" y="1069" width="0.3" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="463.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (865 samples, 0.11%)</title><rect x="2122.5" y="157" width="5.4" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="2125.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70ca28e4 (21 samples, 0.00%)</title><rect x="112.5" y="781" width="0.2" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="115.53" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qDeleteAll<QList<KateUndoGroup*> (44 samples, 0.01%)</title><rect x="414.4" y="1045" width="0.3" height="23.0" fill="rgb(238,179,37)" rx="2" ry="2" />
<text text-anchor="" x="417.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (17 samples, 0.00%)</title><rect x="172.0" y="1045" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="175.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (18 samples, 0.00%)</title><rect x="114.6" y="853" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (110 samples, 0.01%)</title><rect x="655.1" y="949" width="0.6" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="658.06" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::setLineWidth (34 samples, 0.00%)</title><rect x="764.9" y="157" width="0.2" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d48a7bf (40 samples, 0.01%)</title><rect x="79.7" y="1069" width="0.2" height="23.0" fill="rgb(235,99,33)" rx="2" ry="2" />
<text text-anchor="" x="82.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (249 samples, 0.03%)</title><rect x="4311.5" y="301" width="1.6" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4314.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::swap (59 samples, 0.01%)</title><rect x="559.1" y="1045" width="0.4" height="23.0" fill="rgb(233,160,31)" rx="2" ry="2" />
<text text-anchor="" x="562.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::length (393 samples, 0.05%)</title><rect x="794.2" y="349" width="2.5" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="797.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::KateUndo (17 samples, 0.00%)</title><rect x="350.7" y="1045" width="0.1" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="353.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (35 samples, 0.00%)</title><rect x="142.5" y="1045" width="0.2" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="145.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart (176 samples, 0.02%)</title><rect x="2481.2" y="349" width="1.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="2484.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tls_get_addr (1,774 samples, 0.23%)</title><rect x="3694.5" y="109" width="11.1" height="23.0" fill="rgb(244,128,43)" rx="2" ry="2" />
<text text-anchor="" x="3697.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (695 samples, 0.09%)</title><rect x="1653.9" y="277" width="4.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1656.94" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine@plt (102 samples, 0.01%)</title><rect x="3868.7" y="277" width="0.6" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="3871.71" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (182 samples, 0.02%)</title><rect x="2088.9" y="157" width="1.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="2091.89" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (165 samples, 0.02%)</title><rect x="4428.4" y="325" width="1.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="4431.45" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::sharedNull (23 samples, 0.00%)</title><rect x="535.5" y="1045" width="0.2" height="23.0" fill="rgb(224,183,21)" rx="2" ry="2" />
<text text-anchor="" x="538.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InsertViMode::qt_static_metacall (211 samples, 0.03%)</title><rect x="1125.4" y="277" width="1.3" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="1128.41" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (32 samples, 0.00%)</title><rect x="454.2" y="1045" width="0.2" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="457.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFactoryLoader::instance (52 samples, 0.01%)</title><rect x="668.6" y="805" width="0.4" height="23.0" fill="rgb(251,198,51)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (125 samples, 0.02%)</title><rect x="277.1" y="1045" width="0.8" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="280.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (44 samples, 0.01%)</title><rect x="293.8" y="1045" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="296.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (23 samples, 0.00%)</title><rect x="4376.2" y="181" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4379.19" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup@plt (42 samples, 0.01%)</title><rect x="4098.6" y="349" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4101.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc09d (20 samples, 0.00%)</title><rect x="3687.2" y="157" width="0.2" height="23.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text text-anchor="" x="3690.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (6,425 samples, 0.84%)</title><rect x="701.3" y="637" width="40.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QWi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (78 samples, 0.01%)</title><rect x="2594.6" y="181" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2597.59" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (749 samples, 0.10%)</title><rect x="2123.2" y="133" width="4.7" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="2126.22" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (251 samples, 0.03%)</title><rect x="988.4" y="373" width="1.5" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="991.36" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity@plt (18 samples, 0.00%)</title><rect x="3237.8" y="277" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3240.76" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (16 samples, 0.00%)</title><rect x="4098.4" y="277" width="0.1" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="4101.39" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (1,385 samples, 0.18%)</title><rect x="1780.6" y="229" width="8.7" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="1783.59" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (35 samples, 0.00%)</title><rect x="937.4" y="325" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="940.39" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (94 samples, 0.01%)</title><rect x="1775.2" y="181" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1778.20" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::removeText (8,705 samples, 1.14%)</title><rect x="3664.4" y="229" width="54.6" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3667.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateC..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (584 samples, 0.08%)</title><rect x="611.8" y="877" width="3.6" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (216 samples, 0.03%)</title><rect x="4782.1" y="877" width="1.3" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (974 samples, 0.13%)</title><rect x="4602.6" y="325" width="6.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4605.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImageData::create (270 samples, 0.04%)</title><rect x="621.1" y="877" width="1.7" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="624.11" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (216 samples, 0.03%)</title><rect x="3225.8" y="205" width="1.4" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="3228.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (117 samples, 0.02%)</title><rect x="661.6" y="493" width="0.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (549 samples, 0.07%)</title><rect x="2538.4" y="349" width="3.4" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="2541.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (124 samples, 0.02%)</title><rect x="2592.0" y="181" width="0.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2594.97" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2ff (1,061 samples, 0.14%)</title><rect x="444.5" y="1069" width="6.7" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="447.54" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b033 (37 samples, 0.00%)</title><rect x="182.1" y="1069" width="0.3" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="185.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (329 samples, 0.04%)</title><rect x="4516.6" y="301" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4519.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::isDetached (225 samples, 0.03%)</title><rect x="4642.6" y="349" width="1.4" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="4645.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (17 samples, 0.00%)</title><rect x="167.0" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="170.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (16 samples, 0.00%)</title><rect x="114.6" y="757" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (98 samples, 0.01%)</title><rect x="3222.6" y="205" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3225.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (341 samples, 0.04%)</title><rect x="608.1" y="1045" width="2.1" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="611.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::str (20 samples, 0.00%)</title><rect x="601.1" y="1045" width="0.1" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="604.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (25 samples, 0.00%)</title><rect x="541.1" y="1045" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="544.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBrush::QBrush (24 samples, 0.00%)</title><rect x="697.2" y="469" width="0.2" height="23.0" fill="rgb(236,202,34)" rx="2" ry="2" />
<text text-anchor="" x="700.21" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__class_type_info::__do_dyncast (23 samples, 0.00%)</title><rect x="658.1" y="1069" width="0.1" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="661.10" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (407 samples, 0.05%)</title><rect x="628.1" y="853" width="2.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid@plt (124 samples, 0.02%)</title><rect x="2508.0" y="349" width="0.8" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="2510.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctorCall<QtPrivate::IndexesList<0, (60 samples, 0.01%)</title><rect x="282.6" y="1045" width="0.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="285.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f704aa (18 samples, 0.00%)</title><rect x="4508.1" y="325" width="0.1" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="4511.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (26 samples, 0.00%)</title><rect x="322.4" y="1045" width="0.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="325.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<KTextEditor::SearchOption>::testFlag (351 samples, 0.05%)</title><rect x="4307.0" y="397" width="2.2" height="23.0" fill="rgb(239,201,38)" rx="2" ry="2" />
<text text-anchor="" x="4310.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (28 samples, 0.00%)</title><rect x="245.2" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="248.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoGroup::addItem (5,687 samples, 0.75%)</title><rect x="2396.9" y="277" width="35.7" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2399.92" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (973 samples, 0.13%)</title><rect x="917.8" y="397" width="6.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="920.77" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::isNull (50 samples, 0.01%)</title><rect x="674.6" y="805" width="0.3" height="23.0" fill="rgb(224,191,21)" rx="2" ry="2" />
<text text-anchor="" x="677.57" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (29 samples, 0.00%)</title><rect x="1068.8" y="133" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="1071.79" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_start (96 samples, 0.01%)</title><rect x="4781.4" y="1045" width="0.6" height="23.0" fill="rgb(239,184,37)" rx="2" ry="2" />
<text text-anchor="" x="4784.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfb23cf (92 samples, 0.01%)</title><rect x="239.3" y="1045" width="0.5" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="242.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (142 samples, 0.02%)</title><rect x="193.8" y="1045" width="0.9" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="196.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,245 samples, 0.16%)</title><rect x="3567.4" y="301" width="7.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3570.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (104 samples, 0.01%)</title><rect x="4695.4" y="277" width="0.7" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4698.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawLines (26 samples, 0.00%)</title><rect x="652.9" y="661" width="0.2" height="23.0" fill="rgb(242,203,41)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (322 samples, 0.04%)</title><rect x="291.6" y="1045" width="2.1" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="294.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (33 samples, 0.00%)</title><rect x="637.7" y="1021" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.66" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (49 samples, 0.01%)</title><rect x="3837.7" y="325" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3840.72" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (31 samples, 0.00%)</title><rect x="539.8" y="1045" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="542.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::size (35 samples, 0.00%)</title><rect x="558.9" y="1045" width="0.2" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="561.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__make_move_if_noexcept_iterator<Kate::TextRange*, (88 samples, 0.01%)</title><rect x="331.1" y="1045" width="0.6" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="334.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faf47 (20 samples, 0.00%)</title><rect x="2221.8" y="109" width="0.1" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="2224.77" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::~QPen (23 samples, 0.00%)</title><rect x="697.4" y="469" width="0.2" height="23.0" fill="rgb(247,190,46)" rx="2" ry="2" />
<text text-anchor="" x="700.45" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (207 samples, 0.03%)</title><rect x="4782.1" y="421" width="1.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (263 samples, 0.03%)</title><rect x="112.9" y="973" width="1.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (202 samples, 0.03%)</title><rect x="4421.6" y="253" width="1.3" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="4424.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontMetricsF::horizontalAdvance (31 samples, 0.00%)</title><rect x="4783.0" y="277" width="0.2" height="23.0" fill="rgb(251,192,51)" rx="2" ry="2" />
<text text-anchor="" x="4786.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b06f (1,796 samples, 0.24%)</title><rect x="195.0" y="1069" width="11.3" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="198.04" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAction::event (20 samples, 0.00%)</title><rect x="743.1" y="709" width="0.1" height="23.0" fill="rgb(241,161,39)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (246 samples, 0.03%)</title><rect x="4610.6" y="349" width="1.6" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4613.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4cf (1,049 samples, 0.14%)</title><rect x="553.8" y="1069" width="6.6" height="23.0" fill="rgb(248,92,48)" rx="2" ry="2" />
<text text-anchor="" x="556.82" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::append (1,063 samples, 0.14%)</title><rect x="2414.9" y="253" width="6.6" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="2417.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<KTextEditor::MovingCursor*> (17 samples, 0.00%)</title><rect x="178.5" y="1045" width="0.2" height="23.0" fill="rgb(237,140,35)" rx="2" ry="2" />
<text text-anchor="" x="181.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateView (67 samples, 0.01%)</title><rect x="764.9" y="277" width="0.4" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::updateRange (4,019 samples, 0.53%)</title><rect x="3193.9" y="229" width="25.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3196.87" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (1,008 samples, 0.13%)</title><rect x="927.7" y="373" width="6.3" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="930.71" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (29 samples, 0.00%)</title><rect x="516.3" y="1045" width="0.2" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="519.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (207 samples, 0.03%)</title><rect x="4782.1" y="373" width="1.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::insert (155 samples, 0.02%)</title><rect x="2233.9" y="109" width="0.9" height="23.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text text-anchor="" x="2236.87" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (21 samples, 0.00%)</title><rect x="4572.1" y="277" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4575.13" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*> (24 samples, 0.00%)</title><rect x="337.5" y="1045" width="0.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="340.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (337 samples, 0.04%)</title><rect x="4185.0" y="229" width="2.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4187.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (51 samples, 0.01%)</title><rect x="4233.7" y="373" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4236.70" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (281 samples, 0.04%)</title><rect x="4701.7" y="277" width="1.8" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4704.74" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (45 samples, 0.01%)</title><rect x="2593.1" y="253" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2596.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (106 samples, 0.01%)</title><rect x="4159.7" y="229" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4162.72" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (131 samples, 0.02%)</title><rect x="3836.2" y="301" width="0.9" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3839.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (25 samples, 0.00%)</title><rect x="742.7" y="205" width="0.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (29 samples, 0.00%)</title><rect x="441.5" y="1045" width="0.2" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="444.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (91 samples, 0.01%)</title><rect x="29.5" y="1045" width="0.6" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f61f8d1d7 (33 samples, 0.00%)</title><rect x="667.2" y="589" width="0.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (28 samples, 0.00%)</title><rect x="4665.0" y="277" width="0.1" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4667.96" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (16 samples, 0.00%)</title><rect x="53.1" y="1045" width="0.1" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="56.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b27f (2,894 samples, 0.38%)</title><rect x="391.6" y="1069" width="18.2" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="394.63" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (8,044 samples, 1.06%)</title><rect x="692.0" y="901" width="50.4" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="695.01" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g_mai..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (845 samples, 0.11%)</title><rect x="4197.7" y="325" width="5.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4200.65" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (129 samples, 0.02%)</title><rect x="1748.5" y="205" width="0.8" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1751.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (262 samples, 0.03%)</title><rect x="4678.0" y="325" width="1.6" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4680.95" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbWindow::create (251 samples, 0.03%)</title><rect x="666.1" y="781" width="1.6" height="23.0" fill="rgb(245,212,45)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (18 samples, 0.00%)</title><rect x="627.7" y="805" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::__val_comp_iter<bool (21 samples, 0.00%)</title><rect x="175.0" y="1045" width="0.2" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="178.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::size (213 samples, 0.03%)</title><rect x="4467.7" y="325" width="1.3" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="4470.66" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (61 samples, 0.01%)</title><rect x="166.6" y="1045" width="0.4" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="169.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::QSharedPointer (27 samples, 0.00%)</title><rect x="188.7" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="191.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (49 samples, 0.01%)</title><rect x="742.5" y="253" width="0.3" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="745.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (38 samples, 0.00%)</title><rect x="2386.0" y="277" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2388.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::node_construct (44 samples, 0.01%)</title><rect x="362.9" y="1045" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="365.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (27 samples, 0.00%)</title><rect x="119.7" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="122.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (805 samples, 0.11%)</title><rect x="3388.3" y="277" width="5.1" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3391.30" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (43 samples, 0.01%)</title><rect x="2345.9" y="325" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2348.92" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d2401cf (216 samples, 0.03%)</title><rect x="64.7" y="1069" width="1.4" height="23.0" fill="rgb(250,99,50)" rx="2" ry="2" />
<text text-anchor="" x="67.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (32 samples, 0.00%)</title><rect x="2562.0" y="301" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2565.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::setRange (5,593 samples, 0.73%)</title><rect x="924.0" y="397" width="35.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="927.02" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ka..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (261 samples, 0.03%)</title><rect x="2248.2" y="181" width="1.6" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="2251.21" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine@plt (16 samples, 0.00%)</title><rect x="1780.0" y="229" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1783.01" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (403 samples, 0.05%)</title><rect x="2192.3" y="157" width="2.5" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2195.31" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow (2,308 samples, 0.30%)</title><rect x="4485.8" y="277" width="14.5" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="4488.81" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (225 samples, 0.03%)</title><rect x="4075.4" y="349" width="1.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4078.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (80 samples, 0.01%)</title><rect x="742.5" y="709" width="0.5" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="226.0" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="228.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (16 samples, 0.00%)</title><rect x="2310.9" y="205" width="0.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="2313.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (31 samples, 0.00%)</title><rect x="596.8" y="1045" width="0.2" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (1,149 samples, 0.15%)</title><rect x="945.4" y="349" width="7.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="948.41" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (687 samples, 0.09%)</title><rect x="2129.1" y="133" width="4.3" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="2132.09" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QListData::Data*&> (50 samples, 0.01%)</title><rect x="316.1" y="1045" width="0.3" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="319.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (41 samples, 0.01%)</title><rect x="522.0" y="1045" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="524.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b7bf (44 samples, 0.01%)</title><rect x="585.4" y="1069" width="0.3" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="588.38" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4b7 (16 samples, 0.00%)</title><rect x="553.4" y="1069" width="0.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="556.37" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (361 samples, 0.05%)</title><rect x="4229.1" y="301" width="2.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4232.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::isAutomaticInvocationEnabled (589 samples, 0.08%)</title><rect x="241.2" y="1045" width="3.7" height="23.0" fill="rgb(252,138,52)" rx="2" ry="2" />
<text text-anchor="" x="244.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::str (1,293 samples, 0.17%)</title><rect x="4568.6" y="325" width="8.1" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="4571.55" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (165 samples, 0.02%)</title><rect x="4581.5" y="253" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4584.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (128 samples, 0.02%)</title><rect x="1754.1" y="181" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1757.11" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (50 samples, 0.01%)</title><rect x="637.3" y="397" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (182 samples, 0.02%)</title><rect x="4016.7" y="253" width="1.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4019.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (125 samples, 0.02%)</title><rect x="653.7" y="829" width="0.8" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (164 samples, 0.02%)</title><rect x="4051.3" y="277" width="1.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4054.34" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hb_shape_plan_execute (52 samples, 0.01%)</title><rect x="112.4" y="901" width="0.3" height="23.0" fill="rgb(240,112,38)" rx="2" ry="2" />
<text text-anchor="" x="115.37" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (20 samples, 0.00%)</title><rect x="558.4" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="561.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<QArrayData::AllocationOption>::QFlags (39 samples, 0.01%)</title><rect x="4664.4" y="301" width="0.3" height="23.0" fill="rgb(241,201,39)" rx="2" ry="2" />
<text text-anchor="" x="4667.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::spaceWidth (57 samples, 0.01%)</title><rect x="4782.3" y="277" width="0.4" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="4785.30" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (115 samples, 0.02%)</title><rect x="740.4" y="325" width="0.8" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="743.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (656 samples, 0.09%)</title><rect x="4624.6" y="349" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4627.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (160 samples, 0.02%)</title><rect x="3613.2" y="205" width="1.0" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="3616.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (40 samples, 0.01%)</title><rect x="638.7" y="421" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (144 samples, 0.02%)</title><rect x="4303.9" y="301" width="0.9" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4306.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::updateView (25 samples, 0.00%)</title><rect x="690.7" y="709" width="0.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (117 samples, 0.02%)</title><rect x="3867.1" y="157" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3870.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (871 samples, 0.11%)</title><rect x="4370.9" y="229" width="5.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4373.87" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (46 samples, 0.01%)</title><rect x="655.7" y="901" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (109 samples, 0.01%)</title><rect x="653.8" y="757" width="0.7" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="656.78" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (147 samples, 0.02%)</title><rect x="50.6" y="1045" width="0.9" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="53.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (16 samples, 0.00%)</title><rect x="592.5" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="595.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (27 samples, 0.00%)</title><rect x="440.8" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="443.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::addEntry (3,762 samples, 0.49%)</title><rect x="3145.7" y="253" width="23.6" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="3148.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::event (29 samples, 0.00%)</title><rect x="741.2" y="373" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (334 samples, 0.04%)</title><rect x="608.1" y="877" width="2.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator* (127 samples, 0.02%)</title><rect x="3958.7" y="229" width="0.8" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="3961.70" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::accessibleInterface (281 samples, 0.04%)</title><rect x="427.1" y="1045" width="1.8" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="430.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::isActive (250 samples, 0.03%)</title><rect x="200.2" y="1045" width="1.6" height="23.0" fill="rgb(238,161,36)" rx="2" ry="2" />
<text text-anchor="" x="203.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (18 samples, 0.00%)</title><rect x="327.7" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="330.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (31 samples, 0.00%)</title><rect x="574.3" y="1045" width="0.2" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="577.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,150 samples, 0.15%)</title><rect x="4143.0" y="277" width="7.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4146.02" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (126 samples, 0.02%)</title><rect x="4723.2" y="325" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4726.18" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (25 samples, 0.00%)</title><rect x="497.7" y="1045" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="500.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (584 samples, 0.08%)</title><rect x="611.8" y="805" width="3.6" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGlobalStatic<KIconLoader, (30 samples, 0.00%)</title><rect x="4781.2" y="925" width="0.2" height="23.0" fill="rgb(240,196,38)" rx="2" ry="2" />
<text text-anchor="" x="4784.17" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::isEmpty (495 samples, 0.06%)</title><rect x="3949.3" y="253" width="3.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3952.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (322 samples, 0.04%)</title><rect x="298.0" y="1045" width="2.0" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="300.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (66 samples, 0.01%)</title><rect x="655.3" y="781" width="0.4" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="658.31" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::init (138 samples, 0.02%)</title><rect x="691.1" y="997" width="0.9" height="23.0" fill="rgb(236,158,34)" rx="2" ry="2" />
<text text-anchor="" x="694.12" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (50 samples, 0.01%)</title><rect x="637.3" y="469" width="0.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (21 samples, 0.00%)</title><rect x="4262.6" y="253" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4265.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::document (17 samples, 0.00%)</title><rect x="182.6" y="1045" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="185.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateIconBorder::paintEvent (33 samples, 0.00%)</title><rect x="740.5" y="301" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="743.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__miter_base<Kate::TextRange**> (45 samples, 0.01%)</title><rect x="161.8" y="1045" width="0.3" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="164.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f00b652b03f (115 samples, 0.02%)</title><rect x="102.2" y="1069" width="0.7" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="105.18" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b31f (640 samples, 0.08%)</title><rect x="456.4" y="1069" width="4.0" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="459.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<bool (26 samples, 0.00%)</title><rect x="146.2" y="1045" width="0.2" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="149.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (308 samples, 0.04%)</title><rect x="4668.9" y="325" width="2.0" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4671.94" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append@plt (69 samples, 0.01%)</title><rect x="2194.8" y="181" width="0.5" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="2197.84" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (22 samples, 0.00%)</title><rect x="114.4" y="733" width="0.2" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="117.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (584 samples, 0.08%)</title><rect x="611.8" y="853" width="3.6" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (84 samples, 0.01%)</title><rect x="2370.4" y="133" width="0.5" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2373.36" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (574 samples, 0.08%)</title><rect x="611.8" y="661" width="3.6" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="614.84" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (583 samples, 0.08%)</title><rect x="611.8" y="781" width="3.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="614.79" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (18 samples, 0.00%)</title><rect x="120.6" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="123.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::updateAccessibility (132 samples, 0.02%)</title><rect x="625.5" y="1045" width="0.8" height="23.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text text-anchor="" x="628.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (20 samples, 0.00%)</title><rect x="1016.7" y="301" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1019.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (21 samples, 0.00%)</title><rect x="4629.5" y="373" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4632.50" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (32 samples, 0.00%)</title><rect x="4034.6" y="349" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4037.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (762 samples, 0.10%)</title><rect x="2380.0" y="253" width="4.8" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2383.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleWidget::isValid (409 samples, 0.05%)</title><rect x="215.8" y="1045" width="2.6" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="218.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::onSingleLine (128 samples, 0.02%)</title><rect x="519.8" y="1045" width="0.8" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="522.84" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream (1,039 samples, 0.14%)</title><rect x="4180.7" y="349" width="6.5" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4183.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (216 samples, 0.03%)</title><rect x="4782.1" y="781" width="1.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (23 samples, 0.00%)</title><rect x="699.2" y="637" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="702.18" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="2443.9" y="133" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2446.86" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="2447.5" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2450.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (201 samples, 0.03%)</title><rect x="3229.7" y="157" width="1.3" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3232.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (297 samples, 0.04%)</title><rect x="4439.7" y="253" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4442.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (431 samples, 0.06%)</title><rect x="4047.2" y="349" width="2.7" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="4050.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (155 samples, 0.02%)</title><rect x="2420.6" y="181" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2423.56" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73590d48 (23 samples, 0.00%)</title><rect x="612.5" y="541" width="0.2" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="615.53" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (52 samples, 0.01%)</title><rect x="742.5" y="325" width="0.3" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="745.51" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::childAtRecursiveHelper (22 samples, 0.00%)</title><rect x="743.3" y="709" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="746.28" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (328 samples, 0.04%)</title><rect x="4574.4" y="229" width="2.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4577.44" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7e5 (44 samples, 0.01%)</title><rect x="1123.4" y="277" width="0.3" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="1126.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::insert@plt (54 samples, 0.01%)</title><rect x="1904.7" y="253" width="0.4" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="1907.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (351 samples, 0.05%)</title><rect x="2511.1" y="301" width="2.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2514.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Document::textInserted (16 samples, 0.00%)</title><rect x="432.2" y="1045" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="435.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::first (18 samples, 0.00%)</title><rect x="1724.5" y="253" width="0.1" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="1727.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (17 samples, 0.00%)</title><rect x="452.9" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="455.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (46 samples, 0.01%)</title><rect x="114.3" y="757" width="0.3" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="117.28" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (525 samples, 0.07%)</title><rect x="505.3" y="1045" width="3.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="508.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (4,210 samples, 0.55%)</title><rect x="2257.9" y="181" width="26.4" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="2260.94" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (28 samples, 0.00%)</title><rect x="4208.0" y="205" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4210.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb247 (74 samples, 0.01%)</title><rect x="3705.6" y="133" width="0.5" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="3708.64" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::qt_static_metacall (29 samples, 0.00%)</title><rect x="334.1" y="1045" width="0.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="337.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (35 samples, 0.00%)</title><rect x="654.5" y="949" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="657.51" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (22 samples, 0.00%)</title><rect x="4376.1" y="157" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4379.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (68 samples, 0.01%)</title><rect x="313.3" y="1045" width="0.5" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="316.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (23 samples, 0.00%)</title><rect x="3996.5" y="277" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3999.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (2,622 samples, 0.34%)</title><rect x="1935.2" y="253" width="16.4" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="1938.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::revision (74 samples, 0.01%)</title><rect x="3149.6" y="229" width="0.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3152.58" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (72 samples, 0.01%)</title><rect x="629.2" y="541" width="0.5" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="632.20" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (331 samples, 0.04%)</title><rect x="921.8" y="349" width="2.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="924.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow (21 samples, 0.00%)</title><rect x="642.4" y="1045" width="0.1" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="645.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a7d0 (26 samples, 0.00%)</title><rect x="4505.8" y="301" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="4508.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (134 samples, 0.02%)</title><rect x="4175.6" y="277" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4178.60" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (19 samples, 0.00%)</title><rect x="53.4" y="1045" width="0.1" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (77 samples, 0.01%)</title><rect x="588.6" y="1045" width="0.4" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="591.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::d_func (98 samples, 0.01%)</title><rect x="2522.6" y="325" width="0.6" height="23.0" fill="rgb(233,171,30)" rx="2" ry="2" />
<text text-anchor="" x="2525.59" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::inlineNoteAt (40 samples, 0.01%)</title><rect x="765.5" y="589" width="0.3" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="768.55" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (661 samples, 0.09%)</title><rect x="4533.7" y="301" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4536.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f63289d08 (239 samples, 0.03%)</title><rect x="666.1" y="685" width="1.5" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (620 samples, 0.08%)</title><rect x="2577.6" y="157" width="3.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2580.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::doHighlight@plt (113 samples, 0.01%)</title><rect x="2567.3" y="277" width="0.7" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2570.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (163 samples, 0.02%)</title><rect x="4279.3" y="301" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4282.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::registerTimer (2,868 samples, 0.38%)</title><rect x="2210.5" y="133" width="18.0" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="2213.53" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isValid (327 samples, 0.04%)</title><rect x="976.6" y="421" width="2.0" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="979.56" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (80 samples, 0.01%)</title><rect x="742.5" y="685" width="0.5" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (110 samples, 0.01%)</title><rect x="508.7" y="1045" width="0.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="511.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::fillRect (19 samples, 0.00%)</title><rect x="628.2" y="541" width="0.2" height="23.0" fill="rgb(241,193,39)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,876 samples, 0.25%)</title><rect x="3847.9" y="205" width="11.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3850.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (156 samples, 0.02%)</title><rect x="4231.5" y="277" width="1.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4234.52" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (200 samples, 0.03%)</title><rect x="920.2" y="301" width="1.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="923.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (175 samples, 0.02%)</title><rect x="1048.3" y="301" width="1.1" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="1051.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::putChar (1,717 samples, 0.23%)</title><rect x="3619.4" y="181" width="10.8" height="23.0" fill="rgb(232,164,30)" rx="2" ry="2" />
<text text-anchor="" x="3622.39" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIcon::fromTheme (31 samples, 0.00%)</title><rect x="4781.2" y="997" width="0.2" height="23.0" fill="rgb(238,177,37)" rx="2" ry="2" />
<text text-anchor="" x="4784.17" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (25 samples, 0.00%)</title><rect x="561.8" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="564.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy_aux<true>::__destroy<Kate::TextRange**> (16 samples, 0.00%)</title><rect x="237.7" y="1045" width="0.1" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="240.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b72f (47 samples, 0.01%)</title><rect x="584.9" y="1069" width="0.3" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="587.91" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::count (301 samples, 0.04%)</title><rect x="4467.1" y="349" width="1.9" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4470.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (90 samples, 0.01%)</title><rect x="4184.3" y="229" width="0.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4187.27" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (22 samples, 0.00%)</title><rect x="4672.8" y="349" width="0.1" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4675.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::processMouseEvent (643,995 samples, 84.47%)</title><rect x="743.2" y="877" width="4037.9" height="23.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text text-anchor="" x="746.23" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QGuiApplicationPrivate::processMouseEvent</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (834 samples, 0.11%)</title><rect x="4203.0" y="325" width="5.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4205.95" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,221 samples, 0.16%)</title><rect x="1772.4" y="229" width="7.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1775.36" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc006 (21 samples, 0.00%)</title><rect x="3685.5" y="157" width="0.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="3688.48" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLayoutPrivate::doResize (17 samples, 0.00%)</title><rect x="669.2" y="733" width="0.1" height="23.0" fill="rgb(245,168,44)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b30f (288 samples, 0.04%)</title><rect x="451.2" y="1069" width="1.8" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="454.19" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (261 samples, 0.03%)</title><rect x="4223.8" y="325" width="1.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4226.82" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::finishEditing (25 samples, 0.00%)</title><rect x="887.9" y="421" width="0.1" height="23.0" fill="rgb(243,138,42)" rx="2" ry="2" />
<text text-anchor="" x="890.89" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (100 samples, 0.01%)</title><rect x="2645.0" y="277" width="0.7" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2648.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::isValid (590 samples, 0.08%)</title><rect x="1729.1" y="253" width="3.7" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="1732.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (75 samples, 0.01%)</title><rect x="634.6" y="1069" width="0.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="637.57" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (135 samples, 0.02%)</title><rect x="1083.7" y="229" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1086.74" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancel (18 samples, 0.00%)</title><rect x="627.7" y="709" width="0.1" height="23.0" fill="rgb(236,173,34)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (164 samples, 0.02%)</title><rect x="2563.9" y="277" width="1.0" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2566.88" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (31 samples, 0.00%)</title><rect x="740.2" y="325" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fb010 (42 samples, 0.01%)</title><rect x="2222.2" y="109" width="0.3" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="2225.21" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (36 samples, 0.00%)</title><rect x="4034.4" y="349" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4037.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (361 samples, 0.05%)</title><rect x="4218.8" y="349" width="2.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="4221.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (170 samples, 0.02%)</title><rect x="3948.1" y="181" width="1.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3951.14" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (134 samples, 0.02%)</title><rect x="590.8" y="1045" width="0.9" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="593.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::operator<< (514 samples, 0.07%)</title><rect x="4187.3" y="349" width="3.2" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="4190.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::replaceText (482,724 samples, 63.32%)</title><rect x="1008.9" y="397" width="3026.7" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="1011.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::replaceText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (215 samples, 0.03%)</title><rect x="740.0" y="517" width="1.4" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="743.04" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (203 samples, 0.03%)</title><rect x="653.2" y="997" width="1.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.24" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*>@plt (26 samples, 0.00%)</title><rect x="2440.9" y="181" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2443.94" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (56 samples, 0.01%)</title><rect x="558.5" y="1045" width="0.4" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="561.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::toRange (2,728 samples, 0.36%)</title><rect x="4035.6" y="397" width="17.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4038.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeTextWithHarfbuzzNG (61 samples, 0.01%)</title><rect x="112.3" y="949" width="0.4" height="23.0" fill="rgb(250,170,50)" rx="2" ry="2" />
<text text-anchor="" x="115.31" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (28 samples, 0.00%)</title><rect x="652.9" y="853" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="655.89" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInternal (309 samples, 0.04%)</title><rect x="1753.0" y="205" width="1.9" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1755.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (680 samples, 0.09%)</title><rect x="2961.0" y="277" width="4.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="2963.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (24 samples, 0.00%)</title><rect x="182.2" y="1045" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="185.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (364 samples, 0.05%)</title><rect x="613.2" y="589" width="2.2" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="616.15" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (152 samples, 0.02%)</title><rect x="3973.6" y="157" width="1.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3976.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (260 samples, 0.03%)</title><rect x="699.3" y="781" width="1.7" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (1,016 samples, 0.13%)</title><rect x="2251.5" y="181" width="6.4" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="2254.48" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (22 samples, 0.00%)</title><rect x="358.2" y="1045" width="0.1" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="361.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (62 samples, 0.01%)</title><rect x="4138.5" y="277" width="0.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4141.47" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (29 samples, 0.00%)</title><rect x="267.4" y="1045" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="270.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (827 samples, 0.11%)</title><rect x="4309.2" y="397" width="5.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4312.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (181 samples, 0.02%)</title><rect x="875.3" y="277" width="1.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="878.31" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (207 samples, 0.03%)</title><rect x="4782.1" y="445" width="1.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (18 samples, 0.00%)</title><rect x="627.7" y="853" width="0.1" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73104047 (71 samples, 0.01%)</title><rect x="2152.7" y="157" width="0.5" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="2155.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (886 samples, 0.12%)</title><rect x="969.7" y="397" width="5.6" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="972.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (215 samples, 0.03%)</title><rect x="4782.1" y="733" width="1.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::setPen (30 samples, 0.00%)</title><rect x="700.6" y="589" width="0.1" height="23.0" fill="rgb(247,203,46)" rx="2" ry="2" />
<text text-anchor="" x="703.55" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (233 samples, 0.03%)</title><rect x="4685.4" y="373" width="1.5" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4688.40" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (106 samples, 0.01%)</title><rect x="2587.7" y="205" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="2590.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (79 samples, 0.01%)</title><rect x="475.7" y="1045" width="0.5" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="478.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (108 samples, 0.01%)</title><rect x="60.0" y="1045" width="0.6" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="62.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (25 samples, 0.00%)</title><rect x="489.8" y="1045" width="0.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="492.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup@plt (37 samples, 0.00%)</title><rect x="1789.7" y="253" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1792.68" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line@plt (17 samples, 0.00%)</title><rect x="4425.5" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4428.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (106 samples, 0.01%)</title><rect x="1752.3" y="205" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1755.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::data (1,259 samples, 0.17%)</title><rect x="1781.4" y="205" width="7.9" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="1784.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::documentTextInserted (132 samples, 0.02%)</title><rect x="625.5" y="1069" width="0.8" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="628.51" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (105 samples, 0.01%)</title><rect x="3878.2" y="181" width="0.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3881.15" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (881 samples, 0.12%)</title><rect x="4436.1" y="325" width="5.5" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4439.09" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (59 samples, 0.01%)</title><rect x="637.9" y="853" width="0.3" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (5,546 samples, 0.73%)</title><rect x="3617.9" y="205" width="34.8" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="3620.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QD..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fad23 (16 samples, 0.00%)</title><rect x="2214.9" y="109" width="0.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="2217.90" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<int, (22 samples, 0.00%)</title><rect x="651.5" y="1069" width="0.1" height="23.0" fill="rgb(240,183,38)" rx="2" ry="2" />
<text text-anchor="" x="654.50" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (20 samples, 0.00%)</title><rect x="102.7" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="105.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd (441 samples, 0.06%)</title><rect x="1046.6" y="325" width="2.8" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="1049.59" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::thread (200 samples, 0.03%)</title><rect x="2234.8" y="157" width="1.3" height="23.0" fill="rgb(241,205,40)" rx="2" ry="2" />
<text text-anchor="" x="2237.84" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateDocumentConfig (67 samples, 0.01%)</title><rect x="764.9" y="301" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (109 samples, 0.01%)</title><rect x="4257.6" y="229" width="0.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4260.57" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (26 samples, 0.00%)</title><rect x="429.4" y="1045" width="0.1" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="432.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (285 samples, 0.04%)</title><rect x="589.0" y="1045" width="1.8" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="592.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFont::QFont (61 samples, 0.01%)</title><rect x="612.7" y="541" width="0.4" height="23.0" fill="rgb(242,192,41)" rx="2" ry="2" />
<text text-anchor="" x="615.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (35 samples, 0.00%)</title><rect x="467.7" y="1045" width="0.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="470.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (30 samples, 0.00%)</title><rect x="576.8" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="579.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::exec (125 samples, 0.02%)</title><rect x="661.6" y="1021" width="0.8" height="23.0" fill="rgb(237,207,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (66 samples, 0.01%)</title><rect x="3718.4" y="133" width="0.5" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="3721.44" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (28 samples, 0.00%)</title><rect x="2138.3" y="61" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="2141.32" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (60 samples, 0.01%)</title><rect x="183.8" y="1045" width="0.4" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="186.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (22 samples, 0.00%)</title><rect x="474.3" y="1045" width="0.2" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="477.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (232 samples, 0.03%)</title><rect x="654.7" y="1069" width="1.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (17 samples, 0.00%)</title><rect x="4231.2" y="253" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4234.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>(anonymous (538 samples, 0.07%)</title><rect x="133.1" y="1045" width="3.4" height="23.0" fill="rgb(236,178,34)" rx="2" ry="2" />
<text text-anchor="" x="136.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (25 samples, 0.00%)</title><rect x="2081.5" y="229" width="0.2" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="2084.50" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (669 samples, 0.09%)</title><rect x="1918.0" y="277" width="4.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="1921.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (28 samples, 0.00%)</title><rect x="637.7" y="733" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b08f (1,632 samples, 0.21%)</title><rect x="215.4" y="1069" width="10.2" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="218.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::range (1,060 samples, 0.14%)</title><rect x="4300.4" y="397" width="6.6" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4303.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (23 samples, 0.00%)</title><rect x="576.5" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="579.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (17 samples, 0.00%)</title><rect x="669.2" y="589" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (44 samples, 0.01%)</title><rect x="474.5" y="1045" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="477.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,024 samples, 0.13%)</title><rect x="3672.6" y="181" width="6.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3675.61" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed4b9 (121 samples, 0.02%)</title><rect x="2099.2" y="157" width="0.8" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="2102.22" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (22 samples, 0.00%)</title><rect x="327.9" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="330.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afbf (944 samples, 0.12%)</title><rect x="147.5" y="1069" width="5.9" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="150.50" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (28 samples, 0.00%)</title><rect x="4091.5" y="301" width="0.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4094.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingChangedBuffer (176 samples, 0.02%)</title><rect x="1035.4" y="301" width="1.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="1038.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::timeout (259 samples, 0.03%)</title><rect x="699.3" y="685" width="1.7" height="23.0" fill="rgb(234,157,32)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::mouseMoveEvent (108 samples, 0.01%)</title><rect x="765.3" y="613" width="0.7" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="768.29" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (28 samples, 0.00%)</title><rect x="3140.5" y="253" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="3143.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (140 samples, 0.02%)</title><rect x="4107.3" y="325" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4110.28" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::kateTextLine (5,631 samples, 0.74%)</title><rect x="2560.6" y="325" width="35.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2563.64" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KT..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (693 samples, 0.09%)</title><rect x="1064.8" y="181" width="4.4" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="1067.83" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (284 samples, 0.04%)</title><rect x="939.1" y="325" width="1.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="942.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (17 samples, 0.00%)</title><rect x="4610.3" y="349" width="0.1" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="4613.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (137 samples, 0.02%)</title><rect x="4165.5" y="325" width="0.8" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="4168.47" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::textReadWrite (31 samples, 0.00%)</title><rect x="376.1" y="1045" width="0.2" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="379.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b10675 (18 samples, 0.00%)</title><rect x="627.7" y="1021" width="0.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (44 samples, 0.01%)</title><rect x="4107.9" y="301" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4110.89" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::isEmpty (18 samples, 0.00%)</title><rect x="311.7" y="1045" width="0.1" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="314.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (39 samples, 0.01%)</title><rect x="3941.0" y="205" width="0.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="3943.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_construct (875 samples, 0.11%)</title><rect x="4255.0" y="325" width="5.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4257.99" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::processKeyEvent (25 samples, 0.00%)</title><rect x="743.1" y="877" width="0.1" height="23.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text text-anchor="" x="746.08" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (40 samples, 0.01%)</title><rect x="638.7" y="661" width="0.2" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (2,147 samples, 0.28%)</title><rect x="3243.4" y="277" width="13.4" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="3246.36" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (425 samples, 0.06%)</title><rect x="3150.7" y="181" width="2.7" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3153.74" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (41 samples, 0.01%)</title><rect x="13.1" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="16.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (16 samples, 0.00%)</title><rect x="653.3" y="805" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.27" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="148.3" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="151.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (494 samples, 0.06%)</title><rect x="627.6" y="1069" width="3.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="630.61" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (17 samples, 0.00%)</title><rect x="148.1" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="151.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<< (114 samples, 0.01%)</title><rect x="254.1" y="1045" width="0.7" height="23.0" fill="rgb(245,195,44)" rx="2" ry="2" />
<text text-anchor="" x="257.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__miter_base<Kate::TextRange**> (43 samples, 0.01%)</title><rect x="66.4" y="1045" width="0.3" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="69.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7f7 (52 samples, 0.01%)</title><rect x="1123.7" y="277" width="0.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="1126.71" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b37f (1,400 samples, 0.18%)</title><rect x="476.5" y="1069" width="8.7" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (1,086 samples, 0.14%)</title><rect x="692.5" y="661" width="6.8" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="695.51" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___clone (217 samples, 0.03%)</title><rect x="10.4" y="1069" width="1.4" height="23.0" fill="rgb(251,119,50)" rx="2" ry="2" />
<text text-anchor="" x="13.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::size (36 samples, 0.00%)</title><rect x="1724.0" y="205" width="0.2" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="1726.98" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (95 samples, 0.01%)</title><rect x="3863.0" y="181" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3865.99" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (52 samples, 0.01%)</title><rect x="203.1" y="1045" width="0.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="206.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1ff (150 samples, 0.02%)</title><rect x="327.7" y="1069" width="0.9" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="330.68" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (34 samples, 0.00%)</title><rect x="639.0" y="1069" width="0.2" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="641.96" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid@plt (20 samples, 0.00%)</title><rect x="4139.1" y="325" width="0.2" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4142.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::spaceWidth (31 samples, 0.00%)</title><rect x="4783.0" y="301" width="0.2" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="4786.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (35 samples, 0.00%)</title><rect x="2581.5" y="157" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2584.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (313 samples, 0.04%)</title><rect x="739.6" y="589" width="2.0" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="742.59" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (224 samples, 0.03%)</title><rect x="4225.5" y="325" width="1.4" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4228.46" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (24 samples, 0.00%)</title><rect x="485.1" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="488.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast@plt (229 samples, 0.03%)</title><rect x="3939.2" y="229" width="1.5" height="23.0" fill="rgb(231,141,29)" rx="2" ry="2" />
<text text-anchor="" x="3942.22" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (24 samples, 0.00%)</title><rect x="484.1" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="487.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (27 samples, 0.00%)</title><rect x="3856.9" y="109" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3859.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (327 samples, 0.04%)</title><rect x="4439.6" y="277" width="2.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4442.57" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent (30 samples, 0.00%)</title><rect x="249.4" y="1045" width="0.2" height="23.0" fill="rgb(241,161,39)" rx="2" ry="2" />
<text text-anchor="" x="252.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (35 samples, 0.00%)</title><rect x="4552.1" y="277" width="0.2" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="4555.12" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (33 samples, 0.00%)</title><rect x="653.3" y="901" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.26" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7ea (23 samples, 0.00%)</title><rect x="284.6" y="1045" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="287.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (157 samples, 0.02%)</title><rect x="4043.7" y="349" width="1.0" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4046.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::~KateUndoManager (4,725 samples, 0.62%)</title><rect x="709.8" y="397" width="29.6" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="712.82" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ka..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b42f (154 samples, 0.02%)</title><rect x="525.6" y="1069" width="1.0" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="528.59" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwapDiffCreator::qt_metacall (91 samples, 0.01%)</title><rect x="35.7" y="1045" width="0.6" height="23.0" fill="rgb(230,157,28)" rx="2" ry="2" />
<text text-anchor="" x="38.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::~ReplacementStream (1,455 samples, 0.19%)</title><rect x="4576.7" y="325" width="9.1" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4579.66" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDialog::exec (69 samples, 0.01%)</title><rect x="742.5" y="373" width="0.4" height="23.0" fill="rgb(237,182,35)" rx="2" ry="2" />
<text text-anchor="" x="745.48" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7e5 (37 samples, 0.00%)</title><rect x="2080.7" y="253" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="2083.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (20 samples, 0.00%)</title><rect x="4160.5" y="277" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="4163.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (34 samples, 0.00%)</title><rect x="3885.8" y="229" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3888.81" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (60 samples, 0.01%)</title><rect x="637.9" y="997" width="0.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (22 samples, 0.00%)</title><rect x="3832.9" y="205" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3835.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (86 samples, 0.01%)</title><rect x="4162.0" y="229" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4164.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::KateEditRemoveTextUndo (23 samples, 0.00%)</title><rect x="3841.4" y="301" width="0.1" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="3844.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator (296 samples, 0.04%)</title><rect x="2386.2" y="277" width="1.8" height="23.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text text-anchor="" x="2389.19" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (100 samples, 0.01%)</title><rect x="2594.5" y="205" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2597.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (144 samples, 0.02%)</title><rect x="4641.6" y="301" width="0.9" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4644.56" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (22 samples, 0.00%)</title><rect x="195.6" y="1045" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="198.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7316969f (104 samples, 0.01%)</title><rect x="110.5" y="1069" width="0.6" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="113.48" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a9e2 (38 samples, 0.00%)</title><rect x="4507.7" y="301" width="0.3" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="4510.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (33 samples, 0.00%)</title><rect x="63.4" y="1045" width="0.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="66.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (16 samples, 0.00%)</title><rect x="495.4" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="498.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (105 samples, 0.01%)</title><rect x="2461.3" y="325" width="0.7" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2464.32" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (338 samples, 0.04%)</title><rect x="647.3" y="1069" width="2.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move_a<true, (23 samples, 0.00%)</title><rect x="4786.5" y="1069" width="0.1" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="4789.48" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (70 samples, 0.01%)</title><rect x="3226.7" y="133" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3229.69" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::winId (252 samples, 0.03%)</title><rect x="666.1" y="901" width="1.6" height="23.0" fill="rgb(245,142,45)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::removeText (24 samples, 0.00%)</title><rect x="273.6" y="1045" width="0.2" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="276.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::last (1,212 samples, 0.16%)</title><rect x="2424.9" y="253" width="7.6" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="2427.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleCache::interfaceForId (23 samples, 0.00%)</title><rect x="627.2" y="1069" width="0.2" height="23.0" fill="rgb(243,161,41)" rx="2" ry="2" />
<text text-anchor="" x="630.21" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QtSharedPointer::ExternalRefCountData*> (22 samples, 0.00%)</title><rect x="167.7" y="1045" width="0.2" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="170.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (34 samples, 0.00%)</title><rect x="2581.7" y="229" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2584.73" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (408 samples, 0.05%)</title><rect x="3676.5" y="133" width="2.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3679.47" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (117 samples, 0.02%)</title><rect x="459.4" y="1045" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="462.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (280 samples, 0.04%)</title><rect x="2511.4" y="253" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2514.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (21 samples, 0.00%)</title><rect x="328.9" y="1045" width="0.1" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="331.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLayout::draw (20 samples, 0.00%)</title><rect x="114.2" y="757" width="0.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="117.16" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (426 samples, 0.06%)</title><rect x="631.0" y="1069" width="2.7" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="634.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (216 samples, 0.03%)</title><rect x="4782.1" y="853" width="1.3" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (25 samples, 0.00%)</title><rect x="269.3" y="1045" width="0.1" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="272.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::~QSet (29 samples, 0.00%)</title><rect x="311.8" y="1045" width="0.1" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="314.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (20 samples, 0.00%)</title><rect x="743.1" y="637" width="0.1" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (18 samples, 0.00%)</title><rect x="4199.6" y="277" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4202.64" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (330 samples, 0.04%)</title><rect x="2973.4" y="301" width="2.1" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2976.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (22 samples, 0.00%)</title><rect x="742.5" y="85" width="0.2" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::updateRange (3,502 samples, 0.46%)</title><rect x="1750.3" y="229" width="22.0" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1753.31" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed573 (21 samples, 0.00%)</title><rect x="3623.6" y="157" width="0.1" height="23.0" fill="rgb(249,92,49)" rx="2" ry="2" />
<text text-anchor="" x="3626.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::addEntry@plt (18 samples, 0.00%)</title><rect x="1724.2" y="253" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1727.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652aedf (79 samples, 0.01%)</title><rect x="118.7" y="1069" width="0.5" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="121.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (756 samples, 0.10%)</title><rect x="4755.1" y="397" width="4.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4758.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::queryClose (77 samples, 0.01%)</title><rect x="742.5" y="493" width="0.5" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::append (6,964 samples, 0.91%)</title><rect x="4632.1" y="373" width="43.7" height="23.0" fill="rgb(251,160,51)" rx="2" ry="2" />
<text text-anchor="" x="4635.14" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QVec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity@plt (126 samples, 0.02%)</title><rect x="4098.9" y="373" width="0.8" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4101.87" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (21 samples, 0.00%)</title><rect x="528.4" y="1045" width="0.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="531.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (16 samples, 0.00%)</title><rect x="490.2" y="1045" width="0.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="493.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (21 samples, 0.00%)</title><rect x="3164.2" y="181" width="0.1" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3167.15" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (318 samples, 0.04%)</title><rect x="4005.6" y="253" width="2.0" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4008.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move_a2<true, (23 samples, 0.00%)</title><rect x="172.5" y="1045" width="0.2" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="175.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (159 samples, 0.02%)</title><rect x="316.5" y="1045" width="1.0" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="319.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (590 samples, 0.08%)</title><rect x="2358.9" y="85" width="3.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2361.90" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (70 samples, 0.01%)</title><rect x="4592.0" y="277" width="0.4" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4594.96" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (25 samples, 0.00%)</title><rect x="527.3" y="1045" width="0.1" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="530.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b38f (120 samples, 0.02%)</title><rect x="485.2" y="1069" width="0.8" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="488.24" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isStatic (253 samples, 0.03%)</title><rect x="4670.9" y="325" width="1.6" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="4673.87" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (48 samples, 0.01%)</title><rect x="72.3" y="1045" width="0.3" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="75.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (16 samples, 0.00%)</title><rect x="449.7" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="452.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (210 samples, 0.03%)</title><rect x="673.3" y="805" width="1.3" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="676.25" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (139 samples, 0.02%)</title><rect x="4573.4" y="229" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4576.44" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (182 samples, 0.02%)</title><rect x="3973.4" y="181" width="1.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3976.42" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::stop (6,253 samples, 0.82%)</title><rect x="3679.6" y="205" width="39.3" height="23.0" fill="rgb(244,157,43)" rx="2" ry="2" />
<text text-anchor="" x="3682.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QTi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (278 samples, 0.04%)</title><rect x="4229.5" y="253" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4232.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::accessibleInterface (16 samples, 0.00%)</title><rect x="627.4" y="1069" width="0.1" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="630.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74fb9dbd (97 samples, 0.01%)</title><rect x="775.9" y="421" width="0.6" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="778.88" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (62 samples, 0.01%)</title><rect x="933.0" y="349" width="0.4" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="936.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFont::QFont (34 samples, 0.00%)</title><rect x="608.5" y="565" width="0.2" height="23.0" fill="rgb(242,192,41)" rx="2" ry="2" />
<text text-anchor="" x="611.52" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (36 samples, 0.00%)</title><rect x="2576.2" y="205" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2579.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWindowSystemInterface::handleShortcutEvent (20 samples, 0.00%)</title><rect x="743.1" y="853" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (39 samples, 0.01%)</title><rect x="143.5" y="1045" width="0.2" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="146.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (70 samples, 0.01%)</title><rect x="616.2" y="1069" width="0.4" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="619.16" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::search (1,884 samples, 0.25%)</title><rect x="4347.5" y="373" width="11.8" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4350.51" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (107 samples, 0.01%)</title><rect x="202.4" y="1045" width="0.6" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="205.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (23 samples, 0.00%)</title><rect x="740.8" y="253" width="0.1" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="743.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::empty (593 samples, 0.08%)</title><rect x="3344.0" y="277" width="3.8" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="3347.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (362 samples, 0.05%)</title><rect x="4047.6" y="325" width="2.3" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4050.62" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (1,117 samples, 0.15%)</title><rect x="4595.3" y="325" width="7.0" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="4598.30" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (407 samples, 0.05%)</title><rect x="628.1" y="781" width="2.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::~QByteArray (30 samples, 0.00%)</title><rect x="2159.9" y="229" width="0.2" height="23.0" fill="rgb(239,218,37)" rx="2" ry="2" />
<text text-anchor="" x="2162.93" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (20 samples, 0.00%)</title><rect x="2577.2" y="181" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2580.20" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition@plt (70 samples, 0.01%)</title><rect x="4076.8" y="349" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4079.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (103 samples, 0.01%)</title><rect x="2052.4" y="277" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2055.41" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (19 samples, 0.00%)</title><rect x="167.1" y="1045" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="170.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (732 samples, 0.10%)</title><rect x="4587.8" y="325" width="4.6" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4590.81" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::~QSharedPointer (61 samples, 0.01%)</title><rect x="250.3" y="1045" width="0.4" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="253.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (21 samples, 0.00%)</title><rect x="180.0" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="183.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (76 samples, 0.01%)</title><rect x="4409.3" y="253" width="0.5" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4412.34" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (24 samples, 0.00%)</title><rect x="387.1" y="1045" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="390.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (313 samples, 0.04%)</title><rect x="2442.0" y="205" width="2.0" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2445.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (138 samples, 0.02%)</title><rect x="941.2" y="277" width="0.8" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="944.17" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::QLatin1Char (52 samples, 0.01%)</title><rect x="2498.0" y="349" width="0.3" height="23.0" fill="rgb(232,168,30)" rx="2" ry="2" />
<text text-anchor="" x="2500.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (215 samples, 0.03%)</title><rect x="4782.1" y="637" width="1.3" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (462 samples, 0.06%)</title><rect x="18.5" y="1045" width="2.9" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="21.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (91 samples, 0.01%)</title><rect x="1732.2" y="205" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1735.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (178 samples, 0.02%)</title><rect x="2446.5" y="205" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2449.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (954 samples, 0.13%)</title><rect x="3859.8" y="205" width="6.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3862.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingChangedBuffer (149 samples, 0.02%)</title><rect x="1048.4" y="277" width="1.0" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="1051.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::~TextBuffer (1,361 samples, 0.18%)</title><rect x="701.3" y="373" width="8.5" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::setLineWidth (17 samples, 0.00%)</title><rect x="690.7" y="613" width="0.1" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListSpecialMethods<KateUndoGroup*>::~QListSpecialMethods (26 samples, 0.00%)</title><rect x="329.2" y="1045" width="0.2" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="332.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (216 samples, 0.03%)</title><rect x="4782.1" y="925" width="1.3" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isNull (20 samples, 0.00%)</title><rect x="237.2" y="1045" width="0.2" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="240.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (28 samples, 0.00%)</title><rect x="652.9" y="805" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="655.89" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (38 samples, 0.00%)</title><rect x="1706.2" y="205" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1709.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (49 samples, 0.01%)</title><rect x="742.5" y="277" width="0.3" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="745.52" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (17 samples, 0.00%)</title><rect x="627.7" y="517" width="0.1" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (18 samples, 0.00%)</title><rect x="627.7" y="901" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (17 samples, 0.00%)</title><rect x="4315.0" y="397" width="0.2" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4318.05" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontPrivate::engineForScript (19 samples, 0.00%)</title><rect x="4783.1" y="253" width="0.1" height="23.0" fill="rgb(236,192,34)" rx="2" ry="2" />
<text text-anchor="" x="4786.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (19 samples, 0.00%)</title><rect x="584.6" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="587.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (1,592 samples, 0.21%)</title><rect x="3352.5" y="205" width="10.0" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="3355.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (19 samples, 0.00%)</title><rect x="495.7" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="498.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (1,129 samples, 0.15%)</title><rect x="692.3" y="733" width="7.0" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="695.25" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (16 samples, 0.00%)</title><rect x="35.7" y="1021" width="0.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="38.69" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString@plt (248 samples, 0.03%)</title><rect x="4592.4" y="325" width="1.6" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4595.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb246 (1,774 samples, 0.23%)</title><rect x="3694.5" y="133" width="11.1" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="3697.51" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="3949.1" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3952.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (41 samples, 0.01%)</title><rect x="606.8" y="1021" width="0.2" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (34 samples, 0.00%)</title><rect x="388.9" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="391.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (19 samples, 0.00%)</title><rect x="143.7" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="146.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (237 samples, 0.03%)</title><rect x="189.2" y="1045" width="1.5" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="192.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (120 samples, 0.02%)</title><rect x="4157.9" y="277" width="0.8" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="4160.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (17 samples, 0.00%)</title><rect x="669.2" y="517" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (43 samples, 0.01%)</title><rect x="740.1" y="397" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="743.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::QSet (18 samples, 0.00%)</title><rect x="1935.0" y="253" width="0.1" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="1937.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (59 samples, 0.01%)</title><rect x="4162.7" y="325" width="0.4" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4165.73" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f731040aa (72 samples, 0.01%)</title><rect x="2155.7" y="157" width="0.4" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="2158.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (786 samples, 0.10%)</title><rect x="4168.2" y="301" width="5.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4171.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (179 samples, 0.02%)</title><rect x="4231.4" y="301" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4234.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (12,892 samples, 1.69%)</title><rect x="796.7" y="349" width="80.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="799.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateBuffe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLineLayoutMap::slotEditDone (16 samples, 0.00%)</title><rect x="3793.9" y="229" width="0.1" height="23.0" fill="rgb(251,118,50)" rx="2" ry="2" />
<text text-anchor="" x="3796.87" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (92 samples, 0.01%)</title><rect x="177.2" y="1045" width="0.6" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="180.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcher::registerTimer (4,768 samples, 0.63%)</title><rect x="2204.9" y="157" width="29.9" height="23.0" fill="rgb(245,165,44)" rx="2" ry="2" />
<text text-anchor="" x="2207.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QA..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (119 samples, 0.02%)</title><rect x="878.7" y="301" width="0.8" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="881.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KWrite::queryClose (18 samples, 0.00%)</title><rect x="627.7" y="757" width="0.1" height="23.0" fill="rgb(245,120,44)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::insertText (125,025 samples, 16.40%)</title><rect x="1559.2" y="325" width="783.9" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1562.21" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBuffer::insertText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (135 samples, 0.02%)</title><rect x="4584.9" y="205" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4587.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (369 samples, 0.05%)</title><rect x="4184.8" y="253" width="2.4" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4187.84" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (27 samples, 0.00%)</title><rect x="4718.5" y="277" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4721.54" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (50 samples, 0.01%)</title><rect x="637.3" y="805" width="0.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (1,755 samples, 0.23%)</title><rect x="4486.6" y="253" width="11.0" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4489.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a0780 (42 samples, 0.01%)</title><rect x="691.7" y="829" width="0.3" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::uninitialized_copy<std::move_iterator<Kate::TextRange**>, (78 samples, 0.01%)</title><rect x="332.3" y="1045" width="0.5" height="23.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text text-anchor="" x="335.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*> (474 samples, 0.06%)</title><rect x="324.7" y="1045" width="3.0" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="327.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isEmpty (733 samples, 0.10%)</title><rect x="982.9" y="397" width="4.6" height="23.0" fill="rgb(243,138,42)" rx="2" ry="2" />
<text text-anchor="" x="985.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (22 samples, 0.00%)</title><rect x="237.1" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="240.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="4558.1" y="181" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4561.13" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b11f (355 samples, 0.05%)</title><rect x="267.7" y="1069" width="2.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="270.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLayoutPrivate::doResize (18 samples, 0.00%)</title><rect x="741.8" y="685" width="0.1" height="23.0" fill="rgb(245,168,44)" rx="2" ry="2" />
<text text-anchor="" x="744.79" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (27 samples, 0.00%)</title><rect x="802.9" y="253" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="805.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (28 samples, 0.00%)</title><rect x="637.7" y="829" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::operator= (27 samples, 0.00%)</title><rect x="698.1" y="565" width="0.2" height="23.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text text-anchor="" x="701.15" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (183 samples, 0.02%)</title><rect x="3224.7" y="205" width="1.1" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="3227.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecef8 (87 samples, 0.01%)</title><rect x="4484.6" y="325" width="0.5" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="4487.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::paintEvent (29 samples, 0.00%)</title><rect x="741.2" y="325" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="744.16" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (23 samples, 0.00%)</title><rect x="1081.8" y="229" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1084.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (69 samples, 0.01%)</title><rect x="153.8" y="1045" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="156.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (126 samples, 0.02%)</title><rect x="3090.1" y="277" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3093.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward<Kate::TextRange*> (22 samples, 0.00%)</title><rect x="290.0" y="1045" width="0.1" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="292.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (93 samples, 0.01%)</title><rect x="4598.2" y="301" width="0.6" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="4601.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::kateTextLine@plt (28 samples, 0.00%)</title><rect x="1085.2" y="325" width="0.2" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="1088.22" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (22 samples, 0.00%)</title><rect x="535.8" y="1045" width="0.1" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="538.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isSharable (18 samples, 0.00%)</title><rect x="488.1" y="1045" width="0.1" height="23.0" fill="rgb(241,166,40)" rx="2" ry="2" />
<text text-anchor="" x="491.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (38 samples, 0.00%)</title><rect x="4260.2" y="301" width="0.3" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4263.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a656d (42 samples, 0.01%)</title><rect x="691.7" y="781" width="0.3" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (168 samples, 0.02%)</title><rect x="4614.3" y="277" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4617.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf19d2e (18 samples, 0.00%)</title><rect x="691.3" y="781" width="0.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::size (203 samples, 0.03%)</title><rect x="989.9" y="373" width="1.3" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="992.93" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (47 samples, 0.01%)</title><rect x="630.7" y="1069" width="0.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="633.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,123 samples, 0.15%)</title><rect x="3826.0" y="301" width="7.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3829.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (46 samples, 0.01%)</title><rect x="3835.8" y="301" width="0.2" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="3838.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b0d39e (81 samples, 0.01%)</title><rect x="742.5" y="757" width="0.5" height="23.0" fill="rgb(248,92,48)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<< (16 samples, 0.00%)</title><rect x="615.4" y="1045" width="0.1" height="23.0" fill="rgb(245,195,44)" rx="2" ry="2" />
<text text-anchor="" x="618.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::layout_helper (17 samples, 0.00%)</title><rect x="690.7" y="589" width="0.1" height="23.0" fill="rgb(243,170,41)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMenu::event (17 samples, 0.00%)</title><rect x="701.1" y="397" width="0.1" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="704.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (60 samples, 0.01%)</title><rect x="123.3" y="1045" width="0.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="126.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (209 samples, 0.03%)</title><rect x="957.2" y="277" width="1.3" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="960.16" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toUtf8_helper (3,249 samples, 0.43%)</title><rect x="2136.1" y="181" width="20.4" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="2139.08" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfac744 (275 samples, 0.04%)</title><rect x="621.1" y="925" width="1.7" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="624.09" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::metaObject (61 samples, 0.01%)</title><rect x="3663.0" y="253" width="0.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3665.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (298 samples, 0.04%)</title><rect x="4194.4" y="253" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4197.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isSharable (177 samples, 0.02%)</title><rect x="4667.8" y="325" width="1.1" height="23.0" fill="rgb(241,166,40)" rx="2" ry="2" />
<text text-anchor="" x="4670.83" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement (423 samples, 0.06%)</title><rect x="529.6" y="1045" width="2.7" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="532.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (22 samples, 0.00%)</title><rect x="234.7" y="1045" width="0.1" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="237.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctorCall<QtPrivate::IndexesList<0, (224 samples, 0.03%)</title><rect x="279.3" y="1045" width="1.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="282.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Document::textRemoved (1,838 samples, 0.24%)</title><rect x="2977.8" y="301" width="11.6" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="2980.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (92 samples, 0.01%)</title><rect x="934.0" y="373" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="937.03" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (86 samples, 0.01%)</title><rect x="1775.8" y="205" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1778.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (287 samples, 0.04%)</title><rect x="4423.4" y="277" width="1.8" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="4426.41" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*> (620 samples, 0.08%)</title><rect x="3967.1" y="181" width="3.8" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="3970.05" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2df (1,860 samples, 0.24%)</title><rect x="431.5" y="1069" width="11.6" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="434.47" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6329da5a (16 samples, 0.00%)</title><rect x="667.4" y="661" width="0.1" height="23.0" fill="rgb(232,92,29)" rx="2" ry="2" />
<text text-anchor="" x="670.43" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (256 samples, 0.03%)</title><rect x="4713.6" y="349" width="1.6" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4716.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (40 samples, 0.01%)</title><rect x="638.7" y="613" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b12f (1,284 samples, 0.17%)</title><rect x="269.9" y="1069" width="8.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="272.91" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (333 samples, 0.04%)</title><rect x="996.3" y="373" width="2.1" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="999.28" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (105 samples, 0.01%)</title><rect x="469.2" y="1045" width="0.6" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="472.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (182 samples, 0.02%)</title><rect x="4361.3" y="349" width="1.1" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="4364.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::updateCurrentTime (245 samples, 0.03%)</title><rect x="2222.6" y="109" width="1.5" height="23.0" fill="rgb(236,157,34)" rx="2" ry="2" />
<text text-anchor="" x="2225.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (18 samples, 0.00%)</title><rect x="1786.7" y="109" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1789.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652aff3 (195 samples, 0.03%)</title><rect x="168.3" y="1069" width="1.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="171.29" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b48f (237 samples, 0.03%)</title><rect x="549.8" y="1069" width="1.5" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="552.81" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (56 samples, 0.01%)</title><rect x="583.4" y="1045" width="0.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="586.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (213 samples, 0.03%)</title><rect x="4427.1" y="301" width="1.3" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="4430.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line@plt (137 samples, 0.02%)</title><rect x="1742.7" y="253" width="0.9" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1745.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateDocumentConfig (17 samples, 0.00%)</title><rect x="669.3" y="781" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::updateRange (178 samples, 0.02%)</title><rect x="940.9" y="325" width="1.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="943.92" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::qt_static_metacall (27 samples, 0.00%)</title><rect x="332.9" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="335.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (228 samples, 0.03%)</title><rect x="1719.4" y="205" width="1.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1722.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (25 samples, 0.00%)</title><rect x="430.4" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="433.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (620 samples, 0.08%)</title><rect x="1699.1" y="253" width="3.9" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="1702.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (60 samples, 0.01%)</title><rect x="3825.6" y="301" width="0.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3828.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (52 samples, 0.01%)</title><rect x="3716.8" y="133" width="0.3" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="3719.80" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedRemoveText::KateModifiedRemoveText (257 samples, 0.03%)</title><rect x="437.7" y="1045" width="1.7" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="440.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (23 samples, 0.00%)</title><rect x="457.2" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="460.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>X509_STORE_set_default_paths (16 samples, 0.00%)</title><rect x="669.0" y="805" width="0.1" height="23.0" fill="rgb(235,120,33)" rx="2" ry="2" />
<text text-anchor="" x="672.00" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (16 samples, 0.00%)</title><rect x="475.3" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="478.30" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b20f (590 samples, 0.08%)</title><rect x="329.1" y="1069" width="3.7" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="332.06" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (38 samples, 0.00%)</title><rect x="3974.6" y="229" width="0.2" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="3977.60" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (224 samples, 0.03%)</title><rect x="4623.2" y="349" width="1.4" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4626.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1,636 samples, 0.21%)</title><rect x="1907.8" y="253" width="10.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="1910.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontDatabase::load (19 samples, 0.00%)</title><rect x="668.0" y="829" width="0.1" height="23.0" fill="rgb(243,192,41)" rx="2" ry="2" />
<text text-anchor="" x="671.02" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::iterator (96 samples, 0.01%)</title><rect x="1716.0" y="181" width="0.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="1718.96" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::detach (871 samples, 0.11%)</title><rect x="4715.3" y="349" width="5.5" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="4718.30" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (16 samples, 0.00%)</title><rect x="489.5" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="492.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (147 samples, 0.02%)</title><rect x="2594.2" y="229" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2597.16" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctorCall<QtPrivate::IndexesList<0, (30 samples, 0.00%)</title><rect x="429.9" y="1045" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="432.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (228 samples, 0.03%)</title><rect x="2989.4" y="301" width="1.4" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="2992.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (18 samples, 0.00%)</title><rect x="4018.0" y="325" width="0.1" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="4021.01" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbIntegration::createPlatformWindow (251 samples, 0.03%)</title><rect x="666.1" y="805" width="1.6" height="23.0" fill="rgb(235,212,33)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed490 (21 samples, 0.00%)</title><rect x="606.0" y="1045" width="0.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="608.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6401cc1f (67 samples, 0.01%)</title><rect x="107.9" y="1069" width="0.4" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="110.93" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::writeBytes (1,850 samples, 0.24%)</title><rect x="2121.8" y="205" width="11.6" height="23.0" fill="rgb(238,208,36)" rx="2" ry="2" />
<text text-anchor="" x="2124.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoGroup::addItem (18 samples, 0.00%)</title><rect x="3891.0" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3893.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (580 samples, 0.08%)</title><rect x="2961.6" y="253" width="3.6" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="2964.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (1,733 samples, 0.23%)</title><rect x="4410.8" y="253" width="10.8" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4413.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23fe3f (48 samples, 0.01%)</title><rect x="64.3" y="1069" width="0.3" height="23.0" fill="rgb(240,99,38)" rx="2" ry="2" />
<text text-anchor="" x="67.33" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (25 samples, 0.00%)</title><rect x="4598.0" y="301" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4601.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::start (7,656 samples, 1.00%)</title><rect x="2195.3" y="205" width="48.0" height="23.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text text-anchor="" x="2198.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QTim..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (17 samples, 0.00%)</title><rect x="3829.5" y="253" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3832.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf20 (2,529 samples, 0.33%)</title><rect x="4485.4" y="325" width="15.9" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="4488.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1d820 (130 samples, 0.02%)</title><rect x="1562.1" y="301" width="0.8" height="23.0" fill="rgb(228,92,26)" rx="2" ry="2" />
<text text-anchor="" x="1565.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (16 samples, 0.00%)</title><rect x="3136.5" y="277" width="0.1" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="3139.50" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (398 samples, 0.05%)</title><rect x="3385.7" y="253" width="2.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3388.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (119 samples, 0.02%)</title><rect x="463.5" y="1045" width="0.8" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="466.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (139 samples, 0.02%)</title><rect x="365.0" y="1045" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="367.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement@plt (110 samples, 0.01%)</title><rect x="4609.1" y="349" width="0.7" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4612.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (25 samples, 0.00%)</title><rect x="918.7" y="373" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="921.67" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (17 samples, 0.00%)</title><rect x="479.9" y="1045" width="0.1" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="482.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::updatePen (34 samples, 0.00%)</title><rect x="700.3" y="517" width="0.2" height="23.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text text-anchor="" x="703.33" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_get_addr (368 samples, 0.05%)</title><rect x="3703.3" y="85" width="2.3" height="23.0" fill="rgb(244,150,43)" rx="2" ry="2" />
<text text-anchor="" x="3706.33" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74fb9dbd (179 samples, 0.02%)</title><rect x="115.2" y="1069" width="1.2" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="118.24" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (18 samples, 0.00%)</title><rect x="4457.7" y="325" width="0.1" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4460.66" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::operator= (20 samples, 0.00%)</title><rect x="114.0" y="661" width="0.1" height="23.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text text-anchor="" x="116.98" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (788 samples, 0.10%)</title><rect x="3997.6" y="229" width="4.9" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4000.58" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (106 samples, 0.01%)</title><rect x="3849.0" y="181" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3852.05" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfac6c9 (241 samples, 0.03%)</title><rect x="619.5" y="925" width="1.6" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="622.54" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::max<unsigned (234 samples, 0.03%)</title><rect x="255.0" y="1045" width="1.4" height="23.0" fill="rgb(251,146,51)" rx="2" ry="2" />
<text text-anchor="" x="257.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (144 samples, 0.02%)</title><rect x="4427.5" y="277" width="0.9" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="4430.55" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (50 samples, 0.01%)</title><rect x="637.3" y="613" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFactoryLoader::instance (42 samples, 0.01%)</title><rect x="691.7" y="853" width="0.3" height="23.0" fill="rgb(251,198,51)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (57 samples, 0.01%)</title><rect x="281.9" y="1045" width="0.3" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="284.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (35 samples, 0.00%)</title><rect x="2158.9" y="205" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2161.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingChangedBuffer (182 samples, 0.02%)</title><rect x="1015.7" y="325" width="1.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="1018.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::detach (18 samples, 0.00%)</title><rect x="1719.3" y="205" width="0.1" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="1722.26" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (61 samples, 0.01%)</title><rect x="380.2" y="1045" width="0.4" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="383.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (195 samples, 0.03%)</title><rect x="223.6" y="1045" width="1.2" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="226.59" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (794 samples, 0.10%)</title><rect x="785.2" y="373" width="5.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="788.25" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (187 samples, 0.02%)</title><rect x="3993.4" y="301" width="1.2" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="3996.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f640131cf (22 samples, 0.00%)</title><rect x="107.1" y="1069" width="0.1" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="110.10" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (112 samples, 0.01%)</title><rect x="2367.8" y="157" width="0.7" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="2370.78" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (38 samples, 0.00%)</title><rect x="4589.8" y="253" width="0.3" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4592.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::automaticCompletionInvocation (16 samples, 0.00%)</title><rect x="2188.7" y="205" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2191.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (16 samples, 0.00%)</title><rect x="90.1" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="93.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (36 samples, 0.00%)</title><rect x="3168.4" y="229" width="0.3" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3171.43" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (35 samples, 0.00%)</title><rect x="2053.1" y="277" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2056.06" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f63294fbb (177 samples, 0.02%)</title><rect x="666.1" y="637" width="1.1" height="23.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (321 samples, 0.04%)</title><rect x="608.2" y="685" width="2.0" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="611.18" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::qt_static_metacall (640,346 samples, 84.00%)</title><rect x="766.0" y="493" width="4015.0" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateSearchBar::qt_static_metacall</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::append (39 samples, 0.01%)</title><rect x="407.7" y="1045" width="0.2" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="410.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (18 samples, 0.00%)</title><rect x="195.2" y="1045" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="198.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (132 samples, 0.02%)</title><rect x="4627.8" y="301" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4630.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (21 samples, 0.00%)</title><rect x="1051.9" y="301" width="0.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1054.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (99 samples, 0.01%)</title><rect x="3222.0" y="205" width="0.6" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3224.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (23 samples, 0.00%)</title><rect x="3663.2" y="229" width="0.2" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="3666.23" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (136 samples, 0.02%)</title><rect x="4782.2" y="301" width="0.8" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="4785.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (16 samples, 0.00%)</title><rect x="114.6" y="733" width="0.1" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,411 samples, 0.19%)</title><rect x="4512.4" y="349" width="8.8" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4515.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b9ee11 (640,346 samples, 84.00%)</title><rect x="766.0" y="589" width="4015.0" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1f73b9ee11</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (1,018 samples, 0.13%)</title><rect x="4429.7" y="301" width="6.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4432.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (72 samples, 0.01%)</title><rect x="1649.0" y="277" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1652.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (32 samples, 0.00%)</title><rect x="361.2" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="364.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::metaObject (63 samples, 0.01%)</title><rect x="3719.4" y="253" width="0.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3722.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (55 samples, 0.01%)</title><rect x="652.9" y="973" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (35 samples, 0.00%)</title><rect x="38.5" y="1045" width="0.2" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="41.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbConnection::processXcbEvents (52 samples, 0.01%)</title><rect x="742.0" y="685" width="0.3" height="23.0" fill="rgb(238,212,36)" rx="2" ry="2" />
<text text-anchor="" x="745.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (27 samples, 0.00%)</title><rect x="23.5" y="1045" width="0.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="26.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::methodOffset (856 samples, 0.11%)</title><rect x="3794.0" y="253" width="5.3" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="3796.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::insertText@plt (49 samples, 0.01%)</title><rect x="2159.6" y="229" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2162.62" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (115 samples, 0.02%)</title><rect x="661.6" y="325" width="0.7" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="664.62" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (6,605 samples, 0.87%)</title><rect x="701.0" y="805" width="41.4" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="703.97" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QCo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (17 samples, 0.00%)</title><rect x="238.6" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="241.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::isAutomaticInvocationEnabled (1,633 samples, 0.21%)</title><rect x="2169.9" y="205" width="10.3" height="23.0" fill="rgb(252,138,52)" rx="2" ry="2" />
<text text-anchor="" x="2172.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (253 samples, 0.03%)</title><rect x="3235.4" y="85" width="1.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3238.36" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (33 samples, 0.00%)</title><rect x="637.7" y="1045" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markAsModified (39 samples, 0.01%)</title><rect x="375.9" y="1045" width="0.2" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="378.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (131 samples, 0.02%)</title><rect x="3197.7" y="181" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3200.71" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (387 samples, 0.05%)</title><rect x="921.4" y="373" width="2.5" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="924.45" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::removeText (242,367 samples, 31.79%)</title><rect x="2515.2" y="373" width="1519.6" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="2518.17" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::removeText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (40 samples, 0.01%)</title><rect x="638.7" y="757" width="0.2" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCryptographicHash::addData (89 samples, 0.01%)</title><rect x="749.1" y="301" width="0.6" height="23.0" fill="rgb(235,197,33)" rx="2" ry="2" />
<text text-anchor="" x="752.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (24 samples, 0.00%)</title><rect x="363.3" y="1045" width="0.1" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="366.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3f92e717 (30 samples, 0.00%)</title><rect x="88.7" y="1069" width="0.2" height="23.0" fill="rgb(235,99,34)" rx="2" ry="2" />
<text text-anchor="" x="91.73" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (56 samples, 0.01%)</title><rect x="291.2" y="1045" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="294.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (111 samples, 0.01%)</title><rect x="4193.5" y="253" width="0.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4196.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (20 samples, 0.00%)</title><rect x="114.2" y="733" width="0.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="117.16" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (137 samples, 0.02%)</title><rect x="3955.6" y="133" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3958.64" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (1,057 samples, 0.14%)</title><rect x="1733.2" y="229" width="6.7" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="1736.24" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (19 samples, 0.00%)</title><rect x="4576.4" y="205" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4579.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (345 samples, 0.05%)</title><rect x="4783.6" y="1069" width="2.2" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4786.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (559 samples, 0.07%)</title><rect x="882.5" y="253" width="3.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="885.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (578 samples, 0.08%)</title><rect x="1069.5" y="229" width="3.7" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1072.53" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (216 samples, 0.03%)</title><rect x="4782.1" y="949" width="1.3" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (67 samples, 0.01%)</title><rect x="191.8" y="1045" width="0.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="194.84" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (170 samples, 0.02%)</title><rect x="2442.9" y="181" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2445.92" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (369 samples, 0.05%)</title><rect x="3829.9" y="229" width="2.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3832.88" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (26 samples, 0.00%)</title><rect x="43.8" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="46.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (582 samples, 0.08%)</title><rect x="4183.5" y="277" width="3.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4186.50" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleCache::instance (57 samples, 0.01%)</title><rect x="121.2" y="1045" width="0.4" height="23.0" fill="rgb(251,161,51)" rx="2" ry="2" />
<text text-anchor="" x="124.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (40 samples, 0.01%)</title><rect x="951.2" y="325" width="0.3" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="954.21" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate@plt (264 samples, 0.03%)</title><rect x="2536.7" y="325" width="1.7" height="23.0" fill="rgb(231,205,29)" rx="2" ry="2" />
<text text-anchor="" x="2539.72" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (17 samples, 0.00%)</title><rect x="4448.0" y="325" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4451.04" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (122 samples, 0.02%)</title><rect x="2373.4" y="229" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2376.37" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (16 samples, 0.00%)</title><rect x="4723.9" y="301" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4726.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (584 samples, 0.08%)</title><rect x="611.8" y="1069" width="3.6" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (20 samples, 0.00%)</title><rect x="35.3" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="38.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::isValid (102 samples, 0.01%)</title><rect x="937.0" y="349" width="0.6" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="939.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x13d23795f (41 samples, 0.01%)</title><rect x="13.1" y="1069" width="0.3" height="23.0" fill="rgb(235,112,33)" rx="2" ry="2" />
<text text-anchor="" x="16.14" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (485 samples, 0.06%)</title><rect x="2124.5" y="85" width="3.1" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="2127.55" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (41 samples, 0.01%)</title><rect x="4232.5" y="349" width="0.3" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4235.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (50 samples, 0.01%)</title><rect x="637.3" y="781" width="0.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (253 samples, 0.03%)</title><rect x="4021.1" y="325" width="1.6" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="4024.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_update_slotinfo (26 samples, 0.00%)</title><rect x="79.1" y="1045" width="0.1" height="23.0" fill="rgb(248,184,47)" rx="2" ry="2" />
<text text-anchor="" x="82.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (28 samples, 0.00%)</title><rect x="2428.4" y="109" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2431.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawPoint (249 samples, 0.03%)</title><rect x="696.1" y="589" width="1.6" height="23.0" fill="rgb(238,203,36)" rx="2" ry="2" />
<text text-anchor="" x="699.12" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (23 samples, 0.00%)</title><rect x="335.0" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="337.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (2,696 samples, 0.35%)</title><rect x="4263.4" y="349" width="16.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4266.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (510 samples, 0.07%)</title><rect x="4062.2" y="373" width="3.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4065.19" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (30 samples, 0.00%)</title><rect x="2471.3" y="229" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2474.30" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (476 samples, 0.06%)</title><rect x="1128.3" y="277" width="3.0" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="1131.33" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (921 samples, 0.12%)</title><rect x="4552.6" y="301" width="5.8" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4555.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (72 samples, 0.01%)</title><rect x="4416.1" y="205" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4419.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (33 samples, 0.00%)</title><rect x="432.0" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="435.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (22 samples, 0.00%)</title><rect x="576.0" y="1045" width="0.1" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="578.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (55 samples, 0.01%)</title><rect x="410.1" y="1045" width="0.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="413.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (62 samples, 0.01%)</title><rect x="333.0" y="1045" width="0.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="336.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (107 samples, 0.01%)</title><rect x="3865.0" y="133" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3867.97" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (19 samples, 0.00%)</title><rect x="114.6" y="1045" width="0.1" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (21 samples, 0.00%)</title><rect x="486.1" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="489.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (6,910 samples, 0.91%)</title><rect x="4379.6" y="277" width="43.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4382.57" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (43 samples, 0.01%)</title><rect x="4218.4" y="301" width="0.3" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4221.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::activateTimers (1,130 samples, 0.15%)</title><rect x="692.3" y="805" width="7.0" height="23.0" fill="rgb(238,157,36)" rx="2" ry="2" />
<text text-anchor="" x="695.25" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<int> (40 samples, 0.01%)</title><rect x="4018.2" y="325" width="0.3" height="23.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text text-anchor="" x="4021.24" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (25 samples, 0.00%)</title><rect x="524.4" y="1045" width="0.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="527.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawLines (16 samples, 0.00%)</title><rect x="114.6" y="685" width="0.1" height="23.0" fill="rgb(242,193,41)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (975 samples, 0.13%)</title><rect x="619.0" y="1021" width="6.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="622.02" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator<Kate::TextRange*>::construct<Kate::TextRange*, (20 samples, 0.00%)</title><rect x="261.9" y="1045" width="0.1" height="23.0" fill="rgb(234,132,32)" rx="2" ry="2" />
<text text-anchor="" x="264.87" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (127 samples, 0.02%)</title><rect x="461.4" y="1045" width="0.8" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="464.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (583 samples, 0.08%)</title><rect x="611.8" y="685" width="3.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="614.79" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (340 samples, 0.04%)</title><rect x="3348.2" y="277" width="2.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3351.19" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidget::animatedShow (34 samples, 0.00%)</title><rect x="701.1" y="589" width="0.2" height="23.0" fill="rgb(232,173,30)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (83 samples, 0.01%)</title><rect x="655.2" y="829" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="658.20" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (31 samples, 0.00%)</title><rect x="173.0" y="1045" width="0.2" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="176.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<KTextEditor::SearchOption>::testFlag (62 samples, 0.01%)</title><rect x="541.4" y="1045" width="0.3" height="23.0" fill="rgb(239,201,38)" rx="2" ry="2" />
<text text-anchor="" x="544.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (116 samples, 0.02%)</title><rect x="3862.3" y="181" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3865.26" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (4,023 samples, 0.53%)</title><rect x="2095.9" y="205" width="25.3" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="2098.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (253 samples, 0.03%)</title><rect x="113.0" y="901" width="1.6" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="115.99" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (33 samples, 0.00%)</title><rect x="4160.8" y="301" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4163.76" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::textReadWrite (34 samples, 0.00%)</title><rect x="3172.1" y="277" width="0.2" height="23.0" fill="rgb(240,118,38)" rx="2" ry="2" />
<text text-anchor="" x="3175.13" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (16 samples, 0.00%)</title><rect x="539.7" y="1045" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="542.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3000000002 (75 samples, 0.01%)</title><rect x="32.3" y="1069" width="0.5" height="23.0" fill="rgb(250,105,50)" rx="2" ry="2" />
<text text-anchor="" x="35.35" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateIconBorder::paintBorder (32 samples, 0.00%)</title><rect x="740.5" y="277" width="0.2" height="23.0" fill="rgb(243,118,41)" rx="2" ry="2" />
<text text-anchor="" x="743.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::data (1,338 samples, 0.18%)</title><rect x="3228.8" y="205" width="8.4" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="3231.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (81 samples, 0.01%)</title><rect x="742.5" y="805" width="0.5" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (59 samples, 0.01%)</title><rect x="637.9" y="925" width="0.3" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::detach (802 samples, 0.11%)</title><rect x="3155.9" y="181" width="5.1" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="3158.92" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af0f (48 samples, 0.01%)</title><rect x="119.6" y="1069" width="0.3" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="122.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (55 samples, 0.01%)</title><rect x="652.9" y="949" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (37 samples, 0.00%)</title><rect x="3669.3" y="157" width="0.2" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="3672.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (560 samples, 0.07%)</title><rect x="370.9" y="1045" width="3.5" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="373.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x9cb652b44f (39 samples, 0.01%)</title><rect x="599.7" y="1069" width="0.3" height="23.0" fill="rgb(239,86,38)" rx="2" ry="2" />
<text text-anchor="" x="602.72" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (110 samples, 0.01%)</title><rect x="655.1" y="973" width="0.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="658.06" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (23 samples, 0.00%)</title><rect x="2369.5" y="181" width="0.1" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="2372.49" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (22 samples, 0.00%)</title><rect x="122.9" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="125.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (367 samples, 0.05%)</title><rect x="1556.8" y="277" width="2.3" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="1559.82" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (234 samples, 0.03%)</title><rect x="1906.2" y="253" width="1.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="1909.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::searchPattern (542 samples, 0.07%)</title><rect x="579.5" y="1045" width="3.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="582.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (192 samples, 0.03%)</title><rect x="4045.1" y="349" width="1.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4048.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (26 samples, 0.00%)</title><rect x="3158.5" y="133" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3161.48" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (131 samples, 0.02%)</title><rect x="4238.9" y="301" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4241.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::calculateTabWidth (201 samples, 0.03%)</title><rect x="608.8" y="589" width="1.3" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="611.82" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1cf (420 samples, 0.06%)</title><rect x="313.8" y="1069" width="2.6" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="316.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfac6c9 (25 samples, 0.00%)</title><rect x="647.3" y="973" width="0.2" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,001 samples, 0.13%)</title><rect x="4011.6" y="325" width="6.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4014.58" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (25 samples, 0.00%)</title><rect x="742.7" y="181" width="0.1" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::currentText (3,566 samples, 0.47%)</title><rect x="4727.9" y="397" width="22.3" height="23.0" fill="rgb(230,207,27)" rx="2" ry="2" />
<text text-anchor="" x="4730.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed4c5 (32 samples, 0.00%)</title><rect x="2100.0" y="157" width="0.2" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="2102.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::constData (236 samples, 0.03%)</title><rect x="1903.2" y="253" width="1.5" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="1906.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (245 samples, 0.03%)</title><rect x="4161.0" y="301" width="1.6" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="4164.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (20 samples, 0.00%)</title><rect x="653.3" y="829" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.27" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::accessibleInterface (78 samples, 0.01%)</title><rect x="80.2" y="1045" width="0.5" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="83.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed672 (87 samples, 0.01%)</title><rect x="2106.8" y="157" width="0.5" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="2109.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (6,112 samples, 0.80%)</title><rect x="701.3" y="613" width="38.3" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QOb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractButton::mouseReleaseEvent (3,439 samples, 0.45%)</title><rect x="743.7" y="565" width="21.6" height="23.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::isNull (28 samples, 0.00%)</title><rect x="2159.2" y="181" width="0.2" height="23.0" fill="rgb(224,218,21)" rx="2" ry="2" />
<text text-anchor="" x="2162.23" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (401 samples, 0.05%)</title><rect x="4629.6" y="373" width="2.5" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4632.63" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KIconLoader::global (30 samples, 0.00%)</title><rect x="4781.2" y="949" width="0.2" height="23.0" fill="rgb(229,144,27)" rx="2" ry="2" />
<text text-anchor="" x="4784.17" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (57 samples, 0.01%)</title><rect x="3237.9" y="277" width="0.3" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="3240.87" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (154 samples, 0.02%)</title><rect x="4313.4" y="325" width="1.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4316.43" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (247 samples, 0.03%)</title><rect x="113.0" y="805" width="1.6" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::updateConfig (18 samples, 0.00%)</title><rect x="669.3" y="805" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (44 samples, 0.01%)</title><rect x="4469.7" y="349" width="0.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4472.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (69 samples, 0.01%)</title><rect x="431.6" y="1045" width="0.4" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="434.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (342 samples, 0.04%)</title><rect x="3821.5" y="301" width="2.1" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="3824.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (53 samples, 0.01%)</title><rect x="429.0" y="1045" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator!= (33 samples, 0.00%)</title><rect x="181.3" y="1045" width="0.2" height="23.0" fill="rgb(249,195,48)" rx="2" ry="2" />
<text text-anchor="" x="184.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af4f (443 samples, 0.06%)</title><rect x="122.2" y="1069" width="2.8" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="125.20" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::setRange (19 samples, 0.00%)</title><rect x="611.0" y="1069" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="613.99" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (23 samples, 0.00%)</title><rect x="1790.1" y="277" width="0.2" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="1793.15" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (51 samples, 0.01%)</title><rect x="626.8" y="1069" width="0.3" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="629.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (19 samples, 0.00%)</title><rect x="159.0" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="162.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (50 samples, 0.01%)</title><rect x="637.3" y="973" width="0.3" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (253 samples, 0.03%)</title><rect x="113.0" y="877" width="1.6" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="115.99" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (41 samples, 0.01%)</title><rect x="638.7" y="901" width="0.2" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append@plt (34 samples, 0.00%)</title><rect x="4568.0" y="301" width="0.2" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4570.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (56 samples, 0.01%)</title><rect x="650.1" y="1069" width="0.4" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="653.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d236ddf (235 samples, 0.03%)</title><rect x="45.7" y="1069" width="1.5" height="23.0" fill="rgb(247,99,46)" rx="2" ry="2" />
<text text-anchor="" x="48.75" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (21 samples, 0.00%)</title><rect x="360.7" y="1045" width="0.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="363.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (500 samples, 0.07%)</title><rect x="4245.9" y="301" width="3.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="4248.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (18 samples, 0.00%)</title><rect x="975.3" y="397" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="978.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (106 samples, 0.01%)</title><rect x="2372.5" y="133" width="0.7" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2375.49" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadOnlyPartPrivate::openLocalFile (3,469 samples, 0.46%)</title><rect x="669.2" y="925" width="21.8" height="23.0" fill="rgb(237,171,35)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (344 samples, 0.05%)</title><rect x="196.0" y="1045" width="2.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="198.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (63 samples, 0.01%)</title><rect x="937.7" y="325" width="0.4" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="940.66" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editRemoveText (104 samples, 0.01%)</title><rect x="515.3" y="1045" width="0.6" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="518.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (103 samples, 0.01%)</title><rect x="4671.8" y="277" width="0.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4674.80" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::empty (135 samples, 0.02%)</title><rect x="383.7" y="1045" width="0.8" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="386.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (26 samples, 0.00%)</title><rect x="3974.4" y="133" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3977.40" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::clear (39 samples, 0.01%)</title><rect x="764.6" y="373" width="0.3" height="23.0" fill="rgb(234,118,32)" rx="2" ry="2" />
<text text-anchor="" x="767.62" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afcf (810 samples, 0.11%)</title><rect x="153.4" y="1069" width="5.1" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="156.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (19 samples, 0.00%)</title><rect x="465.8" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="468.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KWrite::~KWrite (6,112 samples, 0.80%)</title><rect x="701.3" y="589" width="38.3" height="23.0" fill="rgb(240,120,38)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KWr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (135 samples, 0.02%)</title><rect x="4279.4" y="277" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4282.45" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (53 samples, 0.01%)</title><rect x="637.3" y="1045" width="0.4" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (55 samples, 0.01%)</title><rect x="1789.3" y="229" width="0.3" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1792.27" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::openFile (3,398 samples, 0.45%)</title><rect x="669.6" y="877" width="21.4" height="23.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text text-anchor="" x="672.65" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<KTextEditor::Range, (38 samples, 0.00%)</title><rect x="583.7" y="1045" width="0.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="586.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (187 samples, 0.02%)</title><rect x="4313.2" y="349" width="1.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4316.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QtSharedPointer::ExternalRefCountData*> (18 samples, 0.00%)</title><rect x="178.7" y="1045" width="0.1" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="181.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (932 samples, 0.12%)</title><rect x="880.5" y="349" width="5.8" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="883.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (207 samples, 0.03%)</title><rect x="4782.1" y="349" width="1.3" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedRemoveText::KateModifiedRemoveText (27 samples, 0.00%)</title><rect x="3837.5" y="325" width="0.2" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3840.55" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (103 samples, 0.01%)</title><rect x="997.7" y="301" width="0.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="1000.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (32 samples, 0.00%)</title><rect x="654.8" y="853" width="0.2" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.75" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (27 samples, 0.00%)</title><rect x="456.9" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="459.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (98 samples, 0.01%)</title><rect x="989.2" y="325" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="992.24" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (29 samples, 0.00%)</title><rect x="482.4" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="485.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::close_helper (18 samples, 0.00%)</title><rect x="627.7" y="973" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (911 samples, 0.12%)</title><rect x="880.6" y="325" width="5.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="883.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b0ef (163 samples, 0.02%)</title><rect x="262.5" y="1069" width="1.0" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="265.53" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::history (39 samples, 0.01%)</title><rect x="366.0" y="1045" width="0.2" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="368.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (28 samples, 0.00%)</title><rect x="120.8" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="123.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (584 samples, 0.08%)</title><rect x="611.8" y="1045" width="3.6" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4df (228 samples, 0.03%)</title><rect x="560.4" y="1069" width="1.4" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="563.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="942.6" y="205" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="945.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (29 samples, 0.00%)</title><rect x="4039.6" y="373" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4042.59" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (91 samples, 0.01%)</title><rect x="1060.9" y="229" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1063.90" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (127 samples, 0.02%)</title><rect x="2484.1" y="301" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2487.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (20 samples, 0.00%)</title><rect x="4303.4" y="325" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4306.39" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::string (24 samples, 0.00%)</title><rect x="3837.1" y="325" width="0.1" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="3840.08" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="141.7" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="144.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3c7 (181 samples, 0.02%)</title><rect x="489.6" y="1069" width="1.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="492.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc000 (25 samples, 0.00%)</title><rect x="79.4" y="1045" width="0.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="82.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (17 samples, 0.00%)</title><rect x="627.7" y="541" width="0.1" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (18 samples, 0.00%)</title><rect x="465.7" y="1045" width="0.1" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="468.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (27 samples, 0.00%)</title><rect x="336.8" y="1045" width="0.2" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="339.80" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (62 samples, 0.01%)</title><rect x="4086.2" y="301" width="0.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4089.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (284 samples, 0.04%)</title><rect x="739.7" y="541" width="1.8" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="742.73" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (18 samples, 0.00%)</title><rect x="4047.1" y="349" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4050.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::removeText (16 samples, 0.00%)</title><rect x="3662.9" y="253" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3665.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (524 samples, 0.07%)</title><rect x="2578.1" y="133" width="3.3" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2581.14" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::unlock (1,108 samples, 0.15%)</title><rect x="3811.7" y="253" width="6.9" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="3814.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[]@plt (53 samples, 0.01%)</title><rect x="4602.3" y="325" width="0.3" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4605.30" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (66 samples, 0.01%)</title><rect x="969.3" y="349" width="0.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="972.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::len (68 samples, 0.01%)</title><rect x="3940.8" y="229" width="0.4" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="3943.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (240 samples, 0.03%)</title><rect x="4625.8" y="277" width="1.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4628.79" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (672 samples, 0.09%)</title><rect x="4182.9" y="301" width="4.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4185.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RepositoryPrivate::load (52 samples, 0.01%)</title><rect x="668.2" y="853" width="0.3" height="23.0" fill="rgb(243,156,41)" rx="2" ry="2" />
<text text-anchor="" x="671.22" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dfccb (33 samples, 0.00%)</title><rect x="692.3" y="685" width="0.2" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="695.29" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread::currentThread (1,979 samples, 0.26%)</title><rect x="3693.9" y="157" width="12.4" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="3696.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (169 samples, 0.02%)</title><rect x="2479.5" y="277" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2482.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (128 samples, 0.02%)</title><rect x="321.3" y="1045" width="0.8" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="324.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (42 samples, 0.01%)</title><rect x="125.6" y="1045" width="0.3" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="128.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (62 samples, 0.01%)</title><rect x="858.1" y="277" width="0.4" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="861.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart@plt (49 samples, 0.01%)</title><rect x="1020.7" y="373" width="0.3" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="1023.66" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (30 samples, 0.00%)</title><rect x="2339.9" y="301" width="0.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2342.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (117 samples, 0.02%)</title><rect x="661.6" y="517" width="0.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (101 samples, 0.01%)</title><rect x="492.7" y="1045" width="0.7" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="495.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (16 samples, 0.00%)</title><rect x="475.2" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="478.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (31 samples, 0.00%)</title><rect x="740.2" y="373" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (126 samples, 0.02%)</title><rect x="3834.8" y="229" width="0.8" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="3837.81" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (22 samples, 0.00%)</title><rect x="653.1" y="781" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (191 samples, 0.03%)</title><rect x="1905.1" y="253" width="1.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="1908.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::str (257 samples, 0.03%)</title><rect x="499.9" y="1045" width="1.6" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="502.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (21 samples, 0.00%)</title><rect x="525.7" y="1045" width="0.1" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="528.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (23 samples, 0.00%)</title><rect x="3232.9" y="133" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3235.91" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74fb9dbd (23 samples, 0.00%)</title><rect x="4651.6" y="325" width="0.1" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="4654.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::operator* (412 samples, 0.05%)</title><rect x="1720.8" y="205" width="2.6" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="1723.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (60 samples, 0.01%)</title><rect x="1779.5" y="133" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="1782.50" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (562 samples, 0.07%)</title><rect x="4256.7" y="277" width="3.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4259.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (274 samples, 0.04%)</title><rect x="4534.8" y="229" width="1.8" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4537.84" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawControl (35 samples, 0.00%)</title><rect x="630.7" y="973" width="0.2" height="23.0" fill="rgb(235,145,33)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextInserted@plt (16 samples, 0.00%)</title><rect x="2459.3" y="325" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2462.30" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::aboutToRemoveText (436 samples, 0.06%)</title><rect x="511.3" y="1045" width="2.7" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="514.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (142 samples, 0.02%)</title><rect x="4668.0" y="301" width="0.9" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4671.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (130 samples, 0.02%)</title><rect x="4425.6" y="301" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4428.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (19 samples, 0.00%)</title><rect x="491.7" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="494.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (164 samples, 0.02%)</title><rect x="653.5" y="925" width="1.0" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (425 samples, 0.06%)</title><rect x="1737.2" y="205" width="2.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1740.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (686 samples, 0.09%)</title><rect x="2358.5" y="109" width="4.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2361.46" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::allocate (17 samples, 0.00%)</title><rect x="4638.7" y="349" width="0.1" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="4641.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream (71 samples, 0.01%)</title><rect x="499.1" y="1045" width="0.5" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="502.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (20 samples, 0.00%)</title><rect x="584.9" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="587.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QToolButton::mouseReleaseEvent (3,439 samples, 0.45%)</title><rect x="743.7" y="589" width="21.6" height="23.0" fill="rgb(241,177,39)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QVector<KTextEditor::Range> (16 samples, 0.00%)</title><rect x="576.4" y="1045" width="0.1" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="579.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (55,804 samples, 7.32%)</title><rect x="2598.2" y="301" width="349.9" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="2601.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaObject::activate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (45 samples, 0.01%)</title><rect x="548.6" y="1045" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="551.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::textRemoved (48 samples, 0.01%)</title><rect x="477.6" y="1045" width="0.3" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="480.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (240 samples, 0.03%)</title><rect x="4163.8" y="325" width="1.5" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="4166.77" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (83 samples, 0.01%)</title><rect x="528.5" y="1045" width="0.5" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="531.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::DocumentCursor (167 samples, 0.02%)</title><rect x="776.7" y="421" width="1.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="779.72" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (17 samples, 0.00%)</title><rect x="4439.5" y="229" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4442.46" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (26 samples, 0.00%)</title><rect x="329.5" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="332.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (186 samples, 0.02%)</title><rect x="3177.4" y="229" width="1.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3180.38" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (638 samples, 0.08%)</title><rect x="4235.7" y="349" width="4.0" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4238.73" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::KatePlainTextSearch@plt (20 samples, 0.00%)</title><rect x="4347.4" y="373" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4350.38" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_destruct (1,221 samples, 0.16%)</title><rect x="4266.2" y="301" width="7.7" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4269.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (117 samples, 0.02%)</title><rect x="661.6" y="661" width="0.7" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (112 samples, 0.01%)</title><rect x="643.4" y="1069" width="0.7" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="646.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QPair<int, (291 samples, 0.04%)</title><rect x="164.7" y="1045" width="1.9" height="23.0" fill="rgb(240,183,38)" rx="2" ry="2" />
<text text-anchor="" x="167.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::operator!=<Kate::TextRange**, (471 samples, 0.06%)</title><rect x="3424.8" y="277" width="2.9" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="3427.78" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::QLatin1Char (17 samples, 0.00%)</title><rect x="4035.4" y="373" width="0.1" height="23.0" fill="rgb(232,168,30)" rx="2" ry="2" />
<text text-anchor="" x="4038.36" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (17 samples, 0.00%)</title><rect x="4671.4" y="301" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4674.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (145 samples, 0.02%)</title><rect x="4274.9" y="301" width="0.9" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4277.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b19f (1,501 samples, 0.20%)</title><rect x="296.9" y="1069" width="9.4" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="299.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::updatePixmap (33 samples, 0.00%)</title><rect x="692.3" y="613" width="0.2" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="695.29" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (312 samples, 0.04%)</title><rect x="4756.3" y="349" width="2.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4759.35" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (45 samples, 0.01%)</title><rect x="4150.2" y="277" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4153.23" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (21 samples, 0.00%)</title><rect x="4228.9" y="301" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4231.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine@plt (23 samples, 0.00%)</title><rect x="2374.2" y="277" width="0.2" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="2377.21" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::swap (20 samples, 0.00%)</title><rect x="563.1" y="1045" width="0.1" height="23.0" fill="rgb(233,160,31)" rx="2" ry="2" />
<text text-anchor="" x="566.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (167 samples, 0.02%)</title><rect x="4261.7" y="301" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4264.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (24 samples, 0.00%)</title><rect x="476.2" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="479.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (88 samples, 0.01%)</title><rect x="4131.3" y="325" width="0.6" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4134.34" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (203 samples, 0.03%)</title><rect x="294.7" y="1045" width="1.3" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="297.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCryptographicHash::addData (92 samples, 0.01%)</title><rect x="674.9" y="805" width="0.6" height="23.0" fill="rgb(235,197,33)" rx="2" ry="2" />
<text text-anchor="" x="677.88" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (71 samples, 0.01%)</title><rect x="582.9" y="1045" width="0.5" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="585.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (23 samples, 0.00%)</title><rect x="296.0" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="298.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb274 (19 samples, 0.00%)</title><rect x="225.7" y="1045" width="0.1" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="228.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (28 samples, 0.00%)</title><rect x="3227.2" y="205" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="3230.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (742 samples, 0.10%)</title><rect x="2436.5" y="205" width="4.6" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="2439.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (143 samples, 0.02%)</title><rect x="2443.1" y="157" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2446.08" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<Kate::TextLineData> (36 samples, 0.00%)</title><rect x="119.4" y="1045" width="0.2" height="23.0" fill="rgb(236,183,34)" rx="2" ry="2" />
<text text-anchor="" x="122.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::coordinatesToCursor (38 samples, 0.00%)</title><rect x="765.3" y="589" width="0.2" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="768.31" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCommonStyle::drawControl (38 samples, 0.00%)</title><rect x="627.8" y="925" width="0.3" height="23.0" fill="rgb(235,207,33)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (18 samples, 0.00%)</title><rect x="630.5" y="517" width="0.1" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="633.47" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (394 samples, 0.05%)</title><rect x="3826.5" y="277" width="2.5" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="3829.54" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3cf (435 samples, 0.06%)</title><rect x="490.8" y="1069" width="2.7" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="493.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4ef (117 samples, 0.02%)</title><rect x="562.0" y="1069" width="0.7" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="564.98" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (95 samples, 0.01%)</title><rect x="2592.2" y="157" width="0.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2595.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleWidget::isValid (772 samples, 0.10%)</title><rect x="208.4" y="1045" width="4.8" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="211.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawPoints (241 samples, 0.03%)</title><rect x="696.1" y="565" width="1.6" height="23.0" fill="rgb(238,203,36)" rx="2" ry="2" />
<text text-anchor="" x="699.14" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::Marks::isShowable (17 samples, 0.00%)</title><rect x="185.9" y="1045" width="0.1" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="188.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLayout::draw (66 samples, 0.01%)</title><rect x="655.3" y="805" width="0.4" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="658.31" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (29 samples, 0.00%)</title><rect x="4173.0" y="277" width="0.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4175.98" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a01b5 (52 samples, 0.01%)</title><rect x="668.6" y="757" width="0.4" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (57 samples, 0.01%)</title><rect x="509.4" y="1045" width="0.3" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="512.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652ae9f (20 samples, 0.00%)</title><rect x="118.1" y="1069" width="0.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="121.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (24 samples, 0.00%)</title><rect x="285.2" y="1045" width="0.1" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="288.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (456 samples, 0.06%)</title><rect x="4612.5" y="325" width="2.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4615.51" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (170 samples, 0.02%)</title><rect x="486.9" y="1045" width="1.1" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="489.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement@plt (30 samples, 0.00%)</title><rect x="4208.2" y="349" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4211.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::~QObject (6,086 samples, 0.80%)</title><rect x="701.3" y="445" width="38.1" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QOb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (574 samples, 0.08%)</title><rect x="611.8" y="637" width="3.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="614.84" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (348 samples, 0.05%)</title><rect x="3976.5" y="229" width="2.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3979.45" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::line (17 samples, 0.00%)</title><rect x="690.7" y="661" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (162 samples, 0.02%)</title><rect x="3962.0" y="253" width="1.0" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3965.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::deallocate (26 samples, 0.00%)</title><rect x="4696.4" y="301" width="0.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4699.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::metaObject (85 samples, 0.01%)</title><rect x="2243.7" y="253" width="0.6" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="2246.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::end (40 samples, 0.01%)</title><rect x="336.2" y="1045" width="0.3" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="339.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator<< (54 samples, 0.01%)</title><rect x="2159.1" y="205" width="0.3" height="23.0" fill="rgb(245,195,44)" rx="2" ry="2" />
<text text-anchor="" x="2162.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73590d48 (22 samples, 0.00%)</title><rect x="608.4" y="565" width="0.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="611.38" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af2f (96 samples, 0.01%)</title><rect x="120.6" y="1069" width="0.6" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="123.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (1,515 samples, 0.20%)</title><rect x="2527.2" y="325" width="9.5" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="2530.22" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::~KatePlainTextSearch (31 samples, 0.00%)</title><rect x="556.2" y="1045" width="0.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="559.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::swap (24 samples, 0.00%)</title><rect x="228.3" y="1045" width="0.1" height="23.0" fill="rgb(233,166,31)" rx="2" ry="2" />
<text text-anchor="" x="231.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (26 samples, 0.00%)</title><rect x="138.6" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="141.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream@plt (603 samples, 0.08%)</title><rect x="4558.4" y="325" width="3.8" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4561.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::layoutLine (34 samples, 0.00%)</title><rect x="764.9" y="181" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (19 samples, 0.00%)</title><rect x="575.6" y="1021" width="0.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="578.61" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::create_sys (251 samples, 0.03%)</title><rect x="666.1" y="853" width="1.6" height="23.0" fill="rgb(241,142,40)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (19 samples, 0.00%)</title><rect x="584.4" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="587.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::saveEditingPositions (46 samples, 0.01%)</title><rect x="263.6" y="1045" width="0.3" height="23.0" fill="rgb(244,138,43)" rx="2" ry="2" />
<text text-anchor="" x="266.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (117 samples, 0.02%)</title><rect x="661.6" y="469" width="0.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (657 samples, 0.09%)</title><rect x="882.1" y="277" width="4.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="885.06" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (268 samples, 0.04%)</title><rect x="3674.6" y="85" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="3677.63" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (22 samples, 0.00%)</title><rect x="35.9" y="1021" width="0.1" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="38.86" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (53 samples, 0.01%)</title><rect x="689.8" y="829" width="0.3" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="692.81" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (11,504 samples, 1.51%)</title><rect x="1822.9" y="277" width="72.1" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="1825.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QSet<Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73104002 (29 samples, 0.00%)</title><rect x="2151.1" y="157" width="0.1" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="2154.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b04f (1,241 samples, 0.16%)</title><rect x="183.8" y="1069" width="7.7" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="186.76" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (407 samples, 0.05%)</title><rect x="628.1" y="877" width="2.5" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (19 samples, 0.00%)</title><rect x="3947.6" y="205" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3950.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::openWithLineLengthLimitOverride (3,438 samples, 0.45%)</title><rect x="743.7" y="421" width="21.6" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (18 samples, 0.00%)</title><rect x="208.2" y="1021" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="211.20" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (60 samples, 0.01%)</title><rect x="637.9" y="1045" width="0.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateConfig::configEnd (27 samples, 0.00%)</title><rect x="690.7" y="829" width="0.2" height="23.0" fill="rgb(248,118,48)" rx="2" ry="2" />
<text text-anchor="" x="693.70" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (530 samples, 0.07%)</title><rect x="3363.8" y="277" width="3.3" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3366.79" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb658ca34 (51 samples, 0.01%)</title><rect x="593.2" y="1069" width="0.3" height="23.0" fill="rgb(243,92,41)" rx="2" ry="2" />
<text text-anchor="" x="596.20" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (18 samples, 0.00%)</title><rect x="4018.1" y="325" width="0.1" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="4021.12" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (6,113 samples, 0.80%)</title><rect x="1658.3" y="277" width="38.3" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="1661.30" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (43,820 samples, 5.75%)</title><rect x="2056.7" y="277" width="274.7" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="2059.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaObject::activate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::dealloc (1,733 samples, 0.23%)</title><rect x="4264.9" y="325" width="10.9" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4267.90" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f61eee8cf (33 samples, 0.00%)</title><rect x="667.2" y="637" width="0.2" height="23.0" fill="rgb(245,92,45)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (23 samples, 0.00%)</title><rect x="24.7" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="27.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (21 samples, 0.00%)</title><rect x="2498.7" y="349" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2501.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::operator!=<Kate::TextRange**, (18 samples, 0.00%)</title><rect x="3836.1" y="301" width="0.1" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="3839.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (171 samples, 0.02%)</title><rect x="449.8" y="1045" width="1.1" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="452.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread::currentThread (746 samples, 0.10%)</title><rect x="228.4" y="1045" width="4.7" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="231.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwapDiffCreator::qt_metacall (26 samples, 0.00%)</title><rect x="59.7" y="1045" width="0.2" height="23.0" fill="rgb(230,157,28)" rx="2" ry="2" />
<text text-anchor="" x="62.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (199 samples, 0.03%)</title><rect x="1782.4" y="157" width="1.2" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="1785.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::spaceWidth (18 samples, 0.00%)</title><rect x="662.1" y="277" width="0.1" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="665.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (24 samples, 0.00%)</title><rect x="154.2" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (28 samples, 0.00%)</title><rect x="249.6" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="252.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::setRange (9,805 samples, 1.29%)</title><rect x="4053.5" y="397" width="61.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4056.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_relocate_object (84 samples, 0.01%)</title><rect x="4781.4" y="973" width="0.6" height="23.0" fill="rgb(241,184,39)" rx="2" ry="2" />
<text text-anchor="" x="4784.44" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (40 samples, 0.01%)</title><rect x="638.7" y="373" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::startTimer (6,981 samples, 0.92%)</title><rect x="2199.5" y="181" width="43.8" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="2202.51" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QObj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::operator (26 samples, 0.00%)</title><rect x="610.8" y="1069" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="613.75" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (380 samples, 0.05%)</title><rect x="4109.5" y="301" width="2.4" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4112.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d31100f (167 samples, 0.02%)</title><rect x="70.6" y="1069" width="1.0" height="23.0" fill="rgb(247,99,46)" rx="2" ry="2" />
<text text-anchor="" x="73.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (22 samples, 0.00%)</title><rect x="3856.8" y="85" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="3859.77" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite@plt (49 samples, 0.01%)</title><rect x="2523.2" y="349" width="0.3" height="23.0" fill="rgb(231,171,29)" rx="2" ry="2" />
<text text-anchor="" x="2526.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QSet<Kate::TextRange*> (22 samples, 0.00%)</title><rect x="694.3" y="541" width="0.2" height="23.0" fill="rgb(238,166,36)" rx="2" ry="2" />
<text text-anchor="" x="697.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (118 samples, 0.02%)</title><rect x="3140.7" y="253" width="0.8" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="3143.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (8,009 samples, 1.05%)</title><rect x="692.2" y="853" width="50.2" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="695.23" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g_mai..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fadca (53 samples, 0.01%)</title><rect x="2216.3" y="109" width="0.3" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="2219.30" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (1,111 samples, 0.15%)</title><rect x="2111.8" y="133" width="7.0" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="2114.79" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (266 samples, 0.03%)</title><rect x="877.8" y="349" width="1.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="880.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (24 samples, 0.00%)</title><rect x="62.7" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="65.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObjectPrivate::deleteChildren (6,086 samples, 0.80%)</title><rect x="701.3" y="421" width="38.1" height="23.0" fill="rgb(248,205,47)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QOb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (643,992 samples, 84.47%)</title><rect x="743.2" y="853" width="4037.9" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="746.24" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QCoreApplication::notifyInternal2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (540 samples, 0.07%)</title><rect x="4432.5" y="229" width="3.3" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4435.46" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b457 (54 samples, 0.01%)</title><rect x="539.2" y="1069" width="0.3" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="542.16" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (402 samples, 0.05%)</title><rect x="628.1" y="709" width="2.5" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="631.12" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::range (38 samples, 0.00%)</title><rect x="999.4" y="421" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1002.41" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (121 samples, 0.02%)</title><rect x="4030.4" y="325" width="0.8" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4033.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QToolButton::event (3,440 samples, 0.45%)</title><rect x="743.7" y="637" width="21.6" height="23.0" fill="rgb(241,177,39)" rx="2" ry="2" />
<text text-anchor="" x="746.72" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (812 samples, 0.11%)</title><rect x="3966.4" y="205" width="5.1" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="3969.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<KTextEditor::Range&> (25 samples, 0.00%)</title><rect x="4673.5" y="349" width="0.2" height="23.0" fill="rgb(242,146,41)" rx="2" ry="2" />
<text text-anchor="" x="4676.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (247 samples, 0.03%)</title><rect x="4136.6" y="253" width="1.5" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4139.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (28 samples, 0.00%)</title><rect x="652.9" y="781" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="655.89" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (111 samples, 0.01%)</title><rect x="2085.6" y="205" width="0.7" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2088.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::isValid (1,298 samples, 0.17%)</title><rect x="991.3" y="421" width="8.1" height="23.0" fill="rgb(248,118,47)" rx="2" ry="2" />
<text text-anchor="" x="994.27" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (584 samples, 0.08%)</title><rect x="611.8" y="949" width="3.6" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (161 samples, 0.02%)</title><rect x="4585.8" y="325" width="1.0" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="4588.78" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf666cb (21 samples, 0.00%)</title><rect x="620.4" y="877" width="0.2" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="623.43" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (46 samples, 0.01%)</title><rect x="4234.1" y="373" width="0.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4237.09" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (6,253 samples, 0.82%)</title><rect x="3097.3" y="277" width="39.2" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3100.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (41 samples, 0.01%)</title><rect x="282.4" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="285.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::Marks::isShowable (29 samples, 0.00%)</title><rect x="179.5" y="1045" width="0.2" height="23.0" fill="rgb(241,118,40)" rx="2" ry="2" />
<text text-anchor="" x="182.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<<@plt (874 samples, 0.11%)</title><rect x="3652.7" y="205" width="5.4" height="23.0" fill="rgb(231,208,29)" rx="2" ry="2" />
<text text-anchor="" x="3655.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::len (44 samples, 0.01%)</title><rect x="2403.3" y="229" width="0.3" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="2406.29" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup (7,906 samples, 1.04%)</title><rect x="3188.1" y="253" width="49.6" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="3191.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (16 samples, 0.00%)</title><rect x="4238.7" y="301" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4241.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (26 samples, 0.00%)</title><rect x="214.5" y="1045" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="217.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::begin (70 samples, 0.01%)</title><rect x="278.7" y="1045" width="0.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="281.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1af (1,090 samples, 0.14%)</title><rect x="306.3" y="1069" width="6.9" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="309.33" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast@plt (20 samples, 0.00%)</title><rect x="2414.7" y="229" width="0.2" height="23.0" fill="rgb(231,141,29)" rx="2" ry="2" />
<text text-anchor="" x="2417.74" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (119 samples, 0.02%)</title><rect x="1775.0" y="205" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1778.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (16 samples, 0.00%)</title><rect x="535.7" y="1045" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="538.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (21 samples, 0.00%)</title><rect x="118.9" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="121.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (183 samples, 0.02%)</title><rect x="951.5" y="325" width="1.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="954.46" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toUtf8 (58 samples, 0.01%)</title><rect x="252.7" y="1045" width="0.3" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="255.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (19 samples, 0.00%)</title><rect x="174.8" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="177.83" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::queryClose (18 samples, 0.00%)</title><rect x="627.7" y="733" width="0.1" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (290 samples, 0.04%)</title><rect x="4158.7" y="277" width="1.8" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4161.66" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652aeff (51 samples, 0.01%)</title><rect x="119.3" y="1069" width="0.3" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="122.30" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator!= (36 samples, 0.00%)</title><rect x="244.9" y="1045" width="0.3" height="23.0" fill="rgb(249,138,48)" rx="2" ry="2" />
<text text-anchor="" x="247.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (142 samples, 0.02%)</title><rect x="4026.2" y="325" width="0.9" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4029.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::insertText (12,188 samples, 1.60%)</title><rect x="2083.2" y="229" width="76.4" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2086.20" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::Sw..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::tabWidth (1,798 samples, 0.24%)</title><rect x="2485.1" y="349" width="11.3" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="2488.09" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (317 samples, 0.04%)</title><rect x="608.2" y="637" width="2.0" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="611.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (18 samples, 0.00%)</title><rect x="225.2" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="228.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (16 samples, 0.00%)</title><rect x="114.6" y="781" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (24 samples, 0.00%)</title><rect x="994.1" y="373" width="0.1" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="997.07" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::unwrapLine (25 samples, 0.00%)</title><rect x="460.9" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="463.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (61 samples, 0.01%)</title><rect x="235.5" y="1045" width="0.4" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="238.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStack<QSharedPointer<KTextEditor::MovingCursor> (43 samples, 0.01%)</title><rect x="250.7" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="253.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (342 samples, 0.04%)</title><rect x="4707.2" y="301" width="2.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4710.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (73 samples, 0.01%)</title><rect x="975.8" y="421" width="0.4" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="978.77" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbConnection::handleXcbEvent (44 samples, 0.01%)</title><rect x="742.0" y="661" width="0.3" height="23.0" fill="rgb(241,212,39)" rx="2" ry="2" />
<text text-anchor="" x="745.04" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::ApplyReturnValue<void>::ApplyReturnValue (23 samples, 0.00%)</title><rect x="269.1" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="272.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (655 samples, 0.09%)</title><rect x="4198.8" y="301" width="4.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4201.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (705 samples, 0.09%)</title><rect x="2224.1" y="109" width="4.4" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="2227.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (151 samples, 0.02%)</title><rect x="4424.2" y="253" width="1.0" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4427.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2828 (340 samples, 0.04%)</title><rect x="608.1" y="973" width="2.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="611.07" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (16 samples, 0.00%)</title><rect x="3679.5" y="205" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3682.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (182 samples, 0.02%)</title><rect x="3834.5" y="277" width="1.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3837.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfaa746 (25 samples, 0.00%)</title><rect x="647.3" y="949" width="0.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="650.30" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (24 samples, 0.00%)</title><rect x="476.6" y="1045" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="479.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (20 samples, 0.00%)</title><rect x="743.1" y="781" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTabstop (36 samples, 0.00%)</title><rect x="638.7" y="349" width="0.2" height="23.0" fill="rgb(244,118,43)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (71 samples, 0.01%)</title><rect x="323.0" y="1045" width="0.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="325.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__advance<QPair<int, (68 samples, 0.01%)</title><rect x="139.4" y="1045" width="0.4" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="142.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (94 samples, 0.01%)</title><rect x="520.6" y="1045" width="0.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="523.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (436 samples, 0.06%)</title><rect x="4150.6" y="277" width="2.7" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="4153.55" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::qt_static_metacall (10,748 samples, 1.41%)</title><rect x="2244.3" y="253" width="67.4" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="2247.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLay..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (120 samples, 0.02%)</title><rect x="4424.4" y="229" width="0.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4427.42" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::length (431 samples, 0.06%)</title><rect x="2343.1" y="325" width="2.7" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="2346.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (263 samples, 0.03%)</title><rect x="4426.8" y="325" width="1.6" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4429.80" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<QListData::Data*> (654 samples, 0.09%)</title><rect x="2436.8" y="181" width="4.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2439.84" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (104 samples, 0.01%)</title><rect x="1076.8" y="205" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1079.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QVector<KTextEditor::Range> (49 samples, 0.01%)</title><rect x="4315.2" y="397" width="0.3" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="4318.16" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QList<KateUndoGroup*>&> (17 samples, 0.00%)</title><rect x="2444.3" y="229" width="0.1" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="2447.31" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart (64 samples, 0.01%)</title><rect x="4018.6" y="349" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4021.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::ApplyReturnValue<void>::ApplyReturnValue (89 samples, 0.01%)</title><rect x="266.4" y="1045" width="0.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="269.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeText (65 samples, 0.01%)</title><rect x="112.3" y="973" width="0.4" height="23.0" fill="rgb(230,170,27)" rx="2" ry="2" />
<text text-anchor="" x="115.29" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::findItem (38 samples, 0.00%)</title><rect x="629.0" y="541" width="0.2" height="23.0" fill="rgb(231,170,29)" rx="2" ry="2" />
<text text-anchor="" x="631.96" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (37 samples, 0.00%)</title><rect x="654.7" y="901" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,171 samples, 0.15%)</title><rect x="2574.4" y="229" width="7.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2577.39" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (28 samples, 0.00%)</title><rect x="52.5" y="1045" width="0.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="55.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::operator= (1,938 samples, 0.25%)</title><rect x="3963.0" y="253" width="12.2" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="3966.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::accessibleInterface (19 samples, 0.00%)</title><rect x="164.2" y="1045" width="0.2" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="167.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (30 samples, 0.00%)</title><rect x="184.2" y="1045" width="0.2" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="187.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (21 samples, 0.00%)</title><rect x="443.0" y="1045" width="0.1" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="446.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (39 samples, 0.01%)</title><rect x="1069.2" y="229" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="1072.18" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::line (33 samples, 0.00%)</title><rect x="765.1" y="181" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (19 samples, 0.00%)</title><rect x="114.6" y="997" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbConnection::QXcbConnection (46 samples, 0.01%)</title><rect x="691.3" y="805" width="0.2" height="23.0" fill="rgb(247,212,46)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (35 samples, 0.00%)</title><rect x="179.7" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="182.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72ede173 (49 samples, 0.01%)</title><rect x="4482.9" y="325" width="0.3" height="23.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text text-anchor="" x="4485.90" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (154 samples, 0.02%)</title><rect x="455.0" y="1045" width="0.9" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="457.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line@plt (26 samples, 0.00%)</title><rect x="4096.4" y="349" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4099.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (16 samples, 0.00%)</title><rect x="358.4" y="1045" width="0.1" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="361.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart (114 samples, 0.01%)</title><rect x="1050.1" y="325" width="0.7" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="1053.13" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (251 samples, 0.03%)</title><rect x="2340.4" y="301" width="1.5" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="2343.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::truncate (43 samples, 0.01%)</title><rect x="2155.4" y="133" width="0.2" height="23.0" fill="rgb(245,218,45)" rx="2" ry="2" />
<text text-anchor="" x="2158.35" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::detach (869 samples, 0.11%)</title><rect x="1783.7" y="181" width="5.4" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="1786.66" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::currentText (97 samples, 0.01%)</title><rect x="775.9" y="397" width="0.6" height="23.0" fill="rgb(230,207,27)" rx="2" ry="2" />
<text text-anchor="" x="778.88" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (280 samples, 0.04%)</title><rect x="3823.6" y="301" width="1.8" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="3826.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (133 samples, 0.02%)</title><rect x="653.7" y="853" width="0.8" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (28 samples, 0.00%)</title><rect x="4759.7" y="325" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4762.65" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (3,227 samples, 0.42%)</title><rect x="3198.8" y="205" width="20.3" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="3201.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (552 samples, 0.07%)</title><rect x="2391.3" y="181" width="3.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2394.33" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (38 samples, 0.00%)</title><rect x="4034.2" y="349" width="0.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="4037.15" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (596 samples, 0.08%)</title><rect x="3853.2" y="109" width="3.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3856.17" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (33 samples, 0.00%)</title><rect x="4585.5" y="181" width="0.3" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4588.55" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (704 samples, 0.09%)</title><rect x="1922.3" y="277" width="4.4" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1925.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (21 samples, 0.00%)</title><rect x="319.1" y="1045" width="0.1" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="322.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (844 samples, 0.11%)</title><rect x="4234.4" y="373" width="5.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4237.44" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (33 samples, 0.00%)</title><rect x="692.3" y="661" width="0.2" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="695.29" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (1,552 samples, 0.20%)</title><rect x="3261.3" y="253" width="9.7" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="3264.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (90 samples, 0.01%)</title><rect x="3868.1" y="229" width="0.5" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3871.08" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isValid (371 samples, 0.05%)</title><rect x="992.4" y="397" width="2.3" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="995.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (216 samples, 0.03%)</title><rect x="4782.1" y="829" width="1.3" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (20 samples, 0.00%)</title><rect x="473.9" y="1045" width="0.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="476.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (344 samples, 0.05%)</title><rect x="3674.3" y="133" width="2.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3677.31" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::textRemoved (38,829 samples, 5.09%)</title><rect x="3575.4" y="301" width="243.4" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="3578.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBuffer::textRemoved</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (643,944 samples, 84.47%)</title><rect x="743.5" y="709" width="4037.5" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="746.48" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QCoreApplication::notifyInternal2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (22 samples, 0.00%)</title><rect x="653.1" y="877" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (176 samples, 0.02%)</title><rect x="872.7" y="277" width="1.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="875.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::checkValidity@plt (37 samples, 0.00%)</title><rect x="1789.9" y="277" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1792.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (23 samples, 0.00%)</title><rect x="776.5" y="421" width="0.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="779.48" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (250 samples, 0.03%)</title><rect x="2334.3" y="301" width="1.6" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="2337.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (207 samples, 0.03%)</title><rect x="4782.1" y="469" width="1.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::updatePixmap (255 samples, 0.03%)</title><rect x="699.3" y="613" width="1.6" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b9edad (3,438 samples, 0.45%)</title><rect x="743.7" y="541" width="21.6" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103fe8 (2,121 samples, 0.28%)</title><rect x="2137.3" y="157" width="13.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2140.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (26 samples, 0.00%)</title><rect x="281.3" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="284.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (17 samples, 0.00%)</title><rect x="4101.7" y="349" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4104.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (21 samples, 0.00%)</title><rect x="534.0" y="1045" width="0.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="537.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (21 samples, 0.00%)</title><rect x="533.6" y="1045" width="0.1" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="536.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (338 samples, 0.04%)</title><rect x="4199.8" y="277" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4202.80" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (345 samples, 0.05%)</title><rect x="2335.9" y="301" width="2.1" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="2338.88" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (275 samples, 0.04%)</title><rect x="4236.9" y="301" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4239.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (21 samples, 0.00%)</title><rect x="4558.3" y="277" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4561.26" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (27 samples, 0.00%)</title><rect x="139.1" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="142.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tls_get_addr (17 samples, 0.00%)</title><rect x="662.4" y="1069" width="0.1" height="23.0" fill="rgb(244,128,43)" rx="2" ry="2" />
<text text-anchor="" x="665.38" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::createKMessageBox (18 samples, 0.00%)</title><rect x="627.7" y="637" width="0.1" height="23.0" fill="rgb(249,173,49)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (302 samples, 0.04%)</title><rect x="4590.1" y="277" width="1.9" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4593.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (975 samples, 0.13%)</title><rect x="2388.9" y="277" width="6.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2391.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23feef (17 samples, 0.00%)</title><rect x="64.6" y="1069" width="0.1" height="23.0" fill="rgb(245,99,44)" rx="2" ry="2" />
<text text-anchor="" x="67.63" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (50 samples, 0.01%)</title><rect x="4628.7" y="373" width="0.3" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4631.68" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLineLayoutMap::slotEditDone (26 samples, 0.00%)</title><rect x="259.1" y="1045" width="0.2" height="23.0" fill="rgb(251,118,50)" rx="2" ry="2" />
<text text-anchor="" x="262.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::sendMouseEvent (643,947 samples, 84.47%)</title><rect x="743.5" y="733" width="4037.5" height="23.0" fill="rgb(241,158,39)" rx="2" ry="2" />
<text text-anchor="" x="746.46" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QApplicationPrivate::sendMouseEvent</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b14f (506 samples, 0.07%)</title><rect x="281.4" y="1069" width="3.2" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="284.45" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (985 samples, 0.13%)</title><rect x="4393.9" y="253" width="6.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4396.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (21 samples, 0.00%)</title><rect x="808.5" y="181" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="811.54" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (318 samples, 0.04%)</title><rect x="2382.8" y="205" width="2.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2385.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faec6 (17 samples, 0.00%)</title><rect x="2218.4" y="109" width="0.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="2221.40" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (20 samples, 0.00%)</title><rect x="975.6" y="397" width="0.2" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="978.65" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (92 samples, 0.01%)</title><rect x="363.8" y="1045" width="0.6" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="366.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (25 samples, 0.00%)</title><rect x="4173.4" y="325" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4176.39" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (37 samples, 0.00%)</title><rect x="4376.3" y="253" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4379.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::const_iterator::operator++ (23 samples, 0.00%)</title><rect x="585.2" y="1045" width="0.2" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="588.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (764 samples, 0.10%)</title><rect x="867.3" y="229" width="4.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="870.27" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (84 samples, 0.01%)</title><rect x="4510.7" y="301" width="0.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4513.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::~KatePlainTextSearch@plt (85 samples, 0.01%)</title><rect x="4539.9" y="373" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4542.86" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (298 samples, 0.04%)</title><rect x="4718.7" y="277" width="1.9" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4721.71" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (53 samples, 0.01%)</title><rect x="637.9" y="541" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="640.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::calculateTabWidth (23 samples, 0.00%)</title><rect x="655.4" y="709" width="0.1" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="658.38" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (474 samples, 0.06%)</title><rect x="2444.7" y="253" width="2.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2447.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d93e00f (144 samples, 0.02%)</title><rect x="80.1" y="1069" width="0.9" height="23.0" fill="rgb(247,99,46)" rx="2" ry="2" />
<text text-anchor="" x="83.06" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (24 samples, 0.00%)</title><rect x="474.1" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="477.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (31 samples, 0.00%)</title><rect x="159.7" y="1045" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="162.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream (1,304 samples, 0.17%)</title><rect x="4550.2" y="325" width="8.2" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4553.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KWrite::loadURL (3,471 samples, 0.46%)</title><rect x="669.2" y="997" width="21.8" height="23.0" fill="rgb(238,120,36)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (18 samples, 0.00%)</title><rect x="125.0" y="1045" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="127.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::QVector (60 samples, 0.01%)</title><rect x="4683.1" y="397" width="0.4" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4686.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (92 samples, 0.01%)</title><rect x="4113.3" y="253" width="0.5" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4116.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (27 samples, 0.00%)</title><rect x="31.3" y="1045" width="0.1" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="34.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMapData<QChar, (300 samples, 0.04%)</title><rect x="129.4" y="1045" width="1.9" height="23.0" fill="rgb(242,218,41)" rx="2" ry="2" />
<text text-anchor="" x="132.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (91 samples, 0.01%)</title><rect x="2341.4" y="229" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2344.36" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::draw (18 samples, 0.00%)</title><rect x="112.7" y="1045" width="0.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="115.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (255 samples, 0.03%)</title><rect x="4516.9" y="253" width="1.6" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4519.93" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (32 samples, 0.00%)</title><rect x="47.3" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="50.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (1,648 samples, 0.22%)</title><rect x="3639.5" y="133" width="10.3" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="3642.48" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::start@plt (21 samples, 0.00%)</title><rect x="2243.3" y="205" width="0.1" height="23.0" fill="rgb(231,157,29)" rx="2" ry="2" />
<text text-anchor="" x="2246.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (17 samples, 0.00%)</title><rect x="3973.3" y="181" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3976.32" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (42 samples, 0.01%)</title><rect x="467.5" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (24 samples, 0.00%)</title><rect x="407.5" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="410.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (643,992 samples, 84.47%)</title><rect x="743.2" y="829" width="4037.9" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="746.24" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QApplication::notify</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (100 samples, 0.01%)</title><rect x="77.8" y="1045" width="0.6" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="80.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (18 samples, 0.00%)</title><rect x="2593.0" y="253" width="0.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2596.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7374c4eb (975 samples, 0.13%)</title><rect x="619.0" y="997" width="6.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="622.02" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (215 samples, 0.03%)</title><rect x="4782.1" y="613" width="1.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (149 samples, 0.02%)</title><rect x="4409.8" y="253" width="1.0" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="4412.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::isNull (19 samples, 0.00%)</title><rect x="12.2" y="1045" width="0.1" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="15.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::line (52 samples, 0.01%)</title><rect x="527.8" y="1045" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="530.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (394 samples, 0.05%)</title><rect x="628.2" y="637" width="2.4" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="631.17" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (22 samples, 0.00%)</title><rect x="665.8" y="1069" width="0.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="668.82" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (43 samples, 0.01%)</title><rect x="324.0" y="1045" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="327.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (459 samples, 0.06%)</title><rect x="2441.1" y="229" width="2.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2444.10" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (17 samples, 0.00%)</title><rect x="654.1" y="709" width="0.1" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="657.05" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite (92 samples, 0.01%)</title><rect x="510.4" y="1045" width="0.6" height="23.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="513.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (18 samples, 0.00%)</title><rect x="170.1" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="173.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (141 samples, 0.02%)</title><rect x="4161.6" y="277" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4164.64" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fad00 (20 samples, 0.00%)</title><rect x="2214.2" y="109" width="0.1" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="2217.19" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_check (18 samples, 0.00%)</title><rect x="692.1" y="853" width="0.1" height="23.0" fill="rgb(239,167,37)" rx="2" ry="2" />
<text text-anchor="" x="695.09" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (1,002 samples, 0.13%)</title><rect x="2049.2" y="301" width="6.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2052.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (215 samples, 0.03%)</title><rect x="4782.1" y="709" width="1.3" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="4785.09" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (25 samples, 0.00%)</title><rect x="89.8" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="92.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<KTextEditor::SearchOption>::testFlag (915 samples, 0.12%)</title><rect x="4615.7" y="373" width="5.7" height="23.0" fill="rgb(239,201,38)" rx="2" ry="2" />
<text text-anchor="" x="4618.70" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (24 samples, 0.00%)</title><rect x="118.6" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="121.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (2,629 samples, 0.34%)</title><rect x="4692.9" y="373" width="16.4" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4695.86" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b10f (656 samples, 0.09%)</title><rect x="263.6" y="1069" width="4.1" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="266.57" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (584 samples, 0.08%)</title><rect x="611.8" y="997" width="3.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (355 samples, 0.05%)</title><rect x="4565.8" y="301" width="2.2" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="4568.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="444.4" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="447.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b13f (556 samples, 0.07%)</title><rect x="278.0" y="1069" width="3.4" height="23.0" fill="rgb(243,92,41)" rx="2" ry="2" />
<text text-anchor="" x="280.96" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::removeCursor (24 samples, 0.00%)</title><rect x="4075.2" y="349" width="0.2" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="4078.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (81 samples, 0.01%)</title><rect x="1016.2" y="301" width="0.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1019.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfb23c1 (82 samples, 0.01%)</title><rect x="238.7" y="1045" width="0.5" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="241.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (163 samples, 0.02%)</title><rect x="879.5" y="349" width="1.0" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="882.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6401708f (28 samples, 0.00%)</title><rect x="107.4" y="1069" width="0.1" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="110.36" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editRemoveText@plt (18 samples, 0.00%)</title><rect x="4018.5" y="349" width="0.1" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="4021.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (24 samples, 0.00%)</title><rect x="887.4" y="373" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="890.43" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>X509_load_cert_crl_file (16 samples, 0.00%)</title><rect x="669.0" y="757" width="0.1" height="23.0" fill="rgb(237,120,35)" rx="2" ry="2" />
<text text-anchor="" x="672.00" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::isValid (647 samples, 0.08%)</title><rect x="3174.5" y="253" width="4.0" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="3177.49" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (49 samples, 0.01%)</title><rect x="171.6" y="1045" width="0.3" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="174.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (349 samples, 0.05%)</title><rect x="4031.7" y="349" width="2.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4034.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line@plt (22 samples, 0.00%)</title><rect x="812.2" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="815.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (253 samples, 0.03%)</title><rect x="113.0" y="925" width="1.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="115.99" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (67 samples, 0.01%)</title><rect x="171.2" y="1045" width="0.4" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="174.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (26 samples, 0.00%)</title><rect x="104.7" y="1045" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="107.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (551 samples, 0.07%)</title><rect x="4588.9" y="301" width="3.5" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4591.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (59 samples, 0.01%)</title><rect x="516.0" y="1045" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="518.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (222 samples, 0.03%)</title><rect x="4441.6" y="349" width="1.4" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="4444.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<char>::deallocate (17 samples, 0.00%)</title><rect x="2158.7" y="205" width="0.2" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="2161.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem@plt (170 samples, 0.02%)</title><rect x="3987.1" y="301" width="1.0" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3990.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateConfig::configEnd (39 samples, 0.01%)</title><rect x="743.7" y="349" width="0.3" height="23.0" fill="rgb(248,118,48)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (127 samples, 0.02%)</title><rect x="740.4" y="397" width="0.8" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="743.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Document::~Document (6,086 samples, 0.80%)</title><rect x="701.3" y="541" width="38.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (144 samples, 0.02%)</title><rect x="433.6" y="1045" width="0.9" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="436.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (134 samples, 0.02%)</title><rect x="2372.3" y="157" width="0.9" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="2375.31" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (20 samples, 0.00%)</title><rect x="511.0" y="1045" width="0.2" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="514.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (19 samples, 0.00%)</title><rect x="334.4" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="337.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (138 samples, 0.02%)</title><rect x="4272.9" y="229" width="0.8" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4275.88" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (191 samples, 0.03%)</title><rect x="2483.7" y="325" width="1.2" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="2486.71" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7d9 (30 samples, 0.00%)</title><rect x="2080.5" y="253" width="0.2" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="2083.47" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d28b5ff (232 samples, 0.03%)</title><rect x="66.9" y="1069" width="1.5" height="23.0" fill="rgb(244,99,43)" rx="2" ry="2" />
<text text-anchor="" x="69.93" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_clock_gettime (461 samples, 0.06%)</title><rect x="662.5" y="1069" width="2.9" height="23.0" fill="rgb(236,122,34)" rx="2" ry="2" />
<text text-anchor="" x="665.49" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (19 samples, 0.00%)</title><rect x="114.6" y="1021" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (466 samples, 0.06%)</title><rect x="2130.4" y="85" width="3.0" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="2133.44" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (235 samples, 0.03%)</title><rect x="4016.4" y="277" width="1.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4019.39" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (332 samples, 0.04%)</title><rect x="608.1" y="829" width="2.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (1,129 samples, 0.15%)</title><rect x="692.3" y="757" width="7.0" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="695.25" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (38 samples, 0.00%)</title><rect x="128.3" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="131.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (59 samples, 0.01%)</title><rect x="637.9" y="781" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (785 samples, 0.10%)</title><rect x="2475.6" y="325" width="4.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2478.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (241 samples, 0.03%)</title><rect x="3229.5" y="181" width="1.5" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="3232.46" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b317 (544 samples, 0.07%)</title><rect x="453.0" y="1069" width="3.4" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="456.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (118 samples, 0.02%)</title><rect x="661.6" y="853" width="0.7" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfaa7a4 (179 samples, 0.02%)</title><rect x="619.8" y="901" width="1.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="622.76" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (26 samples, 0.00%)</title><rect x="410.5" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="413.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103fd0 (402 samples, 0.05%)</title><rect x="602.5" y="1045" width="2.5" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="605.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (248 samples, 0.03%)</title><rect x="154.9" y="1045" width="1.5" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="157.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::removeRange (42 samples, 0.01%)</title><rect x="4098.0" y="301" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4101.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (290 samples, 0.04%)</title><rect x="4277.3" y="253" width="1.8" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4280.27" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (277 samples, 0.04%)</title><rect x="922.1" y="325" width="1.8" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="925.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (148 samples, 0.02%)</title><rect x="4064.5" y="349" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4067.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QListData::Data*> (52 samples, 0.01%)</title><rect x="337.1" y="1045" width="0.4" height="23.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="340.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (1,348 samples, 0.18%)</title><rect x="701.3" y="325" width="8.4" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (109 samples, 0.01%)</title><rect x="1952.0" y="277" width="0.6" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="1954.96" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<KTextEditor::Range>*> (24 samples, 0.00%)</title><rect x="553.1" y="1045" width="0.2" height="23.0" fill="rgb(240,140,38)" rx="2" ry="2" />
<text text-anchor="" x="556.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (19 samples, 0.00%)</title><rect x="4172.9" y="253" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4175.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (368 samples, 0.05%)</title><rect x="3158.6" y="133" width="2.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3161.64" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (55 samples, 0.01%)</title><rect x="652.9" y="997" width="0.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="655.86" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::range (597 samples, 0.08%)</title><rect x="987.5" y="397" width="3.7" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="990.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (50 samples, 0.01%)</title><rect x="637.3" y="637" width="0.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="4668.8" y="253" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4671.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (46 samples, 0.01%)</title><rect x="126.1" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="129.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (45 samples, 0.01%)</title><rect x="3679.1" y="181" width="0.3" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="3682.08" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (1,187 samples, 0.16%)</title><rect x="3393.4" y="277" width="7.4" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="3396.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<KTextEditor::Range, (525 samples, 0.07%)</title><rect x="4776.3" y="421" width="3.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4779.27" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf1c (18 samples, 0.00%)</title><rect x="448.9" y="1045" width="0.2" height="23.0" fill="rgb(229,92,27)" rx="2" ry="2" />
<text text-anchor="" x="451.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (352 samples, 0.05%)</title><rect x="1740.5" y="253" width="2.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1743.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::isGlobal (298 samples, 0.04%)</title><rect x="480.1" y="1045" width="1.9" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="483.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (23 samples, 0.00%)</title><rect x="2515.0" y="373" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2517.99" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (23 samples, 0.00%)</title><rect x="1737.1" y="205" width="0.1" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="1740.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::operator* (19 samples, 0.00%)</title><rect x="3168.7" y="229" width="0.1" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="3171.66" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawPrimitive (38 samples, 0.00%)</title><rect x="627.8" y="901" width="0.3" height="23.0" fill="rgb(238,145,36)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::killTimer (6,074 samples, 0.80%)</title><rect x="3680.8" y="181" width="38.1" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="3683.77" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QOb..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread::currentThread (16 samples, 0.00%)</title><rect x="189.1" y="1045" width="0.1" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="192.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<char>::deallocate (348 samples, 0.05%)</title><rect x="2087.8" y="181" width="2.2" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="2090.85" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (136 samples, 0.02%)</title><rect x="2587.5" y="229" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2590.47" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_copy (78 samples, 0.01%)</title><rect x="4245.4" y="301" width="0.5" height="23.0" fill="rgb(248,142,48)" rx="2" ry="2" />
<text text-anchor="" x="4248.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tls_get_addr (998 samples, 0.13%)</title><rect x="2236.6" y="109" width="6.3" height="23.0" fill="rgb(244,128,43)" rx="2" ry="2" />
<text text-anchor="" x="2239.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::updateRange (91 samples, 0.01%)</title><rect x="4098.0" y="325" width="0.6" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4101.02" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (48 samples, 0.01%)</title><rect x="37.3" y="1045" width="0.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="40.30" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (132 samples, 0.02%)</title><rect x="4581.7" y="229" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4584.70" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::contains (41 samples, 0.01%)</title><rect x="693.5" y="589" width="0.3" height="23.0" fill="rgb(240,138,38)" rx="2" ry="2" />
<text text-anchor="" x="696.52" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator!= (260 samples, 0.03%)</title><rect x="380.6" y="1045" width="1.7" height="23.0" fill="rgb(249,175,48)" rx="2" ry="2" />
<text text-anchor="" x="383.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (60 samples, 0.01%)</title><rect x="637.9" y="1021" width="0.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::clear (2,373 samples, 0.31%)</title><rect x="2432.8" y="277" width="14.9" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="2435.78" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (22 samples, 0.00%)</title><rect x="653.1" y="829" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (84 samples, 0.01%)</title><rect x="986.1" y="349" width="0.5" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="989.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (113 samples, 0.01%)</title><rect x="4142.3" y="277" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4145.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (52 samples, 0.01%)</title><rect x="192.4" y="1045" width="0.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="195.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator!= (93 samples, 0.01%)</title><rect x="190.8" y="1045" width="0.6" height="23.0" fill="rgb(249,195,48)" rx="2" ry="2" />
<text text-anchor="" x="193.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (176 samples, 0.02%)</title><rect x="740.1" y="469" width="1.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="743.06" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::exec (223 samples, 0.03%)</title><rect x="4782.1" y="1045" width="1.4" height="23.0" fill="rgb(237,207,35)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (91 samples, 0.01%)</title><rect x="387.2" y="1045" width="0.6" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="390.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2cf (139 samples, 0.02%)</title><rect x="430.6" y="1069" width="0.9" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="433.60" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (50 samples, 0.01%)</title><rect x="637.3" y="373" width="0.3" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleCache::interfaceForId (16 samples, 0.00%)</title><rect x="121.6" y="1045" width="0.1" height="23.0" fill="rgb(243,161,41)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (445 samples, 0.06%)</title><rect x="2192.1" y="181" width="2.7" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="2195.05" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (341 samples, 0.04%)</title><rect x="608.1" y="1069" width="2.1" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="611.06" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (18 samples, 0.00%)</title><rect x="627.7" y="925" width="0.1" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xdf529d2a0e341aff (93 samples, 0.01%)</title><rect x="606.5" y="1069" width="0.6" height="23.0" fill="rgb(247,102,46)" rx="2" ry="2" />
<text text-anchor="" x="609.51" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::updatePen (130 samples, 0.02%)</title><rect x="696.8" y="517" width="0.9" height="23.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text text-anchor="" x="699.84" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (17 samples, 0.00%)</title><rect x="258.6" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="261.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::createKMessageBox (76 samples, 0.01%)</title><rect x="742.5" y="397" width="0.5" height="23.0" fill="rgb(249,173,49)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (26 samples, 0.00%)</title><rect x="145.1" y="1045" width="0.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="148.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (83 samples, 0.01%)</title><rect x="1081.2" y="181" width="0.5" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="1084.19" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::history (34 samples, 0.00%)</title><rect x="3090.9" y="277" width="0.2" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="3093.86" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (407 samples, 0.05%)</title><rect x="628.1" y="757" width="2.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (22 samples, 0.00%)</title><rect x="322.5" y="1045" width="0.2" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="325.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (30 samples, 0.00%)</title><rect x="261.0" y="1045" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="263.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::toRange (2,571 samples, 0.34%)</title><rect x="942.9" y="373" width="16.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="945.88" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kwrite (762,028 samples, 99.96%)</title><rect x="11.8" y="1093" width="4777.9" height="23.0" fill="rgb(240,109,38)" rx="2" ry="2" />
<text text-anchor="" x="14.79" y="1107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >kwrite</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (33 samples, 0.00%)</title><rect x="495.1" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="498.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::insertText (10,641 samples, 1.40%)</title><rect x="2244.9" y="229" width="66.7" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2247.86" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLay..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>(anonymous (49 samples, 0.01%)</title><rect x="11.8" y="1069" width="0.3" height="23.0" fill="rgb(236,178,34)" rx="2" ry="2" />
<text text-anchor="" x="14.79" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (323 samples, 0.04%)</title><rect x="1895.8" y="229" width="2.0" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1898.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb241 (67 samples, 0.01%)</title><rect x="76.2" y="1045" width="0.5" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="79.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawLines (174 samples, 0.02%)</title><rect x="113.0" y="709" width="1.1" height="23.0" fill="rgb(242,193,41)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (505 samples, 0.07%)</title><rect x="4004.8" y="277" width="3.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4007.80" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::isActive (68 samples, 0.01%)</title><rect x="425.5" y="1045" width="0.4" height="23.0" fill="rgb(238,161,36)" rx="2" ry="2" />
<text text-anchor="" x="428.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (24 samples, 0.00%)</title><rect x="110.3" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="113.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1db40 (77 samples, 0.01%)</title><rect x="2972.9" y="301" width="0.5" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="2975.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::operator= (1,644 samples, 0.22%)</title><rect x="2434.1" y="253" width="10.3" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="2437.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (9,697 samples, 1.27%)</title><rect x="813.0" y="301" width="60.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="815.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetItemV2::minimumSize (17 samples, 0.00%)</title><rect x="114.7" y="1045" width="0.1" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="117.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (17 samples, 0.00%)</title><rect x="975.5" y="397" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="978.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::remove (2,362 samples, 0.31%)</title><rect x="3367.1" y="277" width="14.8" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="3370.11" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (26 samples, 0.00%)</title><rect x="3678.9" y="85" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3681.86" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (8,048 samples, 1.06%)</title><rect x="692.0" y="949" width="50.4" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="694.99" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d28ca3f (324 samples, 0.04%)</title><rect x="68.4" y="1069" width="2.0" height="23.0" fill="rgb(243,99,41)" rx="2" ry="2" />
<text text-anchor="" x="71.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2ef (225 samples, 0.03%)</title><rect x="443.1" y="1069" width="1.4" height="23.0" fill="rgb(247,92,47)" rx="2" ry="2" />
<text text-anchor="" x="446.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (18 samples, 0.00%)</title><rect x="114.6" y="901" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (50 samples, 0.01%)</title><rect x="637.3" y="589" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGridLayout::setGeometry (17 samples, 0.00%)</title><rect x="669.2" y="709" width="0.1" height="23.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (47 samples, 0.01%)</title><rect x="762.7" y="301" width="0.3" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="765.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::toRange (2,315 samples, 0.30%)</title><rect x="4099.7" y="373" width="14.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4102.72" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::calculateTabWidth (346 samples, 0.05%)</title><rect x="613.3" y="565" width="2.1" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="616.27" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (71 samples, 0.01%)</title><rect x="655.7" y="949" width="0.5" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::event (30 samples, 0.00%)</title><rect x="637.7" y="973" width="0.2" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.67" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInternal (367 samples, 0.05%)</title><rect x="3196.2" y="205" width="2.3" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3199.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (1,074 samples, 0.14%)</title><rect x="3178.5" y="253" width="6.8" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="3181.54" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (16 samples, 0.00%)</title><rect x="3679.4" y="205" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3682.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (390 samples, 0.05%)</title><rect x="954.2" y="301" width="2.4" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="957.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::removeText (90,125 samples, 11.82%)</title><rect x="2999.0" y="301" width="565.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3001.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate::TextBlock::removeText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (38 samples, 0.00%)</title><rect x="3239.0" y="277" width="0.3" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="3242.01" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736d07a8 (55 samples, 0.01%)</title><rect x="113.3" y="685" width="0.3" height="23.0" fill="rgb(229,92,27)" rx="2" ry="2" />
<text text-anchor="" x="116.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateHighlighting::noHighlighting (19 samples, 0.00%)</title><rect x="362.0" y="1045" width="0.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="365.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (87 samples, 0.01%)</title><rect x="4673.0" y="349" width="0.5" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4675.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFrame::event (28 samples, 0.00%)</title><rect x="740.2" y="253" width="0.1" height="23.0" fill="rgb(241,182,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::new_allocator<Kate::TextRange*>::new_allocator (59 samples, 0.01%)</title><rect x="280.9" y="1045" width="0.4" height="23.0" fill="rgb(241,132,39)" rx="2" ry="2" />
<text text-anchor="" x="283.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d237a0f (72 samples, 0.01%)</title><rect x="48.9" y="1069" width="0.5" height="23.0" fill="rgb(246,99,45)" rx="2" ry="2" />
<text text-anchor="" x="51.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (2,137 samples, 0.28%)</title><rect x="3350.3" y="277" width="13.4" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="3353.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (839 samples, 0.11%)</title><rect x="4652.6" y="301" width="5.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4655.57" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (32 samples, 0.00%)</title><rect x="4022.8" y="349" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4025.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (34 samples, 0.00%)</title><rect x="118.7" y="1045" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="121.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (18 samples, 0.00%)</title><rect x="141.9" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="144.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (20 samples, 0.00%)</title><rect x="4112.4" y="277" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4115.39" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (27 samples, 0.00%)</title><rect x="808.7" y="205" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="811.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (126 samples, 0.02%)</title><rect x="4207.4" y="229" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4210.37" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (72 samples, 0.01%)</title><rect x="1715.5" y="85" width="0.5" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1718.51" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (267 samples, 0.04%)</title><rect x="3084.9" y="277" width="1.7" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="3087.94" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (19 samples, 0.00%)</title><rect x="935.4" y="349" width="0.2" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="938.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::QExplicitlySharedDataPointer (19 samples, 0.00%)</title><rect x="176.8" y="1045" width="0.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="179.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (332 samples, 0.04%)</title><rect x="608.1" y="853" width="2.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::isEmpty (17 samples, 0.00%)</title><rect x="362.6" y="1045" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="365.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (22 samples, 0.00%)</title><rect x="576.1" y="1045" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="579.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::openFile (3,331 samples, 0.44%)</title><rect x="743.7" y="397" width="20.9" height="23.0" fill="rgb(237,138,35)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::end (767 samples, 0.10%)</title><rect x="3953.4" y="229" width="4.8" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="3956.42" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (137 samples, 0.02%)</title><rect x="2382.0" y="181" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2384.96" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<<@plt (101 samples, 0.01%)</title><rect x="2121.2" y="205" width="0.6" height="23.0" fill="rgb(231,208,29)" rx="2" ry="2" />
<text text-anchor="" x="2124.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::Node::t (40 samples, 0.01%)</title><rect x="3959.2" y="205" width="0.3" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="3962.24" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Document::textInserted (1,497 samples, 0.20%)</title><rect x="1564.8" y="301" width="9.4" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1567.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (273 samples, 0.04%)</title><rect x="4613.7" y="301" width="1.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4616.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::paintEvent (22 samples, 0.00%)</title><rect x="653.1" y="757" width="0.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (333 samples, 0.04%)</title><rect x="4701.4" y="301" width="2.1" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4704.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMainWindow::closeEvent (18 samples, 0.00%)</title><rect x="627.7" y="781" width="0.1" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::dispose (16 samples, 0.00%)</title><rect x="4531.0" y="277" width="0.1" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="4533.97" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (50 samples, 0.01%)</title><rect x="637.3" y="925" width="0.3" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (109 samples, 0.01%)</title><rect x="2588.3" y="229" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2591.32" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (1,119 samples, 0.15%)</title><rect x="2462.0" y="325" width="7.0" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="2464.98" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (822 samples, 0.11%)</title><rect x="4012.7" y="301" width="5.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4015.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InsertViMode::metaObject (21 samples, 0.00%)</title><rect x="409.9" y="1045" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="412.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::updateConfig (27 samples, 0.00%)</title><rect x="690.7" y="781" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="693.70" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (1,137 samples, 0.15%)</title><rect x="4621.5" y="373" width="7.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4624.55" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (116 samples, 0.02%)</title><rect x="661.6" y="421" width="0.7" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="664.61" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (23 samples, 0.00%)</title><rect x="886.0" y="253" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="889.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition@plt (527 samples, 0.07%)</title><rect x="4077.3" y="373" width="3.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4080.28" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (151 samples, 0.02%)</title><rect x="4207.2" y="253" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4210.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::begin (58 samples, 0.01%)</title><rect x="265.5" y="1045" width="0.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="268.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::isEmpty (66 samples, 0.01%)</title><rect x="2403.2" y="253" width="0.4" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="2406.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (951 samples, 0.12%)</title><rect x="3884.8" y="277" width="6.0" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="3887.82" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (24 samples, 0.00%)</title><rect x="1785.2" y="133" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1788.24" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (18 samples, 0.00%)</title><rect x="490.3" y="1045" width="0.1" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="493.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (51 samples, 0.01%)</title><rect x="637.9" y="517" width="0.3" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="640.91" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateView (17 samples, 0.00%)</title><rect x="669.3" y="757" width="0.1" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (22 samples, 0.00%)</title><rect x="540.5" y="1045" width="0.1" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="543.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (82 samples, 0.01%)</title><rect x="443.6" y="1045" width="0.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="446.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::KateEditInsertTextUndo (65 samples, 0.01%)</title><rect x="411.8" y="1045" width="0.4" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="414.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (103 samples, 0.01%)</title><rect x="4788.8" y="1069" width="0.6" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4791.78" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (69 samples, 0.01%)</title><rect x="4058.6" y="373" width="0.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4061.55" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateView (16 samples, 0.00%)</title><rect x="669.5" y="781" width="0.1" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="672.54" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b09f (1,350 samples, 0.18%)</title><rect x="225.7" y="1069" width="8.4" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="228.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (110 samples, 0.01%)</title><rect x="3992.3" y="277" width="0.7" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="3995.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (4,096 samples, 0.54%)</title><rect x="2570.2" y="301" width="25.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2573.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (136 samples, 0.02%)</title><rect x="1077.4" y="229" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1080.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidget::qt_static_metacall (34 samples, 0.00%)</title><rect x="701.1" y="613" width="0.2" height="23.0" fill="rgb(230,173,28)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (17 samples, 0.00%)</title><rect x="64.6" y="1045" width="0.1" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="67.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uniq_ptr_impl<KTextEditor::MovingRange, (28 samples, 0.00%)</title><rect x="540.6" y="1045" width="0.2" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="543.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f704a9 (371 samples, 0.05%)</title><rect x="4505.8" y="325" width="2.3" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="4508.81" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faf40 (23 samples, 0.00%)</title><rect x="2221.6" y="109" width="0.1" height="23.0" fill="rgb(228,92,25)" rx="2" ry="2" />
<text text-anchor="" x="2224.59" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::paintEvent (35 samples, 0.00%)</title><rect x="630.7" y="997" width="0.2" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_lookup_symbol_x (79 samples, 0.01%)</title><rect x="4781.5" y="949" width="0.5" height="23.0" fill="rgb(247,184,46)" rx="2" ry="2" />
<text text-anchor="" x="4784.47" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (168 samples, 0.02%)</title><rect x="4669.8" y="301" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4672.82" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (126 samples, 0.02%)</title><rect x="2446.8" y="181" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2449.85" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (668 samples, 0.09%)</title><rect x="2455.0" y="301" width="4.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="2458.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (43 samples, 0.01%)</title><rect x="186.9" y="1045" width="0.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="189.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::queryAccessibleInterface (19 samples, 0.00%)</title><rect x="138.5" y="1045" width="0.1" height="23.0" fill="rgb(252,161,52)" rx="2" ry="2" />
<text text-anchor="" x="141.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (18 samples, 0.00%)</title><rect x="4576.5" y="301" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4579.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (336 samples, 0.04%)</title><rect x="954.5" y="277" width="2.1" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="957.52" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancelListInternal (77 samples, 0.01%)</title><rect x="742.5" y="421" width="0.5" height="23.0" fill="rgb(229,173,27)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (95 samples, 0.01%)</title><rect x="3862.4" y="157" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3865.39" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (76 samples, 0.01%)</title><rect x="2168.4" y="205" width="0.5" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2171.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawControl (38 samples, 0.00%)</title><rect x="627.8" y="949" width="0.3" height="23.0" fill="rgb(235,145,33)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (373 samples, 0.05%)</title><rect x="2975.5" y="301" width="2.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2978.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (317 samples, 0.04%)</title><rect x="4236.8" y="325" width="2.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4239.79" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (762 samples, 0.10%)</title><rect x="4203.4" y="301" width="4.8" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4206.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (99 samples, 0.01%)</title><rect x="2051.8" y="253" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="2054.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPlatformThemeFactory::create (56 samples, 0.01%)</title><rect x="691.6" y="877" width="0.4" height="23.0" fill="rgb(245,206,45)" rx="2" ry="2" />
<text text-anchor="" x="694.63" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (20 samples, 0.00%)</title><rect x="2468.7" y="229" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2471.72" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (23 samples, 0.00%)</title><rect x="2394.9" y="205" width="0.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="2397.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="4194.1" y="229" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4197.08" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (40 samples, 0.01%)</title><rect x="2444.4" y="253" width="0.3" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="2447.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<int> (43 samples, 0.01%)</title><rect x="1057.3" y="277" width="0.2" height="23.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text text-anchor="" x="1060.25" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::insertText@plt (40 samples, 0.01%)</title><rect x="2243.4" y="229" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2246.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (93 samples, 0.01%)</title><rect x="3571.5" y="277" width="0.6" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3574.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontMetricsF::horizontalAdvance (22 samples, 0.00%)</title><rect x="638.7" y="301" width="0.1" height="23.0" fill="rgb(251,192,51)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (19 samples, 0.00%)</title><rect x="4002.5" y="229" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4005.52" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InsertViMode::metaObject (218 samples, 0.03%)</title><rect x="1124.0" y="277" width="1.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="1127.04" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (208 samples, 0.03%)</title><rect x="979.2" y="421" width="1.3" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="982.19" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (21 samples, 0.00%)</title><rect x="4608.7" y="325" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4611.75" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (192 samples, 0.03%)</title><rect x="3572.1" y="277" width="1.2" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="3575.09" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f70278 (137 samples, 0.02%)</title><rect x="4504.7" y="325" width="0.8" height="23.0" fill="rgb(243,92,41)" rx="2" ry="2" />
<text text-anchor="" x="4507.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (3,815 samples, 0.50%)</title><rect x="4139.3" y="349" width="23.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4142.26" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toUtf8 (3,681 samples, 0.48%)</title><rect x="2135.7" y="205" width="23.0" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="2138.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (141 samples, 0.02%)</title><rect x="993.2" y="373" width="0.9" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="996.19" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (256 samples, 0.03%)</title><rect x="788.6" y="325" width="1.6" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="791.57" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::qt_static_metacall (8,925 samples, 1.17%)</title><rect x="3663.4" y="253" width="55.9" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="3666.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateC..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (32 samples, 0.00%)</title><rect x="536.4" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="539.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (28 samples, 0.00%)</title><rect x="183.6" y="1045" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="186.59" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="3956.4" y="109" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3959.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (17 samples, 0.00%)</title><rect x="4578.5" y="277" width="0.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4581.53" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (16 samples, 0.00%)</title><rect x="3386.5" y="229" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3389.51" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontEngine::subPixelPositionForX (213 samples, 0.03%)</title><rect x="623.1" y="925" width="1.3" height="23.0" fill="rgb(234,192,32)" rx="2" ry="2" />
<text text-anchor="" x="626.06" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (150 samples, 0.02%)</title><rect x="2333.3" y="301" width="0.9" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="2336.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (318 samples, 0.04%)</title><rect x="2524.3" y="349" width="2.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2527.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (179 samples, 0.02%)</title><rect x="4779.8" y="445" width="1.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4782.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x8 (285 samples, 0.04%)</title><rect x="596.7" y="1069" width="1.8" height="23.0" fill="rgb(233,89,31)" rx="2" ry="2" />
<text text-anchor="" x="599.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f63285d4c (239 samples, 0.03%)</title><rect x="666.1" y="733" width="1.5" height="23.0" fill="rgb(227,92,25)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3dac (644,125 samples, 84.49%)</title><rect x="742.5" y="949" width="4038.7" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="745.46" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1f6bfa3dac</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::unicode (59 samples, 0.01%)</title><rect x="4208.4" y="349" width="0.4" height="23.0" fill="rgb(250,191,49)" rx="2" ry="2" />
<text text-anchor="" x="4211.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (450 samples, 0.06%)</title><rect x="4302.0" y="373" width="2.9" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="4305.04" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::data (1,251 samples, 0.16%)</title><rect x="4713.1" y="373" width="7.8" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="4716.09" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (19 samples, 0.00%)</title><rect x="283.7" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="286.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (99 samples, 0.01%)</title><rect x="4274.2" y="301" width="0.7" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="4277.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (19 samples, 0.00%)</title><rect x="596.1" y="1045" width="0.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="599.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (11,653 samples, 1.53%)</title><rect x="3271.0" y="277" width="73.0" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="3273.98" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QSet<Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::operator!=<Kate::TextRange**, (465 samples, 0.06%)</title><rect x="1952.6" y="277" width="3.0" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="1955.64" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::isActive (19 samples, 0.00%)</title><rect x="80.1" y="1045" width="0.1" height="23.0" fill="rgb(238,161,36)" rx="2" ry="2" />
<text text-anchor="" x="83.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (128 samples, 0.02%)</title><rect x="4257.5" y="253" width="0.8" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4260.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (435 samples, 0.06%)</title><rect x="3364.4" y="253" width="2.7" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="3367.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_once_slow (19 samples, 0.00%)</title><rect x="669.0" y="877" width="0.1" height="23.0" fill="rgb(238,141,36)" rx="2" ry="2" />
<text text-anchor="" x="671.98" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFrame::event (34 samples, 0.00%)</title><rect x="701.1" y="685" width="0.2" height="23.0" fill="rgb(241,182,39)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (216 samples, 0.03%)</title><rect x="4782.1" y="997" width="1.3" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd65 (23 samples, 0.00%)</title><rect x="4485.5" y="301" width="0.1" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="4488.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (133 samples, 0.02%)</title><rect x="989.0" y="349" width="0.9" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="992.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (31 samples, 0.00%)</title><rect x="435.9" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="438.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (32 samples, 0.00%)</title><rect x="66.7" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="69.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (195 samples, 0.03%)</title><rect x="997.1" y="349" width="1.2" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1000.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (72 samples, 0.01%)</title><rect x="4027.7" y="349" width="0.5" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4030.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (22 samples, 0.00%)</title><rect x="654.6" y="853" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="657.59" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fc8ec (38 samples, 0.00%)</title><rect x="110.1" y="1069" width="0.2" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="113.05" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::QByteArray (2,121 samples, 0.28%)</title><rect x="2137.3" y="133" width="13.3" height="23.0" fill="rgb(239,218,37)" rx="2" ry="2" />
<text text-anchor="" x="2140.32" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (20 samples, 0.00%)</title><rect x="652.3" y="1069" width="0.1" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="655.29" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::readVariables (50 samples, 0.01%)</title><rect x="669.3" y="877" width="0.3" height="23.0" fill="rgb(244,138,43)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (135 samples, 0.02%)</title><rect x="3977.8" y="181" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3980.79" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::metaObject (108 samples, 0.01%)</title><rect x="3605.0" y="253" width="0.7" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3608.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (73 samples, 0.01%)</title><rect x="994.2" y="373" width="0.5" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="997.22" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLatin1Char::unicode (37 samples, 0.00%)</title><rect x="674.3" y="781" width="0.3" height="23.0" fill="rgb(250,168,49)" rx="2" ry="2" />
<text text-anchor="" x="677.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (20 samples, 0.00%)</title><rect x="284.9" y="1045" width="0.2" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="287.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<KTextEditor::MovingCursor*&> (43 samples, 0.01%)</title><rect x="142.9" y="1045" width="0.3" height="23.0" fill="rgb(241,146,40)" rx="2" ry="2" />
<text text-anchor="" x="145.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (29 samples, 0.00%)</title><rect x="653.5" y="829" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (311 samples, 0.04%)</title><rect x="971.6" y="325" width="1.9" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="974.55" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (441 samples, 0.06%)</title><rect x="2091.5" y="157" width="2.8" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2094.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (72 samples, 0.01%)</title><rect x="2994.2" y="253" width="0.4" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2997.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (22 samples, 0.00%)</title><rect x="742.5" y="37" width="0.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::allocate (87 samples, 0.01%)</title><rect x="4664.7" y="301" width="0.5" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="4667.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (30 samples, 0.00%)</title><rect x="214.8" y="1045" width="0.1" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="217.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (16 samples, 0.00%)</title><rect x="2474.0" y="229" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2476.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8d3 (22 samples, 0.00%)</title><rect x="4360.4" y="325" width="0.1" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="4363.35" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7f7 (50 samples, 0.01%)</title><rect x="3604.7" y="253" width="0.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="3607.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::iterator (83 samples, 0.01%)</title><rect x="3161.0" y="181" width="0.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="3163.95" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::isNull (45 samples, 0.01%)</title><rect x="748.8" y="301" width="0.3" height="23.0" fill="rgb(224,191,21)" rx="2" ry="2" />
<text text-anchor="" x="751.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::clear (2,044 samples, 0.27%)</title><rect x="3666.5" y="205" width="12.9" height="23.0" fill="rgb(234,166,32)" rx="2" ry="2" />
<text text-anchor="" x="3669.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qDeleteAll<QList<KateUndoGroup*> (1,293 samples, 0.17%)</title><rect x="3978.9" y="277" width="8.2" height="23.0" fill="rgb(238,179,37)" rx="2" ry="2" />
<text text-anchor="" x="3981.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b36f (215 samples, 0.03%)</title><rect x="474.3" y="1069" width="1.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="477.25" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (2,601 samples, 0.34%)</title><rect x="4760.0" y="421" width="16.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4762.97" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KTextEditor::Attribute>::operator! (123 samples, 0.02%)</title><rect x="4114.2" y="373" width="0.8" height="23.0" fill="rgb(243,206,42)" rx="2" ry="2" />
<text text-anchor="" x="4117.23" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (18 samples, 0.00%)</title><rect x="157.4" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="160.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (294 samples, 0.04%)</title><rect x="4050.5" y="301" width="1.9" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4053.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fad99 (19 samples, 0.00%)</title><rect x="2215.3" y="109" width="0.1" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2218.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (26 samples, 0.00%)</title><rect x="159.1" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="162.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (48 samples, 0.01%)</title><rect x="285.4" y="1045" width="0.3" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="288.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (256 samples, 0.03%)</title><rect x="4271.1" y="181" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4274.15" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (263 samples, 0.03%)</title><rect x="2053.7" y="277" width="1.6" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="2056.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (105 samples, 0.01%)</title><rect x="4457.8" y="325" width="0.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4460.77" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (78 samples, 0.01%)</title><rect x="740.7" y="301" width="0.5" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="743.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>threaded-ml (40 samples, 0.01%)</title><rect x="4789.7" y="1093" width="0.3" height="23.0" fill="rgb(223,137,20)" rx="2" ry="2" />
<text text-anchor="" x="4792.75" y="1107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (46 samples, 0.01%)</title><rect x="294.4" y="1045" width="0.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="297.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (873 samples, 0.11%)</title><rect x="2365.5" y="205" width="5.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2368.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_dispatch (118 samples, 0.02%)</title><rect x="661.6" y="877" width="0.7" height="23.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (170 samples, 0.02%)</title><rect x="4573.2" y="253" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4576.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (76 samples, 0.01%)</title><rect x="48.4" y="1045" width="0.5" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="51.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::begin (1,559 samples, 0.20%)</title><rect x="3154.5" y="205" width="9.8" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3157.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::decorationsForLine (109 samples, 0.01%)</title><rect x="693.8" y="589" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3fdce7ef (92 samples, 0.01%)</title><rect x="90.1" y="1069" width="0.5" height="23.0" fill="rgb(244,99,43)" rx="2" ry="2" />
<text text-anchor="" x="93.07" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (27 samples, 0.00%)</title><rect x="2362.6" y="85" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="2365.60" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::internalSwap (24 samples, 0.00%)</title><rect x="180.1" y="1045" width="0.2" height="23.0" fill="rgb(233,166,31)" rx="2" ry="2" />
<text text-anchor="" x="183.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (24 samples, 0.00%)</title><rect x="4075.2" y="301" width="0.2" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="4078.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (103 samples, 0.01%)</title><rect x="4788.1" y="1069" width="0.6" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4791.10" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (1,474 samples, 0.19%)</title><rect x="4209.4" y="325" width="9.3" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4212.42" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (17 samples, 0.00%)</title><rect x="461.3" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="464.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::deallocate (765 samples, 0.10%)</title><rect x="4696.1" y="325" width="4.8" height="23.0" fill="rgb(245,183,45)" rx="2" ry="2" />
<text text-anchor="" x="4699.15" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::count (107 samples, 0.01%)</title><rect x="793.5" y="301" width="0.6" height="23.0" fill="rgb(238,118,36)" rx="2" ry="2" />
<text text-anchor="" x="796.48" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (56 samples, 0.01%)</title><rect x="3686.3" y="133" width="0.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3689.33" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::charColor (30 samples, 0.00%)</title><rect x="699.8" y="589" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="702.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (584 samples, 0.08%)</title><rect x="611.8" y="925" width="3.6" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (26 samples, 0.00%)</title><rect x="23.4" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="26.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (163 samples, 0.02%)</title><rect x="784.2" y="373" width="1.0" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="787.23" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (39 samples, 0.01%)</title><rect x="653.2" y="949" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.24" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (20 samples, 0.00%)</title><rect x="267.1" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="270.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate@plt (222 samples, 0.03%)</title><rect x="2331.4" y="277" width="1.4" height="23.0" fill="rgb(231,205,29)" rx="2" ry="2" />
<text text-anchor="" x="2334.44" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (342 samples, 0.04%)</title><rect x="2471.8" y="229" width="2.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2474.83" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>amdgpu_winsys_create (33 samples, 0.00%)</title><rect x="667.2" y="541" width="0.2" height="23.0" fill="rgb(245,110,45)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QTypedArrayData<unsigned (22 samples, 0.00%)</title><rect x="286.3" y="1045" width="0.1" height="23.0" fill="rgb(251,146,51)" rx="2" ry="2" />
<text text-anchor="" x="289.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (17 samples, 0.00%)</title><rect x="669.2" y="541" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc093 (24 samples, 0.00%)</title><rect x="3686.7" y="157" width="0.1" height="23.0" fill="rgb(251,92,50)" rx="2" ry="2" />
<text text-anchor="" x="3689.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x103d23795f (19 samples, 0.00%)</title><rect x="12.2" y="1069" width="0.1" height="23.0" fill="rgb(235,112,33)" rx="2" ry="2" />
<text text-anchor="" x="15.17" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (378 samples, 0.05%)</title><rect x="3382.4" y="277" width="2.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3385.43" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b39f (393 samples, 0.05%)</title><rect x="486.0" y="1069" width="2.5" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="488.99" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (16 samples, 0.00%)</title><rect x="466.4" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="469.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf666d0 (18 samples, 0.00%)</title><rect x="620.7" y="877" width="0.1" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="623.72" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (140 samples, 0.02%)</title><rect x="4537.0" y="253" width="0.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4539.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (994 samples, 0.13%)</title><rect x="4414.9" y="229" width="6.2" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4417.89" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::writeBytes (34 samples, 0.00%)</title><rect x="605.4" y="1045" width="0.3" height="23.0" fill="rgb(238,208,36)" rx="2" ry="2" />
<text text-anchor="" x="608.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (54 samples, 0.01%)</title><rect x="329.7" y="1045" width="0.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="332.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (20 samples, 0.00%)</title><rect x="337.0" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="339.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawCachedGlyphs (932 samples, 0.12%)</title><rect x="619.3" y="949" width="5.8" height="23.0" fill="rgb(238,193,36)" rx="2" ry="2" />
<text text-anchor="" x="622.29" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::textRemoved (56,032 samples, 7.35%)</title><rect x="2596.9" y="325" width="351.3" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="2599.87" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::textRemoved</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d41e577 (80 samples, 0.01%)</title><rect x="74.2" y="1069" width="0.5" height="23.0" fill="rgb(242,99,41)" rx="2" ry="2" />
<text text-anchor="" x="77.21" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (168 samples, 0.02%)</title><rect x="2513.3" y="301" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2516.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::exec (53 samples, 0.01%)</title><rect x="637.3" y="1069" width="0.4" height="23.0" fill="rgb(237,207,35)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<bool (18 samples, 0.00%)</title><rect x="152.2" y="1045" width="0.1" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="155.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (1,336 samples, 0.18%)</title><rect x="2528.3" y="301" width="8.4" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="2531.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::detach (383 samples, 0.05%)</title><rect x="3954.1" y="205" width="2.4" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="3957.09" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator<Kate::TextRange*>::allocator (17 samples, 0.00%)</title><rect x="467.2" y="1045" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="470.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7f7 (43 samples, 0.01%)</title><rect x="2080.9" y="253" width="0.3" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2083.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (36 samples, 0.00%)</title><rect x="764.6" y="325" width="0.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="767.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (358 samples, 0.05%)</title><rect x="1898.2" y="277" width="2.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="1901.20" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uninitialized_copy_a<std::move_iterator<Kate::TextRange**>, (82 samples, 0.01%)</title><rect x="331.7" y="1045" width="0.5" height="23.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text text-anchor="" x="334.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7d9 (43 samples, 0.01%)</title><rect x="3604.2" y="253" width="0.2" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="3607.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (50 samples, 0.01%)</title><rect x="2954.3" y="301" width="0.3" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="2957.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (29 samples, 0.00%)</title><rect x="4720.6" y="325" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4723.58" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::activateTimers (22 samples, 0.00%)</title><rect x="742.5" y="181" width="0.2" height="23.0" fill="rgb(238,157,36)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (41 samples, 0.01%)</title><rect x="638.7" y="877" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream (30 samples, 0.00%)</title><rect x="600.9" y="1045" width="0.1" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="603.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (24 samples, 0.00%)</title><rect x="4371.5" y="205" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4374.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xkb_x11_keymap_new_from_device (18 samples, 0.00%)</title><rect x="691.3" y="733" width="0.1" height="23.0" fill="rgb(246,183,46)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleEvent::~QAccessibleEvent (18 samples, 0.00%)</title><rect x="453.9" y="1045" width="0.1" height="23.0" fill="rgb(241,161,39)" rx="2" ry="2" />
<text text-anchor="" x="456.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (322 samples, 0.04%)</title><rect x="4722.0" y="373" width="2.0" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4724.95" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qt_defaultDpiY (34 samples, 0.00%)</title><rect x="36.7" y="1045" width="0.2" height="23.0" fill="rgb(229,140,27)" rx="2" ry="2" />
<text text-anchor="" x="39.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (24 samples, 0.00%)</title><rect x="742.7" y="157" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8bf (49 samples, 0.01%)</title><rect x="4507.0" y="301" width="0.3" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="4509.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::putChar (17 samples, 0.00%)</title><rect x="226.7" y="1045" width="0.1" height="23.0" fill="rgb(232,164,30)" rx="2" ry="2" />
<text text-anchor="" x="229.71" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::operator (2,722 samples, 0.36%)</title><rect x="898.1" y="421" width="17.1" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="901.11" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (46 samples, 0.01%)</title><rect x="478.9" y="1045" width="0.3" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="481.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (53 samples, 0.01%)</title><rect x="637.9" y="565" width="0.3" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="640.91" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (242 samples, 0.03%)</title><rect x="44.0" y="1045" width="1.5" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="47.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (626 samples, 0.08%)</title><rect x="4192.4" y="301" width="3.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4195.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (365 samples, 0.05%)</title><rect x="2957.8" y="229" width="2.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2960.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (359 samples, 0.05%)</title><rect x="1656.0" y="253" width="2.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1659.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread::currentThread (62 samples, 0.01%)</title><rect x="180.3" y="1045" width="0.4" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="183.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af1f (105 samples, 0.01%)</title><rect x="119.9" y="1069" width="0.7" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="122.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::detach_helper_grow (1,827 samples, 0.24%)</title><rect x="4243.5" y="325" width="11.5" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="4246.53" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (124 samples, 0.02%)</title><rect x="4368.2" y="253" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4371.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::iterator::operator* (366 samples, 0.05%)</title><rect x="3166.1" y="205" width="2.3" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="3169.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (120 samples, 0.02%)</title><rect x="408.9" y="1045" width="0.8" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (27 samples, 0.00%)</title><rect x="4085.5" y="325" width="0.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4088.52" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (83 samples, 0.01%)</title><rect x="303.1" y="1045" width="0.5" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="306.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (16 samples, 0.00%)</title><rect x="568.1" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="571.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractButton::clicked (640,346 samples, 84.00%)</title><rect x="766.0" y="541" width="4015.0" height="23.0" fill="rgb(245,165,44)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QAbstractButton::clicked</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (204 samples, 0.03%)</title><rect x="1035.2" y="325" width="1.3" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="1038.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_update_slotinfo (232 samples, 0.03%)</title><rect x="3704.2" y="61" width="1.4" height="23.0" fill="rgb(248,184,47)" rx="2" ry="2" />
<text text-anchor="" x="3707.18" y="75.5" font-size="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 (762,353 samples, 100%)</title><rect x="10.0" y="1117" width="4780.0" height="23.0" fill="rgb(255,230,55)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (78 samples, 0.01%)</title><rect x="4008.0" y="277" width="0.5" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4010.97" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (226 samples, 0.03%)</title><rect x="45.8" y="1045" width="1.4" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="48.80" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (303 samples, 0.04%)</title><rect x="4579.6" y="253" width="1.9" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4582.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<QArrayData::AllocationOption>::QFlags (22 samples, 0.00%)</title><rect x="4638.5" y="349" width="0.2" height="23.0" fill="rgb(241,201,39)" rx="2" ry="2" />
<text text-anchor="" x="4641.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (248 samples, 0.03%)</title><rect x="113.0" y="829" width="1.6" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (23 samples, 0.00%)</title><rect x="379.3" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="382.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (1,344 samples, 0.18%)</title><rect x="835.8" y="253" width="8.5" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="838.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (115 samples, 0.02%)</title><rect x="3832.3" y="253" width="0.7" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3835.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateNormalInputMode::findReplace (20 samples, 0.00%)</title><rect x="743.1" y="565" width="0.1" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (835 samples, 0.11%)</title><rect x="803.6" y="229" width="5.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="806.61" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b07b (274 samples, 0.04%)</title><rect x="206.3" y="1069" width="1.7" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="209.30" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::MatchHighlighter::qt_metacall (38 samples, 0.00%)</title><rect x="4589.8" y="277" width="0.3" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="4592.83" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dlopen (42 samples, 0.01%)</title><rect x="691.7" y="757" width="0.3" height="23.0" fill="rgb(250,174,49)" rx="2" ry="2" />
<text text-anchor="" x="694.72" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (18 samples, 0.00%)</title><rect x="938.3" y="325" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="941.32" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (210 samples, 0.03%)</title><rect x="4607.4" y="277" width="1.3" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4610.42" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (587 samples, 0.08%)</title><rect x="1065.3" y="157" width="3.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1068.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (442 samples, 0.06%)</title><rect x="4721.2" y="397" width="2.8" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4724.20" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (649 samples, 0.09%)</title><rect x="2956.0" y="253" width="4.1" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="2959.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (104 samples, 0.01%)</title><rect x="2418.1" y="229" width="0.7" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="2421.14" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (314 samples, 0.04%)</title><rect x="4605.4" y="253" width="2.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4608.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (44 samples, 0.01%)</title><rect x="4552.3" y="277" width="0.3" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4555.34" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfa3da1 (50 samples, 0.01%)</title><rect x="637.3" y="1021" width="0.3" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (583 samples, 0.08%)</title><rect x="611.8" y="757" width="3.6" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="614.79" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (371 samples, 0.05%)</title><rect x="4376.6" y="253" width="2.3" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="4379.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator-- (154 samples, 0.02%)</title><rect x="2431.5" y="229" width="1.0" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="2434.54" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::setRange (7,022 samples, 0.92%)</title><rect x="915.2" y="421" width="44.0" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="918.18" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTex..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (18 samples, 0.00%)</title><rect x="535.0" y="1045" width="0.1" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="537.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::size (341 samples, 0.04%)</title><rect x="4304.9" y="373" width="2.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="4307.86" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (23 samples, 0.00%)</title><rect x="4273.6" y="181" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4276.60" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (151 samples, 0.02%)</title><rect x="3091.1" y="277" width="0.9" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="3094.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAction::triggered (20 samples, 0.00%)</title><rect x="743.1" y="661" width="0.1" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd72 (28 samples, 0.00%)</title><rect x="4485.6" y="301" width="0.2" height="23.0" fill="rgb(252,92,51)" rx="2" ry="2" />
<text text-anchor="" x="4488.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (32 samples, 0.00%)</title><rect x="654.8" y="877" width="0.2" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.75" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (23 samples, 0.00%)</title><rect x="693.3" y="517" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.28" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::size (52 samples, 0.01%)</title><rect x="3169.0" y="205" width="0.3" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="3171.96" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b00f (582 samples, 0.08%)</title><rect x="172.9" y="1069" width="3.6" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="175.86" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::toCursor (1,006 samples, 0.13%)</title><rect x="4101.9" y="349" width="6.3" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4104.85" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (59 samples, 0.01%)</title><rect x="637.9" y="877" width="0.3" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (24 samples, 0.00%)</title><rect x="3156.6" y="157" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3159.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (300 samples, 0.04%)</title><rect x="4448.8" y="277" width="1.9" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4451.85" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b043 (44 samples, 0.01%)</title><rect x="183.5" y="1069" width="0.3" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="186.49" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (313 samples, 0.04%)</title><rect x="4453.9" y="349" width="2.0" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="4456.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (1,137 samples, 0.15%)</title><rect x="2981.2" y="277" width="7.2" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="2984.23" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (18 samples, 0.00%)</title><rect x="257.5" y="1045" width="0.1" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="260.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3bf (171 samples, 0.02%)</title><rect x="488.6" y="1069" width="1.0" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="491.57" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (81 samples, 0.01%)</title><rect x="1147.5" y="277" width="0.5" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="1150.54" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (16 samples, 0.00%)</title><rect x="262.4" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="265.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::postMessage (17 samples, 0.00%)</title><rect x="669.2" y="853" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (53 samples, 0.01%)</title><rect x="4314.4" y="397" width="0.3" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4317.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine (31 samples, 0.00%)</title><rect x="453.2" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="456.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (39 samples, 0.01%)</title><rect x="176.3" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="179.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (324 samples, 0.04%)</title><rect x="608.2" y="733" width="2.0" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (54 samples, 0.01%)</title><rect x="2370.5" y="109" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2373.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::paintEvent (28 samples, 0.00%)</title><rect x="637.7" y="589" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (322 samples, 0.04%)</title><rect x="608.2" y="709" width="2.0" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="611.17" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (17 samples, 0.00%)</title><rect x="978.0" y="397" width="0.1" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="980.95" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (54 samples, 0.01%)</title><rect x="107.9" y="1045" width="0.4" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="110.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::indexOf (52 samples, 0.01%)</title><rect x="4470.0" y="349" width="0.3" height="23.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="4472.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (16 samples, 0.00%)</title><rect x="64.2" y="1045" width="0.1" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="67.16" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (17 samples, 0.00%)</title><rect x="4052.7" y="397" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4055.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (977 samples, 0.13%)</title><rect x="3178.9" y="229" width="6.1" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="3181.86" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (34 samples, 0.00%)</title><rect x="452.7" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="455.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6c06ff73 (242 samples, 0.03%)</title><rect x="666.1" y="757" width="1.5" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (19 samples, 0.00%)</title><rect x="313.8" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="316.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (19 samples, 0.00%)</title><rect x="3140.6" y="253" width="0.1" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="3143.63" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b487 (18 samples, 0.00%)</title><rect x="549.7" y="1069" width="0.1" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="552.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawPoints (55 samples, 0.01%)</title><rect x="700.2" y="541" width="0.3" height="23.0" fill="rgb(238,193,36)" rx="2" ry="2" />
<text text-anchor="" x="703.20" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (239 samples, 0.03%)</title><rect x="653.2" y="1021" width="1.5" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.23" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread::currentThread (1,146 samples, 0.15%)</title><rect x="2236.1" y="157" width="7.2" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="2239.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d3430ef (27 samples, 0.00%)</title><rect x="71.6" y="1069" width="0.2" height="23.0" fill="rgb(249,99,48)" rx="2" ry="2" />
<text text-anchor="" x="74.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (98 samples, 0.01%)</title><rect x="3570.9" y="277" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3573.86" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::KateUndo (310 samples, 0.04%)</title><rect x="3874.0" y="253" width="2.0" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="3877.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (109 samples, 0.01%)</title><rect x="875.8" y="229" width="0.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="878.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::data (87 samples, 0.01%)</title><rect x="942.2" y="301" width="0.5" height="23.0" fill="rgb(235,160,33)" rx="2" ry="2" />
<text text-anchor="" x="945.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b0d39e (18 samples, 0.00%)</title><rect x="627.7" y="997" width="0.1" height="23.0" fill="rgb(248,92,48)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentCursor::document (135 samples, 0.02%)</title><rect x="780.9" y="397" width="0.8" height="23.0" fill="rgb(241,138,39)" rx="2" ry="2" />
<text text-anchor="" x="783.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eece51 (19 samples, 0.00%)</title><rect x="4500.8" y="301" width="0.2" height="23.0" fill="rgb(225,92,23)" rx="2" ry="2" />
<text text-anchor="" x="4503.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::lower_bound<QPair<int, (2,916 samples, 0.38%)</title><rect x="3762.0" y="181" width="18.3" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="3765.02" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (110 samples, 0.01%)</title><rect x="979.8" y="397" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="982.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (28 samples, 0.00%)</title><rect x="4280.1" y="253" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4283.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::insertText (544 samples, 0.07%)</title><rect x="543.9" y="1045" width="3.4" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="546.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (28 samples, 0.00%)</title><rect x="4786.7" y="1069" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="4789.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (74 samples, 0.01%)</title><rect x="1048.8" y="253" width="0.5" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1051.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::automaticCompletionInvocation (972 samples, 0.13%)</title><rect x="2173.7" y="181" width="6.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2176.68" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (58 samples, 0.01%)</title><rect x="2433.7" y="253" width="0.4" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2436.74" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::mergeWith (1,799 samples, 0.24%)</title><rect x="2403.6" y="253" width="11.3" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="2406.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine (18 samples, 0.00%)</title><rect x="529.4" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="532.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::isTargetSelected (19 samples, 0.00%)</title><rect x="765.8" y="589" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="768.80" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isStatic (23 samples, 0.00%)</title><rect x="452.5" y="1045" width="0.2" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="455.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::insertText (265 samples, 0.03%)</title><rect x="271.6" y="1045" width="1.6" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="274.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator< (61 samples, 0.01%)</title><rect x="123.6" y="1045" width="0.4" height="23.0" fill="rgb(248,195,47)" rx="2" ry="2" />
<text text-anchor="" x="126.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStack<QSharedPointer<KTextEditor::MovingCursor> (17 samples, 0.00%)</title><rect x="213.7" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="216.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (24 samples, 0.00%)</title><rect x="37.0" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="40.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f7da90 (136 samples, 0.02%)</title><rect x="296.9" y="1045" width="0.9" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="299.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (119 samples, 0.02%)</title><rect x="2368.5" y="181" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2371.48" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::lower_bound<QPair<int, (2,164 samples, 0.28%)</title><rect x="2284.4" y="181" width="13.5" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="2287.37" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (29 samples, 0.00%)</title><rect x="934.4" y="349" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="937.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::Node::t (32 samples, 0.00%)</title><rect x="2431.3" y="205" width="0.2" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="2434.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (26 samples, 0.00%)</title><rect x="552.2" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="555.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (31 samples, 0.00%)</title><rect x="607.8" y="1045" width="0.2" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="610.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (397 samples, 0.05%)</title><rect x="756.1" y="277" width="2.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="759.07" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (18 samples, 0.00%)</title><rect x="4285.4" y="373" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4288.45" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (2,720 samples, 0.36%)</title><rect x="2948.2" y="325" width="17.0" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2951.19" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (28 samples, 0.00%)</title><rect x="637.7" y="901" width="0.2" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf666a8 (45 samples, 0.01%)</title><rect x="619.8" y="877" width="0.3" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="622.80" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (76 samples, 0.01%)</title><rect x="349.6" y="1045" width="0.4" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="352.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (42 samples, 0.01%)</title><rect x="4720.3" y="229" width="0.3" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4723.31" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::columnWidth (750 samples, 0.10%)</title><rect x="4023.0" y="349" width="4.7" height="23.0" fill="rgb(238,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4026.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::~QSet (47 samples, 0.01%)</title><rect x="1897.9" y="277" width="0.3" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="1900.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (154 samples, 0.02%)</title><rect x="4584.8" y="229" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4587.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::setColumn (35 samples, 0.00%)</title><rect x="2161.8" y="229" width="0.2" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2164.76" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (19 samples, 0.00%)</title><rect x="2055.3" y="277" width="0.2" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="2058.34" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (89 samples, 0.01%)</title><rect x="3192.4" y="205" width="0.6" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3195.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::searchText (61,328 samples, 8.04%)</title><rect x="4339.5" y="421" width="384.5" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="4342.48" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateMatch::searchText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (1,176 samples, 0.15%)</title><rect x="1732.8" y="253" width="7.4" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="1735.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b41f (2,414 samples, 0.32%)</title><rect x="510.4" y="1069" width="15.1" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="513.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (145 samples, 0.02%)</title><rect x="2479.6" y="253" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2482.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintBackground (42 samples, 0.01%)</title><rect x="739.8" y="517" width="0.2" height="23.0" fill="rgb(248,142,48)" rx="2" ry="2" />
<text text-anchor="" x="742.77" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (73 samples, 0.01%)</title><rect x="158.5" y="1045" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="161.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAbstractEventDispatcherPrivate::allocateTimerId (759 samples, 0.10%)</title><rect x="2205.1" y="133" width="4.8" height="23.0" fill="rgb(243,165,41)" rx="2" ry="2" />
<text text-anchor="" x="2208.14" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::documentEnd (16 samples, 0.00%)</title><rect x="553.4" y="1045" width="0.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="556.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (43 samples, 0.01%)</title><rect x="456.1" y="1045" width="0.3" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="459.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (37 samples, 0.00%)</title><rect x="554.3" y="1045" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="557.35" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (19 samples, 0.00%)</title><rect x="601.8" y="1045" width="0.1" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="604.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (38 samples, 0.00%)</title><rect x="606.5" y="1021" width="0.3" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="609.52" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessibleObject::isValid (20 samples, 0.00%)</title><rect x="148.0" y="1045" width="0.1" height="23.0" fill="rgb(248,161,47)" rx="2" ry="2" />
<text text-anchor="" x="151.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (26 samples, 0.00%)</title><rect x="1063.9" y="205" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="1066.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f00b652b04f (113 samples, 0.01%)</title><rect x="102.9" y="1069" width="0.7" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="105.90" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::insertText (238,279 samples, 31.26%)</title><rect x="1021.0" y="373" width="1494.0" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="1023.97" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::insertText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (984 samples, 0.13%)</title><rect x="3996.6" y="277" width="6.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3999.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7d9 (46 samples, 0.01%)</title><rect x="1123.1" y="277" width="0.3" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="1126.14" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (21 samples, 0.00%)</title><rect x="294.3" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="297.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::node_construct (148 samples, 0.02%)</title><rect x="3944.0" y="229" width="0.9" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="3946.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (52 samples, 0.01%)</title><rect x="1082.7" y="253" width="0.4" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (24 samples, 0.00%)</title><rect x="2160.4" y="229" width="0.2" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="2163.42" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::get<0ul, (22 samples, 0.00%)</title><rect x="540.8" y="1045" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="543.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (30 samples, 0.00%)</title><rect x="637.7" y="949" width="0.2" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="640.67" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8d8 (17 samples, 0.00%)</title><rect x="4360.5" y="325" width="0.1" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="4363.49" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTemplateHandler::qt_metacall (18 samples, 0.00%)</title><rect x="208.2" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="211.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (44 samples, 0.01%)</title><rect x="2127.6" y="109" width="0.3" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2130.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (41 samples, 0.01%)</title><rect x="3866.0" y="205" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="3868.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (757 samples, 0.10%)</title><rect x="4255.5" y="301" width="4.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4258.47" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLineLayoutMap::slotEditDone (10,414 samples, 1.37%)</title><rect x="2245.6" y="205" width="65.3" height="23.0" fill="rgb(251,118,50)" rx="2" ry="2" />
<text text-anchor="" x="2248.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateLin..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6329d6d7 (34 samples, 0.00%)</title><rect x="667.2" y="661" width="0.2" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="670.22" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (621 samples, 0.08%)</title><rect x="3233.0" y="133" width="3.9" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3236.05" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::isGlobal (417 samples, 0.05%)</title><rect x="2177.2" y="157" width="2.6" height="23.0" fill="rgb(229,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2180.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d41e4cf (373 samples, 0.05%)</title><rect x="71.9" y="1069" width="2.3" height="23.0" fill="rgb(248,99,48)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBrush::~QBrush (22 samples, 0.00%)</title><rect x="697.1" y="493" width="0.1" height="23.0" fill="rgb(236,202,34)" rx="2" ry="2" />
<text text-anchor="" x="700.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (27 samples, 0.00%)</title><rect x="980.5" y="421" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="983.49" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (28 samples, 0.00%)</title><rect x="63.0" y="1045" width="0.2" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="66.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (276 samples, 0.04%)</title><rect x="4303.0" y="349" width="1.8" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4306.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (21 samples, 0.00%)</title><rect x="611.3" y="1069" width="0.2" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="614.34" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (18 samples, 0.00%)</title><rect x="103.5" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="106.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (108 samples, 0.01%)</title><rect x="4156.1" y="277" width="0.7" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4159.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (392 samples, 0.05%)</title><rect x="15.2" y="1045" width="2.5" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="18.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (139 samples, 0.02%)</title><rect x="986.6" y="349" width="0.9" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="989.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::deallocate@plt (33 samples, 0.00%)</title><rect x="2088.3" y="157" width="0.2" height="23.0" fill="rgb(231,152,29)" rx="2" ry="2" />
<text text-anchor="" x="2091.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (6,425 samples, 0.84%)</title><rect x="701.3" y="661" width="40.3" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="704.27" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b01f (392 samples, 0.05%)</title><rect x="176.5" y="1069" width="2.5" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="179.51" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::revision (66 samples, 0.01%)</title><rect x="1706.0" y="229" width="0.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1708.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f74f1d970 (100 samples, 0.01%)</title><rect x="1043.8" y="325" width="0.6" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="1046.76" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (462 samples, 0.06%)</title><rect x="1645.3" y="277" width="2.9" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="1648.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (87 samples, 0.01%)</title><rect x="2514.4" y="349" width="0.6" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="2517.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QVector<QTextLayout::FormatRange> (64 samples, 0.01%)</title><rect x="694.9" y="565" width="0.4" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="697.89" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d277a3f (113 samples, 0.01%)</title><rect x="66.2" y="1069" width="0.7" height="23.0" fill="rgb(243,99,41)" rx="2" ry="2" />
<text text-anchor="" x="69.19" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::KateUndo (16 samples, 0.00%)</title><rect x="453.5" y="1045" width="0.1" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="456.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::line (34 samples, 0.00%)</title><rect x="764.9" y="205" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (29 samples, 0.00%)</title><rect x="2340.1" y="301" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2343.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (89 samples, 0.01%)</title><rect x="3832.4" y="229" width="0.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3835.45" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (48 samples, 0.01%)</title><rect x="938.1" y="349" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="941.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::parent (413 samples, 0.05%)</title><rect x="2184.2" y="181" width="2.6" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="2187.21" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMapNode<QChar, (168 samples, 0.02%)</title><rect x="131.3" y="1045" width="1.0" height="23.0" fill="rgb(242,218,41)" rx="2" ry="2" />
<text text-anchor="" x="134.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (22 samples, 0.00%)</title><rect x="584.3" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="587.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (107 samples, 0.01%)</title><rect x="1779.2" y="181" width="0.7" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1782.20" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dfc86 (22 samples, 0.00%)</title><rect x="742.5" y="61" width="0.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bfb23cf (84 samples, 0.01%)</title><rect x="257.0" y="1045" width="0.5" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="260.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (30 samples, 0.00%)</title><rect x="562.3" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="565.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (225 samples, 0.03%)</title><rect x="4452.5" y="253" width="1.4" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4455.48" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (80 samples, 0.01%)</title><rect x="742.5" y="637" width="0.5" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (17 samples, 0.00%)</title><rect x="355.7" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="358.68" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (40 samples, 0.01%)</title><rect x="169.6" y="1045" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="172.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (153 samples, 0.02%)</title><rect x="968.7" y="373" width="1.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="971.74" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedInsertText::KateModifiedInsertText (7,496 samples, 0.98%)</title><rect x="2348.1" y="301" width="47.0" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="2351.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::sharedNull (25 samples, 0.00%)</title><rect x="4663.4" y="325" width="0.2" height="23.0" fill="rgb(224,183,21)" rx="2" ry="2" />
<text text-anchor="" x="4666.39" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6bf666ce (25 samples, 0.00%)</title><rect x="620.6" y="877" width="0.1" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="623.57" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::at (59 samples, 0.01%)</title><rect x="764.1" y="325" width="0.3" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="767.08" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b26f (4,497 samples, 0.59%)</title><rect x="363.4" y="1069" width="28.2" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="366.44" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (111 samples, 0.01%)</title><rect x="3574.3" y="229" width="0.7" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3577.28" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function<bool (22 samples, 0.00%)</title><rect x="653.1" y="661" width="0.1" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::init (119 samples, 0.02%)</title><rect x="691.2" y="973" width="0.8" height="23.0" fill="rgb(236,167,34)" rx="2" ry="2" />
<text text-anchor="" x="694.24" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (96 samples, 0.01%)</title><rect x="4781.4" y="1021" width="0.6" height="23.0" fill="rgb(239,184,37)" rx="2" ry="2" />
<text text-anchor="" x="4784.37" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (40 samples, 0.01%)</title><rect x="278.3" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="281.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f7da73 (51 samples, 0.01%)</title><rect x="3371.9" y="253" width="0.3" height="23.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text text-anchor="" x="3374.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (18 samples, 0.00%)</title><rect x="492.1" y="1045" width="0.1" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="495.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (88 samples, 0.01%)</title><rect x="4008.5" y="301" width="0.5" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4011.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBrush::QBrush (29 samples, 0.00%)</title><rect x="697.8" y="541" width="0.2" height="23.0" fill="rgb(236,202,34)" rx="2" ry="2" />
<text text-anchor="" x="700.80" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (724 samples, 0.09%)</title><rect x="4228.0" y="325" width="4.5" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4230.96" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (216 samples, 0.03%)</title><rect x="4782.1" y="973" width="1.3" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="4785.08" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (935 samples, 0.12%)</title><rect x="952.6" y="349" width="5.9" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="955.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70575f88 (118 samples, 0.02%)</title><rect x="661.6" y="901" width="0.7" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextRange*, (133 samples, 0.02%)</title><rect x="219.5" y="1045" width="0.9" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="222.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7ea (34 samples, 0.00%)</title><rect x="63.6" y="1045" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="66.63" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (23 samples, 0.00%)</title><rect x="323.9" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="326.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (21 samples, 0.00%)</title><rect x="4659.0" y="301" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4662.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="431.1" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="434.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (141 samples, 0.02%)</title><rect x="3187.0" y="229" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3189.96" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (42 samples, 0.01%)</title><rect x="4094.1" y="325" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4097.10" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__niter_base<Kate::TextRange**> (44 samples, 0.01%)</title><rect x="145.9" y="1045" width="0.3" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="148.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QShortcutMap::tryShortcut (20 samples, 0.00%)</title><rect x="743.1" y="829" width="0.1" height="23.0" fill="rgb(234,166,32)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::Marks::setMark (313 samples, 0.04%)</title><rect x="198.1" y="1045" width="2.0" height="23.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text text-anchor="" x="201.15" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::start (55 samples, 0.01%)</title><rect x="74.4" y="1045" width="0.3" height="23.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text text-anchor="" x="77.37" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (143 samples, 0.02%)</title><rect x="226.8" y="1045" width="0.9" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="229.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f735c7a54 (18 samples, 0.00%)</title><rect x="654.6" y="781" width="0.1" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="657.60" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::prepareToRender (24 samples, 0.00%)</title><rect x="701.1" y="517" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawComplexControl (46 samples, 0.01%)</title><rect x="655.7" y="853" width="0.3" height="23.0" fill="rgb(235,145,33)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontPrivate::engineForScript (39 samples, 0.01%)</title><rect x="4782.4" y="229" width="0.3" height="23.0" fill="rgb(236,192,34)" rx="2" ry="2" />
<text text-anchor="" x="4785.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (20 samples, 0.00%)</title><rect x="1791.1" y="277" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="1794.08" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::tabWidth (208 samples, 0.03%)</title><rect x="522.4" y="1045" width="1.3" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="525.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (92 samples, 0.01%)</title><rect x="407.9" y="1045" width="0.6" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="410.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (22 samples, 0.00%)</title><rect x="466.9" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="469.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (244 samples, 0.03%)</title><rect x="4666.3" y="301" width="1.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4669.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (584 samples, 0.08%)</title><rect x="611.8" y="829" width="3.6" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (40 samples, 0.01%)</title><rect x="638.7" y="709" width="0.2" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::remove@plt (81 samples, 0.01%)</title><rect x="3381.9" y="277" width="0.5" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="3384.92" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73727fc2 (19 samples, 0.00%)</title><rect x="628.2" y="517" width="0.2" height="23.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (206 samples, 0.03%)</title><rect x="4782.1" y="325" width="1.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4785.14" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (24 samples, 0.00%)</title><rect x="625.2" y="1069" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="628.23" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (166 samples, 0.02%)</title><rect x="4714.2" y="301" width="1.0" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4717.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator_traits<std::allocator<Kate::TextRange*> (20 samples, 0.00%)</title><rect x="116.4" y="1045" width="0.2" height="23.0" fill="rgb(238,146,36)" rx="2" ry="2" />
<text text-anchor="" x="119.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<Kate::TextLineData> (36 samples, 0.00%)</title><rect x="324.3" y="1045" width="0.2" height="23.0" fill="rgb(236,183,34)" rx="2" ry="2" />
<text text-anchor="" x="327.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator* (100 samples, 0.01%)</title><rect x="2430.9" y="229" width="0.6" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="2433.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (35 samples, 0.00%)</title><rect x="654.5" y="997" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="657.51" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (975 samples, 0.13%)</title><rect x="619.0" y="1069" width="6.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="622.02" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__get_helper<0ul, (29 samples, 0.00%)</title><rect x="584.0" y="1045" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="586.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (16 samples, 0.00%)</title><rect x="624.9" y="877" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="627.85" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextRange*>::insert (16 samples, 0.00%)</title><rect x="4098.4" y="301" width="0.1" height="23.0" fill="rgb(236,175,34)" rx="2" ry="2" />
<text text-anchor="" x="4101.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::KateEditInsertTextUndo (1,466 samples, 0.19%)</title><rect x="2375.6" y="277" width="9.2" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="2378.63" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::~QExplicitlySharedDataPointer (24 samples, 0.00%)</title><rect x="176.9" y="1045" width="0.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="179.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (453 samples, 0.06%)</title><rect x="1550.7" y="301" width="2.9" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="1553.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::kateRange (21 samples, 0.00%)</title><rect x="317.5" y="1045" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="320.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (27 samples, 0.00%)</title><rect x="462.7" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="465.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::openUrl (3,471 samples, 0.46%)</title><rect x="669.2" y="973" width="21.8" height="23.0" fill="rgb(235,138,34)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="2382.7" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="2385.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::qt_static_metacall (33 samples, 0.00%)</title><rect x="692.3" y="637" width="0.2" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="695.29" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (60 samples, 0.01%)</title><rect x="140.8" y="1045" width="0.4" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="143.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (23 samples, 0.00%)</title><rect x="4651.6" y="301" width="0.1" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4654.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (18 samples, 0.00%)</title><rect x="3676.3" y="85" width="0.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="3679.31" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMapData<QChar, (197 samples, 0.03%)</title><rect x="149.1" y="1045" width="1.2" height="23.0" fill="rgb(242,218,41)" rx="2" ry="2" />
<text text-anchor="" x="152.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite (320 samples, 0.04%)</title><rect x="1027.9" y="349" width="2.0" height="23.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="1030.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator< (63 samples, 0.01%)</title><rect x="120.1" y="1045" width="0.4" height="23.0" fill="rgb(248,195,47)" rx="2" ry="2" />
<text text-anchor="" x="123.13" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (29 samples, 0.00%)</title><rect x="536.6" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="539.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (190 samples, 0.02%)</title><rect x="2589.5" y="229" width="1.2" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="2592.52" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine (3,811 samples, 0.50%)</title><rect x="3844.8" y="277" width="23.9" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="3847.81" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::replace (18 samples, 0.00%)</title><rect x="578.9" y="1045" width="0.1" height="23.0" fill="rgb(252,118,52)" rx="2" ry="2" />
<text text-anchor="" x="581.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf01 (22 samples, 0.00%)</title><rect x="4485.1" y="325" width="0.2" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="4488.15" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::fillRect (19 samples, 0.00%)</title><rect x="628.2" y="565" width="0.2" height="23.0" fill="rgb(241,203,39)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::operator-- (144 samples, 0.02%)</title><rect x="3959.5" y="229" width="0.9" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="3962.49" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__uniq_ptr_impl<KTextEditor::MovingRange, (43 samples, 0.01%)</title><rect x="574.0" y="1045" width="0.3" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="576.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b69f (16 samples, 0.00%)</title><rect x="584.2" y="1069" width="0.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="587.17" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (169 samples, 0.02%)</title><rect x="355.8" y="1045" width="1.0" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="358.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (261 samples, 0.03%)</title><rect x="4194.5" y="229" width="1.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4197.52" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::removeText@plt (79 samples, 0.01%)</title><rect x="3169.8" y="277" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3172.78" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (19 samples, 0.00%)</title><rect x="287.3" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="290.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (36 samples, 0.00%)</title><rect x="4609.8" y="349" width="0.2" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="4612.81" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editInsertText (230,345 samples, 30.22%)</title><rect x="1036.6" y="349" width="1444.2" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="1039.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::editInsertText</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (785 samples, 0.10%)</title><rect x="4603.8" y="301" width="4.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4606.82" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a7e1 (19 samples, 0.00%)</title><rect x="4506.1" y="301" width="0.1" height="23.0" fill="rgb(232,92,29)" rx="2" ry="2" />
<text text-anchor="" x="4509.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::insert (148 samples, 0.02%)</title><rect x="586.7" y="1045" width="0.9" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="589.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::QPen (59 samples, 0.01%)</title><rect x="697.8" y="565" width="0.3" height="23.0" fill="rgb(247,190,46)" rx="2" ry="2" />
<text text-anchor="" x="700.78" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd52 (22 samples, 0.00%)</title><rect x="445.3" y="1045" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="448.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (23 samples, 0.00%)</title><rect x="233.7" y="1045" width="0.2" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="236.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (1,126 samples, 0.15%)</title><rect x="692.3" y="709" width="7.0" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="695.27" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (144 samples, 0.02%)</title><rect x="2388.0" y="277" width="0.9" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="2391.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (3,590 samples, 0.47%)</title><rect x="3630.2" y="181" width="22.5" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="3633.15" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___clock_gettime (190 samples, 0.02%)</title><rect x="2222.7" y="61" width="1.2" height="23.0" fill="rgb(236,119,34)" rx="2" ry="2" />
<text text-anchor="" x="2225.72" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (81 samples, 0.01%)</title><rect x="524.5" y="1045" width="0.5" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="527.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::~ViewPrivate (18 samples, 0.00%)</title><rect x="739.4" y="565" width="0.2" height="23.0" fill="rgb(245,138,45)" rx="2" ry="2" />
<text text-anchor="" x="742.45" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (37 samples, 0.00%)</title><rect x="654.7" y="925" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70ca558d (31 samples, 0.00%)</title><rect x="112.5" y="829" width="0.2" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="115.48" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (97 samples, 0.01%)</title><rect x="1084.0" y="205" width="0.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="1086.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (55 samples, 0.01%)</title><rect x="148.4" y="1045" width="0.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="151.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::searchText (65 samples, 0.01%)</title><rect x="566.0" y="1045" width="0.4" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="569.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (29 samples, 0.00%)</title><rect x="526.9" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="529.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__copy_move<true, (19 samples, 0.00%)</title><rect x="127.4" y="1045" width="0.2" height="23.0" fill="rgb(239,146,38)" rx="2" ry="2" />
<text text-anchor="" x="130.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (17 samples, 0.00%)</title><rect x="4315.5" y="397" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4318.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2711b652b47f (50 samples, 0.01%)</title><rect x="30.6" y="1069" width="0.3" height="23.0" fill="rgb(248,109,48)" rx="2" ry="2" />
<text text-anchor="" x="33.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::spaceWidth (22 samples, 0.00%)</title><rect x="638.7" y="325" width="0.1" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (108 samples, 0.01%)</title><rect x="4184.2" y="253" width="0.6" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4187.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (230 samples, 0.03%)</title><rect x="4758.4" y="373" width="1.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4761.39" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (41 samples, 0.01%)</title><rect x="4608.5" y="229" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4611.48" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (121 samples, 0.02%)</title><rect x="2573.6" y="229" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2576.63" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::view (496 samples, 0.07%)</title><rect x="2183.7" y="205" width="3.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="2186.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (307 samples, 0.04%)</title><rect x="2511.3" y="277" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2514.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb652b37f (30 samples, 0.00%)</title><rect x="601.8" y="1069" width="0.2" height="23.0" fill="rgb(249,109,48)" rx="2" ry="2" />
<text text-anchor="" x="604.79" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (50 samples, 0.01%)</title><rect x="637.3" y="421" width="0.3" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (107 samples, 0.01%)</title><rect x="378.4" y="1045" width="0.7" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="381.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_avx2 (4,116 samples, 0.54%)</title><rect x="3913.4" y="181" width="25.8" height="23.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text text-anchor="" x="3916.41" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qAsConst<QVector<KTextEditor::Range> (21 samples, 0.00%)</title><rect x="495.5" y="1045" width="0.1" height="23.0" fill="rgb(244,133,43)" rx="2" ry="2" />
<text text-anchor="" x="498.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::get<0ul, (58 samples, 0.01%)</title><rect x="29.0" y="1045" width="0.4" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="32.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b2af (1,546 samples, 0.20%)</title><rect x="415.0" y="1069" width="9.7" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="418.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (97 samples, 0.01%)</title><rect x="284.0" y="1045" width="0.6" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="287.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::setGeometry (17 samples, 0.00%)</title><rect x="669.2" y="637" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::syncBackingStore (584 samples, 0.08%)</title><rect x="611.8" y="973" width="3.6" height="23.0" fill="rgb(246,142,45)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (101 samples, 0.01%)</title><rect x="942.1" y="325" width="0.6" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="945.08" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7062d8be (52 samples, 0.01%)</title><rect x="668.6" y="685" width="0.4" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (87 samples, 0.01%)</title><rect x="1955.7" y="277" width="0.6" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1958.71" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (23 samples, 0.00%)</title><rect x="552.1" y="1045" width="0.1" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="555.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (413 samples, 0.05%)</title><rect x="4448.1" y="325" width="2.6" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="4451.15" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFont::QFont (23 samples, 0.00%)</title><rect x="629.5" y="493" width="0.1" height="23.0" fill="rgb(242,192,41)" rx="2" ry="2" />
<text text-anchor="" x="632.49" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::setPen (103 samples, 0.01%)</title><rect x="697.7" y="589" width="0.7" height="23.0" fill="rgb(247,203,46)" rx="2" ry="2" />
<text text-anchor="" x="700.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::drawTextItem (975 samples, 0.13%)</title><rect x="619.0" y="973" width="6.1" height="23.0" fill="rgb(231,193,29)" rx="2" ry="2" />
<text text-anchor="" x="622.02" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontMetricsF::lineSpacing (19 samples, 0.00%)</title><rect x="668.0" y="877" width="0.1" height="23.0" fill="rgb(243,192,42)" rx="2" ry="2" />
<text text-anchor="" x="671.02" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (364 samples, 0.05%)</title><rect x="628.4" y="589" width="2.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="631.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QGuiApplicationPrivate::processCloseEvent (81 samples, 0.01%)</title><rect x="742.5" y="877" width="0.5" height="23.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::lineInBlock (153 samples, 0.02%)</title><rect x="3819.0" y="301" width="1.0" height="23.0" fill="rgb(240,118,39)" rx="2" ry="2" />
<text text-anchor="" x="3822.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f6401cc0f (38 samples, 0.00%)</title><rect x="107.7" y="1069" width="0.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="110.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (100 samples, 0.01%)</title><rect x="4223.2" y="325" width="0.6" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="4226.19" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<bool (135 samples, 0.02%)</title><rect x="163.4" y="1045" width="0.8" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="166.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::buildReplacement (29,556 samples, 3.88%)</title><rect x="4115.0" y="397" width="185.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="4118.03" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateMatch::buildReplacem..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QShortcutMap::dispatchEvent (20 samples, 0.00%)</title><rect x="743.1" y="805" width="0.1" height="23.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (16 samples, 0.00%)</title><rect x="693.0" y="517" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.00" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (187 samples, 0.02%)</title><rect x="2182.5" y="157" width="1.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2185.52" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::split (6,022 samples, 0.79%)</title><rect x="4473.5" y="349" width="37.8" height="23.0" fill="rgb(237,166,36)" rx="2" ry="2" />
<text text-anchor="" x="4476.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QSt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b02f (490 samples, 0.06%)</title><rect x="179.1" y="1069" width="3.0" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="182.05" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (28 samples, 0.00%)</title><rect x="470.2" y="1045" width="0.2" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="473.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (324 samples, 0.04%)</title><rect x="4229.3" y="277" width="2.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4232.27" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (45 samples, 0.01%)</title><rect x="253.0" y="1045" width="0.3" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="256.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (470 samples, 0.06%)</title><rect x="3949.4" y="229" width="3.0" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3952.44" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (811 samples, 0.11%)</title><rect x="53.5" y="1045" width="5.1" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="56.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (310 samples, 0.04%)</title><rect x="2445.7" y="229" width="1.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2448.69" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (18 samples, 0.00%)</title><rect x="970.9" y="373" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="973.87" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b557 (19 samples, 0.00%)</title><rect x="575.6" y="1069" width="0.1" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="578.61" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPendingMoveAndResizeEvents (24 samples, 0.00%)</title><rect x="701.1" y="493" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1e7 (80 samples, 0.01%)</title><rect x="323.4" y="1069" width="0.5" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="326.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::reserve (1,503 samples, 0.20%)</title><rect x="3640.4" y="109" width="9.4" height="23.0" fill="rgb(240,167,38)" rx="2" ry="2" />
<text text-anchor="" x="3643.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::at (741 samples, 0.10%)</title><rect x="2498.8" y="349" width="4.7" height="23.0" fill="rgb(227,166,24)" rx="2" ry="2" />
<text text-anchor="" x="2501.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (297 samples, 0.04%)</title><rect x="4534.8" y="253" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4537.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (312 samples, 0.04%)</title><rect x="2963.3" y="229" width="1.9" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2966.26" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (18 samples, 0.00%)</title><rect x="627.7" y="949" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (59 samples, 0.01%)</title><rect x="180.9" y="1045" width="0.4" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="183.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::updateView (67 samples, 0.01%)</title><rect x="764.9" y="253" width="0.4" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (28 samples, 0.00%)</title><rect x="637.7" y="565" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="640.68" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7233fafe (16 samples, 0.00%)</title><rect x="669.0" y="829" width="0.1" height="23.0" fill="rgb(249,92,48)" rx="2" ry="2" />
<text text-anchor="" x="672.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (703 samples, 0.09%)</title><rect x="2577.3" y="181" width="4.4" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2580.32" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (21 samples, 0.00%)</title><rect x="485.8" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="488.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (50 samples, 0.01%)</title><rect x="637.3" y="541" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidget::event (34 samples, 0.00%)</title><rect x="701.1" y="709" width="0.2" height="23.0" fill="rgb(241,173,39)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d02e7af (279 samples, 0.04%)</title><rect x="43.8" y="1069" width="1.7" height="23.0" fill="rgb(236,99,34)" rx="2" ry="2" />
<text text-anchor="" x="46.76" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::insertText (4,442 samples, 0.58%)</title><rect x="1696.8" y="277" width="27.8" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="1699.76" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (418 samples, 0.05%)</title><rect x="1556.5" y="301" width="2.6" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="1559.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDialog::exec (18 samples, 0.00%)</title><rect x="627.7" y="613" width="0.1" height="23.0" fill="rgb(237,182,35)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (139 samples, 0.02%)</title><rect x="2513.5" y="277" width="0.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2516.49" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::resizeEvent (17 samples, 0.00%)</title><rect x="669.2" y="493" width="0.1" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (125 samples, 0.02%)</title><rect x="661.6" y="997" width="0.8" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (29 samples, 0.00%)</title><rect x="4370.7" y="229" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4373.69" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (180 samples, 0.02%)</title><rect x="4093.0" y="277" width="1.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4095.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isValid (409 samples, 0.05%)</title><rect x="4455.9" y="349" width="2.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4458.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (37 samples, 0.00%)</title><rect x="358.0" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="360.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::textInserted (73,848 samples, 9.69%)</title><rect x="1085.4" y="325" width="463.0" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1088.40" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEditor::DocumentPrivate::textInserted</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::removeText@plt (534 samples, 0.07%)</title><rect x="3564.1" y="301" width="3.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3567.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::deref (25 samples, 0.00%)</title><rect x="183.0" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="186.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (29 samples, 0.00%)</title><rect x="433.0" y="1045" width="0.2" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="435.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (44 samples, 0.01%)</title><rect x="177.8" y="1045" width="0.3" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="180.82" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (38 samples, 0.00%)</title><rect x="534.7" y="1045" width="0.2" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="537.70" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xfffffffff (31 samples, 0.00%)</title><rect x="607.8" y="1069" width="0.2" height="23.0" fill="rgb(244,96,42)" rx="2" ry="2" />
<text text-anchor="" x="610.79" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::removeText (91 samples, 0.01%)</title><rect x="547.3" y="1045" width="0.6" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="550.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (69 samples, 0.01%)</title><rect x="3428.2" y="277" width="0.5" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3431.22" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (176 samples, 0.02%)</title><rect x="4132.1" y="349" width="1.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4135.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7f7 (35 samples, 0.00%)</title><rect x="2627.7" y="277" width="0.2" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2630.68" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (518 samples, 0.07%)</title><rect x="4582.5" y="301" width="3.3" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4585.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::iterator::iterator (86 samples, 0.01%)</title><rect x="2428.6" y="205" width="0.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="2431.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (566 samples, 0.07%)</title><rect x="1785.4" y="133" width="3.5" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="1788.39" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (17 samples, 0.00%)</title><rect x="172.8" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="175.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (328 samples, 0.04%)</title><rect x="4277.1" y="277" width="2.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4280.13" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (1,086 samples, 0.14%)</title><rect x="2317.6" y="253" width="6.8" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="2320.63" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (67 samples, 0.01%)</title><rect x="633.7" y="1069" width="0.4" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="636.67" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::registerTimer (308 samples, 0.04%)</title><rect x="358.5" y="1045" width="1.9" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="361.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (3,257 samples, 0.43%)</title><rect x="2352.9" y="229" width="20.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2355.87" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb23a (57 samples, 0.01%)</title><rect x="3694.2" y="133" width="0.3" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="3697.16" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (22 samples, 0.00%)</title><rect x="265.9" y="1045" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="268.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (172 samples, 0.02%)</title><rect x="3955.4" y="157" width="1.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3958.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (207 samples, 0.03%)</title><rect x="2369.6" y="181" width="1.3" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="2372.63" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::end (197 samples, 0.03%)</title><rect x="2429.1" y="205" width="1.2" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="2432.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (29 samples, 0.00%)</title><rect x="3237.1" y="181" width="0.1" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="3240.06" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (153 samples, 0.02%)</title><rect x="4238.8" y="325" width="0.9" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4241.77" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (80 samples, 0.01%)</title><rect x="4421.1" y="229" width="0.5" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4424.12" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (16 samples, 0.00%)</title><rect x="114.6" y="805" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="117.62" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (16 samples, 0.00%)</title><rect x="3865.7" y="181" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="3868.72" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart@plt (79 samples, 0.01%)</title><rect x="2482.3" y="349" width="0.5" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="2485.27" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (820 samples, 0.11%)</title><rect x="4134.0" y="325" width="5.1" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4136.99" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (25 samples, 0.00%)</title><rect x="23.2" y="1045" width="0.2" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="26.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (30 samples, 0.00%)</title><rect x="637.7" y="925" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="640.67" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb241 (71 samples, 0.01%)</title><rect x="98.3" y="1045" width="0.4" height="23.0" fill="rgb(229,92,26)" rx="2" ry="2" />
<text text-anchor="" x="101.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::const_iterator (48 samples, 0.01%)</title><rect x="336.5" y="1045" width="0.3" height="23.0" fill="rgb(241,175,39)" rx="2" ry="2" />
<text text-anchor="" x="339.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (95 samples, 0.01%)</title><rect x="4156.8" y="277" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4159.78" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (89 samples, 0.01%)</title><rect x="952.1" y="301" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="955.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8bb (47 samples, 0.01%)</title><rect x="4506.7" y="301" width="0.3" height="23.0" fill="rgb(224,92,21)" rx="2" ry="2" />
<text text-anchor="" x="4509.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd@plt (117 samples, 0.02%)</title><rect x="2559.2" y="325" width="0.8" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="2562.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (17 samples, 0.00%)</title><rect x="493.9" y="1045" width="0.1" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="496.89" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="1712.1" y="157" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="1715.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<KTextEditor::Range>*> (163 samples, 0.02%)</title><rect x="550.3" y="1045" width="1.0" height="23.0" fill="rgb(240,140,38)" rx="2" ry="2" />
<text text-anchor="" x="553.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (37 samples, 0.00%)</title><rect x="680.4" y="781" width="0.2" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="683.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<QVector<KTextEditor::Range>&> (34 samples, 0.00%)</title><rect x="4709.6" y="373" width="0.2" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="4712.59" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::writeBytes (17 samples, 0.00%)</title><rect x="235.9" y="1045" width="0.1" height="23.0" fill="rgb(238,208,36)" rx="2" ry="2" />
<text text-anchor="" x="238.90" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (503 samples, 0.07%)</title><rect x="4169.7" y="253" width="3.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4172.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate@plt (118 samples, 0.02%)</title><rect x="4657.8" y="301" width="0.8" height="23.0" fill="rgb(231,152,29)" rx="2" ry="2" />
<text text-anchor="" x="4660.83" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (268 samples, 0.04%)</title><rect x="1714.3" y="109" width="1.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="1717.28" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (247 samples, 0.03%)</title><rect x="113.0" y="781" width="1.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="116.02" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (342 samples, 0.04%)</title><rect x="4556.1" y="229" width="2.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4559.11" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (8,048 samples, 1.06%)</title><rect x="692.0" y="925" width="50.4" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="694.99" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QEven..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator= (35 samples, 0.00%)</title><rect x="489.9" y="1045" width="0.3" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="492.94" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (72 samples, 0.01%)</title><rect x="82.7" y="1045" width="0.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="85.69" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy_aux<true>::__destroy<Kate::TextRange**> (31 samples, 0.00%)</title><rect x="4786.2" y="1069" width="0.2" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="4789.20" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (38 samples, 0.00%)</title><rect x="4274.0" y="301" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4277.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::~QSharedPointer (26 samples, 0.00%)</title><rect x="213.5" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="216.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (21 samples, 0.00%)</title><rect x="253.3" y="1045" width="0.2" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="256.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (139 samples, 0.02%)</title><rect x="157.5" y="1045" width="0.8" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="160.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (48 samples, 0.01%)</title><rect x="214.2" y="1045" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="217.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::ensureHighlighted (65 samples, 0.01%)</title><rect x="436.9" y="1045" width="0.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="439.92" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (818 samples, 0.11%)</title><rect x="2960.1" y="301" width="5.1" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="2963.12" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (48 samples, 0.01%)</title><rect x="195.3" y="1045" width="0.3" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="198.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCommonStyle::drawControl (35 samples, 0.00%)</title><rect x="630.7" y="949" width="0.2" height="23.0" fill="rgb(235,207,33)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (51 samples, 0.01%)</title><rect x="661.2" y="1069" width="0.3" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="664.19" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::registerTimer (82 samples, 0.01%)</title><rect x="649.4" y="1069" width="0.5" height="23.0" fill="rgb(245,157,44)" rx="2" ry="2" />
<text text-anchor="" x="652.43" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<KTextEditor::Range&>@plt (337 samples, 0.04%)</title><rect x="4673.7" y="349" width="2.1" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4676.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f620a7401 (17 samples, 0.00%)</title><rect x="667.2" y="517" width="0.1" height="23.0" fill="rgb(232,92,29)" rx="2" ry="2" />
<text text-anchor="" x="670.23" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (134 samples, 0.02%)</title><rect x="4021.9" y="277" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4024.89" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::const_iterator::operator!= (32 samples, 0.00%)</title><rect x="348.0" y="1045" width="0.2" height="23.0" fill="rgb(249,142,48)" rx="2" ry="2" />
<text text-anchor="" x="351.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (631 samples, 0.08%)</title><rect x="4169.0" y="277" width="4.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4172.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::blockForLine@plt (16 samples, 0.00%)</title><rect x="4160.6" y="301" width="0.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4163.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (19 samples, 0.00%)</title><rect x="540.2" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="543.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7374290e (18 samples, 0.00%)</title><rect x="112.7" y="1069" width="0.1" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="115.71" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (280 samples, 0.04%)</title><rect x="3573.3" y="277" width="1.8" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="3576.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (124 samples, 0.02%)</title><rect x="4695.3" y="301" width="0.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4698.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_construct (30 samples, 0.00%)</title><rect x="4262.8" y="349" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4265.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (157 samples, 0.02%)</title><rect x="1749.3" y="229" width="1.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1752.33" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFontPrivate::engineForScript (19 samples, 0.00%)</title><rect x="668.0" y="853" width="0.1" height="23.0" fill="rgb(236,192,34)" rx="2" ry="2" />
<text text-anchor="" x="671.02" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (124 samples, 0.02%)</title><rect x="800.9" y="277" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="803.89" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPen::operator= (42 samples, 0.01%)</title><rect x="697.4" y="493" width="0.2" height="23.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text text-anchor="" x="700.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (33 samples, 0.00%)</title><rect x="144.9" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="147.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedInsertText::KateModifiedInsertText (21 samples, 0.00%)</title><rect x="437.6" y="1045" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="440.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb220 (198 samples, 0.03%)</title><rect x="74.8" y="1045" width="1.2" height="23.0" fill="rgb(233,92,30)" rx="2" ry="2" />
<text text-anchor="" x="77.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::ensureHighlighted (1,096 samples, 0.14%)</title><rect x="2562.2" y="301" width="6.9" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2565.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (23 samples, 0.00%)</title><rect x="430.6" y="1045" width="0.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="433.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (41 samples, 0.01%)</title><rect x="528.1" y="1045" width="0.3" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="531.11" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KWrite::queryClose (80 samples, 0.01%)</title><rect x="742.5" y="517" width="0.5" height="23.0" fill="rgb(245,120,44)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (115 samples, 0.02%)</title><rect x="661.6" y="349" width="0.7" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="664.62" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (27 samples, 0.00%)</title><rect x="2389.9" y="229" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2392.93" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (293 samples, 0.04%)</title><rect x="4556.4" y="205" width="1.9" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4559.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::methodOffset (256 samples, 0.03%)</title><rect x="1126.7" y="277" width="1.6" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="1129.73" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (247 samples, 0.03%)</title><rect x="4205.6" y="229" width="1.6" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4208.61" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (17 samples, 0.00%)</title><rect x="538.3" y="1045" width="0.1" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="541.32" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (19 samples, 0.00%)</title><rect x="114.6" y="973" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (596 samples, 0.08%)</title><rect x="4675.9" y="373" width="3.7" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="4678.86" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (25 samples, 0.00%)</title><rect x="611.5" y="1069" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="614.55" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (212 samples, 0.03%)</title><rect x="184.6" y="1045" width="1.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="187.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (31 samples, 0.00%)</title><rect x="4682.9" y="397" width="0.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4685.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (192 samples, 0.03%)</title><rect x="382.3" y="1045" width="1.2" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="385.27" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (332 samples, 0.04%)</title><rect x="2590.7" y="229" width="2.1" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="2593.71" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (94 samples, 0.01%)</title><rect x="4045.7" y="325" width="0.6" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4048.67" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (16 samples, 0.00%)</title><rect x="480.0" y="1045" width="0.1" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="483.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_destruct (51 samples, 0.01%)</title><rect x="449.2" y="1045" width="0.3" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="452.21" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::setFlag (166 samples, 0.02%)</title><rect x="2384.9" y="277" width="1.1" height="23.0" fill="rgb(239,118,38)" rx="2" ry="2" />
<text text-anchor="" x="2387.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (36 samples, 0.00%)</title><rect x="312.6" y="1045" width="0.2" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="315.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement (9,068 samples, 1.19%)</title><rect x="4176.5" y="373" width="56.9" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="4179.49" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateRe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (30 samples, 0.00%)</title><rect x="361.4" y="1045" width="0.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="364.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (365 samples, 0.05%)</title><rect x="4277.0" y="301" width="2.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4279.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (20 samples, 0.00%)</title><rect x="316.0" y="1045" width="0.1" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="318.97" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (402 samples, 0.05%)</title><rect x="628.1" y="685" width="2.5" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="631.12" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::remove (24 samples, 0.00%)</title><rect x="4075.2" y="325" width="0.2" height="23.0" fill="rgb(242,175,41)" rx="2" ry="2" />
<text text-anchor="" x="4078.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (33 samples, 0.00%)</title><rect x="323.7" y="1045" width="0.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="326.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (269 samples, 0.04%)</title><rect x="4112.1" y="301" width="1.7" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4115.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730a656d (52 samples, 0.01%)</title><rect x="668.6" y="733" width="0.4" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="671.64" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::node_destruct (1,014 samples, 0.13%)</title><rect x="4524.6" y="277" width="6.4" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4527.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate@plt (86 samples, 0.01%)</title><rect x="1573.7" y="277" width="0.5" height="23.0" fill="rgb(231,205,29)" rx="2" ry="2" />
<text text-anchor="" x="1576.68" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::updateViewCache (17 samples, 0.00%)</title><rect x="690.7" y="685" width="0.1" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (390 samples, 0.05%)</title><rect x="3833.2" y="301" width="2.4" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="3836.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::isValid (17 samples, 0.00%)</title><rect x="602.0" y="1045" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__class_type_info::__do_dyncast (30 samples, 0.00%)</title><rect x="2406.3" y="205" width="0.2" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="2409.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (95 samples, 0.01%)</title><rect x="933.4" y="349" width="0.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="936.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (26 samples, 0.00%)</title><rect x="1789.1" y="181" width="0.2" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="1792.11" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (41 samples, 0.01%)</title><rect x="638.7" y="853" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::coordinatesToCursor (32 samples, 0.00%)</title><rect x="765.6" y="565" width="0.2" height="23.0" fill="rgb(242,118,40)" rx="2" ry="2" />
<text text-anchor="" x="768.59" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAction::activate (3,438 samples, 0.45%)</title><rect x="743.7" y="517" width="21.6" height="23.0" fill="rgb(245,161,45)" rx="2" ry="2" />
<text text-anchor="" x="746.73" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (69 samples, 0.01%)</title><rect x="1084.1" y="181" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="1087.15" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (239 samples, 0.03%)</title><rect x="653.2" y="1045" width="1.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="656.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateModifiedRemoveText::KateModifiedRemoveText (17 samples, 0.00%)</title><rect x="618.3" y="1069" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="621.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::nextNode (552 samples, 0.07%)</title><rect x="344.3" y="1045" width="3.5" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="347.31" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faee7 (27 samples, 0.00%)</title><rect x="2220.9" y="109" width="0.2" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="2223.94" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer<KateLineLayout>::~QExplicitlySharedDataPointer (178 samples, 0.02%)</title><rect x="3726.1" y="181" width="1.1" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3729.13" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (18 samples, 0.00%)</title><rect x="3991.2" y="325" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3994.18" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736d07a8 (19 samples, 0.00%)</title><rect x="652.9" y="613" width="0.2" height="23.0" fill="rgb(229,92,27)" rx="2" ry="2" />
<text text-anchor="" x="655.94" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (169 samples, 0.02%)</title><rect x="2591.7" y="205" width="1.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2594.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73725f87 (58 samples, 0.01%)</title><rect x="111.7" y="1069" width="0.4" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="114.73" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator--@plt (22 samples, 0.00%)</title><rect x="4435.8" y="229" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4438.85" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::toRange (2,451 samples, 0.32%)</title><rect x="960.4" y="421" width="15.4" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="963.40" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (264 samples, 0.03%)</title><rect x="3879.0" y="157" width="1.7" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3882.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (22 samples, 0.00%)</title><rect x="484.8" y="1045" width="0.1" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="487.80" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::first (2,301 samples, 0.30%)</title><rect x="1709.1" y="229" width="14.4" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="1712.06" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (55 samples, 0.01%)</title><rect x="3605.4" y="229" width="0.3" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="3608.35" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (28 samples, 0.00%)</title><rect x="585.7" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (866 samples, 0.11%)</title><rect x="4227.1" y="349" width="5.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4230.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImage::QImage (275 samples, 0.04%)</title><rect x="621.1" y="901" width="1.7" height="23.0" fill="rgb(248,183,47)" rx="2" ry="2" />
<text text-anchor="" x="624.09" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652bf0f (23 samples, 0.00%)</title><rect x="592.5" y="1069" width="0.1" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="595.48" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::begin (33 samples, 0.00%)</title><rect x="2053.3" y="277" width="0.2" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="2056.28" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (22 samples, 0.00%)</title><rect x="164.4" y="1045" width="0.1" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="167.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (28 samples, 0.00%)</title><rect x="258.3" y="1045" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="261.28" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[]@plt (33 samples, 0.00%)</title><rect x="4226.9" y="349" width="0.2" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4229.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (127 samples, 0.02%)</title><rect x="740.4" y="421" width="0.8" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="743.36" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (17 samples, 0.00%)</title><rect x="562.5" y="1045" width="0.1" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="565.47" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (38 samples, 0.00%)</title><rect x="627.8" y="997" width="0.3" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::~QVector (63 samples, 0.01%)</title><rect x="559.5" y="1045" width="0.4" height="23.0" fill="rgb(241,160,39)" rx="2" ry="2" />
<text text-anchor="" x="562.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::plainKateTextLine (3,751 samples, 0.49%)</title><rect x="2350.7" y="277" width="23.5" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="2353.70" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListSpecialMethods<QString>::~QListSpecialMethods (18 samples, 0.00%)</title><rect x="4204.4" y="277" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="4207.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (359 samples, 0.05%)</title><rect x="4009.3" y="325" width="2.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4012.33" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMessageWidget::showNextMessage (17 samples, 0.00%)</title><rect x="669.2" y="805" width="0.1" height="23.0" fill="rgb(248,118,47)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (41 samples, 0.01%)</title><rect x="638.7" y="829" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateConfig::configEnd (49 samples, 0.01%)</title><rect x="669.3" y="853" width="0.3" height="23.0" fill="rgb(248,118,48)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::paintTextLine (27 samples, 0.00%)</title><rect x="652.9" y="709" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="655.90" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (76 samples, 0.01%)</title><rect x="1779.4" y="157" width="0.5" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="1782.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::clear (39 samples, 0.01%)</title><rect x="764.6" y="397" width="0.3" height="23.0" fill="rgb(234,118,32)" rx="2" ry="2" />
<text text-anchor="" x="767.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::upper_bound<QPair<int, (2,065 samples, 0.27%)</title><rect x="2297.9" y="181" width="13.0" height="23.0" fill="rgb(240,146,38)" rx="2" ry="2" />
<text text-anchor="" x="2300.94" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::escapePlaintext (19 samples, 0.00%)</title><rect x="556.4" y="1045" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="559.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (687 samples, 0.09%)</title><rect x="3852.8" y="133" width="4.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3855.77" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::Node::t (29 samples, 0.00%)</title><rect x="260.3" y="1045" width="0.1" height="23.0" fill="rgb(234,142,32)" rx="2" ry="2" />
<text text-anchor="" x="263.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (18 samples, 0.00%)</title><rect x="2477.3" y="277" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2480.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b78f (26 samples, 0.00%)</title><rect x="585.2" y="1069" width="0.2" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="588.22" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tls_get_addr_slow (216 samples, 0.03%)</title><rect x="3702.0" y="85" width="1.3" height="23.0" fill="rgb(238,128,36)" rx="2" ry="2" />
<text text-anchor="" x="3704.98" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (1,908 samples, 0.25%)</title><rect x="860.7" y="277" width="12.0" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="863.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fafb7 (18 samples, 0.00%)</title><rect x="2222.1" y="109" width="0.1" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="2225.08" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::setupActions (16 samples, 0.00%)</title><rect x="667.7" y="925" width="0.1" height="23.0" fill="rgb(244,138,43)" rx="2" ry="2" />
<text text-anchor="" x="670.72" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73ac2670 (334 samples, 0.04%)</title><rect x="608.1" y="949" width="2.1" height="23.0" fill="rgb(236,92,35)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (100 samples, 0.01%)</title><rect x="2181.9" y="157" width="0.6" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="2184.89" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (52 samples, 0.01%)</title><rect x="4409.0" y="253" width="0.3" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="4412.02" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (170 samples, 0.02%)</title><rect x="4529.8" y="205" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4532.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (19 samples, 0.00%)</title><rect x="286.4" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="289.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (71 samples, 0.01%)</title><rect x="537.5" y="1045" width="0.5" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="540.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (40 samples, 0.01%)</title><rect x="942.4" y="229" width="0.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="945.44" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (818 samples, 0.11%)</title><rect x="4145.1" y="253" width="5.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4148.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::dealloc (1,688 samples, 0.22%)</title><rect x="4523.0" y="301" width="10.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="4525.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecef4 (24 samples, 0.00%)</title><rect x="448.8" y="1045" width="0.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="451.80" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (81 samples, 0.01%)</title><rect x="4643.5" y="277" width="0.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4646.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (178 samples, 0.02%)</title><rect x="3667.4" y="181" width="1.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3670.41" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageWidgetPrivate::updateSnapShot (28 samples, 0.00%)</title><rect x="701.1" y="565" width="0.1" height="23.0" fill="rgb(237,173,36)" rx="2" ry="2" />
<text text-anchor="" x="704.05" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecef0 (515 samples, 0.07%)</title><rect x="445.6" y="1045" width="3.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="448.57" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (181 samples, 0.02%)</title><rect x="4666.7" y="277" width="1.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4669.69" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::Entry::Entry (329 samples, 0.04%)</title><rect x="307.0" y="1045" width="2.0" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="309.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString@plt (16 samples, 0.00%)</title><rect x="4218.7" y="349" width="0.1" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4221.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::automaticCompletionInvocation (42 samples, 0.01%)</title><rect x="215.6" y="1045" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="218.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (413 samples, 0.05%)</title><rect x="3829.7" y="253" width="2.6" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3832.70" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (656 samples, 0.09%)</title><rect x="3239.3" y="277" width="4.1" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="3242.25" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (18 samples, 0.00%)</title><rect x="237.4" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="240.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (50 samples, 0.01%)</title><rect x="654.7" y="949" width="0.4" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="657.74" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (408 samples, 0.05%)</title><rect x="1716.6" y="181" width="2.5" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1719.57" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (71 samples, 0.01%)</title><rect x="655.7" y="997" width="0.5" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (224 samples, 0.03%)</title><rect x="4782.1" y="1069" width="1.4" height="23.0" fill="rgb(247,83,46)" rx="2" ry="2" />
<text text-anchor="" x="4785.07" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (188 samples, 0.02%)</title><rect x="566.9" y="1045" width="1.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="569.91" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplicationPrivate::sendPostedEvents (60 samples, 0.01%)</title><rect x="637.9" y="1069" width="0.3" height="23.0" fill="rgb(238,207,36)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (144 samples, 0.02%)</title><rect x="3834.7" y="253" width="0.9" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="3837.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::line (306 samples, 0.04%)</title><rect x="4094.5" y="349" width="1.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4097.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (266 samples, 0.03%)</title><rect x="112.9" y="1045" width="1.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::doHighlight@plt (59 samples, 0.01%)</title><rect x="1056.9" y="277" width="0.4" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1059.88" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc009 (19 samples, 0.00%)</title><rect x="3685.6" y="157" width="0.1" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="3688.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (75 samples, 0.01%)</title><rect x="3222.1" y="181" width="0.5" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="3225.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::doHighlight (385 samples, 0.05%)</title><rect x="2564.9" y="277" width="2.4" height="23.0" fill="rgb(234,118,32)" rx="2" ry="2" />
<text text-anchor="" x="2567.91" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (18 samples, 0.00%)</title><rect x="114.6" y="829" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function<bool (38 samples, 0.00%)</title><rect x="627.8" y="877" width="0.3" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="630.83" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (1,183 samples, 0.16%)</title><rect x="1801.7" y="253" width="7.4" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1804.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (26 samples, 0.00%)</title><rect x="62.9" y="1045" width="0.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="65.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateLayoutCache::updateViewCache (34 samples, 0.00%)</title><rect x="764.9" y="229" width="0.2" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::toRange (37 samples, 0.00%)</title><rect x="578.4" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="581.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fadc0 (124 samples, 0.02%)</title><rect x="2215.5" y="109" width="0.8" height="23.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text text-anchor="" x="2218.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::QList (214 samples, 0.03%)</title><rect x="3964.6" y="229" width="1.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3967.56" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::kateRange (456 samples, 0.06%)</title><rect x="1651.1" y="277" width="2.8" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1654.08" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (18 samples, 0.00%)</title><rect x="286.5" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="289.53" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecf27 (25 samples, 0.00%)</title><rect x="4501.6" y="325" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="4504.60" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (350 samples, 0.05%)</title><rect x="3676.8" y="109" width="2.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3679.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (52 samples, 0.01%)</title><rect x="350.0" y="1045" width="0.4" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="353.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (187 samples, 0.02%)</title><rect x="4105.9" y="325" width="1.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4108.86" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast (5,566 samples, 0.73%)</title><rect x="3904.3" y="229" width="34.9" height="23.0" fill="rgb(238,141,36)" rx="2" ry="2" />
<text text-anchor="" x="3907.32" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateView (25 samples, 0.00%)</title><rect x="690.7" y="733" width="0.2" height="23.0" fill="rgb(230,138,28)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (29 samples, 0.00%)</title><rect x="953.6" y="325" width="0.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="956.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (274 samples, 0.04%)</title><rect x="3348.6" y="253" width="1.7" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="3351.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (69 samples, 0.01%)</title><rect x="665.4" y="1069" width="0.4" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="668.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (821 samples, 0.11%)</title><rect x="2469.0" y="325" width="5.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2472.00" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b6ef (20 samples, 0.00%)</title><rect x="584.6" y="1069" width="0.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="587.56" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (1,174 samples, 0.15%)</title><rect x="4369.0" y="253" width="7.3" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4371.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (308 samples, 0.04%)</title><rect x="4185.1" y="205" width="1.9" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4188.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (651 samples, 0.09%)</title><rect x="4437.5" y="301" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4440.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCommonStyle::drawControl (22 samples, 0.00%)</title><rect x="653.1" y="709" width="0.1" height="23.0" fill="rgb(235,207,33)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isEmpty (33 samples, 0.00%)</title><rect x="2053.5" y="277" width="0.2" height="23.0" fill="rgb(243,160,42)" rx="2" ry="2" />
<text text-anchor="" x="2056.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KXmlGuiWindow::event (59 samples, 0.01%)</title><rect x="637.9" y="973" width="0.3" height="23.0" fill="rgb(241,186,39)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (324 samples, 0.04%)</title><rect x="608.2" y="757" width="2.0" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="611.16" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::firstNode (473 samples, 0.06%)</title><rect x="274.0" y="1045" width="2.9" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="276.96" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (22 samples, 0.00%)</title><rect x="653.1" y="901" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::insert (38 samples, 0.00%)</title><rect x="384.7" y="1045" width="0.3" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="387.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (88 samples, 0.01%)</title><rect x="262.8" y="1045" width="0.5" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="265.78" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652bf3f (31 samples, 0.00%)</title><rect x="592.6" y="1069" width="0.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="595.63" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (167 samples, 0.02%)</title><rect x="2381.8" y="205" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2384.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b16f (170 samples, 0.02%)</title><rect x="286.6" y="1069" width="1.1" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="289.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow (575 samples, 0.08%)</title><rect x="4249.0" y="301" width="3.6" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="4252.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (540 samples, 0.07%)</title><rect x="758.6" y="277" width="3.3" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="761.56" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fcc21 (22 samples, 0.00%)</title><rect x="742.5" y="205" width="0.2" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::cursorToX (26 samples, 0.00%)</title><rect x="637.7" y="541" width="0.2" height="23.0" fill="rgb(239,170,38)" rx="2" ry="2" />
<text text-anchor="" x="640.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::editingLastRevision (71 samples, 0.01%)</title><rect x="2558.6" y="253" width="0.4" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2561.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (188 samples, 0.02%)</title><rect x="4627.4" y="325" width="1.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4630.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::tabWidth (16 samples, 0.00%)</title><rect x="4035.1" y="373" width="0.1" height="23.0" fill="rgb(238,118,37)" rx="2" ry="2" />
<text text-anchor="" x="4038.07" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObject::activate (640,346 samples, 84.00%)</title><rect x="766.0" y="517" width="4015.0" height="23.0" fill="rgb(245,205,45)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaObject::activate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (25 samples, 0.00%)</title><rect x="529.1" y="1045" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="532.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f7498516f (46 samples, 0.01%)</title><rect x="691.3" y="853" width="0.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="694.26" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::size (161 samples, 0.02%)</title><rect x="998.4" y="373" width="1.0" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1001.37" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (89 samples, 0.01%)</title><rect x="1698.6" y="253" width="0.5" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1701.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (546 samples, 0.07%)</title><rect x="3384.8" y="277" width="3.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3387.80" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QSlotObject<void (24 samples, 0.00%)</title><rect x="74.0" y="1045" width="0.2" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="77.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::~ReplacementStream (21 samples, 0.00%)</title><rect x="601.2" y="1045" width="0.1" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="604.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (19 samples, 0.00%)</title><rect x="195.0" y="1045" width="0.2" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="198.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward<QSet<Kate::TextCursor*>&> (46 samples, 0.01%)</title><rect x="3423.2" y="253" width="0.3" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="3426.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_free (55 samples, 0.01%)</title><rect x="2088.5" y="157" width="0.4" height="23.0" fill="rgb(246,119,46)" rx="2" ry="2" />
<text text-anchor="" x="2091.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Vector_base<Kate::TextRange*, (20 samples, 0.00%)</title><rect x="467.1" y="1045" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="470.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (28 samples, 0.00%)</title><rect x="285.8" y="1045" width="0.1" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="288.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite (260 samples, 0.03%)</title><rect x="2552.8" y="325" width="1.6" height="23.0" fill="rgb(240,171,38)" rx="2" ry="2" />
<text text-anchor="" x="2555.78" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (47 samples, 0.01%)</title><rect x="1031.2" y="349" width="0.3" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="1034.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (27 samples, 0.00%)</title><rect x="204.2" y="1045" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="207.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (159 samples, 0.02%)</title><rect x="49.5" y="1045" width="1.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="52.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::~ReplacementStream (1,891 samples, 0.25%)</title><rect x="4196.4" y="349" width="11.8" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4199.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (31 samples, 0.00%)</title><rect x="740.2" y="349" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (1,751 samples, 0.23%)</title><rect x="3351.9" y="229" width="11.0" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="3354.94" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLine::layout_helper (34 samples, 0.00%)</title><rect x="764.9" y="133" width="0.2" height="23.0" fill="rgb(243,170,41)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3e7 (28 samples, 0.00%)</title><rect x="495.6" y="1069" width="0.2" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="498.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (260 samples, 0.03%)</title><rect x="699.3" y="757" width="1.7" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="702.34" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::remove (17 samples, 0.00%)</title><rect x="646.4" y="1069" width="0.1" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="649.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (47 samples, 0.01%)</title><rect x="3149.7" y="205" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3152.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (213 samples, 0.03%)</title><rect x="740.0" y="493" width="1.4" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="743.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (17 samples, 0.00%)</title><rect x="287.8" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="290.81" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::insertText (16 samples, 0.00%)</title><rect x="615.4" y="1069" width="0.1" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="618.44" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qSwap<QTypedArrayData<unsigned (403 samples, 0.05%)</title><rect x="3670.1" y="157" width="2.5" height="23.0" fill="rgb(251,140,51)" rx="2" ry="2" />
<text text-anchor="" x="3673.08" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (45 samples, 0.01%)</title><rect x="379.6" y="1045" width="0.3" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="382.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::view@plt (306 samples, 0.04%)</title><rect x="2186.8" y="205" width="1.9" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2189.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (54 samples, 0.01%)</title><rect x="637.9" y="637" width="0.3" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="640.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (48 samples, 0.01%)</title><rect x="763.8" y="325" width="0.3" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="766.76" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::replaceText (82 samples, 0.01%)</title><rect x="565.5" y="1045" width="0.5" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="568.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::line (40 samples, 0.01%)</title><rect x="693.0" y="589" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="695.98" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::empty (399 samples, 0.05%)</title><rect x="1706.6" y="229" width="2.5" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1709.56" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (20 samples, 0.00%)</title><rect x="4176.3" y="253" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4179.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (88 samples, 0.01%)</title><rect x="2507.4" y="325" width="0.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="2510.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b43f (1,613 samples, 0.21%)</title><rect x="527.4" y="1069" width="10.1" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="530.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::insertText@plt (119 samples, 0.02%)</title><rect x="1724.6" y="277" width="0.8" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1727.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingCursor::isValid (599 samples, 0.08%)</title><rect x="4082.8" y="349" width="3.8" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4085.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (743 samples, 0.10%)</title><rect x="1784.3" y="157" width="4.6" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="1787.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (134 samples, 0.02%)</title><rect x="2367.6" y="181" width="0.9" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="2370.64" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x400b652b4bf (61 samples, 0.01%)</title><rect x="37.2" y="1069" width="0.4" height="23.0" fill="rgb(237,102,36)" rx="2" ry="2" />
<text text-anchor="" x="40.22" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (203 samples, 0.03%)</title><rect x="3386.9" y="205" width="1.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3389.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (705 samples, 0.09%)</title><rect x="2469.7" y="301" width="4.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2472.73" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (217 samples, 0.03%)</title><rect x="3616.5" y="205" width="1.4" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="3619.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b44f (260 samples, 0.03%)</title><rect x="537.5" y="1069" width="1.7" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="540.53" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b35f (615 samples, 0.08%)</title><rect x="470.4" y="1069" width="3.9" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="473.40" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::load (3,358 samples, 0.44%)</title><rect x="669.6" y="853" width="21.1" height="23.0" fill="rgb(243,118,41)" rx="2" ry="2" />
<text text-anchor="" x="672.65" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (3,806 samples, 0.50%)</title><rect x="4315.6" y="397" width="23.9" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4318.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (502 samples, 0.07%)</title><rect x="2130.2" y="109" width="3.2" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="2133.21" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b45f (225 samples, 0.03%)</title><rect x="539.5" y="1069" width="1.4" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="542.50" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (590 samples, 0.08%)</title><rect x="4204.5" y="277" width="3.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4207.46" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (23 samples, 0.00%)</title><rect x="104.3" y="1045" width="0.1" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="107.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (81 samples, 0.01%)</title><rect x="742.5" y="853" width="0.5" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="745.47" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::qMakeForeachContainer<QSet<Kate::TextCursor*>&> (19 samples, 0.00%)</title><rect x="656.7" y="1069" width="0.1" height="23.0" fill="rgb(244,166,43)" rx="2" ry="2" />
<text text-anchor="" x="659.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (59 samples, 0.01%)</title><rect x="637.9" y="757" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateVi::InputModeManager::getCurrentViMode (76 samples, 0.01%)</title><rect x="248.5" y="1045" width="0.5" height="23.0" fill="rgb(250,118,49)" rx="2" ry="2" />
<text text-anchor="" x="251.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (16 samples, 0.00%)</title><rect x="28.9" y="1045" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="31.86" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (25 samples, 0.00%)</title><rect x="459.2" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="462.18" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (357 samples, 0.05%)</title><rect x="4756.1" y="373" width="2.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4759.15" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::~QList (49 samples, 0.01%)</title><rect x="408.6" y="1045" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="411.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d23ee4f (18 samples, 0.00%)</title><rect x="53.0" y="1069" width="0.1" height="23.0" fill="rgb(239,99,37)" rx="2" ry="2" />
<text text-anchor="" x="56.02" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (57 samples, 0.01%)</title><rect x="942.3" y="253" width="0.4" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="945.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (86 samples, 0.01%)</title><rect x="974.7" y="301" width="0.6" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="977.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (17 samples, 0.00%)</title><rect x="204.0" y="1045" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="207.00" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (3,377 samples, 0.44%)</title><rect x="3402.0" y="253" width="21.1" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="3404.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::EditorPrivate::self (149 samples, 0.02%)</title><rect x="668.2" y="949" width="0.9" height="23.0" fill="rgb(238,138,36)" rx="2" ry="2" />
<text text-anchor="" x="671.17" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator-> (126 samples, 0.02%)</title><rect x="3884.0" y="277" width="0.8" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="3887.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateMatch::range (57 samples, 0.01%)</title><rect x="569.8" y="1045" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="572.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (116 samples, 0.02%)</title><rect x="661.6" y="373" width="0.7" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="664.61" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::remove (20 samples, 0.00%)</title><rect x="90.2" y="1045" width="0.1" height="23.0" fill="rgb(242,142,41)" rx="2" ry="2" />
<text text-anchor="" x="93.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (36 samples, 0.00%)</title><rect x="4610.0" y="349" width="0.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4613.04" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::data (74 samples, 0.01%)</title><rect x="2461.5" y="301" width="0.5" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="2464.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (400 samples, 0.05%)</title><rect x="4518.7" y="301" width="2.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4521.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (301 samples, 0.04%)</title><rect x="4598.8" y="301" width="1.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4601.77" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::write (2,203 samples, 0.29%)</title><rect x="2107.4" y="181" width="13.8" height="23.0" fill="rgb(240,164,38)" rx="2" ry="2" />
<text text-anchor="" x="2110.35" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::escapePlaintext@plt (46 samples, 0.01%)</title><rect x="4615.4" y="373" width="0.3" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4618.42" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (65 samples, 0.01%)</title><rect x="1046.0" y="325" width="0.5" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="1049.05" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPair<int, (17 samples, 0.00%)</title><rect x="227.7" y="1045" width="0.1" height="23.0" fill="rgb(240,203,38)" rx="2" ry="2" />
<text text-anchor="" x="230.72" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (223 samples, 0.03%)</title><rect x="4678.2" y="301" width="1.4" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4681.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::text (43 samples, 0.01%)</title><rect x="3837.2" y="325" width="0.3" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="3840.23" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (109 samples, 0.01%)</title><rect x="3139.8" y="253" width="0.7" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="3142.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (19 samples, 0.00%)</title><rect x="4145.9" y="229" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4148.88" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (24 samples, 0.00%)</title><rect x="4530.7" y="157" width="0.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4533.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::unregisterTimer (118 samples, 0.02%)</title><rect x="3692.4" y="157" width="0.7" height="23.0" fill="rgb(245,174,44)" rx="2" ry="2" />
<text text-anchor="" x="3695.38" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAction::activate (20 samples, 0.00%)</title><rect x="743.1" y="685" width="0.1" height="23.0" fill="rgb(245,161,45)" rx="2" ry="2" />
<text text-anchor="" x="746.11" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::putChar (223 samples, 0.03%)</title><rect x="220.4" y="1045" width="1.4" height="23.0" fill="rgb(232,164,30)" rx="2" ry="2" />
<text text-anchor="" x="223.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shapeLine (18 samples, 0.00%)</title><rect x="654.6" y="757" width="0.1" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="657.60" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f64013187 (19 samples, 0.00%)</title><rect x="107.0" y="1069" width="0.1" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="109.99" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndo*>::detach (350 samples, 0.05%)</title><rect x="2426.4" y="205" width="2.2" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="2429.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::setRange (163 samples, 0.02%)</title><rect x="577.4" y="1045" width="1.0" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="580.38" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::_Destroy<Kate::TextRange**, (42 samples, 0.01%)</title><rect x="3428.0" y="277" width="0.2" height="23.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text text-anchor="" x="3430.95" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::isEmpty (531 samples, 0.07%)</title><rect x="3344.4" y="253" width="3.4" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="3347.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (28 samples, 0.00%)</title><rect x="740.2" y="229" width="0.1" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::str (913 samples, 0.12%)</title><rect x="4190.7" y="349" width="5.7" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="4193.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditInsertTextUndo::mergeWith (6,193 samples, 0.81%)</title><rect x="3901.8" y="253" width="38.9" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="3904.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (319 samples, 0.04%)</title><rect x="4174.4" y="325" width="2.0" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4177.44" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::writeData (59 samples, 0.01%)</title><rect x="201.9" y="1045" width="0.3" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="204.88" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (67 samples, 0.01%)</title><rect x="3362.5" y="205" width="0.4" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="3365.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736fb428 (28 samples, 0.00%)</title><rect x="648.0" y="949" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="651.05" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (78 samples, 0.01%)</title><rect x="1078.3" y="229" width="0.5" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1081.26" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateEditRemoveTextUndo::KateEditRemoveTextUndo (71 samples, 0.01%)</title><rect x="412.3" y="1045" width="0.4" height="23.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text text-anchor="" x="415.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (24 samples, 0.00%)</title><rect x="742.7" y="109" width="0.1" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="745.68" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (40 samples, 0.01%)</title><rect x="457.4" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="460.36" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___clone (37 samples, 0.00%)</title><rect x="4789.8" y="1069" width="0.2" height="23.0" fill="rgb(251,119,50)" rx="2" ry="2" />
<text text-anchor="" x="4792.76" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (913 samples, 0.12%)</title><rect x="803.1" y="253" width="5.7" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="806.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<KTextEditor::MovingCursor> (54 samples, 0.01%)</title><rect x="49.0" y="1045" width="0.4" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="52.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (2,768 samples, 0.36%)</title><rect x="4263.0" y="373" width="17.4" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4266.00" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::operator[] (249 samples, 0.03%)</title><rect x="3864.2" y="181" width="1.5" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="3867.16" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (267 samples, 0.04%)</title><rect x="4705.0" y="277" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4708.05" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7ea (31 samples, 0.00%)</title><rect x="286.6" y="1045" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="289.64" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateSearchBar::searchPattern (4,192 samples, 0.55%)</title><rect x="4724.0" y="421" width="26.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4727.01" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (30 samples, 0.00%)</title><rect x="740.2" y="301" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (17 samples, 0.00%)</title><rect x="4672.5" y="349" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4675.46" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (108 samples, 0.01%)</title><rect x="2355.0" y="181" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2358.03" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::operator& (62 samples, 0.01%)</title><rect x="3160.6" y="85" width="0.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3163.56" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73104055 (380 samples, 0.05%)</title><rect x="2153.2" y="157" width="2.4" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="2156.24" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (103 samples, 0.01%)</title><rect x="2504.1" y="349" width="0.6" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="2507.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::QSharedPointer (40 samples, 0.01%)</title><rect x="384.5" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="387.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::parent (155 samples, 0.02%)</title><rect x="221.8" y="1045" width="0.9" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="224.76" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::indexOf@plt (76 samples, 0.01%)</title><rect x="4470.3" y="349" width="0.5" height="23.0" fill="rgb(231,166,29)" rx="2" ry="2" />
<text text-anchor="" x="4473.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qt_defaultDpiX (30 samples, 0.00%)</title><rect x="622.4" y="829" width="0.1" height="23.0" fill="rgb(231,140,29)" rx="2" ry="2" />
<text text-anchor="" x="625.36" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (538 samples, 0.07%)</title><rect x="3887.1" y="181" width="3.4" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="3890.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (177 samples, 0.02%)</title><rect x="1558.0" y="229" width="1.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1561.02" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::calculateTabWidth (86 samples, 0.01%)</title><rect x="629.9" y="517" width="0.5" height="23.0" fill="rgb(238,170,37)" rx="2" ry="2" />
<text text-anchor="" x="632.88" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::toRange (61 samples, 0.01%)</title><rect x="552.5" y="1045" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="555.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::allocator<Kate::TextRange*>::allocator (19 samples, 0.00%)</title><rect x="286.1" y="1045" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="289.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d95dd1f (36 samples, 0.00%)</title><rect x="82.0" y="1069" width="0.3" height="23.0" fill="rgb(243,99,42)" rx="2" ry="2" />
<text text-anchor="" x="85.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (50 samples, 0.01%)</title><rect x="470.4" y="1045" width="0.3" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="473.40" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b1df (1,116 samples, 0.15%)</title><rect x="316.4" y="1069" width="7.0" height="23.0" fill="rgb(249,92,49)" rx="2" ry="2" />
<text text-anchor="" x="319.41" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (20 samples, 0.00%)</title><rect x="329.1" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="332.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f736d07c2 (23 samples, 0.00%)</title><rect x="113.6" y="685" width="0.2" height="23.0" fill="rgb(250,92,49)" rx="2" ry="2" />
<text text-anchor="" x="116.62" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::function<bool (46 samples, 0.01%)</title><rect x="655.7" y="829" width="0.3" height="23.0" fill="rgb(237,146,36)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (77 samples, 0.01%)</title><rect x="698.4" y="589" width="0.5" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="701.43" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (639 samples, 0.08%)</title><rect x="3886.7" y="205" width="4.0" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="3889.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afef (646 samples, 0.08%)</title><rect x="164.2" y="1069" width="4.1" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="167.24" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::shape (135 samples, 0.02%)</title><rect x="612.3" y="589" width="0.9" height="23.0" fill="rgb(250,170,49)" rx="2" ry="2" />
<text text-anchor="" x="615.31" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (39 samples, 0.01%)</title><rect x="653.2" y="925" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="656.24" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (517 samples, 0.07%)</title><rect x="2180.5" y="181" width="3.2" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="2183.45" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (39 samples, 0.01%)</title><rect x="176.5" y="1045" width="0.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="179.52" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (104 samples, 0.01%)</title><rect x="110.5" y="1021" width="0.6" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="113.48" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (186 samples, 0.02%)</title><rect x="4641.3" y="325" width="1.2" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4644.30" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (67 samples, 0.01%)</title><rect x="256.4" y="1045" width="0.5" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="259.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faeb8 (38 samples, 0.00%)</title><rect x="2217.4" y="109" width="0.3" height="23.0" fill="rgb(230,92,27)" rx="2" ry="2" />
<text text-anchor="" x="2220.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (28 samples, 0.00%)</title><rect x="646.1" y="1069" width="0.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="649.09" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (326 samples, 0.04%)</title><rect x="3878.8" y="205" width="2.1" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="3881.81" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<KateUndoGroup*>::swap (23 samples, 0.00%)</title><rect x="356.8" y="1045" width="0.2" height="23.0" fill="rgb(233,142,31)" rx="2" ry="2" />
<text text-anchor="" x="359.85" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b21f (455 samples, 0.06%)</title><rect x="332.8" y="1069" width="2.8" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="335.76" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652afaf (673 samples, 0.09%)</title><rect x="143.3" y="1069" width="4.2" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="146.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (22 samples, 0.00%)</title><rect x="654.8" y="829" width="0.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="657.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::create (252 samples, 0.03%)</title><rect x="666.1" y="877" width="1.6" height="23.0" fill="rgb(245,142,45)" rx="2" ry="2" />
<text text-anchor="" x="669.09" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (432 samples, 0.06%)</title><rect x="4497.6" y="253" width="2.7" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4500.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::~QByteArray (16 samples, 0.00%)</title><rect x="235.4" y="1045" width="0.1" height="23.0" fill="rgb(239,218,37)" rx="2" ry="2" />
<text text-anchor="" x="238.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (584 samples, 0.08%)</title><rect x="611.8" y="1021" width="3.6" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (743 samples, 0.10%)</title><rect x="804.0" y="205" width="4.7" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="807.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (80 samples, 0.01%)</title><rect x="1752.5" y="181" width="0.5" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="1755.46" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (33 samples, 0.00%)</title><rect x="524.1" y="1045" width="0.2" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="527.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qt_defaultDpiY (26 samples, 0.00%)</title><rect x="609.9" y="565" width="0.2" height="23.0" fill="rgb(229,140,27)" rx="2" ry="2" />
<text text-anchor="" x="612.91" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (791 samples, 0.10%)</title><rect x="2390.1" y="229" width="5.0" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="2393.10" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::end (71 samples, 0.01%)</title><rect x="535.1" y="1045" width="0.4" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="538.07" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (684 samples, 0.09%)</title><rect x="2510.1" y="325" width="4.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2513.07" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextRemoved (24,344 samples, 3.19%)</title><rect x="3838.0" y="325" width="152.7" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="3841.02" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateUndoManager::sl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::column (36 samples, 0.00%)</title><rect x="4107.1" y="325" width="0.2" height="23.0" fill="rgb(237,118,36)" rx="2" ry="2" />
<text text-anchor="" x="4110.06" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b15f (322 samples, 0.04%)</title><rect x="284.6" y="1069" width="2.0" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="287.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::slotTextRemoved@plt (78 samples, 0.01%)</title><rect x="3990.7" y="325" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3993.66" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFlags<KTextEditor::SearchOption>::testFlag (35 samples, 0.00%)</title><rect x="570.3" y="1045" width="0.2" height="23.0" fill="rgb(239,201,38)" rx="2" ry="2" />
<text text-anchor="" x="573.26" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (284 samples, 0.04%)</title><rect x="4574.6" y="205" width="1.8" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="4577.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (238 samples, 0.03%)</title><rect x="3947.7" y="205" width="1.5" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="3950.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (370 samples, 0.05%)</title><rect x="919.1" y="349" width="2.3" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="922.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DefinitionData::loadMetaData (27 samples, 0.00%)</title><rect x="668.2" y="805" width="0.2" height="23.0" fill="rgb(235,156,33)" rx="2" ry="2" />
<text text-anchor="" x="671.22" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730facf0 (34 samples, 0.00%)</title><rect x="98.7" y="1045" width="0.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="101.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::config (275 samples, 0.04%)</title><rect x="1032.2" y="349" width="1.7" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="1035.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCharRef::QCharRef (17 samples, 0.00%)</title><rect x="698.8" y="565" width="0.1" height="23.0" fill="rgb(242,191,41)" rx="2" ry="2" />
<text text-anchor="" x="701.80" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::string (952 samples, 0.12%)</title><rect x="4133.3" y="349" width="6.0" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4136.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::move<KTextEditor::Range&> (19 samples, 0.00%)</title><rect x="537.4" y="1045" width="0.1" height="23.0" fill="rgb(242,146,41)" rx="2" ry="2" />
<text text-anchor="" x="540.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator* (2,258 samples, 0.30%)</title><rect x="3256.8" y="277" width="14.2" height="23.0" fill="rgb(245,175,44)" rx="2" ry="2" />
<text text-anchor="" x="3259.83" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b4af (238 samples, 0.03%)</title><rect x="551.9" y="1069" width="1.5" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="554.88" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (656 samples, 0.09%)</title><rect x="4310.3" y="373" width="4.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4313.28" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (41 samples, 0.01%)</title><rect x="638.7" y="1021" width="0.2" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (59 samples, 0.01%)</title><rect x="2129.8" y="109" width="0.4" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="2132.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXcbEventReader (264 samples, 0.03%)</title><rect x="10.1" y="1093" width="1.7" height="23.0" fill="rgb(243,212,41)" rx="2" ry="2" />
<text text-anchor="" x="13.13" y="1107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<KTextEditor::Cursor> (294 samples, 0.04%)</title><rect x="956.6" y="325" width="1.9" height="23.0" fill="rgb(245,177,44)" rx="2" ry="2" />
<text text-anchor="" x="959.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (21,598 samples, 2.83%)</title><rect x="3428.7" y="277" width="135.4" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="3431.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::vector<Kate:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isNull (20 samples, 0.00%)</title><rect x="2188.9" y="181" width="0.1" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="2191.87" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (227 samples, 0.03%)</title><rect x="3164.7" y="181" width="1.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3167.66" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (16 samples, 0.00%)</title><rect x="475.6" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="478.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::~QSet (59 samples, 0.01%)</title><rect x="3347.8" y="277" width="0.4" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="3350.82" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QLayout::activate (17 samples, 0.00%)</title><rect x="669.2" y="757" width="0.1" height="23.0" fill="rgb(245,168,45)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::~QStringList (2,669 samples, 0.35%)</title><rect x="4521.2" y="349" width="16.7" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4524.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QSharedPointer<Kate::TextLineData> (40 samples, 0.01%)</title><rect x="938.9" y="301" width="0.2" height="23.0" fill="rgb(236,160,34)" rx="2" ry="2" />
<text text-anchor="" x="941.89" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editInsertText (34 samples, 0.00%)</title><rect x="1017.1" y="373" width="0.2" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="1020.12" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (19 samples, 0.00%)</title><rect x="927.5" y="373" width="0.1" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="930.52" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (391 samples, 0.05%)</title><rect x="4706.9" y="325" width="2.4" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="4709.89" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::column (57 samples, 0.01%)</title><rect x="497.2" y="1045" width="0.3" height="23.0" fill="rgb(237,138,36)" rx="2" ry="2" />
<text text-anchor="" x="500.19" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::QStringList (235 samples, 0.03%)</title><rect x="4239.7" y="373" width="1.5" height="23.0" fill="rgb(232,166,30)" rx="2" ry="2" />
<text text-anchor="" x="4242.73" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::deref (25 samples, 0.00%)</title><rect x="81.2" y="1045" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="84.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (334 samples, 0.04%)</title><rect x="608.1" y="901" width="2.1" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="611.11" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::plainLine (46 samples, 0.01%)</title><rect x="437.3" y="1045" width="0.3" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="440.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af5f (219 samples, 0.03%)</title><rect x="125.0" y="1069" width="1.3" height="23.0" fill="rgb(237,92,35)" rx="2" ry="2" />
<text text-anchor="" x="127.97" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (17 samples, 0.00%)</title><rect x="473.6" y="1045" width="0.1" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="476.56" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::aboutToRemoveText (1,926 samples, 0.25%)</title><rect x="2526.3" y="349" width="12.1" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="2529.30" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::deref (42 samples, 0.01%)</title><rect x="877.5" y="349" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="880.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (254 samples, 0.03%)</title><rect x="4458.4" y="349" width="1.6" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4461.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (417 samples, 0.05%)</title><rect x="4665.2" y="325" width="2.6" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4668.21" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (16 samples, 0.00%)</title><rect x="4579.4" y="253" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4582.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QScopedPointer<QObjectData, (26 samples, 0.00%)</title><rect x="2244.1" y="229" width="0.2" height="23.0" fill="rgb(232,182,30)" rx="2" ry="2" />
<text text-anchor="" x="2247.12" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (92 samples, 0.01%)</title><rect x="4052.9" y="397" width="0.6" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4055.94" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::isOpen@plt (87 samples, 0.01%)</title><rect x="3662.2" y="205" width="0.5" height="23.0" fill="rgb(231,164,29)" rx="2" ry="2" />
<text text-anchor="" x="3665.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::killTimer (25 samples, 0.00%)</title><rect x="79.7" y="1045" width="0.1" height="23.0" fill="rgb(245,205,44)" rx="2" ry="2" />
<text text-anchor="" x="82.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventLoop::exec (43 samples, 0.01%)</title><rect x="638.7" y="1069" width="0.3" height="23.0" fill="rgb(237,174,35)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (138 samples, 0.02%)</title><rect x="4061.0" y="349" width="0.8" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4063.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++ (491 samples, 0.06%)</title><rect x="1065.7" y="133" width="3.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="1068.71" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72efb222 (27 samples, 0.00%)</title><rect x="76.0" y="1045" width="0.2" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="79.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::~ReplacementStream (43 samples, 0.01%)</title><rect x="4542.0" y="349" width="0.3" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4544.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::const_iterator::operator++ (285 samples, 0.04%)</title><rect x="2338.0" y="301" width="1.8" height="23.0" fill="rgb(234,175,32)" rx="2" ry="2" />
<text text-anchor="" x="2341.04" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::doc (93 samples, 0.01%)</title><rect x="978.6" y="421" width="0.6" height="23.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text text-anchor="" x="981.61" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (100 samples, 0.01%)</title><rect x="812.3" y="301" width="0.6" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="815.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator++@plt (24 samples, 0.00%)</title><rect x="4149.9" y="181" width="0.2" height="23.0" fill="rgb(231,146,29)" rx="2" ry="2" />
<text text-anchor="" x="4152.95" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::~QSharedPointer (25 samples, 0.00%)</title><rect x="125.5" y="1045" width="0.1" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="128.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (373 samples, 0.05%)</title><rect x="1706.7" y="205" width="2.4" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1709.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (16 samples, 0.00%)</title><rect x="327.8" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="330.79" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (118 samples, 0.02%)</title><rect x="661.6" y="757" width="0.7" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::~QString (52 samples, 0.01%)</title><rect x="510.0" y="1045" width="0.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="513.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (79 samples, 0.01%)</title><rect x="491.1" y="1045" width="0.5" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="494.10" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (612 samples, 0.08%)</title><rect x="4269.9" y="253" width="3.9" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4272.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::data (17 samples, 0.00%)</title><rect x="4304.8" y="349" width="0.1" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4307.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadWritePart::isReadWrite@plt (219 samples, 0.03%)</title><rect x="1029.9" y="349" width="1.3" height="23.0" fill="rgb(231,171,29)" rx="2" ry="2" />
<text text-anchor="" x="1032.88" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (295 samples, 0.04%)</title><rect x="4260.9" y="325" width="1.8" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4263.86" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::layoutLine (33 samples, 0.00%)</title><rect x="765.1" y="157" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="768.08" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (176 samples, 0.02%)</title><rect x="4240.1" y="349" width="1.1" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4243.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (110 samples, 0.01%)</title><rect x="4076.1" y="325" width="0.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4079.15" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewInternal::updateView (17 samples, 0.00%)</title><rect x="669.3" y="733" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QImageData::QImageData (136 samples, 0.02%)</title><rect x="621.8" y="853" width="0.8" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="624.79" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<KTextEditor::Range, (182 samples, 0.02%)</title><rect x="574.5" y="1045" width="1.1" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="577.46" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (16 samples, 0.00%)</title><rect x="1553.6" y="301" width="0.1" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="1556.56" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplication::notify (40 samples, 0.01%)</title><rect x="638.7" y="469" width="0.2" height="23.0" fill="rgb(243,158,42)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::metaObject (63 samples, 0.01%)</title><rect x="2160.2" y="253" width="0.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="2163.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (567 samples, 0.07%)</title><rect x="4417.6" y="181" width="3.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4420.56" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (25 samples, 0.00%)</title><rect x="4168.1" y="301" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4171.08" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (643,989 samples, 84.47%)</title><rect x="743.3" y="805" width="4037.8" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="746.25" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QApplicationPrivate::notify_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::MovingRange::setRange@plt (191 samples, 0.03%)</title><rect x="959.2" y="421" width="1.2" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="962.21" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b377 (137 samples, 0.02%)</title><rect x="475.6" y="1069" width="0.9" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="478.60" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x63 (164 samples, 0.02%)</title><rect x="98.0" y="1069" width="1.0" height="23.0" fill="rgb(242,96,41)" rx="2" ry="2" />
<text text-anchor="" x="101.01" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (22 samples, 0.00%)</title><rect x="742.5" y="157" width="0.2" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b66f (30 samples, 0.00%)</title><rect x="584.0" y="1069" width="0.2" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="586.99" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (18 samples, 0.00%)</title><rect x="1779.9" y="205" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1782.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (33 samples, 0.00%)</title><rect x="348.9" y="1045" width="0.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="351.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSet<Kate::TextCursor*>::empty (438 samples, 0.06%)</title><rect x="1895.0" y="277" width="2.8" height="23.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text text-anchor="" x="1898.04" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QComboBox::event (46 samples, 0.01%)</title><rect x="655.7" y="925" width="0.3" height="23.0" fill="rgb(241,207,39)" rx="2" ry="2" />
<text text-anchor="" x="658.75" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (35 samples, 0.00%)</title><rect x="630.7" y="1021" width="0.2" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="633.71" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (109 samples, 0.01%)</title><rect x="1648.2" y="277" width="0.7" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="1651.19" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (267 samples, 0.04%)</title><rect x="4200.1" y="229" width="1.7" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4203.08" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::setFlag (28 samples, 0.00%)</title><rect x="412.8" y="1045" width="0.1" height="23.0" fill="rgb(239,118,38)" rx="2" ry="2" />
<text text-anchor="" x="415.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<unsigned (253 samples, 0.03%)</title><rect x="4268.4" y="253" width="1.5" height="23.0" fill="rgb(251,183,51)" rx="2" ry="2" />
<text text-anchor="" x="4271.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb658ca37 (397 samples, 0.05%)</title><rect x="593.5" y="1069" width="2.5" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="596.52" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (603 samples, 0.08%)</title><rect x="4146.3" y="205" width="3.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4149.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (16 samples, 0.00%)</title><rect x="4017.9" y="325" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4020.91" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (341 samples, 0.04%)</title><rect x="2482.8" y="349" width="2.1" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="2485.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (28 samples, 0.00%)</title><rect x="497.5" y="1045" width="0.2" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="500.55" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::removeText (19 samples, 0.00%)</title><rect x="273.2" y="1045" width="0.2" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="276.24" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line@plt (33 samples, 0.00%)</title><rect x="1073.2" y="253" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1076.15" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::removeText@plt (25 samples, 0.00%)</title><rect x="3662.7" y="229" width="0.2" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3665.74" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateDocumentConfig::updateConfig (67 samples, 0.01%)</title><rect x="764.9" y="349" width="0.4" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextCursor::setPosition (53 samples, 0.01%)</title><rect x="179.2" y="1045" width="0.3" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="182.17" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::ReplacementStream (38 samples, 0.00%)</title><rect x="4541.6" y="349" width="0.2" height="23.0" fill="rgb(225,118,23)" rx="2" ry="2" />
<text text-anchor="" x="4544.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72eecd93 (16 samples, 0.00%)</title><rect x="4500.4" y="301" width="0.1" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="4503.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::fontEngine (83 samples, 0.01%)</title><rect x="608.3" y="589" width="0.5" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (25 samples, 0.00%)</title><rect x="622.6" y="853" width="0.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="625.64" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::size (211 samples, 0.03%)</title><rect x="464.3" y="1045" width="1.4" height="23.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="467.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::deleteBlockContent (1,349 samples, 0.18%)</title><rect x="701.3" y="349" width="8.4" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="704.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__normal_iterator<Kate::TextRange**, (208 samples, 0.03%)</title><rect x="3423.5" y="277" width="1.3" height="23.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text text-anchor="" x="3426.48" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (21 samples, 0.00%)</title><rect x="4631.8" y="349" width="0.1" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="4634.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (268 samples, 0.04%)</title><rect x="287.9" y="1045" width="1.7" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="290.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateIconBorder::paintEvent (19 samples, 0.00%)</title><rect x="628.2" y="613" width="0.2" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="631.24" y="627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (17 samples, 0.00%)</title><rect x="4201.8" y="253" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4204.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (36 samples, 0.00%)</title><rect x="313.9" y="1045" width="0.3" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="316.95" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (63 samples, 0.01%)</title><rect x="4007.6" y="253" width="0.4" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4010.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<KTextEditor::Range>::begin (178 samples, 0.02%)</title><rect x="4695.0" y="325" width="1.1" height="23.0" fill="rgb(243,183,42)" rx="2" ry="2" />
<text text-anchor="" x="4697.96" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::isValid (225 samples, 0.03%)</title><rect x="4130.7" y="349" width="1.4" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4133.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::clear (28 samples, 0.00%)</title><rect x="2188.8" y="205" width="0.2" height="23.0" fill="rgb(234,166,32)" rx="2" ry="2" />
<text text-anchor="" x="2191.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::event (60 samples, 0.01%)</title><rect x="742.0" y="709" width="0.3" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="744.95" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::QList (719 samples, 0.09%)</title><rect x="4553.8" y="277" width="4.5" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4556.75" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (2,079 samples, 0.27%)</title><rect x="2137.6" y="109" width="13.0" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="2140.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (1,913 samples, 0.25%)</title><rect x="4141.3" y="301" width="12.0" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="4144.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::end (125 samples, 0.02%)</title><rect x="2992.4" y="277" width="0.8" height="23.0" fill="rgb(251,138,51)" rx="2" ry="2" />
<text text-anchor="" x="2995.40" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (477 samples, 0.06%)</title><rect x="2421.8" y="229" width="3.0" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="2424.80" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (91 samples, 0.01%)</title><rect x="655.2" y="877" width="0.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="658.18" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDataStream::operator<< (931 samples, 0.12%)</title><rect x="2122.1" y="181" width="5.8" height="23.0" fill="rgb(245,208,44)" rx="2" ry="2" />
<text text-anchor="" x="2125.08" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1 (1,451 samples, 0.19%)</title><rect x="15.2" y="1069" width="9.1" height="23.0" fill="rgb(228,112,25)" rx="2" ry="2" />
<text text-anchor="" x="18.22" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::lines (25 samples, 0.00%)</title><rect x="470.7" y="1045" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="473.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::ref (27 samples, 0.00%)</title><rect x="4144.9" y="253" width="0.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4147.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::event (410 samples, 0.05%)</title><rect x="628.1" y="949" width="2.5" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="631.07" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::sharedNull (20 samples, 0.00%)</title><rect x="125.1" y="1045" width="0.1" height="23.0" fill="rgb(224,152,21)" rx="2" ry="2" />
<text text-anchor="" x="128.09" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<Kate::TextBlock*>::data (736 samples, 0.10%)</title><rect x="4416.5" y="205" width="4.6" height="23.0" fill="rgb(235,183,33)" rx="2" ry="2" />
<text text-anchor="" x="4419.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (1,319 samples, 0.17%)</title><rect x="4210.1" y="301" width="8.3" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4213.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaObjectPrivate::signalOffset (567 samples, 0.07%)</title><rect x="2627.9" y="277" width="3.6" height="23.0" fill="rgb(237,205,35)" rx="2" ry="2" />
<text text-anchor="" x="2630.90" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::fillRect (42 samples, 0.01%)</title><rect x="739.8" y="493" width="0.2" height="23.0" fill="rgb(241,203,39)" rx="2" ry="2" />
<text text-anchor="" x="742.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndoManager::addUndoItem (15,305 samples, 2.01%)</title><rect x="3891.1" y="301" width="96.0" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="3894.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateUndoMan..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::search@plt (244 samples, 0.03%)</title><rect x="4538.3" y="373" width="1.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="4541.25" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMainWindow::event (117 samples, 0.02%)</title><rect x="661.6" y="685" width="0.7" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::startLine (142 samples, 0.02%)</title><rect x="3193.0" y="229" width="0.9" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="3195.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (117 samples, 0.02%)</title><rect x="17.8" y="1045" width="0.7" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="20.77" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (35 samples, 0.00%)</title><rect x="654.5" y="925" width="0.2" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="657.51" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::ref (22 samples, 0.00%)</title><rect x="228.1" y="1045" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="231.14" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::start (16 samples, 0.00%)</title><rect x="319.3" y="1045" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="322.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (4,093 samples, 0.54%)</title><rect x="1059.0" y="277" width="25.7" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="1062.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::qt_static_metacall (23 samples, 0.00%)</title><rect x="333.7" y="1045" width="0.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="336.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::doHighlight (379 samples, 0.05%)</title><rect x="1054.5" y="277" width="2.4" height="23.0" fill="rgb(234,118,32)" rx="2" ry="2" />
<text text-anchor="" x="1057.50" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateTextLayout::startCol (16 samples, 0.00%)</title><rect x="4783.3" y="277" width="0.1" height="23.0" fill="rgb(235,118,33)" rx="2" ry="2" />
<text text-anchor="" x="4786.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<QString>::~QList (2,626 samples, 0.34%)</title><rect x="4521.4" y="325" width="16.4" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4524.38" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7e5 (37 samples, 0.00%)</title><rect x="3604.5" y="253" width="0.2" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="3607.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__gnu_cxx::__ops::_Val_comp_iter<bool (20 samples, 0.00%)</title><rect x="172.3" y="1045" width="0.1" height="23.0" fill="rgb(237,132,36)" rx="2" ry="2" />
<text text-anchor="" x="175.25" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (32 samples, 0.00%)</title><rect x="585.5" y="1045" width="0.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="588.45" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::forward<QSet<Kate::TextCursor*>&> (17 samples, 0.00%)</title><rect x="312.5" y="1045" width="0.1" height="23.0" fill="rgb(244,146,43)" rx="2" ry="2" />
<text text-anchor="" x="315.50" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (23 samples, 0.00%)</title><rect x="4530.8" y="253" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4533.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::firstNode (16 samples, 0.00%)</title><rect x="278.6" y="1045" width="0.1" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="281.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toUtf8_helper (243 samples, 0.03%)</title><rect x="61.1" y="1045" width="1.5" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="64.08" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Breeze::Style::drawPrimitive (22 samples, 0.00%)</title><rect x="653.1" y="685" width="0.1" height="23.0" fill="rgb(238,145,36)" rx="2" ry="2" />
<text text-anchor="" x="656.07" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (413 samples, 0.05%)</title><rect x="4659.8" y="277" width="2.6" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="4662.80" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (38 samples, 0.00%)</title><rect x="3857.1" y="181" width="0.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="3860.08" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f735c7a54 (17 samples, 0.00%)</title><rect x="654.1" y="733" width="0.1" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="657.05" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b0d98b (643,947 samples, 84.47%)</title><rect x="743.5" y="757" width="4037.5" height="23.0" fill="rgb(233,92,31)" rx="2" ry="2" />
<text text-anchor="" x="746.46" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1f73b0d98b</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::FunctionPointer<void (66 samples, 0.01%)</title><rect x="108.6" y="1045" width="0.4" height="23.0" fill="rgb(246,166,45)" rx="2" ry="2" />
<text text-anchor="" x="111.62" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTypedArrayData<QSharedPointer<KTextEditor::MovingCursor> (48 samples, 0.01%)</title><rect x="651.6" y="1069" width="0.3" height="23.0" fill="rgb(245,183,44)" rx="2" ry="2" />
<text text-anchor="" x="654.64" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::line (36 samples, 0.00%)</title><rect x="456.5" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="459.48" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::updateConfig (16 samples, 0.00%)</title><rect x="669.5" y="805" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="672.54" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::isDetached (849 samples, 0.11%)</title><rect x="3231.6" y="157" width="5.3" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="3234.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (21 samples, 0.00%)</title><rect x="538.0" y="1045" width="0.2" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="541.03" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd@plt (46 samples, 0.01%)</title><rect x="1016.8" y="373" width="0.3" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="1019.83" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::sendPaintEvent (164 samples, 0.02%)</title><rect x="653.5" y="949" width="1.0" height="23.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="656.48" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<KTextEditor::MovingCursor>::~QSharedPointer (26 samples, 0.00%)</title><rect x="127.0" y="1045" width="0.2" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="130.05" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730faee5 (380 samples, 0.05%)</title><rect x="2218.6" y="109" width="2.3" height="23.0" fill="rgb(244,92,42)" rx="2" ry="2" />
<text text-anchor="" x="2221.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___libc_malloc (213 samples, 0.03%)</title><rect x="4653.6" y="277" width="1.3" height="23.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text text-anchor="" x="4656.58" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (168 samples, 0.02%)</title><rect x="4470.8" y="349" width="1.0" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4473.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="4516.5" y="301" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4519.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::unsetError (42 samples, 0.01%)</title><rect x="2124.0" y="109" width="0.3" height="23.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text text-anchor="" x="2127.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::initialize (19 samples, 0.00%)</title><rect x="691.1" y="973" width="0.1" height="23.0" fill="rgb(245,158,44)" rx="2" ry="2" />
<text text-anchor="" x="694.12" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (398 samples, 0.05%)</title><rect x="1554.0" y="277" width="2.5" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="1557.02" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<QPair<int, (23 samples, 0.00%)</title><rect x="3793.7" y="205" width="0.1" height="23.0" fill="rgb(240,160,38)" rx="2" ry="2" />
<text text-anchor="" x="3796.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateUndo::setFlag (184 samples, 0.02%)</title><rect x="3880.9" y="277" width="1.2" height="23.0" fill="rgb(239,118,38)" rx="2" ry="2" />
<text text-anchor="" x="3883.94" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730db7ea (65 samples, 0.01%)</title><rect x="71.9" y="1045" width="0.4" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (326 samples, 0.04%)</title><rect x="3954.5" y="181" width="2.0" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3957.45" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (287 samples, 0.04%)</title><rect x="4527.9" y="181" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4530.89" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::swap<KTextEditor::MovingCursor*> (22 samples, 0.00%)</title><rect x="153.2" y="1045" width="0.2" height="23.0" fill="rgb(237,146,35)" rx="2" ry="2" />
<text text-anchor="" x="156.23" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::size (44 samples, 0.01%)</title><rect x="688.3" y="805" width="0.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="691.34" y="819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (53 samples, 0.01%)</title><rect x="4138.1" y="253" width="0.4" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="4141.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRenderer::layoutLine (17 samples, 0.00%)</title><rect x="690.7" y="637" width="0.1" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="693.71" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::openFile (3,468 samples, 0.45%)</title><rect x="669.2" y="901" width="21.8" height="23.0" fill="rgb(237,138,35)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::setRange (17 samples, 0.00%)</title><rect x="554.6" y="1045" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="557.60" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::insertText@plt (84 samples, 0.01%)</title><rect x="2048.6" y="301" width="0.5" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2051.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b32f (317 samples, 0.04%)</title><rect x="460.7" y="1069" width="1.9" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="463.65" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::~QSharedPointer (1,054 samples, 0.14%)</title><rect x="4429.5" y="325" width="6.6" height="23.0" fill="rgb(240,166,38)" rx="2" ry="2" />
<text text-anchor="" x="4432.48" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d48a3df (59 samples, 0.01%)</title><rect x="79.3" y="1069" width="0.4" height="23.0" fill="rgb(248,99,47)" rx="2" ry="2" />
<text text-anchor="" x="82.30" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (294 samples, 0.04%)</title><rect x="2477.6" y="253" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2480.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::isEmpty (201 samples, 0.03%)</title><rect x="251.0" y="1045" width="1.3" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="254.01" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___clock_gettime (55 samples, 0.01%)</title><rect x="90.3" y="1045" width="0.3" height="23.0" fill="rgb(236,119,34)" rx="2" ry="2" />
<text text-anchor="" x="93.29" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editEnd@plt (124 samples, 0.02%)</title><rect x="1049.4" y="325" width="0.7" height="23.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text text-anchor="" x="1052.35" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (144 samples, 0.02%)</title><rect x="240.3" y="1045" width="0.9" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="243.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QForeachContainer<QSet<Kate::TextCursor*> (30 samples, 0.00%)</title><rect x="656.3" y="1069" width="0.1" height="23.0" fill="rgb(237,166,35)" rx="2" ry="2" />
<text text-anchor="" x="659.26" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (432 samples, 0.06%)</title><rect x="2951.6" y="301" width="2.7" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="2954.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (27 samples, 0.00%)</title><rect x="881.4" y="301" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (73 samples, 0.01%)</title><rect x="536.7" y="1045" width="0.5" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="539.74" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (30 samples, 0.00%)</title><rect x="118.3" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="121.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::line (12,447 samples, 1.63%)</title><rect x="4363.6" y="349" width="78.0" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4366.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KTextEdit..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::ReplacementStream::operator<< (958 samples, 0.13%)</title><rect x="4562.2" y="325" width="6.0" height="23.0" fill="rgb(245,118,44)" rx="2" ry="2" />
<text text-anchor="" x="4565.18" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimerInfoList::timerInsert (219 samples, 0.03%)</title><rect x="597.0" y="1045" width="1.4" height="23.0" fill="rgb(236,157,34)" rx="2" ry="2" />
<text text-anchor="" x="600.02" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (195 samples, 0.03%)</title><rect x="4642.7" y="325" width="1.3" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="4645.74" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidget::render (26 samples, 0.00%)</title><rect x="701.1" y="541" width="0.1" height="23.0" fill="rgb(243,142,41)" rx="2" ry="2" />
<text text-anchor="" x="704.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (353 samples, 0.05%)</title><rect x="309.4" y="1045" width="2.3" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="312.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::isEmpty (464 samples, 0.06%)</title><rect x="3150.5" y="205" width="2.9" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="3153.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::rangesForLine (33 samples, 0.00%)</title><rect x="693.9" y="541" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="696.86" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (703 samples, 0.09%)</title><rect x="4275.9" y="325" width="4.4" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4278.89" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b0d7e7 (22 samples, 0.00%)</title><rect x="743.3" y="757" width="0.1" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="746.28" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KdePlatformTheme::createIconEngine (30 samples, 0.00%)</title><rect x="4781.2" y="973" width="0.2" height="23.0" fill="rgb(246,168,46)" rx="2" ry="2" />
<text text-anchor="" x="4784.17" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::ref (574 samples, 0.08%)</title><rect x="2381.2" y="229" width="3.6" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2384.22" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::end (22 samples, 0.00%)</title><rect x="958.6" y="349" width="0.2" height="23.0" fill="rgb(251,118,51)" rx="2" ry="2" />
<text text-anchor="" x="961.63" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QEventDispatcherGlib::processEvents (118 samples, 0.02%)</title><rect x="661.6" y="949" width="0.7" height="23.0" fill="rgb(238,174,36)" rx="2" ry="2" />
<text text-anchor="" x="664.60" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (79 samples, 0.01%)</title><rect x="126.4" y="1045" width="0.5" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="129.44" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (59 samples, 0.01%)</title><rect x="637.9" y="709" width="0.3" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="640.87" y="723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateViewConfig::updateConfig (16 samples, 0.00%)</title><rect x="669.5" y="829" width="0.1" height="23.0" fill="rgb(239,118,37)" rx="2" ry="2" />
<text text-anchor="" x="672.54" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (127 samples, 0.02%)</title><rect x="1076.6" y="229" width="0.8" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="1079.61" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator>= (318 samples, 0.04%)</title><rect x="4109.9" y="277" width="2.0" height="23.0" fill="rgb(241,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4112.87" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextLayout::draw (22 samples, 0.00%)</title><rect x="654.6" y="829" width="0.1" height="23.0" fill="rgb(225,170,22)" rx="2" ry="2" />
<text text-anchor="" x="657.59" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::operator[] (930 samples, 0.12%)</title><rect x="4221.0" y="349" width="5.9" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="4224.03" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::insertText (197 samples, 0.03%)</title><rect x="374.4" y="1045" width="1.3" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="377.43" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f70cd1524 (31 samples, 0.00%)</title><rect x="112.5" y="877" width="0.2" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="115.48" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::data (77 samples, 0.01%)</title><rect x="2054.8" y="205" width="0.5" height="23.0" fill="rgb(235,152,33)" rx="2" ry="2" />
<text text-anchor="" x="2057.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QApplicationPrivate::notify_helper (253 samples, 0.03%)</title><rect x="113.0" y="853" width="1.6" height="23.0" fill="rgb(243,158,41)" rx="2" ry="2" />
<text text-anchor="" x="115.99" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (281 samples, 0.04%)</title><rect x="4625.6" y="301" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4628.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (287 samples, 0.04%)</title><rect x="4271.0" y="205" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4274.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextLineData::markedAsModified (20 samples, 0.00%)</title><rect x="411.7" y="1045" width="0.1" height="23.0" fill="rgb(246,118,45)" rx="2" ry="2" />
<text text-anchor="" x="414.65" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator< (360 samples, 0.05%)</title><rect x="4448.5" y="301" width="2.2" height="23.0" fill="rgb(248,138,47)" rx="2" ry="2" />
<text text-anchor="" x="4451.47" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::isEmpty (344 samples, 0.05%)</title><rect x="1706.9" y="181" width="2.2" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1709.90" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (23 samples, 0.00%)</title><rect x="379.1" y="1045" width="0.2" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="382.12" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x559a3d95b18f (140 samples, 0.02%)</title><rect x="81.1" y="1069" width="0.9" height="23.0" fill="rgb(249,99,49)" rx="2" ry="2" />
<text text-anchor="" x="84.13" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lastLine (324 samples, 0.04%)</title><rect x="792.1" y="349" width="2.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="795.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::ensureHighlighted@plt (182 samples, 0.02%)</title><rect x="2569.1" y="301" width="1.1" height="23.0" fill="rgb(231,118,29)" rx="2" ry="2" />
<text text-anchor="" x="2572.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652b3df (341 samples, 0.04%)</title><rect x="493.5" y="1069" width="2.1" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="496.51" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (24 samples, 0.00%)</title><rect x="457.1" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="460.06" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (31 samples, 0.00%)</title><rect x="2559.0" y="253" width="0.2" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2562.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateCompletionWidget::qt_static_metacall (13,265 samples, 1.74%)</title><rect x="2160.6" y="253" width="83.1" height="23.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text text-anchor="" x="2163.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateCompl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af7f (806 samples, 0.11%)</title><rect x="128.1" y="1069" width="5.0" height="23.0" fill="rgb(247,92,46)" rx="2" ry="2" />
<text text-anchor="" x="131.05" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::line (186 samples, 0.02%)</title><rect x="931.9" y="349" width="1.1" height="23.0" fill="rgb(246,138,46)" rx="2" ry="2" />
<text text-anchor="" x="934.88" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73b9da1b (640,346 samples, 84.00%)</title><rect x="766.0" y="565" width="4015.0" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7f1f73b9da1b</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (17 samples, 0.00%)</title><rect x="4436.0" y="253" width="0.1" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4438.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103ff1 (19 samples, 0.00%)</title><rect x="2150.7" y="157" width="0.1" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="2153.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730dc092 (56 samples, 0.01%)</title><rect x="3686.3" y="157" width="0.4" height="23.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text text-anchor="" x="3689.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMin<int> (170 samples, 0.02%)</title><rect x="2568.0" y="277" width="1.1" height="23.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text text-anchor="" x="2571.03" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (18 samples, 0.00%)</title><rect x="927.4" y="373" width="0.1" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="930.40" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f722dce9b (17 samples, 0.00%)</title><rect x="669.0" y="853" width="0.1" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="672.00" y="867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (185 samples, 0.02%)</title><rect x="950.1" y="325" width="1.1" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="953.05" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::paintSiblingsRecursive (407 samples, 0.05%)</title><rect x="628.1" y="829" width="2.5" height="23.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text text-anchor="" x="631.09" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (22 samples, 0.00%)</title><rect x="4002.6" y="253" width="0.2" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4005.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KatePlainTextSearch::KatePlainTextSearch (336 samples, 0.04%)</title><rect x="4345.3" y="373" width="2.1" height="23.0" fill="rgb(243,118,42)" rx="2" ry="2" />
<text text-anchor="" x="4348.28" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator= (4,161 samples, 0.55%)</title><rect x="4683.7" y="397" width="26.1" height="23.0" fill="rgb(246,160,45)" rx="2" ry="2" />
<text text-anchor="" x="4686.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::lines (21 samples, 0.00%)</title><rect x="553.6" y="1045" width="0.1" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="556.58" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QCoreApplication::notifyInternal2 (17 samples, 0.00%)</title><rect x="654.8" y="757" width="0.1" height="23.0" fill="rgb(244,207,43)" rx="2" ry="2" />
<text text-anchor="" x="657.78" y="771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::detach (65 samples, 0.01%)</title><rect x="942.3" y="277" width="0.4" height="23.0" fill="rgb(247,160,46)" rx="2" ry="2" />
<text text-anchor="" x="945.29" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f73103fd7 (39 samples, 0.01%)</title><rect x="605.0" y="1045" width="0.2" height="23.0" fill="rgb(241,92,39)" rx="2" ry="2" />
<text text-anchor="" x="607.98" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::at (254 samples, 0.03%)</title><rect x="3866.3" y="205" width="1.6" height="23.0" fill="rgb(227,160,24)" rx="2" ry="2" />
<text text-anchor="" x="3869.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRingBuffer::append (530 samples, 0.07%)</title><rect x="2124.3" y="109" width="3.3" height="23.0" fill="rgb(251,167,51)" rx="2" ry="2" />
<text text-anchor="" x="2127.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateBuffer::editChanged (19 samples, 0.00%)</title><rect x="436.8" y="1045" width="0.1" height="23.0" fill="rgb(247,118,47)" rx="2" ry="2" />
<text text-anchor="" x="439.80" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (691 samples, 0.09%)</title><rect x="2464.5" y="253" width="4.3" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="2467.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (994 samples, 0.13%)</title><rect x="4002.8" y="325" width="6.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4005.78" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (293 samples, 0.04%)</title><rect x="4163.4" y="349" width="1.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4166.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<Kate::TextBlock*>::size (25 samples, 0.00%)</title><rect x="2592.8" y="229" width="0.1" height="23.0" fill="rgb(245,160,44)" rx="2" ry="2" />
<text text-anchor="" x="2595.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g_main_context_iteration (41 samples, 0.01%)</title><rect x="638.7" y="997" width="0.2" height="23.0" fill="rgb(247,167,46)" rx="2" ry="2" />
<text text-anchor="" x="641.69" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append (48 samples, 0.01%)</title><rect x="2233.6" y="109" width="0.3" height="23.0" fill="rgb(251,142,51)" rx="2" ry="2" />
<text text-anchor="" x="2236.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::ref (845 samples, 0.11%)</title><rect x="2576.4" y="205" width="5.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2579.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::editEnd (25 samples, 0.00%)</title><rect x="887.9" y="373" width="0.1" height="23.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="890.89" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KParts::ReadOnlyPart::openUrl (3,471 samples, 0.46%)</title><rect x="669.2" y="949" width="21.8" height="23.0" fill="rgb(235,171,34)" rx="2" ry="2" />
<text text-anchor="" x="672.22" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::deref<int> (292 samples, 0.04%)</title><rect x="4516.8" y="277" width="1.8" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="4519.77" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qMax<KTextEditor::Cursor> (418 samples, 0.05%)</title><rect x="918.8" y="373" width="2.6" height="23.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="921.83" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (24 samples, 0.00%)</title><rect x="477.9" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="480.93" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::text (8,567 samples, 1.12%)</title><rect x="4122.8" y="373" width="53.7" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="4125.75" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KText..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::isShared (18 samples, 0.00%)</title><rect x="3236.9" y="157" width="0.2" height="23.0" fill="rgb(248,166,47)" rx="2" ry="2" />
<text text-anchor="" x="3239.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QBasicAtomicInteger<int>::load (163 samples, 0.02%)</title><rect x="2470.5" y="277" width="1.0" height="23.0" fill="rgb(243,218,41)" rx="2" ry="2" />
<text text-anchor="" x="2473.47" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAccessible::updateAccessibility (68 samples, 0.01%)</title><rect x="626.3" y="1045" width="0.5" height="23.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text text-anchor="" x="629.34" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextHistory::removeText (36 samples, 0.00%)</title><rect x="375.7" y="1045" width="0.2" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="378.66" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f730fd9d3 (50 samples, 0.01%)</title><rect x="637.3" y="901" width="0.3" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="640.33" y="915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::unique_ptr<KTextEditor::MovingRange, (65 samples, 0.01%)</title><rect x="560.0" y="1045" width="0.4" height="23.0" fill="rgb(240,146,39)" rx="2" ry="2" />
<text text-anchor="" x="562.99" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRasterPaintEngine::updatePen (53 samples, 0.01%)</title><rect x="113.8" y="685" width="0.3" height="23.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text text-anchor="" x="116.78" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QSharedPointer<Kate::TextLineData>::operator! (271 samples, 0.04%)</title><rect x="2459.6" y="325" width="1.7" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2462.63" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72f6a8bf (30 samples, 0.00%)</title><rect x="4360.1" y="325" width="0.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="4363.07" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBlock::lines (31 samples, 0.00%)</title><rect x="3185.4" y="253" width="0.2" height="23.0" fill="rgb(242,118,41)" rx="2" ry="2" />
<text text-anchor="" x="3188.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (51 samples, 0.01%)</title><rect x="52.7" y="1045" width="0.3" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="55.67" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_lookup_x (71 samples, 0.01%)</title><rect x="4781.5" y="925" width="0.5" height="23.0" fill="rgb(244,189,43)" rx="2" ry="2" />
<text text-anchor="" x="4784.52" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2710ffffffff (105 samples, 0.01%)</title><rect x="28.7" y="1069" width="0.7" height="23.0" fill="rgb(244,109,42)" rx="2" ry="2" />
<text text-anchor="" x="31.73" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector<KTextEditor::Range>::operator[] (328 samples, 0.04%)</title><rect x="571.8" y="1045" width="2.0" height="23.0" fill="rgb(242,160,41)" rx="2" ry="2" />
<text text-anchor="" x="574.75" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editStart (290 samples, 0.04%)</title><rect x="1018.8" y="373" width="1.9" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="1021.84" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::append@plt (182 samples, 0.02%)</title><rect x="3945.4" y="229" width="1.1" height="23.0" fill="rgb(231,142,29)" rx="2" ry="2" />
<text text-anchor="" x="3948.40" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::begin (20 samples, 0.00%)</title><rect x="348.2" y="1045" width="0.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="351.20" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Document::textRemoved (104 samples, 0.01%)</title><rect x="432.3" y="1045" width="0.7" height="23.0" fill="rgb(245,138,44)" rx="2" ry="2" />
<text text-anchor="" x="435.33" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__atomic_base<int>::operator-- (246 samples, 0.03%)</title><rect x="4528.1" y="157" width="1.5" height="23.0" fill="rgb(241,146,39)" rx="2" ry="2" />
<text text-anchor="" x="4531.10" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::SwapFile::removeText (227 samples, 0.03%)</title><rect x="270.0" y="1045" width="1.5" height="23.0" fill="rgb(230,118,27)" rx="2" ry="2" />
<text text-anchor="" x="273.04" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::DocumentPrivate::editInsertText (73 samples, 0.01%)</title><rect x="105.4" y="1045" width="0.5" height="23.0" fill="rgb(230,138,27)" rx="2" ry="2" />
<text text-anchor="" x="108.42" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI__dl_catch_error (177 samples, 0.02%)</title><rect x="666.1" y="565" width="1.1" height="23.0" fill="rgb(242,119,41)" rx="2" ry="2" />
<text text-anchor="" x="669.11" y="579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QPainter::drawPixmap (28 samples, 0.00%)</title><rect x="740.2" y="181" width="0.1" height="23.0" fill="rgb(240,203,39)" rx="2" ry="2" />
<text text-anchor="" x="743.17" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::operator== (388 samples, 0.05%)</title><rect x="985.0" y="373" width="2.5" height="23.0" fill="rgb(242,138,41)" rx="2" ry="2" />
<text text-anchor="" x="988.03" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::length (350 samples, 0.05%)</title><rect x="794.5" y="325" width="2.2" height="23.0" fill="rgb(236,166,34)" rx="2" ry="2" />
<text text-anchor="" x="797.49" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (950 samples, 0.12%)</title><rect x="4570.6" y="301" width="5.9" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="4573.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (23 samples, 0.00%)</title><rect x="599.4" y="1045" width="0.1" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="602.39" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator== (31 samples, 0.00%)</title><rect x="349.2" y="1045" width="0.2" height="23.0" fill="rgb(242,195,41)" rx="2" ry="2" />
<text text-anchor="" x="352.22" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffeb652af9f (473 samples, 0.06%)</title><rect x="140.3" y="1069" width="3.0" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="143.31" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::ref<int> (21 samples, 0.00%)</title><rect x="379.4" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="382.41" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringList::operator<< (3,475 samples, 0.46%)</title><rect x="4241.2" y="373" width="21.8" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4244.21" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTimer::stop@plt (22 samples, 0.00%)</title><rect x="3718.9" y="205" width="0.1" height="23.0" fill="rgb(231,157,29)" rx="2" ry="2" />
<text text-anchor="" x="3721.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash<Kate::TextCursor*, (435 samples, 0.06%)</title><rect x="3345.0" y="229" width="2.8" height="23.0" fill="rgb(233,188,31)" rx="2" ry="2" />
<text text-anchor="" x="3348.04" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Cursor::Cursor (35 samples, 0.00%)</title><rect x="4361.1" y="349" width="0.2" height="23.0" fill="rgb(242,138,40)" rx="2" ry="2" />
<text text-anchor="" x="4364.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QChar::QChar (449 samples, 0.06%)</title><rect x="501.6" y="1045" width="2.8" height="23.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text text-anchor="" x="504.61" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateScrollBar::charColor (128 samples, 0.02%)</title><rect x="694.5" y="589" width="0.8" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="697.49" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::ViewPrivate::ViewPrivate (72 samples, 0.01%)</title><rect x="667.7" y="949" width="0.5" height="23.0" fill="rgb(245,138,45)" rx="2" ry="2" />
<text text-anchor="" x="670.72" y="963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KateRegExpSearch::buildReplacement (10,665 samples, 1.40%)</title><rect x="4542.3" y="349" width="66.8" height="23.0" fill="rgb(241,118,39)" rx="2" ry="2" />
<text text-anchor="" x="4545.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KateReg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::vector<Kate::TextRange*, (342 samples, 0.04%)</title><rect x="389.5" y="1045" width="2.1" height="23.0" fill="rgb(234,146,32)" rx="2" ry="2" />
<text text-anchor="" x="392.49" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::RefCount::deref (679 samples, 0.09%)</title><rect x="2476.3" y="301" width="4.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="2479.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (32 samples, 0.00%)</title><rect x="4057.5" y="373" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="4060.51" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1f72fed671 (967 samples, 0.13%)</title><rect x="3623.8" y="157" width="6.1" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="3626.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextEngine::findItem (22 samples, 0.00%)</title><rect x="612.2" y="589" width="0.1" height="23.0" fill="rgb(231,170,29)" rx="2" ry="2" />
<text text-anchor="" x="615.17" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KMessageBox::warningYesNoCancelListInternal (18 samples, 0.00%)</title><rect x="627.7" y="661" width="0.1" height="23.0" fill="rgb(229,173,27)" rx="2" ry="2" />
<text text-anchor="" x="630.72" y="675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (266 samples, 0.03%)</title><rect x="112.9" y="997" width="1.7" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="115.93" y="1011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWidgetPrivate::drawWidget (19 samples, 0.00%)</title><rect x="114.6" y="925" width="0.1" height="23.0" fill="rgb(237,142,35)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::revision (25 samples, 0.00%)</title><rect x="2541.7" y="277" width="0.1" height="23.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="2544.66" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextRange::fixLookup (7,350 samples, 0.96%)</title><rect x="1743.6" y="253" width="46.1" height="23.0" fill="rgb(236,118,34)" rx="2" ry="2" />
<text text-anchor="" x="1746.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Kate..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::detach (17 samples, 0.00%)</title><rect x="3164.3" y="205" width="0.1" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="3167.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach_grow (455 samples, 0.06%)</title><rect x="639.4" y="1069" width="2.9" height="23.0" fill="rgb(234,142,31)" rx="2" ry="2" />
<text text-anchor="" x="642.45" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Kate::TextBuffer::line (28 samples, 0.00%)</title><rect x="153.5" y="1045" width="0.2" height="23.0" fill="rgb(246,118,46)" rx="2" ry="2" />
<text text-anchor="" x="156.54" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::start (24 samples, 0.00%)</title><rect x="4132.0" y="325" width="0.1" height="23.0" fill="rgb(239,138,37)" rx="2" ry="2" />
<text text-anchor="" x="4134.96" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList<Kate::TextHistory::Entry>::begin (1,445 samples, 0.19%)</title><rect x="1710.2" y="205" width="9.1" height="23.0" fill="rgb(243,142,42)" rx="2" ry="2" />
<text text-anchor="" x="1713.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KTextEditor::Range::Range (20 samples, 0.00%)</title><rect x="28.7" y="1045" width="0.2" height="23.0" fill="rgb(247,138,46)" rx="2" ry="2" />
<text text-anchor="" x="31.73" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMutex::lock (1,294 samples, 0.17%)</title><rect x="1131.3" y="277" width="8.1" height="23.0" fill="rgb(240,193,39)" rx="2" ry="2" />
<text text-anchor="" x="1134.32" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QDBusConnection (21 samples, 0.00%)</title><rect x="10.0" y="1093" width="0.1" height="23.0" fill="rgb(247,192,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QAtomicOps<int>::load<int> (18 samples, 0.00%)</title><rect x="443.5" y="1045" width="0.1" height="23.0" fill="rgb(243,145,42)" rx="2" ry="2" />
<text text-anchor="" x="446.51" y="1059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Log In to Comment