Files
geedge-jira/attachment/27607/perf33.svg
2025-09-14 22:00:20 +00:00

14201 lines
649 KiB
XML

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="870" onload="init(evt)" viewBox="0 0 1200 870" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="870.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="853" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="853" > </text>
<g id="frames">
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="420.9" y="549" width="0.1" height="15.0" fill="rgb(224,47,32)" rx="2" ry="2" />
<text x="423.85" y="559.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="388.2" y="565" width="0.5" height="15.0" fill="rgb(240,138,33)" rx="2" ry="2" />
<text x="391.23" y="575.5" ></text>
</g>
<g >
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="1008.0" y="725" width="0.1" height="15.0" fill="rgb(234,190,50)" rx="2" ry="2" />
<text x="1011.02" y="735.5" ></text>
</g>
<g >
<title>plugin_call_appentry (14 samples, 0.07%)</title><rect x="985.1" y="533" width="0.9" height="15.0" fill="rgb(241,133,34)" rx="2" ry="2" />
<text x="988.13" y="543.5" ></text>
</g>
<g >
<title>CDirectIndex::Find (8 samples, 0.04%)</title><rect x="174.0" y="725" width="0.5" height="15.0" fill="rgb(230,115,29)" rx="2" ry="2" />
<text x="176.99" y="735.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (9 samples, 0.04%)</title><rect x="821.7" y="453" width="0.6" height="15.0" fill="rgb(232,166,3)" rx="2" ry="2" />
<text x="824.74" y="463.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (360 samples, 1.80%)</title><rect x="764.5" y="533" width="21.2" height="15.0" fill="rgb(250,14,10)" rx="2" ry="2" />
<text x="767.46" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1012.6" y="453" width="0.1" height="15.0" fill="rgb(243,152,22)" rx="2" ry="2" />
<text x="1015.56" y="463.5" ></text>
</g>
<g >
<title>wangw_ingress_stream_is_wannat_session (7 samples, 0.03%)</title><rect x="973.7" y="613" width="0.5" height="15.0" fill="rgb(223,185,39)" rx="2" ry="2" />
<text x="976.75" y="623.5" ></text>
</g>
<g >
<title>ssl_callPlugins (15 samples, 0.07%)</title><rect x="594.9" y="437" width="0.9" height="15.0" fill="rgb(244,118,24)" rx="2" ry="2" />
<text x="597.87" y="447.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (165 samples, 0.82%)</title><rect x="616.2" y="517" width="9.7" height="15.0" fill="rgb(210,199,36)" rx="2" ry="2" />
<text x="619.16" y="527.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="1017.6" y="549" width="0.2" height="15.0" fill="rgb(248,155,54)" rx="2" ry="2" />
<text x="1020.64" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="786.4" y="549" width="0.1" height="15.0" fill="rgb(238,71,44)" rx="2" ry="2" />
<text x="789.40" y="559.5" ></text>
</g>
<g >
<title>fw_ssl_entry (4 samples, 0.02%)</title><rect x="337.9" y="485" width="0.3" height="15.0" fill="rgb(234,139,48)" rx="2" ry="2" />
<text x="340.92" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1010.4" y="341" width="0.5" height="15.0" fill="rgb(226,187,7)" rx="2" ry="2" />
<text x="1013.44" y="351.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="986.4" y="501" width="0.2" height="15.0" fill="rgb(213,24,13)" rx="2" ry="2" />
<text x="989.43" y="511.5" ></text>
</g>
<g >
<title>ipv4_entry (6,124 samples, 30.61%)</title><rect x="512.2" y="629" width="361.3" height="15.0" fill="rgb(212,209,14)" rx="2" ry="2" />
<text x="515.23" y="639.5" >ipv4_entry</text>
</g>
<g >
<title>[quic.so] (2 samples, 0.01%)</title><rect x="297.6" y="789" width="0.1" height="15.0" fill="rgb(218,157,6)" rx="2" ry="2" />
<text x="300.63" y="799.5" ></text>
</g>
<g >
<title>MESA_jump_layer (3 samples, 0.01%)</title><rect x="628.4" y="501" width="0.2" height="15.0" fill="rgb(237,159,16)" rx="2" ry="2" />
<text x="631.37" y="511.5" ></text>
</g>
<g >
<title>udp_free_stream (3 samples, 0.01%)</title><rect x="1009.6" y="645" width="0.2" height="15.0" fill="rgb(240,158,38)" rx="2" ry="2" />
<text x="1012.61" y="655.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (21 samples, 0.10%)</title><rect x="318.9" y="549" width="1.3" height="15.0" fill="rgb(243,131,34)" rx="2" ry="2" />
<text x="321.92" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="822.4" y="469" width="0.1" height="15.0" fill="rgb(244,134,52)" rx="2" ry="2" />
<text x="825.39" y="479.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (9 samples, 0.04%)</title><rect x="303.5" y="517" width="0.6" height="15.0" fill="rgb(246,188,46)" rx="2" ry="2" />
<text x="306.53" y="527.5" ></text>
</g>
<g >
<title>eth_entry (83 samples, 0.41%)</title><rect x="979.6" y="725" width="4.9" height="15.0" fill="rgb(243,3,14)" rx="2" ry="2" />
<text x="982.65" y="735.5" ></text>
</g>
<g >
<title>[ssh.so] (5 samples, 0.02%)</title><rect x="577.7" y="485" width="0.3" height="15.0" fill="rgb(212,3,14)" rx="2" ry="2" />
<text x="580.70" y="495.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (75 samples, 0.37%)</title><rect x="599.5" y="501" width="4.4" height="15.0" fill="rgb(224,218,2)" rx="2" ry="2" />
<text x="602.47" y="511.5" ></text>
</g>
<g >
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="818.6" y="501" width="0.1" height="15.0" fill="rgb(208,44,7)" rx="2" ry="2" />
<text x="821.55" y="511.5" ></text>
</g>
<g >
<title>[quic.so] (6 samples, 0.03%)</title><rect x="836.2" y="453" width="0.4" height="15.0" fill="rgb(242,104,53)" rx="2" ry="2" />
<text x="839.25" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="573.5" y="341" width="0.2" height="15.0" fill="rgb(211,147,22)" rx="2" ry="2" />
<text x="576.51" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="402.2" y="661" width="0.4" height="15.0" fill="rgb(239,141,20)" rx="2" ry="2" />
<text x="405.15" y="671.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="308.0" y="533" width="0.1" height="15.0" fill="rgb(227,179,15)" rx="2" ry="2" />
<text x="311.01" y="543.5" ></text>
</g>
<g >
<title>[sip.so] (13 samples, 0.06%)</title><rect x="576.5" y="501" width="0.8" height="15.0" fill="rgb(213,66,31)" rx="2" ry="2" />
<text x="579.52" y="511.5" ></text>
</g>
<g >
<title>get_global_stream_id (2 samples, 0.01%)</title><rect x="792.9" y="581" width="0.1" height="15.0" fill="rgb(241,176,43)" rx="2" ry="2" />
<text x="795.89" y="591.5" ></text>
</g>
<g >
<title>record_link_info_tcpall_entry_raw (4 samples, 0.02%)</title><rect x="638.9" y="517" width="0.3" height="15.0" fill="rgb(243,222,19)" rx="2" ry="2" />
<text x="641.93" y="527.5" ></text>
</g>
<g >
<title>get_stream_carry_tunnel_type (2 samples, 0.01%)</title><rect x="793.0" y="581" width="0.1" height="15.0" fill="rgb(206,177,3)" rx="2" ry="2" />
<text x="796.01" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="302.9" y="517" width="0.3" height="15.0" fill="rgb(231,65,20)" rx="2" ry="2" />
<text x="305.88" y="527.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="786.1" y="549" width="0.1" height="15.0" fill="rgb(243,25,4)" rx="2" ry="2" />
<text x="789.11" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="868.3" y="533" width="0.3" height="15.0" fill="rgb(210,186,50)" rx="2" ry="2" />
<text x="871.34" y="543.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="683.5" y="373" width="0.1" height="15.0" fill="rgb(213,222,46)" rx="2" ry="2" />
<text x="686.47" y="383.5" ></text>
</g>
<g >
<title>qmdpi_engine_id_get (2 samples, 0.01%)</title><rect x="557.1" y="453" width="0.1" height="15.0" fill="rgb(213,224,24)" rx="2" ry="2" />
<text x="560.06" y="463.5" ></text>
</g>
<g >
<title>CAPTURE_TCP_PACKET_ENTRY (11 samples, 0.05%)</title><rect x="627.7" y="517" width="0.7" height="15.0" fill="rgb(231,75,53)" rx="2" ry="2" />
<text x="630.72" y="527.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (13 samples, 0.06%)</title><rect x="470.5" y="629" width="0.7" height="15.0" fill="rgb(215,22,50)" rx="2" ry="2" />
<text x="473.46" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="331.1" y="213" width="0.1" height="15.0" fill="rgb(242,93,13)" rx="2" ry="2" />
<text x="334.13" y="223.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (4 samples, 0.02%)</title><rect x="420.0" y="661" width="0.2" height="15.0" fill="rgb(253,123,8)" rx="2" ry="2" />
<text x="422.97" y="671.5" ></text>
</g>
<g >
<title>[quic.so] (15 samples, 0.07%)</title><rect x="836.2" y="501" width="0.9" height="15.0" fill="rgb(220,38,45)" rx="2" ry="2" />
<text x="839.25" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="986.4" y="549" width="0.2" height="15.0" fill="rgb(205,86,16)" rx="2" ry="2" />
<text x="989.43" y="559.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (3 samples, 0.01%)</title><rect x="998.6" y="645" width="0.2" height="15.0" fill="rgb(238,64,35)" rx="2" ry="2" />
<text x="1001.64" y="655.5" ></text>
</g>
<g >
<title>new_JSON_checker (3 samples, 0.01%)</title><rect x="598.0" y="469" width="0.2" height="15.0" fill="rgb(241,117,40)" rx="2" ry="2" />
<text x="600.99" y="479.5" ></text>
</g>
<g >
<title>marsio_get_vlan_id_from_mbuff (4 samples, 0.02%)</title><rect x="880.1" y="693" width="0.3" height="15.0" fill="rgb(206,41,4)" rx="2" ry="2" />
<text x="883.13" y="703.5" ></text>
</g>
<g >
<title>CKRF::rank (5 samples, 0.02%)</title><rect x="43.3" y="741" width="0.3" height="15.0" fill="rgb(229,144,10)" rx="2" ry="2" />
<text x="46.33" y="751.5" ></text>
</g>
<g >
<title>bitmap_increment (45 samples, 0.22%)</title><rect x="688.0" y="501" width="2.7" height="15.0" fill="rgb(235,49,50)" rx="2" ry="2" />
<text x="691.01" y="511.5" ></text>
</g>
<g >
<title>[sapp] (2,125 samples, 10.62%)</title><rect x="525.6" y="581" width="125.3" height="15.0" fill="rgb(207,226,30)" rx="2" ry="2" />
<text x="528.56" y="591.5" >[sapp]</text>
</g>
<g >
<title>ssl_callPlugins (4 samples, 0.02%)</title><rect x="337.7" y="485" width="0.2" height="15.0" fill="rgb(219,211,18)" rx="2" ry="2" />
<text x="340.68" y="495.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (6 samples, 0.03%)</title><rect x="990.0" y="565" width="0.3" height="15.0" fill="rgb(249,200,17)" rx="2" ry="2" />
<text x="992.97" y="575.5" ></text>
</g>
<g >
<title>CKRF::SearchMem (200 samples, 1.00%)</title><rect x="32.5" y="757" width="11.8" height="15.0" fill="rgb(246,160,52)" rx="2" ry="2" />
<text x="35.47" y="767.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (3 samples, 0.01%)</title><rect x="973.2" y="581" width="0.1" height="15.0" fill="rgb(231,132,26)" rx="2" ry="2" />
<text x="976.16" y="591.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (5 samples, 0.02%)</title><rect x="591.2" y="389" width="0.2" height="15.0" fill="rgb(206,218,38)" rx="2" ry="2" />
<text x="594.15" y="399.5" ></text>
</g>
<g >
<title>udp_free_stream (7 samples, 0.03%)</title><rect x="308.0" y="677" width="0.4" height="15.0" fill="rgb(226,219,42)" rx="2" ry="2" />
<text x="311.01" y="687.5" ></text>
</g>
<g >
<title>update_opposite_addr_info (3 samples, 0.01%)</title><rect x="868.6" y="597" width="0.2" height="15.0" fill="rgb(220,170,6)" rx="2" ry="2" />
<text x="871.57" y="607.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="989.2" y="597" width="0.1" height="15.0" fill="rgb(232,116,9)" rx="2" ry="2" />
<text x="992.20" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="589.9" y="389" width="0.1" height="15.0" fill="rgb(223,88,19)" rx="2" ry="2" />
<text x="592.85" y="399.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="337.4" y="373" width="0.1" height="15.0" fill="rgb(231,105,45)" rx="2" ry="2" />
<text x="340.38" y="383.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="977.1" y="501" width="0.3" height="15.0" fill="rgb(216,188,11)" rx="2" ry="2" />
<text x="980.11" y="511.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (3 samples, 0.01%)</title><rect x="327.0" y="373" width="0.2" height="15.0" fill="rgb(210,135,49)" rx="2" ry="2" />
<text x="330.00" y="383.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="983.4" y="645" width="0.1" height="15.0" fill="rgb(229,182,47)" rx="2" ry="2" />
<text x="986.42" y="655.5" ></text>
</g>
<g >
<title>cycle_pkt_dump_by_classify (5 samples, 0.02%)</title><rect x="444.4" y="709" width="0.3" height="15.0" fill="rgb(222,144,17)" rx="2" ry="2" />
<text x="447.39" y="719.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="535.9" y="501" width="0.2" height="15.0" fill="rgb(248,131,51)" rx="2" ry="2" />
<text x="538.94" y="511.5" ></text>
</g>
<g >
<title>Maat_clean_status (6 samples, 0.03%)</title><rect x="396.1" y="565" width="0.3" height="15.0" fill="rgb(207,155,47)" rx="2" ry="2" />
<text x="399.08" y="575.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (3 samples, 0.01%)</title><rect x="997.6" y="677" width="0.2" height="15.0" fill="rgb(205,205,5)" rx="2" ry="2" />
<text x="1000.58" y="687.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (28 samples, 0.14%)</title><rect x="1007.8" y="757" width="1.7" height="15.0" fill="rgb(230,101,3)" rx="2" ry="2" />
<text x="1010.84" y="767.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="385.6" y="485" width="0.2" height="15.0" fill="rgb(218,33,0)" rx="2" ry="2" />
<text x="388.64" y="495.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="983.1" y="469" width="0.1" height="15.0" fill="rgb(218,62,31)" rx="2" ry="2" />
<text x="986.07" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (52 samples, 0.26%)</title><rect x="331.2" y="309" width="3.1" height="15.0" fill="rgb(209,166,5)" rx="2" ry="2" />
<text x="334.25" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (20 samples, 0.10%)</title><rect x="1011.4" y="501" width="1.2" height="15.0" fill="rgb(226,167,14)" rx="2" ry="2" />
<text x="1014.38" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (53 samples, 0.26%)</title><rect x="1009.8" y="581" width="3.1" height="15.0" fill="rgb(220,179,11)" rx="2" ry="2" />
<text x="1012.79" y="591.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (3 samples, 0.01%)</title><rect x="420.4" y="661" width="0.2" height="15.0" fill="rgb(228,224,49)" rx="2" ry="2" />
<text x="423.44" y="671.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (8 samples, 0.04%)</title><rect x="309.5" y="453" width="0.5" height="15.0" fill="rgb(244,192,2)" rx="2" ry="2" />
<text x="312.54" y="463.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="1013.9" y="437" width="1.7" height="15.0" fill="rgb(210,134,24)" rx="2" ry="2" />
<text x="1016.86" y="447.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (3 samples, 0.01%)</title><rect x="928.5" y="645" width="0.2" height="15.0" fill="rgb(241,175,12)" rx="2" ry="2" />
<text x="931.51" y="655.5" ></text>
</g>
<g >
<title>plugin_call_appentry (8 samples, 0.04%)</title><rect x="572.3" y="357" width="0.4" height="15.0" fill="rgb(211,148,38)" rx="2" ry="2" />
<text x="575.28" y="367.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="973.2" y="613" width="0.3" height="15.0" fill="rgb(247,131,27)" rx="2" ry="2" />
<text x="976.16" y="623.5" ></text>
</g>
<g >
<title>project_req_get_struct (10 samples, 0.05%)</title><rect x="867.3" y="517" width="0.6" height="15.0" fill="rgb(222,110,39)" rx="2" ry="2" />
<text x="870.28" y="527.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (48 samples, 0.24%)</title><rect x="536.8" y="549" width="2.9" height="15.0" fill="rgb(245,2,30)" rx="2" ry="2" />
<text x="539.82" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="540.2" y="501" width="0.6" height="15.0" fill="rgb(244,18,22)" rx="2" ry="2" />
<text x="543.24" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="1016.8" y="581" width="0.2" height="15.0" fill="rgb(237,75,23)" rx="2" ry="2" />
<text x="1019.75" y="591.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="552.9" y="389" width="0.3" height="15.0" fill="rgb(231,65,33)" rx="2" ry="2" />
<text x="555.93" y="399.5" ></text>
</g>
<g >
<title>__calloc (8 samples, 0.04%)</title><rect x="836.7" y="485" width="0.4" height="15.0" fill="rgb(238,222,2)" rx="2" ry="2" />
<text x="839.66" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="826.2" y="389" width="0.1" height="15.0" fill="rgb(247,205,10)" rx="2" ry="2" />
<text x="829.16" y="399.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="973.6" y="533" width="0.1" height="15.0" fill="rgb(229,189,34)" rx="2" ry="2" />
<text x="976.57" y="543.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="567.8" y="485" width="0.1" height="15.0" fill="rgb(245,189,29)" rx="2" ry="2" />
<text x="570.79" y="495.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (9 samples, 0.04%)</title><rect x="325.7" y="373" width="0.5" height="15.0" fill="rgb(222,166,30)" rx="2" ry="2" />
<text x="328.70" y="383.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (8 samples, 0.04%)</title><rect x="93.7" y="773" width="0.5" height="15.0" fill="rgb(219,128,29)" rx="2" ry="2" />
<text x="96.70" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="795.1" y="533" width="0.2" height="15.0" fill="rgb(205,179,25)" rx="2" ry="2" />
<text x="798.13" y="543.5" ></text>
</g>
<g >
<title>CRYPTO_realloc (2 samples, 0.01%)</title><rect x="331.1" y="229" width="0.1" height="15.0" fill="rgb(211,31,40)" rx="2" ry="2" />
<text x="334.13" y="239.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (21 samples, 0.10%)</title><rect x="982.1" y="533" width="1.3" height="15.0" fill="rgb(243,83,15)" rx="2" ry="2" />
<text x="985.13" y="543.5" ></text>
</g>
<g >
<title>sapp_mem_calloc (2 samples, 0.01%)</title><rect x="543.3" y="565" width="0.1" height="15.0" fill="rgb(229,4,5)" rx="2" ry="2" />
<text x="546.25" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="983.5" y="549" width="0.3" height="15.0" fill="rgb(216,9,17)" rx="2" ry="2" />
<text x="986.54" y="559.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="574.5" y="405" width="0.2" height="15.0" fill="rgb(226,38,33)" rx="2" ry="2" />
<text x="577.52" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="44.1" y="693" width="0.2" height="15.0" fill="rgb(251,127,35)" rx="2" ry="2" />
<text x="47.10" y="703.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (3 samples, 0.01%)</title><rect x="299.6" y="405" width="0.2" height="15.0" fill="rgb(224,138,32)" rx="2" ry="2" />
<text x="302.63" y="415.5" ></text>
</g>
<g >
<title>sapp_get_platform_opt (3 samples, 0.01%)</title><rect x="785.5" y="517" width="0.2" height="15.0" fill="rgb(205,153,53)" rx="2" ry="2" />
<text x="788.52" y="527.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (3 samples, 0.01%)</title><rect x="302.1" y="517" width="0.1" height="15.0" fill="rgb(228,68,51)" rx="2" ry="2" />
<text x="305.05" y="527.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (2 samples, 0.01%)</title><rect x="490.5" y="565" width="0.1" height="15.0" fill="rgb(223,166,12)" rx="2" ry="2" />
<text x="493.52" y="575.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (62 samples, 0.31%)</title><rect x="322.6" y="517" width="3.6" height="15.0" fill="rgb(254,37,54)" rx="2" ry="2" />
<text x="325.58" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="1017.3" y="485" width="0.3" height="15.0" fill="rgb(226,169,15)" rx="2" ry="2" />
<text x="1020.34" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="590.4" y="325" width="0.3" height="15.0" fill="rgb(214,150,35)" rx="2" ry="2" />
<text x="593.38" y="335.5" ></text>
</g>
<g >
<title>[sapp] (215 samples, 1.07%)</title><rect x="460.3" y="661" width="12.6" height="15.0" fill="rgb(222,72,39)" rx="2" ry="2" />
<text x="463.26" y="671.5" ></text>
</g>
<g >
<title>X509_NAME_get_text_by_OBJ (2 samples, 0.01%)</title><rect x="590.9" y="421" width="0.1" height="15.0" fill="rgb(223,26,14)" rx="2" ry="2" />
<text x="593.92" y="431.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (12 samples, 0.06%)</title><rect x="976.8" y="645" width="0.7" height="15.0" fill="rgb(212,97,32)" rx="2" ry="2" />
<text x="979.82" y="655.5" ></text>
</g>
<g >
<title>[libqmengine.so] (10 samples, 0.05%)</title><rect x="799.9" y="437" width="0.5" height="15.0" fill="rgb(220,101,0)" rx="2" ry="2" />
<text x="802.85" y="447.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="301.9" y="421" width="0.2" height="15.0" fill="rgb(205,204,13)" rx="2" ry="2" />
<text x="304.93" y="431.5" ></text>
</g>
<g >
<title>__snprintf (10 samples, 0.05%)</title><rect x="999.2" y="661" width="0.6" height="15.0" fill="rgb(229,109,14)" rx="2" ry="2" />
<text x="1002.17" y="671.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="996.0" y="597" width="0.1" height="15.0" fill="rgb(212,92,50)" rx="2" ry="2" />
<text x="998.99" y="607.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (5 samples, 0.02%)</title><rect x="1017.0" y="469" width="0.3" height="15.0" fill="rgb(251,227,13)" rx="2" ry="2" />
<text x="1020.05" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="786.8" y="533" width="0.4" height="15.0" fill="rgb(245,98,50)" rx="2" ry="2" />
<text x="789.76" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="308.0" y="597" width="0.4" height="15.0" fill="rgb(223,101,6)" rx="2" ry="2" />
<text x="311.01" y="607.5" ></text>
</g>
<g >
<title>OBJ_obj2nid (2 samples, 0.01%)</title><rect x="590.8" y="405" width="0.1" height="15.0" fill="rgb(220,61,20)" rx="2" ry="2" />
<text x="593.80" y="415.5" ></text>
</g>
<g >
<title>wire_graft_build_link_info (4 samples, 0.02%)</title><rect x="614.7" y="501" width="0.2" height="15.0" fill="rgb(236,116,36)" rx="2" ry="2" />
<text x="617.69" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (42 samples, 0.21%)</title><rect x="984.8" y="725" width="2.5" height="15.0" fill="rgb(209,139,6)" rx="2" ry="2" />
<text x="987.84" y="735.5" ></text>
</g>
<g >
<title>Maat_clean_status (14 samples, 0.07%)</title><rect x="797.3" y="501" width="0.8" height="15.0" fill="rgb(235,44,20)" rx="2" ry="2" />
<text x="800.32" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1015.8" y="741" width="0.1" height="15.0" fill="rgb(240,224,39)" rx="2" ry="2" />
<text x="1018.81" y="751.5" ></text>
</g>
<g >
<title>ASN1_OBJECT_new (2 samples, 0.01%)</title><rect x="330.8" y="85" width="0.1" height="15.0" fill="rgb(221,4,20)" rx="2" ry="2" />
<text x="333.78" y="95.5" ></text>
</g>
<g >
<title>qmdpi_flow_destroy (2 samples, 0.01%)</title><rect x="928.4" y="613" width="0.1" height="15.0" fill="rgb(234,64,31)" rx="2" ry="2" />
<text x="931.39" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="924.0" y="677" width="0.9" height="15.0" fill="rgb(220,62,8)" rx="2" ry="2" />
<text x="927.02" y="687.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="979.4" y="725" width="0.2" height="15.0" fill="rgb(251,195,3)" rx="2" ry="2" />
<text x="982.35" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="390.3" y="501" width="0.4" height="15.0" fill="rgb(227,163,50)" rx="2" ry="2" />
<text x="393.30" y="511.5" ></text>
</g>
<g >
<title>vxlan_entry (6,309 samples, 31.54%)</title><rect x="502.4" y="661" width="372.2" height="15.0" fill="rgb(219,37,28)" rx="2" ry="2" />
<text x="505.43" y="671.5" >vxlan_entry</text>
</g>
<g >
<title>copy_stream_info_to_heap (32 samples, 0.16%)</title><rect x="536.8" y="533" width="1.9" height="15.0" fill="rgb(247,43,4)" rx="2" ry="2" />
<text x="539.82" y="543.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="928.5" y="613" width="0.2" height="15.0" fill="rgb(227,97,16)" rx="2" ry="2" />
<text x="931.51" y="623.5" ></text>
</g>
<g >
<title>http_callPluginField (15 samples, 0.07%)</title><rect x="569.3" y="421" width="0.9" height="15.0" fill="rgb(220,71,45)" rx="2" ry="2" />
<text x="572.33" y="431.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (13 samples, 0.06%)</title><rect x="338.2" y="533" width="0.8" height="15.0" fill="rgb(216,14,38)" rx="2" ry="2" />
<text x="341.21" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (42 samples, 0.21%)</title><rect x="824.2" y="453" width="2.5" height="15.0" fill="rgb(231,24,41)" rx="2" ry="2" />
<text x="827.21" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (9 samples, 0.04%)</title><rect x="157.5" y="613" width="0.5" height="15.0" fill="rgb(238,186,6)" rx="2" ry="2" />
<text x="160.47" y="623.5" ></text>
</g>
<g >
<title>CIPMaskIndex::Find (77 samples, 0.38%)</title><rect x="285.9" y="757" width="4.6" height="15.0" fill="rgb(230,10,8)" rx="2" ry="2" />
<text x="288.95" y="767.5" ></text>
</g>
<g >
<title>dealipv4udppkt (1,363 samples, 6.81%)</title><rect x="788.6" y="613" width="80.4" height="15.0" fill="rgb(227,72,50)" rx="2" ry="2" />
<text x="791.59" y="623.5" >dealipv4u..</text>
</g>
<g >
<title>_IO_vfprintf_internal (21 samples, 0.10%)</title><rect x="318.9" y="485" width="1.3" height="15.0" fill="rgb(229,160,21)" rx="2" ry="2" />
<text x="321.92" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="327.7" y="389" width="1.2" height="15.0" fill="rgb(228,217,32)" rx="2" ry="2" />
<text x="330.71" y="399.5" ></text>
</g>
<g >
<title>dealipv4udppkt (172 samples, 0.86%)</title><rect x="297.9" y="709" width="10.1" height="15.0" fill="rgb(233,57,41)" rx="2" ry="2" />
<text x="300.86" y="719.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="402.2" y="613" width="0.4" height="15.0" fill="rgb(223,72,3)" rx="2" ry="2" />
<text x="405.15" y="623.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (92 samples, 0.46%)</title><rect x="992.1" y="693" width="5.4" height="15.0" fill="rgb(234,109,29)" rx="2" ry="2" />
<text x="995.09" y="703.5" ></text>
</g>
<g >
<title>app_proto_destroy_stream (4 samples, 0.02%)</title><rect x="551.5" y="485" width="0.2" height="15.0" fill="rgb(254,226,7)" rx="2" ry="2" />
<text x="554.45" y="495.5" ></text>
</g>
<g >
<title>qmdpi_flow_destroy (12 samples, 0.06%)</title><rect x="799.7" y="453" width="0.7" height="15.0" fill="rgb(225,206,16)" rx="2" ry="2" />
<text x="802.73" y="463.5" ></text>
</g>
<g >
<title>QUIC_ENTRY (69 samples, 0.34%)</title><rect x="833.1" y="549" width="4.0" height="15.0" fill="rgb(253,175,33)" rx="2" ry="2" />
<text x="836.06" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="590.4" y="261" width="0.2" height="15.0" fill="rgb(238,90,5)" rx="2" ry="2" />
<text x="593.44" y="271.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="574.5" y="421" width="0.2" height="15.0" fill="rgb(225,66,43)" rx="2" ry="2" />
<text x="577.52" y="431.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (107 samples, 0.53%)</title><rect x="855.1" y="533" width="6.3" height="15.0" fill="rgb(235,93,8)" rx="2" ry="2" />
<text x="858.12" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (62 samples, 0.31%)</title><rect x="973.2" y="741" width="3.6" height="15.0" fill="rgb(239,99,33)" rx="2" ry="2" />
<text x="976.16" y="751.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (8 samples, 0.04%)</title><rect x="401.7" y="565" width="0.5" height="15.0" fill="rgb(208,149,12)" rx="2" ry="2" />
<text x="404.68" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="556.4" y="437" width="0.2" height="15.0" fill="rgb(209,114,32)" rx="2" ry="2" />
<text x="559.41" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="333.8" y="213" width="0.2" height="15.0" fill="rgb(227,93,23)" rx="2" ry="2" />
<text x="336.85" y="223.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (6 samples, 0.03%)</title><rect x="310.6" y="453" width="0.4" height="15.0" fill="rgb(245,16,49)" rx="2" ry="2" />
<text x="313.60" y="463.5" ></text>
</g>
<g >
<title>CIPv4Match::SearchIP@plt (2 samples, 0.01%)</title><rect x="297.5" y="773" width="0.1" height="15.0" fill="rgb(229,194,49)" rx="2" ry="2" />
<text x="300.51" y="783.5" ></text>
</g>
<g >
<title>[sapp] (1,759 samples, 8.79%)</title><rect x="297.7" y="773" width="103.8" height="15.0" fill="rgb(236,202,20)" rx="2" ry="2" />
<text x="300.74" y="783.5" >[sapp]</text>
</g>
<g >
<title>ssl_callPlugins (29 samples, 0.14%)</title><rect x="336.0" y="485" width="1.7" height="15.0" fill="rgb(212,93,12)" rx="2" ry="2" />
<text x="338.97" y="495.5" ></text>
</g>
<g >
<title>plugin_process_pending (4 samples, 0.02%)</title><rect x="337.7" y="453" width="0.2" height="15.0" fill="rgb(223,0,39)" rx="2" ry="2" />
<text x="340.68" y="463.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="368.4" y="517" width="0.1" height="15.0" fill="rgb(233,25,32)" rx="2" ry="2" />
<text x="371.41" y="527.5" ></text>
</g>
<g >
<title>lpi_guess_protocol (116 samples, 0.58%)</title><rect x="845.4" y="533" width="6.8" height="15.0" fill="rgb(240,60,8)" rx="2" ry="2" />
<text x="848.39" y="543.5" ></text>
</g>
<g >
<title>http_initHttpConnection (3 samples, 0.01%)</title><rect x="574.8" y="485" width="0.2" height="15.0" fill="rgb(226,170,37)" rx="2" ry="2" />
<text x="577.81" y="495.5" ></text>
</g>
<g >
<title>ftp_control_identify (2 samples, 0.01%)</title><rect x="598.6" y="485" width="0.2" height="15.0" fill="rgb(235,155,3)" rx="2" ry="2" />
<text x="601.64" y="495.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="375.8" y="469" width="0.2" height="15.0" fill="rgb(206,175,54)" rx="2" ry="2" />
<text x="378.79" y="479.5" ></text>
</g>
<g >
<title>eth_entry (172 samples, 0.86%)</title><rect x="297.9" y="677" width="10.1" height="15.0" fill="rgb(240,200,53)" rx="2" ry="2" />
<text x="300.86" y="687.5" ></text>
</g>
<g >
<title>stream_process (976 samples, 4.88%)</title><rect x="308.6" y="597" width="57.6" height="15.0" fill="rgb(240,215,51)" rx="2" ry="2" />
<text x="311.60" y="607.5" >stream..</text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="1016.6" y="549" width="0.1" height="15.0" fill="rgb(247,164,33)" rx="2" ry="2" />
<text x="1019.57" y="559.5" ></text>
</g>
<g >
<title>stream_make_hash (2 samples, 0.01%)</title><rect x="809.2" y="581" width="0.1" height="15.0" fill="rgb(225,74,27)" rx="2" ry="2" />
<text x="812.17" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="335.0" y="357" width="0.1" height="15.0" fill="rgb(249,31,49)" rx="2" ry="2" />
<text x="337.97" y="367.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (10 samples, 0.05%)</title><rect x="566.6" y="453" width="0.5" height="15.0" fill="rgb(237,126,9)" rx="2" ry="2" />
<text x="569.55" y="463.5" ></text>
</g>
<g >
<title>parse_packet (7 samples, 0.03%)</title><rect x="627.2" y="501" width="0.4" height="15.0" fill="rgb(223,19,52)" rx="2" ry="2" />
<text x="630.19" y="511.5" ></text>
</g>
<g >
<title>qm_malloc_default (4 samples, 0.02%)</title><rect x="560.8" y="325" width="0.3" height="15.0" fill="rgb(224,219,28)" rx="2" ry="2" />
<text x="563.83" y="335.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (3 samples, 0.01%)</title><rect x="928.8" y="645" width="0.2" height="15.0" fill="rgb(206,201,48)" rx="2" ry="2" />
<text x="931.80" y="655.5" ></text>
</g>
<g >
<title>[ftp.so] (6 samples, 0.03%)</title><rect x="598.3" y="485" width="0.3" height="15.0" fill="rgb(253,46,15)" rx="2" ry="2" />
<text x="601.29" y="495.5" ></text>
</g>
<g >
<title>EVP_PKEY_free (2 samples, 0.01%)</title><rect x="589.5" y="309" width="0.1" height="15.0" fill="rgb(214,61,26)" rx="2" ry="2" />
<text x="592.50" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="977.6" y="565" width="0.2" height="15.0" fill="rgb(238,97,26)" rx="2" ry="2" />
<text x="980.64" y="575.5" ></text>
</g>
<g >
<title>qm_free_default (2 samples, 0.01%)</title><rect x="553.2" y="453" width="0.1" height="15.0" fill="rgb(218,187,21)" rx="2" ry="2" />
<text x="556.16" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (384 samples, 1.92%)</title><rect x="626.6" y="533" width="22.7" height="15.0" fill="rgb(248,192,33)" rx="2" ry="2" />
<text x="629.60" y="543.5" >p..</text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="613.9" y="501" width="0.1" height="15.0" fill="rgb(221,46,6)" rx="2" ry="2" />
<text x="616.86" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="517" width="3.9" height="15.0" fill="rgb(222,184,48)" rx="2" ry="2" />
<text x="393.77" y="527.5" ></text>
</g>
<g >
<title>ASN1_STRING_free (2 samples, 0.01%)</title><rect x="334.1" y="197" width="0.2" height="15.0" fill="rgb(249,15,11)" rx="2" ry="2" />
<text x="337.14" y="207.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (8 samples, 0.04%)</title><rect x="401.7" y="581" width="0.5" height="15.0" fill="rgb(237,171,48)" rx="2" ry="2" />
<text x="404.68" y="591.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (119 samples, 0.59%)</title><rect x="320.2" y="533" width="7.0" height="15.0" fill="rgb(218,103,35)" rx="2" ry="2" />
<text x="323.16" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="533" width="0.3" height="15.0" fill="rgb(215,125,7)" rx="2" ry="2" />
<text x="990.55" y="543.5" ></text>
</g>
<g >
<title>[quic.so] (65 samples, 0.32%)</title><rect x="833.3" y="533" width="3.8" height="15.0" fill="rgb(230,165,45)" rx="2" ry="2" />
<text x="836.30" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (6 samples, 0.03%)</title><rect x="47.0" y="773" width="0.3" height="15.0" fill="rgb(239,131,12)" rx="2" ry="2" />
<text x="49.99" y="783.5" ></text>
</g>
<g >
<title>stratum_identify (10 samples, 0.05%)</title><rect x="597.7" y="501" width="0.6" height="15.0" fill="rgb(250,221,50)" rx="2" ry="2" />
<text x="600.70" y="511.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="329.6" y="357" width="0.2" height="15.0" fill="rgb(211,119,14)" rx="2" ry="2" />
<text x="332.60" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="595.1" y="341" width="0.7" height="15.0" fill="rgb(237,62,9)" rx="2" ry="2" />
<text x="598.10" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="405" width="4.2" height="15.0" fill="rgb(220,95,48)" rx="2" ry="2" />
<text x="333.19" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="302.2" y="533" width="0.7" height="15.0" fill="rgb(244,31,11)" rx="2" ry="2" />
<text x="305.23" y="543.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (5 samples, 0.02%)</title><rect x="1017.0" y="629" width="0.3" height="15.0" fill="rgb(248,57,0)" rx="2" ry="2" />
<text x="1020.05" y="639.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (2 samples, 0.01%)</title><rect x="809.6" y="485" width="0.1" height="15.0" fill="rgb(212,78,29)" rx="2" ry="2" />
<text x="812.59" y="495.5" ></text>
</g>
<g >
<title>OBJ_bsearch_ex_ (2 samples, 0.01%)</title><rect x="590.8" y="389" width="0.1" height="15.0" fill="rgb(240,117,27)" rx="2" ry="2" />
<text x="593.80" y="399.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="977.1" y="533" width="0.3" height="15.0" fill="rgb(223,74,38)" rx="2" ry="2" />
<text x="980.11" y="543.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="993.0" y="645" width="0.2" height="15.0" fill="rgb(248,199,12)" rx="2" ry="2" />
<text x="996.04" y="655.5" ></text>
</g>
<g >
<title>http_url_decode (2 samples, 0.01%)</title><rect x="986.5" y="469" width="0.1" height="15.0" fill="rgb(220,38,31)" rx="2" ry="2" />
<text x="989.49" y="479.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="976.9" y="565" width="0.1" height="15.0" fill="rgb(216,222,45)" rx="2" ry="2" />
<text x="979.88" y="575.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (8 samples, 0.04%)</title><rect x="645.2" y="469" width="0.5" height="15.0" fill="rgb(225,168,32)" rx="2" ry="2" />
<text x="648.18" y="479.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (24 samples, 0.12%)</title><rect x="998.3" y="693" width="1.5" height="15.0" fill="rgb(228,50,38)" rx="2" ry="2" />
<text x="1001.35" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="304.5" y="533" width="0.4" height="15.0" fill="rgb(219,43,52)" rx="2" ry="2" />
<text x="307.47" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="421.1" y="677" width="0.1" height="15.0" fill="rgb(211,27,9)" rx="2" ry="2" />
<text x="424.09" y="687.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="612.7" y="485" width="0.2" height="15.0" fill="rgb(210,198,28)" rx="2" ry="2" />
<text x="615.68" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (9 samples, 0.04%)</title><rect x="786.7" y="565" width="0.5" height="15.0" fill="rgb(220,40,9)" rx="2" ry="2" />
<text x="789.70" y="575.5" ></text>
</g>
<g >
<title>lrustream (3 samples, 0.01%)</title><rect x="1009.6" y="677" width="0.2" height="15.0" fill="rgb(243,8,48)" rx="2" ry="2" />
<text x="1012.61" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (118 samples, 0.59%)</title><rect x="311.4" y="405" width="6.9" height="15.0" fill="rgb(205,0,10)" rx="2" ry="2" />
<text x="314.37" y="415.5" ></text>
</g>
<g >
<title>Maat_clean_status (182 samples, 0.91%)</title><rect x="747.8" y="501" width="10.7" height="15.0" fill="rgb(241,229,28)" rx="2" ry="2" />
<text x="750.77" y="511.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="990.5" y="645" width="0.1" height="15.0" fill="rgb(210,199,27)" rx="2" ry="2" />
<text x="993.50" y="655.5" ></text>
</g>
<g >
<title>[libMESA_htable.so] (2 samples, 0.01%)</title><rect x="976.6" y="613" width="0.2" height="15.0" fill="rgb(241,6,12)" rx="2" ry="2" />
<text x="979.64" y="623.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="383.9" y="501" width="0.6" height="15.0" fill="rgb(230,167,26)" rx="2" ry="2" />
<text x="386.93" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="303.5" y="533" width="0.6" height="15.0" fill="rgb(216,208,30)" rx="2" ry="2" />
<text x="306.53" y="543.5" ></text>
</g>
<g >
<title>rulescan_search (529 samples, 2.64%)</title><rect x="204.7" y="757" width="31.2" height="15.0" fill="rgb(238,146,44)" rx="2" ry="2" />
<text x="207.66" y="767.5" >ru..</text>
</g>
<g >
<title>stream_process (82 samples, 0.41%)</title><rect x="798.7" y="517" width="4.8" height="15.0" fill="rgb(210,97,51)" rx="2" ry="2" />
<text x="801.67" y="527.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="1009.7" y="437" width="0.1" height="15.0" fill="rgb(250,158,43)" rx="2" ry="2" />
<text x="1012.67" y="447.5" ></text>
</g>
<g >
<title>printaddr (9 samples, 0.04%)</title><rect x="597.1" y="501" width="0.5" height="15.0" fill="rgb(242,13,33)" rx="2" ry="2" />
<text x="600.11" y="511.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (3 samples, 0.01%)</title><rect x="402.2" y="597" width="0.2" height="15.0" fill="rgb(254,220,13)" rx="2" ry="2" />
<text x="405.21" y="607.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="573.7" y="405" width="0.2" height="15.0" fill="rgb(232,88,44)" rx="2" ry="2" />
<text x="576.69" y="415.5" ></text>
</g>
<g >
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="472.7" y="645" width="0.2" height="15.0" fill="rgb(210,150,6)" rx="2" ry="2" />
<text x="475.70" y="655.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (27 samples, 0.13%)</title><rect x="825.0" y="421" width="1.6" height="15.0" fill="rgb(242,98,27)" rx="2" ry="2" />
<text x="828.04" y="431.5" ></text>
</g>
<g >
<title>http_callPluginField (7 samples, 0.03%)</title><rect x="320.2" y="469" width="0.4" height="15.0" fill="rgb(219,156,27)" rx="2" ry="2" />
<text x="323.16" y="479.5" ></text>
</g>
<g >
<title>ASN1_item_free (3 samples, 0.01%)</title><rect x="334.1" y="261" width="0.2" height="15.0" fill="rgb(239,204,47)" rx="2" ry="2" />
<text x="337.14" y="271.5" ></text>
</g>
<g >
<title>ASN1_mbstring_copy (7 samples, 0.03%)</title><rect x="331.2" y="277" width="0.5" height="15.0" fill="rgb(206,42,20)" rx="2" ry="2" />
<text x="334.25" y="287.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="593.4" y="373" width="0.6" height="15.0" fill="rgb(228,130,28)" rx="2" ry="2" />
<text x="596.39" y="383.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="396.7" y="517" width="0.2" height="15.0" fill="rgb(223,95,31)" rx="2" ry="2" />
<text x="399.73" y="527.5" ></text>
</g>
<g >
<title>app_proto_worke_process (6 samples, 0.03%)</title><rect x="987.6" y="581" width="0.3" height="15.0" fill="rgb(221,21,22)" rx="2" ry="2" />
<text x="990.55" y="591.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (11 samples, 0.05%)</title><rect x="986.6" y="645" width="0.7" height="15.0" fill="rgb(238,106,48)" rx="2" ry="2" />
<text x="989.61" y="655.5" ></text>
</g>
<g >
<title>wangw_check_is_first_tcp_pkt (3 samples, 0.01%)</title><rect x="629.0" y="501" width="0.2" height="15.0" fill="rgb(206,95,38)" rx="2" ry="2" />
<text x="632.02" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="927.4" y="549" width="0.2" height="15.0" fill="rgb(212,19,21)" rx="2" ry="2" />
<text x="930.44" y="559.5" ></text>
</g>
<g >
<title>[libMESA_htable.so] (4 samples, 0.02%)</title><rect x="614.5" y="469" width="0.2" height="15.0" fill="rgb(220,60,46)" rx="2" ry="2" />
<text x="617.45" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="453" width="0.1" height="15.0" fill="rgb(235,144,19)" rx="2" ry="2" />
<text x="404.56" y="463.5" ></text>
</g>
<g >
<title>unroll_tree_refs (2 samples, 0.01%)</title><rect x="936.0" y="645" width="0.1" height="15.0" fill="rgb(238,202,37)" rx="2" ry="2" />
<text x="939.00" y="655.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (32 samples, 0.16%)</title><rect x="592.9" y="453" width="1.9" height="15.0" fill="rgb(218,154,22)" rx="2" ry="2" />
<text x="595.92" y="463.5" ></text>
</g>
<g >
<title>RTP_UDP_ENTRY (4 samples, 0.02%)</title><rect x="837.1" y="549" width="0.3" height="15.0" fill="rgb(206,106,29)" rx="2" ry="2" />
<text x="840.13" y="559.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (7 samples, 0.03%)</title><rect x="572.3" y="341" width="0.4" height="15.0" fill="rgb(233,75,37)" rx="2" ry="2" />
<text x="575.33" y="351.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (79 samples, 0.39%)</title><rect x="394.8" y="597" width="4.6" height="15.0" fill="rgb(229,171,37)" rx="2" ry="2" />
<text x="397.78" y="607.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (8 samples, 0.04%)</title><rect x="593.6" y="357" width="0.4" height="15.0" fill="rgb(253,220,47)" rx="2" ry="2" />
<text x="596.57" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (115 samples, 0.57%)</title><rect x="929.7" y="693" width="6.8" height="15.0" fill="rgb(223,59,42)" rx="2" ry="2" />
<text x="932.74" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="852.6" y="517" width="0.9" height="15.0" fill="rgb(223,34,12)" rx="2" ry="2" />
<text x="855.59" y="527.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="984.7" y="581" width="0.1" height="15.0" fill="rgb(249,67,54)" rx="2" ry="2" />
<text x="987.66" y="591.5" ></text>
</g>
<g >
<title>del_stream_by_time (8 samples, 0.04%)</title><rect x="402.2" y="757" width="0.4" height="15.0" fill="rgb(218,154,48)" rx="2" ry="2" />
<text x="405.15" y="767.5" ></text>
</g>
<g >
<title>ipv4_entry (101 samples, 0.50%)</title><rect x="984.8" y="789" width="6.0" height="15.0" fill="rgb(218,212,14)" rx="2" ry="2" />
<text x="987.84" y="799.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="317.4" y="357" width="0.1" height="15.0" fill="rgb(210,38,44)" rx="2" ry="2" />
<text x="320.39" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="928.8" y="613" width="0.2" height="15.0" fill="rgb(238,229,32)" rx="2" ry="2" />
<text x="931.80" y="623.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (42 samples, 0.21%)</title><rect x="646.7" y="517" width="2.5" height="15.0" fill="rgb(248,64,44)" rx="2" ry="2" />
<text x="649.72" y="527.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="567.0" y="437" width="0.1" height="15.0" fill="rgb(220,183,22)" rx="2" ry="2" />
<text x="569.97" y="447.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (7 samples, 0.03%)</title><rect x="308.0" y="613" width="0.4" height="15.0" fill="rgb(253,133,7)" rx="2" ry="2" />
<text x="311.01" y="623.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (7 samples, 0.03%)</title><rect x="301.5" y="469" width="0.4" height="15.0" fill="rgb(215,6,7)" rx="2" ry="2" />
<text x="304.52" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (78 samples, 0.39%)</title><rect x="166.7" y="725" width="4.6" height="15.0" fill="rgb(236,121,41)" rx="2" ry="2" />
<text x="169.73" y="735.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="337.7" y="405" width="0.2" height="15.0" fill="rgb(230,48,31)" rx="2" ry="2" />
<text x="340.74" y="415.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (7 samples, 0.03%)</title><rect x="402.2" y="677" width="0.4" height="15.0" fill="rgb(241,9,39)" rx="2" ry="2" />
<text x="405.15" y="687.5" ></text>
</g>
<g >
<title>fw_ssl_entry (5 samples, 0.02%)</title><rect x="1017.3" y="501" width="0.3" height="15.0" fill="rgb(217,199,4)" rx="2" ry="2" />
<text x="1020.34" y="511.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="829.8" y="485" width="0.1" height="15.0" fill="rgb(224,189,38)" rx="2" ry="2" />
<text x="832.76" y="495.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (9 samples, 0.04%)</title><rect x="1010.4" y="485" width="0.6" height="15.0" fill="rgb(219,81,53)" rx="2" ry="2" />
<text x="1013.44" y="495.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="383.7" y="453" width="0.2" height="15.0" fill="rgb(239,53,21)" rx="2" ry="2" />
<text x="386.75" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="794.6" y="549" width="0.4" height="15.0" fill="rgb(216,217,18)" rx="2" ry="2" />
<text x="797.60" y="559.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (158 samples, 0.79%)</title><rect x="162.2" y="757" width="9.4" height="15.0" fill="rgb(232,53,10)" rx="2" ry="2" />
<text x="165.25" y="767.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="840.3" y="517" width="0.2" height="15.0" fill="rgb(223,183,9)" rx="2" ry="2" />
<text x="843.26" y="527.5" ></text>
</g>
<g >
<title>poll_idle (129 samples, 0.64%)</title><rect x="1176.1" y="677" width="7.6" height="15.0" fill="rgb(249,65,25)" rx="2" ry="2" />
<text x="1179.14" y="687.5" ></text>
</g>
<g >
<title>__calloc (94 samples, 0.47%)</title><rect x="630.5" y="501" width="5.5" height="15.0" fill="rgb(244,40,19)" rx="2" ry="2" />
<text x="633.50" y="511.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="982.4" y="469" width="0.1" height="15.0" fill="rgb(218,147,37)" rx="2" ry="2" />
<text x="985.36" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="386.1" y="469" width="0.1" height="15.0" fill="rgb(219,140,2)" rx="2" ry="2" />
<text x="389.11" y="479.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (7 samples, 0.03%)</title><rect x="421.3" y="709" width="0.4" height="15.0" fill="rgb(214,135,1)" rx="2" ry="2" />
<text x="424.32" y="719.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="340.4" y="517" width="0.6" height="15.0" fill="rgb(248,109,37)" rx="2" ry="2" />
<text x="343.39" y="527.5" ></text>
</g>
<g >
<title>EVP_PKEY_new (2 samples, 0.01%)</title><rect x="591.0" y="405" width="0.2" height="15.0" fill="rgb(227,93,53)" rx="2" ry="2" />
<text x="594.03" y="415.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="1017.6" y="437" width="0.2" height="15.0" fill="rgb(222,15,10)" rx="2" ry="2" />
<text x="1020.64" y="447.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (20 samples, 0.10%)</title><rect x="397.4" y="549" width="1.2" height="15.0" fill="rgb(212,210,26)" rx="2" ry="2" />
<text x="400.38" y="559.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="983.2" y="469" width="0.1" height="15.0" fill="rgb(248,168,49)" rx="2" ry="2" />
<text x="986.19" y="479.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (3 samples, 0.01%)</title><rect x="794.3" y="581" width="0.2" height="15.0" fill="rgb(231,216,51)" rx="2" ry="2" />
<text x="797.31" y="591.5" ></text>
</g>
<g >
<title>PROT_PROCESS (197 samples, 0.98%)</title><rect x="991.4" y="757" width="11.7" height="15.0" fill="rgb(217,218,51)" rx="2" ry="2" />
<text x="994.45" y="767.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (9 samples, 0.04%)</title><rect x="422.1" y="693" width="0.5" height="15.0" fill="rgb(221,145,54)" rx="2" ry="2" />
<text x="425.09" y="703.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1002.4" y="661" width="0.1" height="15.0" fill="rgb(244,109,23)" rx="2" ry="2" />
<text x="1005.42" y="671.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (2 samples, 0.01%)</title><rect x="803.2" y="485" width="0.1" height="15.0" fill="rgb(247,63,3)" rx="2" ry="2" />
<text x="806.16" y="495.5" ></text>
</g>
<g >
<title>Maat_rule_get_ex_data (13 samples, 0.06%)</title><rect x="367.1" y="549" width="0.8" height="15.0" fill="rgb(209,157,2)" rx="2" ry="2" />
<text x="370.11" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (154 samples, 0.77%)</title><rect x="374.8" y="517" width="9.1" height="15.0" fill="rgb(214,213,47)" rx="2" ry="2" />
<text x="377.84" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="996.3" y="629" width="0.5" height="15.0" fill="rgb(205,102,19)" rx="2" ry="2" />
<text x="999.34" y="639.5" ></text>
</g>
<g >
<title>__sprintf (29 samples, 0.14%)</title><rect x="974.2" y="565" width="1.7" height="15.0" fill="rgb(230,86,1)" rx="2" ry="2" />
<text x="977.16" y="575.5" ></text>
</g>
<g >
<title>kni_tcpall_entry (7 samples, 0.03%)</title><rect x="685.0" y="485" width="0.4" height="15.0" fill="rgb(223,222,11)" rx="2" ry="2" />
<text x="688.00" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (137 samples, 0.68%)</title><rect x="266.0" y="725" width="8.1" height="15.0" fill="rgb(224,21,25)" rx="2" ry="2" />
<text x="269.01" y="735.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (6 samples, 0.03%)</title><rect x="820.1" y="485" width="0.3" height="15.0" fill="rgb(225,41,45)" rx="2" ry="2" />
<text x="823.08" y="495.5" ></text>
</g>
<g >
<title>plugin_process_pending (6 samples, 0.03%)</title><rect x="835.7" y="501" width="0.3" height="15.0" fill="rgb(220,29,39)" rx="2" ry="2" />
<text x="838.66" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="300.5" y="261" width="0.1" height="15.0" fill="rgb(210,193,50)" rx="2" ry="2" />
<text x="303.52" y="271.5" ></text>
</g>
<g >
<title>[libprotoident.so] (114 samples, 0.57%)</title><rect x="845.5" y="517" width="6.7" height="15.0" fill="rgb(219,78,1)" rx="2" ry="2" />
<text x="848.51" y="527.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (6 samples, 0.03%)</title><rect x="332.8" y="213" width="0.3" height="15.0" fill="rgb(209,87,27)" rx="2" ry="2" />
<text x="335.78" y="223.5" ></text>
</g>
<g >
<title>project_requirement_destroy (7 samples, 0.03%)</title><rect x="489.9" y="613" width="0.4" height="15.0" fill="rgb(205,8,29)" rx="2" ry="2" />
<text x="492.87" y="623.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (18 samples, 0.09%)</title><rect x="330.2" y="293" width="1.0" height="15.0" fill="rgb(252,146,1)" rx="2" ry="2" />
<text x="333.19" y="303.5" ></text>
</g>
<g >
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="1016.6" y="597" width="0.2" height="15.0" fill="rgb(219,24,1)" rx="2" ry="2" />
<text x="1019.57" y="607.5" ></text>
</g>
<g >
<title>__fdget (2 samples, 0.01%)</title><rect x="948.1" y="581" width="0.2" height="15.0" fill="rgb(205,131,40)" rx="2" ry="2" />
<text x="951.15" y="591.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (2 samples, 0.01%)</title><rect x="786.8" y="517" width="0.1" height="15.0" fill="rgb(229,119,17)" rx="2" ry="2" />
<text x="789.76" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="569.9" y="277" width="0.3" height="15.0" fill="rgb(231,149,32)" rx="2" ry="2" />
<text x="572.92" y="287.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (2 samples, 0.01%)</title><rect x="809.6" y="501" width="0.1" height="15.0" fill="rgb(244,50,54)" rx="2" ry="2" />
<text x="812.59" y="511.5" ></text>
</g>
<g >
<title>kni_get_tcpopt (3 samples, 0.01%)</title><rect x="638.7" y="485" width="0.2" height="15.0" fill="rgb(226,110,41)" rx="2" ry="2" />
<text x="641.70" y="495.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (7 samples, 0.03%)</title><rect x="320.2" y="421" width="0.4" height="15.0" fill="rgb(229,62,17)" rx="2" ry="2" />
<text x="323.16" y="431.5" ></text>
</g>
<g >
<title>ssl_releaseSslStream (3 samples, 0.01%)</title><rect x="596.9" y="501" width="0.2" height="15.0" fill="rgb(225,212,9)" rx="2" ry="2" />
<text x="599.93" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1018.3" y="629" width="0.2" height="15.0" fill="rgb(217,114,3)" rx="2" ry="2" />
<text x="1021.34" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="308.0" y="581" width="0.4" height="15.0" fill="rgb(251,218,42)" rx="2" ry="2" />
<text x="311.01" y="591.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.05%)</title><rect x="922.1" y="677" width="0.6" height="15.0" fill="rgb(254,66,42)" rx="2" ry="2" />
<text x="925.08" y="687.5" ></text>
</g>
<g >
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="794.1" y="565" width="0.1" height="15.0" fill="rgb(223,67,18)" rx="2" ry="2" />
<text x="797.07" y="575.5" ></text>
</g>
<g >
<title>MV_Sketch_update (25 samples, 0.12%)</title><rect x="855.5" y="501" width="1.5" height="15.0" fill="rgb(217,52,11)" rx="2" ry="2" />
<text x="858.48" y="511.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="636.2" y="469" width="0.4" height="15.0" fill="rgb(235,206,16)" rx="2" ry="2" />
<text x="639.22" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="987.3" y="597" width="0.1" height="15.0" fill="rgb(235,131,28)" rx="2" ry="2" />
<text x="990.32" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="981.7" y="517" width="0.2" height="15.0" fill="rgb(230,153,12)" rx="2" ry="2" />
<text x="984.71" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="318.4" y="421" width="0.5" height="15.0" fill="rgb(233,32,10)" rx="2" ry="2" />
<text x="321.45" y="431.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecode (7 samples, 0.03%)</title><rect x="572.9" y="341" width="0.4" height="15.0" fill="rgb(210,94,10)" rx="2" ry="2" />
<text x="575.87" y="351.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="401.7" y="597" width="0.5" height="15.0" fill="rgb(218,12,44)" rx="2" ry="2" />
<text x="404.68" y="607.5" ></text>
</g>
<g >
<title>[libqmengine.so] (7 samples, 0.03%)</title><rect x="552.8" y="453" width="0.4" height="15.0" fill="rgb(237,189,38)" rx="2" ry="2" />
<text x="555.75" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (976 samples, 4.88%)</title><rect x="308.6" y="613" width="57.6" height="15.0" fill="rgb(247,203,54)" rx="2" ry="2" />
<text x="311.60" y="623.5" >stream..</text>
</g>
<g >
<title>ec_GFp_mont_group_set_curve (6 samples, 0.03%)</title><rect x="592.1" y="357" width="0.3" height="15.0" fill="rgb(248,209,48)" rx="2" ry="2" />
<text x="595.10" y="367.5" ></text>
</g>
<g >
<title>vxlan_entry (62 samples, 0.31%)</title><rect x="973.2" y="773" width="3.6" height="15.0" fill="rgb(249,20,0)" rx="2" ry="2" />
<text x="976.16" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="996.6" y="597" width="0.2" height="15.0" fill="rgb(249,215,29)" rx="2" ry="2" />
<text x="999.64" y="607.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_tcp (241 samples, 1.20%)</title><rect x="686.6" y="581" width="14.2" height="15.0" fill="rgb(225,224,7)" rx="2" ry="2" />
<text x="689.59" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (31 samples, 0.15%)</title><rect x="385.9" y="517" width="1.9" height="15.0" fill="rgb(236,127,33)" rx="2" ry="2" />
<text x="388.93" y="527.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="987.3" y="565" width="0.1" height="15.0" fill="rgb(216,86,37)" rx="2" ry="2" />
<text x="990.32" y="575.5" ></text>
</g>
<g >
<title>tsg_send_log (21 samples, 0.10%)</title><rect x="982.1" y="517" width="1.3" height="15.0" fill="rgb(243,49,27)" rx="2" ry="2" />
<text x="985.13" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="797.1" y="517" width="0.1" height="15.0" fill="rgb(224,43,34)" rx="2" ry="2" />
<text x="800.08" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="610.0" y="501" width="0.1" height="15.0" fill="rgb(209,114,28)" rx="2" ry="2" />
<text x="613.03" y="511.5" ></text>
</g>
<g >
<title>schedule (50 samples, 0.25%)</title><rect x="932.5" y="629" width="2.9" height="15.0" fill="rgb(244,66,24)" rx="2" ry="2" />
<text x="935.46" y="639.5" ></text>
</g>
<g >
<title>printaddr (3 samples, 0.01%)</title><rect x="302.1" y="533" width="0.1" height="15.0" fill="rgb(227,146,18)" rx="2" ry="2" />
<text x="305.05" y="543.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="574.2" y="421" width="0.1" height="15.0" fill="rgb(249,128,22)" rx="2" ry="2" />
<text x="577.22" y="431.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="420.4" y="549" width="0.2" height="15.0" fill="rgb(220,107,42)" rx="2" ry="2" />
<text x="423.44" y="559.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="453" width="3.9" height="15.0" fill="rgb(235,19,18)" rx="2" ry="2" />
<text x="393.77" y="463.5" ></text>
</g>
<g >
<title>cpuidle_reflect (2 samples, 0.01%)</title><rect x="1018.5" y="741" width="0.1" height="15.0" fill="rgb(219,219,2)" rx="2" ry="2" />
<text x="1021.46" y="751.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (19 samples, 0.09%)</title><rect x="124.9" y="677" width="1.1" height="15.0" fill="rgb(246,12,30)" rx="2" ry="2" />
<text x="127.85" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_free (48 samples, 0.24%)</title><rect x="748.2" y="469" width="2.8" height="15.0" fill="rgb(210,152,24)" rx="2" ry="2" />
<text x="751.18" y="479.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="420.9" y="501" width="0.1" height="15.0" fill="rgb(241,47,18)" rx="2" ry="2" />
<text x="423.91" y="511.5" ></text>
</g>
<g >
<title>__calloc (5 samples, 0.02%)</title><rect x="615.0" y="485" width="0.3" height="15.0" fill="rgb(217,3,3)" rx="2" ry="2" />
<text x="617.98" y="495.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="568.3" y="485" width="0.1" height="15.0" fill="rgb(235,82,12)" rx="2" ry="2" />
<text x="571.26" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="570.9" y="341" width="0.5" height="15.0" fill="rgb(231,125,45)" rx="2" ry="2" />
<text x="573.92" y="351.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (8 samples, 0.04%)</title><rect x="372.5" y="501" width="0.5" height="15.0" fill="rgb(236,104,31)" rx="2" ry="2" />
<text x="375.48" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="973.6" y="597" width="0.1" height="15.0" fill="rgb(233,140,15)" rx="2" ry="2" />
<text x="976.57" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="650.3" y="501" width="0.4" height="15.0" fill="rgb(205,172,8)" rx="2" ry="2" />
<text x="653.26" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1009.6" y="501" width="0.2" height="15.0" fill="rgb(219,128,54)" rx="2" ry="2" />
<text x="1012.61" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="588.8" y="341" width="1.0" height="15.0" fill="rgb(232,84,37)" rx="2" ry="2" />
<text x="591.79" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="44.1" y="677" width="0.2" height="15.0" fill="rgb(229,136,27)" rx="2" ry="2" />
<text x="47.10" y="687.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (17 samples, 0.08%)</title><rect x="151.3" y="629" width="1.0" height="15.0" fill="rgb(231,129,37)" rx="2" ry="2" />
<text x="154.34" y="639.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (9 samples, 0.04%)</title><rect x="998.6" y="677" width="0.5" height="15.0" fill="rgb(249,120,7)" rx="2" ry="2" />
<text x="1001.58" y="687.5" ></text>
</g>
<g >
<title>__sprintf (14 samples, 0.07%)</title><rect x="397.7" y="517" width="0.9" height="15.0" fill="rgb(219,205,35)" rx="2" ry="2" />
<text x="400.73" y="527.5" ></text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="543.3" y="549" width="0.1" height="15.0" fill="rgb(229,0,13)" rx="2" ry="2" />
<text x="546.25" y="559.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (3 samples, 0.01%)</title><rect x="1008.1" y="741" width="0.2" height="15.0" fill="rgb(242,101,30)" rx="2" ry="2" />
<text x="1011.14" y="751.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="1012.7" y="517" width="0.2" height="15.0" fill="rgb(251,108,7)" rx="2" ry="2" />
<text x="1015.68" y="527.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (49 samples, 0.24%)</title><rect x="305.0" y="581" width="2.9" height="15.0" fill="rgb(245,55,4)" rx="2" ry="2" />
<text x="308.00" y="591.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="990.6" y="613" width="0.1" height="15.0" fill="rgb(236,116,6)" rx="2" ry="2" />
<text x="993.62" y="623.5" ></text>
</g>
<g >
<title>project_requirement_destroy (2 samples, 0.01%)</title><rect x="928.2" y="693" width="0.1" height="15.0" fill="rgb(246,111,21)" rx="2" ry="2" />
<text x="931.15" y="703.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="541.6" y="517" width="0.3" height="15.0" fill="rgb(235,108,38)" rx="2" ry="2" />
<text x="544.60" y="527.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (3 samples, 0.01%)</title><rect x="337.3" y="389" width="0.2" height="15.0" fill="rgb(232,173,19)" rx="2" ry="2" />
<text x="340.33" y="399.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="842.7" y="485" width="0.3" height="15.0" fill="rgb(218,18,6)" rx="2" ry="2" />
<text x="845.68" y="495.5" ></text>
</g>
<g >
<title>[quic.so] (5 samples, 0.02%)</title><rect x="836.2" y="437" width="0.3" height="15.0" fill="rgb(254,196,3)" rx="2" ry="2" />
<text x="839.25" y="447.5" ></text>
</g>
<g >
<title>http_doWithContentType (3 samples, 0.01%)</title><rect x="574.2" y="437" width="0.1" height="15.0" fill="rgb(224,156,22)" rx="2" ry="2" />
<text x="577.16" y="447.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (7 samples, 0.03%)</title><rect x="374.4" y="517" width="0.4" height="15.0" fill="rgb(224,19,42)" rx="2" ry="2" />
<text x="377.37" y="527.5" ></text>
</g>
<g >
<title>[sapp] (1,352 samples, 6.76%)</title><rect x="308.4" y="645" width="79.8" height="15.0" fill="rgb(231,91,25)" rx="2" ry="2" />
<text x="311.42" y="655.5" >[sapp]</text>
</g>
<g >
<title>CRYPTO_malloc (4 samples, 0.02%)</title><rect x="331.7" y="261" width="0.2" height="15.0" fill="rgb(218,160,48)" rx="2" ry="2" />
<text x="334.66" y="271.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="976.8" y="677" width="1.0" height="15.0" fill="rgb(215,32,12)" rx="2" ry="2" />
<text x="979.82" y="687.5" ></text>
</g>
<g >
<title>sk_new (2 samples, 0.01%)</title><rect x="331.0" y="197" width="0.1" height="15.0" fill="rgb(241,103,47)" rx="2" ry="2" />
<text x="334.01" y="207.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="996.4" y="597" width="0.2" height="15.0" fill="rgb(231,83,23)" rx="2" ry="2" />
<text x="999.40" y="607.5" ></text>
</g>
<g >
<title>finish_task_switch (100 samples, 0.50%)</title><rect x="1183.7" y="693" width="5.9" height="15.0" fill="rgb(250,68,52)" rx="2" ry="2" />
<text x="1186.75" y="703.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (10 samples, 0.05%)</title><rect x="554.5" y="405" width="0.6" height="15.0" fill="rgb(209,4,5)" rx="2" ry="2" />
<text x="557.52" y="415.5" ></text>
</g>
<g >
<title>print_spent_time (2 samples, 0.01%)</title><rect x="989.1" y="581" width="0.1" height="15.0" fill="rgb(248,192,23)" rx="2" ry="2" />
<text x="992.09" y="591.5" ></text>
</g>
<g >
<title>call_cpuidle (2,795 samples, 13.97%)</title><rect x="1018.9" y="725" width="164.8" height="15.0" fill="rgb(248,5,31)" rx="2" ry="2" />
<text x="1021.88" y="735.5" >call_cpuidle</text>
</g>
<g >
<title>_int_malloc (19 samples, 0.09%)</title><rect x="321.0" y="325" width="1.1" height="15.0" fill="rgb(251,78,0)" rx="2" ry="2" />
<text x="323.99" y="335.5" ></text>
</g>
<g >
<title>[libwangw.so] (3 samples, 0.01%)</title><rect x="853.5" y="549" width="0.2" height="15.0" fill="rgb(212,126,15)" rx="2" ry="2" />
<text x="856.53" y="559.5" ></text>
</g>
<g >
<title>sapp_mem_free (7 samples, 0.03%)</title><rect x="796.3" y="517" width="0.4" height="15.0" fill="rgb(233,177,35)" rx="2" ry="2" />
<text x="799.31" y="527.5" ></text>
</g>
<g >
<title>X509_NAME_oneline (4 samples, 0.02%)</title><rect x="586.7" y="357" width="0.3" height="15.0" fill="rgb(225,138,8)" rx="2" ry="2" />
<text x="589.73" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="104.9" y="725" width="0.2" height="15.0" fill="rgb(226,45,50)" rx="2" ry="2" />
<text x="107.85" y="735.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="337.9" y="501" width="0.3" height="15.0" fill="rgb(241,220,5)" rx="2" ry="2" />
<text x="340.92" y="511.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (2 samples, 0.01%)</title><rect x="317.5" y="357" width="0.1" height="15.0" fill="rgb(219,57,33)" rx="2" ry="2" />
<text x="320.51" y="367.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="993.6" y="645" width="0.2" height="15.0" fill="rgb(227,79,27)" rx="2" ry="2" />
<text x="996.63" y="655.5" ></text>
</g>
<g >
<title>plugin_process_pending (14 samples, 0.07%)</title><rect x="985.1" y="549" width="0.9" height="15.0" fill="rgb(252,46,31)" rx="2" ry="2" />
<text x="988.13" y="559.5" ></text>
</g>
<g >
<title>http_callPlugin (34 samples, 0.17%)</title><rect x="320.6" y="501" width="2.0" height="15.0" fill="rgb(216,52,43)" rx="2" ry="2" />
<text x="323.57" y="511.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="1016.8" y="565" width="0.2" height="15.0" fill="rgb(236,114,52)" rx="2" ry="2" />
<text x="1019.75" y="575.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (2 samples, 0.01%)</title><rect x="535.8" y="421" width="0.1" height="15.0" fill="rgb(254,132,9)" rx="2" ry="2" />
<text x="538.82" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="334.1" y="245" width="0.2" height="15.0" fill="rgb(211,195,14)" rx="2" ry="2" />
<text x="337.14" y="255.5" ></text>
</g>
<g >
<title>__tls_get_addr (12 samples, 0.06%)</title><rect x="910.6" y="709" width="0.7" height="15.0" fill="rgb(213,173,0)" rx="2" ry="2" />
<text x="913.57" y="719.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="684.1" y="453" width="0.1" height="15.0" fill="rgb(234,197,21)" rx="2" ry="2" />
<text x="687.06" y="463.5" ></text>
</g>
<g >
<title>__snprintf (4 samples, 0.02%)</title><rect x="829.6" y="533" width="0.3" height="15.0" fill="rgb(210,28,7)" rx="2" ry="2" />
<text x="832.64" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="584.8" y="453" width="0.3" height="15.0" fill="rgb(219,205,24)" rx="2" ry="2" />
<text x="587.78" y="463.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="109.9" y="725" width="0.1" height="15.0" fill="rgb(233,195,36)" rx="2" ry="2" />
<text x="112.93" y="735.5" ></text>
</g>
<g >
<title>http_callPlugin (62 samples, 0.31%)</title><rect x="322.6" y="501" width="3.6" height="15.0" fill="rgb(235,191,6)" rx="2" ry="2" />
<text x="325.58" y="511.5" ></text>
</g>
<g >
<title>stream_process (414 samples, 2.07%)</title><rect x="626.4" y="549" width="24.4" height="15.0" fill="rgb(215,46,37)" rx="2" ry="2" />
<text x="629.43" y="559.5" >s..</text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (58 samples, 0.29%)</title><rect x="687.8" y="565" width="3.4" height="15.0" fill="rgb(225,46,31)" rx="2" ry="2" />
<text x="690.77" y="575.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (7 samples, 0.03%)</title><rect x="1017.3" y="613" width="0.5" height="15.0" fill="rgb(205,20,40)" rx="2" ry="2" />
<text x="1020.34" y="623.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (3 samples, 0.01%)</title><rect x="986.0" y="597" width="0.1" height="15.0" fill="rgb(241,188,35)" rx="2" ry="2" />
<text x="988.96" y="607.5" ></text>
</g>
<g >
<title>ASN1_template_free (3 samples, 0.01%)</title><rect x="334.1" y="229" width="0.2" height="15.0" fill="rgb(231,95,6)" rx="2" ry="2" />
<text x="337.14" y="239.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="1003.5" y="709" width="0.1" height="15.0" fill="rgb(243,158,2)" rx="2" ry="2" />
<text x="1006.48" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="390.3" y="517" width="0.5" height="15.0" fill="rgb(247,131,51)" rx="2" ry="2" />
<text x="393.30" y="527.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (13 samples, 0.06%)</title><rect x="1016.6" y="645" width="0.7" height="15.0" fill="rgb(227,23,37)" rx="2" ry="2" />
<text x="1019.57" y="655.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (9 samples, 0.04%)</title><rect x="628.4" y="517" width="0.5" height="15.0" fill="rgb(242,155,47)" rx="2" ry="2" />
<text x="631.37" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="993.2" y="645" width="0.3" height="15.0" fill="rgb(210,15,6)" rx="2" ry="2" />
<text x="996.16" y="655.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="1017.6" y="453" width="0.2" height="15.0" fill="rgb(221,101,11)" rx="2" ry="2" />
<text x="1020.64" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseStream (7 samples, 0.03%)</title><rect x="400.4" y="693" width="0.5" height="15.0" fill="rgb(238,129,6)" rx="2" ry="2" />
<text x="403.44" y="703.5" ></text>
</g>
<g >
<title>ipv4_entry (11 samples, 0.05%)</title><rect x="401.5" y="693" width="0.7" height="15.0" fill="rgb(238,167,27)" rx="2" ry="2" />
<text x="404.50" y="703.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="400.1" y="581" width="0.2" height="15.0" fill="rgb(230,94,29)" rx="2" ry="2" />
<text x="403.15" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (25 samples, 0.12%)</title><rect x="382.3" y="437" width="1.4" height="15.0" fill="rgb(239,146,54)" rx="2" ry="2" />
<text x="385.27" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="979.6" y="453" width="0.2" height="15.0" fill="rgb(226,43,15)" rx="2" ry="2" />
<text x="982.65" y="463.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="575.2" y="469" width="0.1" height="15.0" fill="rgb(244,72,14)" rx="2" ry="2" />
<text x="578.22" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (91 samples, 0.45%)</title><rect x="376.1" y="469" width="5.4" height="15.0" fill="rgb(228,152,10)" rx="2" ry="2" />
<text x="379.14" y="479.5" ></text>
</g>
<g >
<title>plugin_process_data (41 samples, 0.20%)</title><rect x="582.1" y="405" width="2.4" height="15.0" fill="rgb(253,0,47)" rx="2" ry="2" />
<text x="585.07" y="415.5" ></text>
</g>
<g >
<title>kni_tcpall_entry (160 samples, 0.80%)</title><rect x="629.5" y="517" width="9.4" height="15.0" fill="rgb(227,86,52)" rx="2" ry="2" />
<text x="632.49" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="826.3" y="389" width="0.3" height="15.0" fill="rgb(251,150,2)" rx="2" ry="2" />
<text x="829.34" y="399.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="991.9" y="629" width="0.2" height="15.0" fill="rgb(209,63,4)" rx="2" ry="2" />
<text x="994.92" y="639.5" ></text>
</g>
<g >
<title>SSL_ENTRY (27 samples, 0.13%)</title><rect x="300.5" y="549" width="1.6" height="15.0" fill="rgb(236,75,2)" rx="2" ry="2" />
<text x="303.46" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="422.1" y="725" width="0.5" height="15.0" fill="rgb(248,208,30)" rx="2" ry="2" />
<text x="425.09" y="735.5" ></text>
</g>
<g >
<title>[sapp] (105 samples, 0.52%)</title><rect x="1009.6" y="741" width="6.2" height="15.0" fill="rgb(238,117,54)" rx="2" ry="2" />
<text x="1012.61" y="751.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="592.6" y="389" width="0.1" height="15.0" fill="rgb(206,1,43)" rx="2" ry="2" />
<text x="595.57" y="399.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (7 samples, 0.03%)</title><rect x="576.8" y="485" width="0.4" height="15.0" fill="rgb(254,213,45)" rx="2" ry="2" />
<text x="579.82" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (12 samples, 0.06%)</title><rect x="315.9" y="325" width="0.7" height="15.0" fill="rgb(230,151,13)" rx="2" ry="2" />
<text x="318.91" y="335.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (3 samples, 0.01%)</title><rect x="587.4" y="293" width="0.2" height="15.0" fill="rgb(235,103,30)" rx="2" ry="2" />
<text x="590.38" y="303.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="985.0" y="645" width="0.1" height="15.0" fill="rgb(233,153,8)" rx="2" ry="2" />
<text x="987.96" y="655.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1015.8" y="725" width="0.1" height="15.0" fill="rgb(227,95,17)" rx="2" ry="2" />
<text x="1018.81" y="735.5" ></text>
</g>
<g >
<title>sk_pop_free (3 samples, 0.01%)</title><rect x="334.1" y="293" width="0.2" height="15.0" fill="rgb(238,18,31)" rx="2" ry="2" />
<text x="337.14" y="303.5" ></text>
</g>
<g >
<title>ipv6_entry (3 samples, 0.01%)</title><rect x="873.5" y="629" width="0.1" height="15.0" fill="rgb(215,170,13)" rx="2" ry="2" />
<text x="876.47" y="639.5" ></text>
</g>
<g >
<title>__calloc (6 samples, 0.03%)</title><rect x="648.4" y="485" width="0.4" height="15.0" fill="rgb(243,91,47)" rx="2" ry="2" />
<text x="651.43" y="495.5" ></text>
</g>
<g >
<title>check_port@plt (2 samples, 0.01%)</title><rect x="803.0" y="469" width="0.2" height="15.0" fill="rgb(210,28,7)" rx="2" ry="2" />
<text x="806.04" y="479.5" ></text>
</g>
<g >
<title>[libprotoident.so] (12 samples, 0.06%)</title><rect x="602.2" y="453" width="0.7" height="15.0" fill="rgb(218,109,48)" rx="2" ry="2" />
<text x="605.24" y="463.5" ></text>
</g>
<g >
<title>[http.so] (7 samples, 0.03%)</title><rect x="320.2" y="517" width="0.4" height="15.0" fill="rgb(218,128,48)" rx="2" ry="2" />
<text x="323.16" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="984.7" y="757" width="0.1" height="15.0" fill="rgb(220,95,12)" rx="2" ry="2" />
<text x="987.66" y="767.5" ></text>
</g>
<g >
<title>_int_free (94 samples, 0.47%)</title><rect x="751.0" y="469" width="5.6" height="15.0" fill="rgb(218,211,11)" rx="2" ry="2" />
<text x="754.01" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="491.3" y="517" width="0.2" height="15.0" fill="rgb(210,152,31)" rx="2" ry="2" />
<text x="494.28" y="527.5" ></text>
</g>
<g >
<title>_itoa_word (3 samples, 0.01%)</title><rect x="1004.8" y="693" width="0.2" height="15.0" fill="rgb(227,158,9)" rx="2" ry="2" />
<text x="1007.78" y="703.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (103 samples, 0.51%)</title><rect x="388.7" y="597" width="6.1" height="15.0" fill="rgb(249,28,34)" rx="2" ry="2" />
<text x="391.70" y="607.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (5 samples, 0.02%)</title><rect x="371.4" y="501" width="0.3" height="15.0" fill="rgb(211,157,48)" rx="2" ry="2" />
<text x="374.36" y="511.5" ></text>
</g>
<g >
<title>MESA_list_count_is_empty (3 samples, 0.01%)</title><rect x="1017.8" y="581" width="0.2" height="15.0" fill="rgb(219,55,2)" rx="2" ry="2" />
<text x="1020.81" y="591.5" ></text>
</g>
<g >
<title>SSL_ENTRY (7 samples, 0.03%)</title><rect x="1017.3" y="645" width="0.5" height="15.0" fill="rgb(230,59,44)" rx="2" ry="2" />
<text x="1020.34" y="655.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="928.9" y="597" width="0.1" height="15.0" fill="rgb(231,89,47)" rx="2" ry="2" />
<text x="931.86" y="607.5" ></text>
</g>
<g >
<title>plugin_process_pending (94 samples, 0.47%)</title><rect x="997.5" y="741" width="5.6" height="15.0" fill="rgb(222,180,22)" rx="2" ry="2" />
<text x="1000.52" y="751.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="420.2" y="517" width="0.1" height="15.0" fill="rgb(232,89,20)" rx="2" ry="2" />
<text x="423.20" y="527.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="818.2" y="501" width="0.1" height="15.0" fill="rgb(233,124,14)" rx="2" ry="2" />
<text x="821.20" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="1010.1" y="405" width="0.2" height="15.0" fill="rgb(227,79,20)" rx="2" ry="2" />
<text x="1013.09" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="366.6" y="517" width="0.2" height="15.0" fill="rgb(243,109,23)" rx="2" ry="2" />
<text x="369.64" y="527.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (5 samples, 0.02%)</title><rect x="935.4" y="645" width="0.3" height="15.0" fill="rgb(214,5,2)" rx="2" ry="2" />
<text x="938.41" y="655.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="608.0" y="485" width="0.3" height="15.0" fill="rgb(217,98,39)" rx="2" ry="2" />
<text x="611.02" y="495.5" ></text>
</g>
<g >
<title>SIP_TCP_ENTRY (15 samples, 0.07%)</title><rect x="576.4" y="517" width="0.9" height="15.0" fill="rgb(212,37,26)" rx="2" ry="2" />
<text x="579.40" y="527.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (17 samples, 0.08%)</title><rect x="604.1" y="501" width="1.0" height="15.0" fill="rgb(214,199,36)" rx="2" ry="2" />
<text x="607.07" y="511.5" ></text>
</g>
<g >
<title>__GI___qsort_r (857 samples, 4.28%)</title><rect x="107.7" y="741" width="50.5" height="15.0" fill="rgb(220,166,42)" rx="2" ry="2" />
<text x="110.68" y="751.5" >__GI_..</text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="420.2" y="565" width="0.2" height="15.0" fill="rgb(239,6,41)" rx="2" ry="2" />
<text x="423.20" y="575.5" ></text>
</g>
<g >
<title>new_JSON_checker (2 samples, 0.01%)</title><rect x="611.7" y="469" width="0.2" height="15.0" fill="rgb(224,38,50)" rx="2" ry="2" />
<text x="614.74" y="479.5" ></text>
</g>
<g >
<title>__IO_vsprintf (5 samples, 0.02%)</title><rect x="822.5" y="469" width="0.3" height="15.0" fill="rgb(248,30,48)" rx="2" ry="2" />
<text x="825.50" y="479.5" ></text>
</g>
<g >
<title>inet_recvmsg (2 samples, 0.01%)</title><rect x="948.0" y="581" width="0.1" height="15.0" fill="rgb(230,213,3)" rx="2" ry="2" />
<text x="951.03" y="591.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="989.2" y="517" width="0.1" height="15.0" fill="rgb(217,37,29)" rx="2" ry="2" />
<text x="992.20" y="527.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (6 samples, 0.03%)</title><rect x="794.6" y="565" width="0.4" height="15.0" fill="rgb(236,172,42)" rx="2" ry="2" />
<text x="797.60" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="591.2" y="277" width="0.1" height="15.0" fill="rgb(214,49,41)" rx="2" ry="2" />
<text x="594.21" y="287.5" ></text>
</g>
<g >
<title>_IO_no_init (4 samples, 0.02%)</title><rect x="1007.9" y="741" width="0.2" height="15.0" fill="rgb(217,174,37)" rx="2" ry="2" />
<text x="1010.90" y="751.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="1183.6" y="661" width="0.1" height="15.0" fill="rgb(246,68,47)" rx="2" ry="2" />
<text x="1186.57" y="671.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (5 samples, 0.02%)</title><rect x="996.0" y="645" width="0.3" height="15.0" fill="rgb(254,6,17)" rx="2" ry="2" />
<text x="998.99" y="655.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="835.9" y="437" width="0.1" height="15.0" fill="rgb(240,49,25)" rx="2" ry="2" />
<text x="838.89" y="447.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="280.2" y="789" width="0.2" height="15.0" fill="rgb(241,24,20)" rx="2" ry="2" />
<text x="283.17" y="799.5" ></text>
</g>
<g >
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="472.5" y="645" width="0.2" height="15.0" fill="rgb(206,29,14)" rx="2" ry="2" />
<text x="475.47" y="655.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (3 samples, 0.01%)</title><rect x="400.1" y="677" width="0.2" height="15.0" fill="rgb(226,148,45)" rx="2" ry="2" />
<text x="403.15" y="687.5" ></text>
</g>
<g >
<title>http_callPlugin (14 samples, 0.07%)</title><rect x="985.1" y="597" width="0.9" height="15.0" fill="rgb(253,92,32)" rx="2" ry="2" />
<text x="988.13" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="996.4" y="581" width="0.2" height="15.0" fill="rgb(247,133,42)" rx="2" ry="2" />
<text x="999.40" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (79 samples, 0.39%)</title><rect x="394.8" y="581" width="4.6" height="15.0" fill="rgb(230,131,11)" rx="2" ry="2" />
<text x="397.78" y="591.5" ></text>
</g>
<g >
<title>wangw_ingress_stream_is_wannat_session (3 samples, 0.01%)</title><rect x="990.6" y="629" width="0.2" height="15.0" fill="rgb(235,153,24)" rx="2" ry="2" />
<text x="993.62" y="639.5" ></text>
</g>
<g >
<title>del_stream_by_time (7 samples, 0.03%)</title><rect x="308.0" y="693" width="0.4" height="15.0" fill="rgb(230,183,20)" rx="2" ry="2" />
<text x="311.01" y="703.5" ></text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="820.3" y="469" width="0.1" height="15.0" fill="rgb(220,198,30)" rx="2" ry="2" />
<text x="823.32" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (27 samples, 0.13%)</title><rect x="684.8" y="501" width="1.6" height="15.0" fill="rgb(239,197,26)" rx="2" ry="2" />
<text x="687.83" y="511.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (3 samples, 0.01%)</title><rect x="47.3" y="773" width="0.2" height="15.0" fill="rgb(252,196,53)" rx="2" ry="2" />
<text x="50.34" y="783.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (10 samples, 0.05%)</title><rect x="50.1" y="693" width="0.6" height="15.0" fill="rgb(205,60,44)" rx="2" ry="2" />
<text x="53.11" y="703.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="318.5" y="405" width="0.4" height="15.0" fill="rgb(222,74,2)" rx="2" ry="2" />
<text x="321.51" y="415.5" ></text>
</g>
<g >
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="822.6" y="453" width="0.1" height="15.0" fill="rgb(253,119,47)" rx="2" ry="2" />
<text x="825.62" y="463.5" ></text>
</g>
<g >
<title>[capture_packet_plug.so] (2 samples, 0.01%)</title><rect x="742.0" y="517" width="0.1" height="15.0" fill="rgb(238,75,16)" rx="2" ry="2" />
<text x="744.98" y="527.5" ></text>
</g>
<g >
<title>stream_process_tcp (5 samples, 0.02%)</title><rect x="535.8" y="549" width="0.3" height="15.0" fill="rgb(213,69,34)" rx="2" ry="2" />
<text x="538.82" y="559.5" ></text>
</g>
<g >
<title>[sapp] (105 samples, 0.52%)</title><rect x="1009.6" y="757" width="6.2" height="15.0" fill="rgb(211,8,31)" rx="2" ry="2" />
<text x="1012.61" y="767.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (5 samples, 0.02%)</title><rect x="335.7" y="405" width="0.3" height="15.0" fill="rgb(236,150,36)" rx="2" ry="2" />
<text x="338.67" y="415.5" ></text>
</g>
<g >
<title>ssl_analyseStream (11 samples, 0.05%)</title><rect x="986.6" y="661" width="0.7" height="15.0" fill="rgb(214,202,43)" rx="2" ry="2" />
<text x="989.61" y="671.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="1017.8" y="677" width="0.5" height="15.0" fill="rgb(224,221,0)" rx="2" ry="2" />
<text x="1020.75" y="687.5" ></text>
</g>
<g >
<title>bitmap_check (85 samples, 0.42%)</title><rect x="692.2" y="533" width="5.0" height="15.0" fill="rgb(216,143,1)" rx="2" ry="2" />
<text x="695.20" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="681.3" y="469" width="0.1" height="15.0" fill="rgb(248,142,41)" rx="2" ry="2" />
<text x="684.29" y="479.5" ></text>
</g>
<g >
<title>project_requirement_destroy (13 samples, 0.06%)</title><rect x="471.2" y="645" width="0.8" height="15.0" fill="rgb(234,24,46)" rx="2" ry="2" />
<text x="474.23" y="655.5" ></text>
</g>
<g >
<title>app_proto_worke_process (49 samples, 0.24%)</title><rect x="305.0" y="549" width="2.9" height="15.0" fill="rgb(246,180,23)" rx="2" ry="2" />
<text x="308.00" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (332 samples, 1.66%)</title><rect x="342.6" y="501" width="19.6" height="15.0" fill="rgb(212,65,35)" rx="2" ry="2" />
<text x="345.58" y="511.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (2 samples, 0.01%)</title><rect x="984.8" y="677" width="0.2" height="15.0" fill="rgb(238,117,7)" rx="2" ry="2" />
<text x="987.84" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="565" width="0.2" height="15.0" fill="rgb(225,108,6)" rx="2" ry="2" />
<text x="987.84" y="575.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (2 samples, 0.01%)</title><rect x="614.8" y="485" width="0.1" height="15.0" fill="rgb(211,220,54)" rx="2" ry="2" />
<text x="617.81" y="495.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="337.9" y="453" width="0.1" height="15.0" fill="rgb(251,103,11)" rx="2" ry="2" />
<text x="340.92" y="463.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="561.1" y="357" width="0.1" height="15.0" fill="rgb(209,37,23)" rx="2" ry="2" />
<text x="564.07" y="367.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (31 samples, 0.15%)</title><rect x="1013.9" y="549" width="1.8" height="15.0" fill="rgb(214,216,12)" rx="2" ry="2" />
<text x="1016.86" y="559.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (39 samples, 0.19%)</title><rect x="315.1" y="357" width="2.3" height="15.0" fill="rgb(252,95,41)" rx="2" ry="2" />
<text x="318.09" y="367.5" ></text>
</g>
<g >
<title>[libqmengine.so] (16 samples, 0.08%)</title><rect x="562.1" y="437" width="1.0" height="15.0" fill="rgb(242,124,37)" rx="2" ry="2" />
<text x="565.13" y="447.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="924.7" y="645" width="0.1" height="15.0" fill="rgb(240,113,35)" rx="2" ry="2" />
<text x="927.73" y="655.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (8 samples, 0.04%)</title><rect x="1016.6" y="629" width="0.4" height="15.0" fill="rgb(237,59,9)" rx="2" ry="2" />
<text x="1019.57" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (185 samples, 0.92%)</title><rect x="263.2" y="741" width="10.9" height="15.0" fill="rgb(238,210,2)" rx="2" ry="2" />
<text x="266.18" y="751.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (43 samples, 0.21%)</title><rect x="369.2" y="533" width="2.6" height="15.0" fill="rgb(220,173,20)" rx="2" ry="2" />
<text x="372.24" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="829.0" y="501" width="0.5" height="15.0" fill="rgb(244,76,50)" rx="2" ry="2" />
<text x="831.99" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="809.4" y="405" width="0.1" height="15.0" fill="rgb(214,57,31)" rx="2" ry="2" />
<text x="812.41" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="108.4" y="725" width="0.2" height="15.0" fill="rgb(240,41,53)" rx="2" ry="2" />
<text x="111.39" y="735.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="334.0" y="277" width="0.1" height="15.0" fill="rgb(222,194,21)" rx="2" ry="2" />
<text x="337.02" y="287.5" ></text>
</g>
<g >
<title>[sapp] (8,176 samples, 40.87%)</title><rect x="429.2" y="741" width="482.3" height="15.0" fill="rgb(252,26,36)" rx="2" ry="2" />
<text x="432.17" y="751.5" >[sapp]</text>
</g>
<g >
<title>layer_addr_ntop_r (13 samples, 0.06%)</title><rect x="421.3" y="741" width="0.8" height="15.0" fill="rgb(252,103,8)" rx="2" ry="2" />
<text x="424.32" y="751.5" ></text>
</g>
<g >
<title>stream_process (14 samples, 0.07%)</title><rect x="976.0" y="693" width="0.8" height="15.0" fill="rgb(243,51,49)" rx="2" ry="2" />
<text x="978.99" y="703.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="401.6" y="597" width="0.1" height="15.0" fill="rgb(212,19,34)" rx="2" ry="2" />
<text x="404.56" y="607.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="989.2" y="613" width="0.1" height="15.0" fill="rgb(254,130,20)" rx="2" ry="2" />
<text x="992.20" y="623.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="1013.9" y="453" width="1.7" height="15.0" fill="rgb(217,218,43)" rx="2" ry="2" />
<text x="1016.86" y="463.5" ></text>
</g>
<g >
<title>stream_process_ipv4 (47 samples, 0.23%)</title><rect x="870.5" y="597" width="2.7" height="15.0" fill="rgb(239,73,29)" rx="2" ry="2" />
<text x="873.46" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="588.3" y="293" width="0.3" height="15.0" fill="rgb(209,56,49)" rx="2" ry="2" />
<text x="591.32" y="303.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (9 samples, 0.04%)</title><rect x="999.2" y="645" width="0.6" height="15.0" fill="rgb(227,152,1)" rx="2" ry="2" />
<text x="1002.23" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="792.6" y="517" width="0.2" height="15.0" fill="rgb(227,81,33)" rx="2" ry="2" />
<text x="795.60" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="809.4" y="453" width="0.1" height="15.0" fill="rgb(243,15,36)" rx="2" ry="2" />
<text x="812.41" y="463.5" ></text>
</g>
<g >
<title>_int_realloc (30 samples, 0.15%)</title><rect x="105.9" y="725" width="1.8" height="15.0" fill="rgb(248,114,3)" rx="2" ry="2" />
<text x="108.91" y="735.5" ></text>
</g>
<g >
<title>ssl_callPlugins (7 samples, 0.03%)</title><rect x="301.5" y="453" width="0.4" height="15.0" fill="rgb(244,186,5)" rx="2" ry="2" />
<text x="304.52" y="463.5" ></text>
</g>
<g >
<title>plugin_process_close (7 samples, 0.03%)</title><rect x="320.2" y="453" width="0.4" height="15.0" fill="rgb(240,54,1)" rx="2" ry="2" />
<text x="323.16" y="463.5" ></text>
</g>
<g >
<title>plugin_process_pending (7 samples, 0.03%)</title><rect x="420.6" y="613" width="0.4" height="15.0" fill="rgb(224,62,36)" rx="2" ry="2" />
<text x="423.62" y="623.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (8 samples, 0.04%)</title><rect x="420.6" y="693" width="0.5" height="15.0" fill="rgb(205,210,53)" rx="2" ry="2" />
<text x="423.62" y="703.5" ></text>
</g>
<g >
<title>findstreamindex (95 samples, 0.47%)</title><rect x="803.7" y="597" width="5.6" height="15.0" fill="rgb(229,23,14)" rx="2" ry="2" />
<text x="806.69" y="607.5" ></text>
</g>
<g >
<title>stream_process (162 samples, 0.81%)</title><rect x="374.4" y="565" width="9.5" height="15.0" fill="rgb(222,141,0)" rx="2" ry="2" />
<text x="377.37" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="303.2" y="517" width="0.3" height="15.0" fill="rgb(231,164,53)" rx="2" ry="2" />
<text x="306.23" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="595.2" y="309" width="0.5" height="15.0" fill="rgb(232,150,37)" rx="2" ry="2" />
<text x="598.22" y="319.5" ></text>
</g>
<g >
<title>ipv4_entry (11 samples, 0.05%)</title><rect x="401.5" y="757" width="0.7" height="15.0" fill="rgb(246,48,14)" rx="2" ry="2" />
<text x="404.50" y="767.5" ></text>
</g>
<g >
<title>native_sched_clock (2 samples, 0.01%)</title><rect x="1183.6" y="645" width="0.1" height="15.0" fill="rgb(230,107,31)" rx="2" ry="2" />
<text x="1186.63" y="655.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (7 samples, 0.03%)</title><rect x="997.9" y="693" width="0.4" height="15.0" fill="rgb(252,56,33)" rx="2" ry="2" />
<text x="1000.93" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="996.6" y="581" width="0.2" height="15.0" fill="rgb(252,222,12)" rx="2" ry="2" />
<text x="999.64" y="591.5" ></text>
</g>
<g >
<title>frag_ipq_create (7 samples, 0.03%)</title><rect x="869.0" y="613" width="0.4" height="15.0" fill="rgb(212,201,30)" rx="2" ry="2" />
<text x="871.99" y="623.5" ></text>
</g>
<g >
<title>project_req_get_struct (4 samples, 0.02%)</title><rect x="611.5" y="501" width="0.2" height="15.0" fill="rgb(253,203,18)" rx="2" ry="2" />
<text x="614.50" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new00 (7 samples, 0.03%)</title><rect x="362.5" y="469" width="0.4" height="15.0" fill="rgb(251,194,24)" rx="2" ry="2" />
<text x="365.45" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="987.3" y="549" width="0.1" height="15.0" fill="rgb(233,153,18)" rx="2" ry="2" />
<text x="990.32" y="559.5" ></text>
</g>
<g >
<title>__snprintf (3 samples, 0.01%)</title><rect x="997.2" y="645" width="0.1" height="15.0" fill="rgb(232,183,7)" rx="2" ry="2" />
<text x="1000.17" y="655.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (2 samples, 0.01%)</title><rect x="381.9" y="373" width="0.1" height="15.0" fill="rgb(231,99,5)" rx="2" ry="2" />
<text x="384.86" y="383.5" ></text>
</g>
<g >
<title>http_getSessionState (2 samples, 0.01%)</title><rect x="572.7" y="389" width="0.2" height="15.0" fill="rgb(231,183,28)" rx="2" ry="2" />
<text x="575.75" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="325.8" y="357" width="0.4" height="15.0" fill="rgb(217,117,38)" rx="2" ry="2" />
<text x="328.76" y="367.5" ></text>
</g>
<g >
<title>udp_free_stream (8 samples, 0.04%)</title><rect x="809.3" y="565" width="0.5" height="15.0" fill="rgb(233,38,26)" rx="2" ry="2" />
<text x="812.29" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="399.6" y="501" width="0.3" height="15.0" fill="rgb(240,11,7)" rx="2" ry="2" />
<text x="402.62" y="511.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (8 samples, 0.04%)</title><rect x="401.7" y="613" width="0.5" height="15.0" fill="rgb(206,81,21)" rx="2" ry="2" />
<text x="404.68" y="623.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (4 samples, 0.02%)</title><rect x="979.6" y="581" width="0.3" height="15.0" fill="rgb(209,138,30)" rx="2" ry="2" />
<text x="982.65" y="591.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="279.6" y="741" width="0.2" height="15.0" fill="rgb(237,32,39)" rx="2" ry="2" />
<text x="282.58" y="751.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="986.0" y="501" width="0.1" height="15.0" fill="rgb(216,48,29)" rx="2" ry="2" />
<text x="988.96" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="574.2" y="389" width="0.1" height="15.0" fill="rgb(225,16,9)" rx="2" ry="2" />
<text x="577.22" y="399.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="573.7" y="389" width="0.2" height="15.0" fill="rgb(249,111,44)" rx="2" ry="2" />
<text x="576.69" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="421" width="0.1" height="15.0" fill="rgb(217,65,25)" rx="2" ry="2" />
<text x="337.38" y="431.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (76 samples, 0.38%)</title><rect x="50.8" y="757" width="4.5" height="15.0" fill="rgb(210,208,39)" rx="2" ry="2" />
<text x="53.82" y="767.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="975.9" y="565" width="0.1" height="15.0" fill="rgb(212,45,17)" rx="2" ry="2" />
<text x="978.87" y="575.5" ></text>
</g>
<g >
<title>file_buffer (2 samples, 0.01%)</title><rect x="986.0" y="469" width="0.1" height="15.0" fill="rgb(254,205,24)" rx="2" ry="2" />
<text x="988.96" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="517" width="0.2" height="15.0" fill="rgb(227,60,22)" rx="2" ry="2" />
<text x="987.84" y="527.5" ></text>
</g>
<g >
<title>free_heap_stream_info (17 samples, 0.08%)</title><rect x="922.0" y="693" width="1.0" height="15.0" fill="rgb(218,31,15)" rx="2" ry="2" />
<text x="924.96" y="703.5" ></text>
</g>
<g >
<title>ssl_callPlugins (31 samples, 0.15%)</title><rect x="593.0" y="437" width="1.8" height="15.0" fill="rgb(224,125,21)" rx="2" ry="2" />
<text x="595.98" y="447.5" ></text>
</g>
<g >
<title>http_positioningACompleteLine (2 samples, 0.01%)</title><rect x="574.7" y="453" width="0.1" height="15.0" fill="rgb(222,149,25)" rx="2" ry="2" />
<text x="577.69" y="463.5" ></text>
</g>
<g >
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="1003.4" y="709" width="0.1" height="15.0" fill="rgb(234,97,41)" rx="2" ry="2" />
<text x="1006.36" y="719.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new00 (5 samples, 0.02%)</title><rect x="381.6" y="437" width="0.3" height="15.0" fill="rgb(249,16,54)" rx="2" ry="2" />
<text x="384.57" y="447.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (2 samples, 0.01%)</title><rect x="803.4" y="485" width="0.1" height="15.0" fill="rgb(214,98,5)" rx="2" ry="2" />
<text x="806.39" y="495.5" ></text>
</g>
<g >
<title>stream_process (33 samples, 0.16%)</title><rect x="1013.9" y="597" width="1.9" height="15.0" fill="rgb(211,226,27)" rx="2" ry="2" />
<text x="1016.86" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="592.6" y="421" width="0.1" height="15.0" fill="rgb(240,225,48)" rx="2" ry="2" />
<text x="595.57" y="431.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="340.8" y="501" width="0.1" height="15.0" fill="rgb(236,102,38)" rx="2" ry="2" />
<text x="343.81" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="317.4" y="341" width="0.1" height="15.0" fill="rgb(218,68,25)" rx="2" ry="2" />
<text x="320.39" y="351.5" ></text>
</g>
<g >
<title>__IO_vsprintf (5 samples, 0.02%)</title><rect x="1017.3" y="421" width="0.3" height="15.0" fill="rgb(252,166,23)" rx="2" ry="2" />
<text x="1020.34" y="431.5" ></text>
</g>
<g >
<title>ssl_analyseStream (7 samples, 0.03%)</title><rect x="1017.3" y="629" width="0.5" height="15.0" fill="rgb(231,164,39)" rx="2" ry="2" />
<text x="1020.34" y="639.5" ></text>
</g>
<g >
<title>pbe_uevent_cleanup_table (2 samples, 0.01%)</title><rect x="318.1" y="389" width="0.1" height="15.0" fill="rgb(225,148,9)" rx="2" ry="2" />
<text x="321.10" y="399.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="490.0" y="581" width="0.1" height="15.0" fill="rgb(245,133,8)" rx="2" ry="2" />
<text x="492.99" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (281 samples, 1.40%)</title><rect x="345.5" y="469" width="16.6" height="15.0" fill="rgb(225,103,21)" rx="2" ry="2" />
<text x="348.52" y="479.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="990.8" y="789" width="0.1" height="15.0" fill="rgb(221,155,15)" rx="2" ry="2" />
<text x="993.80" y="799.5" ></text>
</g>
<g >
<title>save_polling_inject_context (8 samples, 0.04%)</title><rect x="794.5" y="581" width="0.5" height="15.0" fill="rgb(244,140,4)" rx="2" ry="2" />
<text x="797.48" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (26 samples, 0.13%)</title><rect x="386.2" y="501" width="1.6" height="15.0" fill="rgb(229,7,19)" rx="2" ry="2" />
<text x="389.23" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="300.1" y="421" width="0.2" height="15.0" fill="rgb(245,44,6)" rx="2" ry="2" />
<text x="303.10" y="431.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (3 samples, 0.01%)</title><rect x="373.3" y="533" width="0.2" height="15.0" fill="rgb(228,97,5)" rx="2" ry="2" />
<text x="376.31" y="543.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (16 samples, 0.08%)</title><rect x="536.9" y="501" width="0.9" height="15.0" fill="rgb(207,70,33)" rx="2" ry="2" />
<text x="539.88" y="511.5" ></text>
</g>
<g >
<title>sk_pop_free (3 samples, 0.01%)</title><rect x="301.2" y="277" width="0.1" height="15.0" fill="rgb(248,28,0)" rx="2" ry="2" />
<text x="304.17" y="287.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (20 samples, 0.10%)</title><rect x="1008.3" y="741" width="1.2" height="15.0" fill="rgb(226,167,30)" rx="2" ry="2" />
<text x="1011.32" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="345.4" y="453" width="0.1" height="15.0" fill="rgb(225,186,12)" rx="2" ry="2" />
<text x="348.41" y="463.5" ></text>
</g>
<g >
<title>TLD_create (2 samples, 0.01%)</title><rect x="927.3" y="613" width="0.1" height="15.0" fill="rgb(245,176,25)" rx="2" ry="2" />
<text x="930.27" y="623.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (1,125 samples, 5.62%)</title><rect x="95.9" y="757" width="66.3" height="15.0" fill="rgb(246,28,35)" rx="2" ry="2" />
<text x="98.89" y="767.5" >Maat_hi..</text>
</g>
<g >
<title>OBJ_bsearch_ex_ (2 samples, 0.01%)</title><rect x="586.8" y="325" width="0.2" height="15.0" fill="rgb(205,139,6)" rx="2" ry="2" />
<text x="589.85" y="335.5" ></text>
</g>
<g >
<title>[sapp] (18 samples, 0.09%)</title><rect x="495.5" y="645" width="1.1" height="15.0" fill="rgb(241,76,9)" rx="2" ry="2" />
<text x="498.53" y="655.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (8 samples, 0.04%)</title><rect x="873.6" y="629" width="0.5" height="15.0" fill="rgb(223,120,34)" rx="2" ry="2" />
<text x="876.65" y="639.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="318.4" y="453" width="0.5" height="15.0" fill="rgb(248,141,28)" rx="2" ry="2" />
<text x="321.39" y="463.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1018.3" y="645" width="0.2" height="15.0" fill="rgb(214,35,48)" rx="2" ry="2" />
<text x="1021.34" y="655.5" ></text>
</g>
<g >
<title>SSL_ENTRY (9 samples, 0.04%)</title><rect x="1010.4" y="533" width="0.6" height="15.0" fill="rgb(208,146,33)" rx="2" ry="2" />
<text x="1013.44" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="545.9" y="533" width="0.2" height="15.0" fill="rgb(236,15,18)" rx="2" ry="2" />
<text x="548.91" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="798.0" y="485" width="0.1" height="15.0" fill="rgb(225,26,20)" rx="2" ry="2" />
<text x="801.02" y="495.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (45 samples, 0.22%)</title><rect x="984.8" y="773" width="2.7" height="15.0" fill="rgb(254,115,36)" rx="2" ry="2" />
<text x="987.84" y="783.5" ></text>
</g>
<g >
<title>_int_free (7 samples, 0.03%)</title><rect x="682.3" y="517" width="0.5" height="15.0" fill="rgb(211,140,43)" rx="2" ry="2" />
<text x="685.35" y="527.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="1016.6" y="453" width="0.1" height="15.0" fill="rgb(230,152,20)" rx="2" ry="2" />
<text x="1019.57" y="463.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="990.0" y="661" width="0.3" height="15.0" fill="rgb(216,172,3)" rx="2" ry="2" />
<text x="992.97" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (51 samples, 0.25%)</title><rect x="305.0" y="597" width="3.0" height="15.0" fill="rgb(208,110,40)" rx="2" ry="2" />
<text x="308.00" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (14 samples, 0.07%)</title><rect x="333.2" y="277" width="0.8" height="15.0" fill="rgb(248,98,22)" rx="2" ry="2" />
<text x="336.20" y="287.5" ></text>
</g>
<g >
<title>project_req_get_struct (13 samples, 0.06%)</title><rect x="742.1" y="517" width="0.8" height="15.0" fill="rgb(226,121,27)" rx="2" ry="2" />
<text x="745.10" y="527.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (5 samples, 0.02%)</title><rect x="687.4" y="533" width="0.3" height="15.0" fill="rgb(241,31,14)" rx="2" ry="2" />
<text x="690.42" y="543.5" ></text>
</g>
<g >
<title>MESA_get_tcp_pkt_opts (3 samples, 0.01%)</title><rect x="532.1" y="565" width="0.2" height="15.0" fill="rgb(247,211,28)" rx="2" ry="2" />
<text x="535.10" y="575.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="1005.5" y="725" width="0.1" height="15.0" fill="rgb(251,38,32)" rx="2" ry="2" />
<text x="1008.48" y="735.5" ></text>
</g>
<g >
<title>memcmp@plt (2 samples, 0.01%)</title><rect x="851.0" y="469" width="0.1" height="15.0" fill="rgb(244,69,29)" rx="2" ry="2" />
<text x="853.99" y="479.5" ></text>
</g>
<g >
<title>PROT_PROCESS (6 samples, 0.03%)</title><rect x="986.6" y="581" width="0.4" height="15.0" fill="rgb(227,56,16)" rx="2" ry="2" />
<text x="989.61" y="591.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (35 samples, 0.17%)</title><rect x="586.6" y="405" width="2.0" height="15.0" fill="rgb(215,103,29)" rx="2" ry="2" />
<text x="589.55" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="681.5" y="501" width="0.4" height="15.0" fill="rgb(226,34,44)" rx="2" ry="2" />
<text x="684.46" y="511.5" ></text>
</g>
<g >
<title>http_tripleMatching (17 samples, 0.08%)</title><rect x="569.3" y="453" width="1.0" height="15.0" fill="rgb(231,124,39)" rx="2" ry="2" />
<text x="572.27" y="463.5" ></text>
</g>
<g >
<title>plugin_call_appentry (18 samples, 0.09%)</title><rect x="834.6" y="485" width="1.1" height="15.0" fill="rgb(212,159,43)" rx="2" ry="2" />
<text x="837.60" y="495.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (5 samples, 0.02%)</title><rect x="987.0" y="613" width="0.3" height="15.0" fill="rgb(211,122,13)" rx="2" ry="2" />
<text x="989.96" y="623.5" ></text>
</g>
<g >
<title>[ssh.so] (13 samples, 0.06%)</title><rect x="577.3" y="501" width="0.8" height="15.0" fill="rgb(217,56,29)" rx="2" ry="2" />
<text x="580.35" y="511.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (17 samples, 0.08%)</title><rect x="685.4" y="485" width="1.0" height="15.0" fill="rgb(217,24,18)" rx="2" ry="2" />
<text x="688.41" y="495.5" ></text>
</g>
<g >
<title>checkstreamorder (70 samples, 0.35%)</title><rect x="805.0" y="581" width="4.2" height="15.0" fill="rgb(243,24,23)" rx="2" ry="2" />
<text x="808.04" y="591.5" ></text>
</g>
<g >
<title>__GI__IO_vfscanf (3 samples, 0.01%)</title><rect x="992.2" y="565" width="0.2" height="15.0" fill="rgb(252,32,1)" rx="2" ry="2" />
<text x="995.21" y="575.5" ></text>
</g>
<g >
<title>stream_process_tcp (38 samples, 0.19%)</title><rect x="987.6" y="661" width="2.2" height="15.0" fill="rgb(222,155,0)" rx="2" ry="2" />
<text x="990.55" y="671.5" ></text>
</g>
<g >
<title>rulescan_searchstream (287 samples, 1.43%)</title><rect x="171.9" y="757" width="17.0" height="15.0" fill="rgb(247,225,32)" rx="2" ry="2" />
<text x="174.92" y="767.5" ></text>
</g>
<g >
<title>pbe_ul3l4_cache_find (3 samples, 0.01%)</title><rect x="1010.3" y="405" width="0.1" height="15.0" fill="rgb(229,89,31)" rx="2" ry="2" />
<text x="1013.26" y="415.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="984.7" y="629" width="0.1" height="15.0" fill="rgb(215,8,29)" rx="2" ry="2" />
<text x="987.66" y="639.5" ></text>
</g>
<g >
<title>del_stream_by_time (205 samples, 1.02%)</title><rect x="916.9" y="725" width="12.1" height="15.0" fill="rgb(227,223,8)" rx="2" ry="2" />
<text x="919.88" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="327.8" y="357" width="0.1" height="15.0" fill="rgb(208,81,7)" rx="2" ry="2" />
<text x="330.77" y="367.5" ></text>
</g>
<g >
<title>__sprintf (5 samples, 0.02%)</title><rect x="1009.8" y="469" width="0.3" height="15.0" fill="rgb(228,111,39)" rx="2" ry="2" />
<text x="1012.79" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="977.4" y="549" width="0.1" height="15.0" fill="rgb(235,174,44)" rx="2" ry="2" />
<text x="980.41" y="559.5" ></text>
</g>
<g >
<title>__GI___qsort_r (21 samples, 0.10%)</title><rect x="49.5" y="741" width="1.2" height="15.0" fill="rgb(226,183,31)" rx="2" ry="2" />
<text x="52.46" y="751.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (4 samples, 0.02%)</title><rect x="683.8" y="405" width="0.3" height="15.0" fill="rgb(251,198,30)" rx="2" ry="2" />
<text x="686.82" y="415.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (29 samples, 0.14%)</title><rect x="336.0" y="501" width="1.7" height="15.0" fill="rgb(244,215,27)" rx="2" ry="2" />
<text x="338.97" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="421" width="0.9" height="15.0" fill="rgb(239,20,22)" rx="2" ry="2" />
<text x="303.46" y="431.5" ></text>
</g>
<g >
<title>PROT_PROCESS (15 samples, 0.07%)</title><rect x="569.3" y="405" width="0.9" height="15.0" fill="rgb(224,214,24)" rx="2" ry="2" />
<text x="572.33" y="415.5" ></text>
</g>
<g >
<title>Maat_clean_status (9 samples, 0.04%)</title><rect x="680.9" y="501" width="0.6" height="15.0" fill="rgb(245,130,34)" rx="2" ry="2" />
<text x="683.93" y="511.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="422.3" y="661" width="0.2" height="15.0" fill="rgb(250,167,15)" rx="2" ry="2" />
<text x="425.27" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="375.1" y="469" width="0.2" height="15.0" fill="rgb(207,115,5)" rx="2" ry="2" />
<text x="378.14" y="479.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (6 samples, 0.03%)</title><rect x="604.7" y="469" width="0.4" height="15.0" fill="rgb(225,203,4)" rx="2" ry="2" />
<text x="607.72" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1010.4" y="389" width="0.5" height="15.0" fill="rgb(223,82,33)" rx="2" ry="2" />
<text x="1013.44" y="399.5" ></text>
</g>
<g >
<title>cpu_limit_can_i_do (3 samples, 0.01%)</title><rect x="542.2" y="533" width="0.2" height="15.0" fill="rgb(205,213,50)" rx="2" ry="2" />
<text x="545.19" y="543.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_tcpall_entry (128 samples, 0.64%)</title><rect x="639.2" y="517" width="7.5" height="15.0" fill="rgb(237,71,24)" rx="2" ry="2" />
<text x="642.17" y="527.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (3 samples, 0.01%)</title><rect x="93.5" y="773" width="0.2" height="15.0" fill="rgb(209,52,37)" rx="2" ry="2" />
<text x="96.53" y="783.5" ></text>
</g>
<g >
<title>__snprintf (9 samples, 0.04%)</title><rect x="422.1" y="709" width="0.5" height="15.0" fill="rgb(245,116,40)" rx="2" ry="2" />
<text x="425.09" y="719.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (68 samples, 0.34%)</title><rect x="758.7" y="533" width="4.0" height="15.0" fill="rgb(246,28,1)" rx="2" ry="2" />
<text x="761.74" y="543.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="868.2" y="565" width="0.4" height="15.0" fill="rgb(245,179,35)" rx="2" ry="2" />
<text x="871.16" y="575.5" ></text>
</g>
<g >
<title>[libkni.so] (9 samples, 0.04%)</title><rect x="763.0" y="517" width="0.6" height="15.0" fill="rgb(208,119,16)" rx="2" ry="2" />
<text x="766.04" y="527.5" ></text>
</g>
<g >
<title>[libwangw.so] (7 samples, 0.03%)</title><rect x="947.9" y="709" width="0.4" height="15.0" fill="rgb(238,9,31)" rx="2" ry="2" />
<text x="950.91" y="719.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="400.1" y="629" width="0.2" height="15.0" fill="rgb(214,147,2)" rx="2" ry="2" />
<text x="403.15" y="639.5" ></text>
</g>
<g >
<title>lrustream (3 samples, 0.01%)</title><rect x="989.8" y="677" width="0.2" height="15.0" fill="rgb(226,99,4)" rx="2" ry="2" />
<text x="992.79" y="687.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="989.2" y="533" width="0.1" height="15.0" fill="rgb(223,33,34)" rx="2" ry="2" />
<text x="992.20" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="786.0" y="549" width="0.1" height="15.0" fill="rgb(240,82,48)" rx="2" ry="2" />
<text x="788.99" y="559.5" ></text>
</g>
<g >
<title>stream_process (11 samples, 0.05%)</title><rect x="928.3" y="677" width="0.7" height="15.0" fill="rgb(237,208,37)" rx="2" ry="2" />
<text x="931.33" y="687.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="590.4" y="293" width="0.2" height="15.0" fill="rgb(244,138,17)" rx="2" ry="2" />
<text x="593.44" y="303.5" ></text>
</g>
<g >
<title>stream_process_tcp (41 samples, 0.20%)</title><rect x="979.6" y="645" width="2.5" height="15.0" fill="rgb(225,157,5)" rx="2" ry="2" />
<text x="982.65" y="655.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="984.7" y="613" width="0.1" height="15.0" fill="rgb(237,124,26)" rx="2" ry="2" />
<text x="987.66" y="623.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="401.7" y="517" width="0.5" height="15.0" fill="rgb(227,225,11)" rx="2" ry="2" />
<text x="404.74" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="596.7" y="485" width="0.2" height="15.0" fill="rgb(209,91,23)" rx="2" ry="2" />
<text x="599.70" y="495.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (26 samples, 0.13%)</title><rect x="371.8" y="533" width="1.5" height="15.0" fill="rgb(243,103,54)" rx="2" ry="2" />
<text x="374.77" y="543.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="597.3" y="469" width="0.1" height="15.0" fill="rgb(231,229,40)" rx="2" ry="2" />
<text x="600.29" y="479.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (8 samples, 0.04%)</title><rect x="1016.6" y="613" width="0.4" height="15.0" fill="rgb(220,219,5)" rx="2" ry="2" />
<text x="1019.57" y="623.5" ></text>
</g>
<g >
<title>hash_add_stream (6 samples, 0.03%)</title><rect x="542.0" y="565" width="0.4" height="15.0" fill="rgb(231,93,37)" rx="2" ry="2" />
<text x="545.01" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="835.7" y="485" width="0.1" height="15.0" fill="rgb(222,183,53)" rx="2" ry="2" />
<text x="838.66" y="495.5" ></text>
</g>
<g >
<title>APP_STAT_UDP_ADD (3 samples, 0.01%)</title><rect x="817.8" y="533" width="0.2" height="15.0" fill="rgb(244,193,20)" rx="2" ry="2" />
<text x="820.84" y="543.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="1017.3" y="517" width="0.3" height="15.0" fill="rgb(228,154,41)" rx="2" ry="2" />
<text x="1020.34" y="527.5" ></text>
</g>
<g >
<title>[libprotoident.so] (44 samples, 0.22%)</title><rect x="600.6" y="469" width="2.6" height="15.0" fill="rgb(238,108,22)" rx="2" ry="2" />
<text x="603.65" y="479.5" ></text>
</g>
<g >
<title>CAhoCorasick::SearchMem (159 samples, 0.79%)</title><rect x="23.1" y="757" width="9.4" height="15.0" fill="rgb(218,126,26)" rx="2" ry="2" />
<text x="26.10" y="767.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (14 samples, 0.07%)</title><rect x="976.0" y="677" width="0.8" height="15.0" fill="rgb(210,204,49)" rx="2" ry="2" />
<text x="978.99" y="687.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (107 samples, 0.53%)</title><rect x="586.6" y="437" width="6.3" height="15.0" fill="rgb(236,188,35)" rx="2" ry="2" />
<text x="589.55" y="447.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="986.0" y="533" width="0.1" height="15.0" fill="rgb(213,165,25)" rx="2" ry="2" />
<text x="988.96" y="543.5" ></text>
</g>
<g >
<title>checkstreamorder (55 samples, 0.27%)</title><rect x="805.9" y="565" width="3.3" height="15.0" fill="rgb(230,144,28)" rx="2" ry="2" />
<text x="808.93" y="575.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="421.7" y="677" width="0.4" height="15.0" fill="rgb(221,2,4)" rx="2" ry="2" />
<text x="424.74" y="687.5" ></text>
</g>
<g >
<title>dealipv4udppkt (10 samples, 0.05%)</title><rect x="401.6" y="677" width="0.6" height="15.0" fill="rgb(235,91,13)" rx="2" ry="2" />
<text x="404.56" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="996.1" y="565" width="0.1" height="15.0" fill="rgb(210,227,18)" rx="2" ry="2" />
<text x="999.11" y="575.5" ></text>
</g>
<g >
<title>tsg_pull_policy_result (2 samples, 0.01%)</title><rect x="304.4" y="533" width="0.1" height="15.0" fill="rgb(218,214,5)" rx="2" ry="2" />
<text x="307.35" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="685.2" y="453" width="0.2" height="15.0" fill="rgb(252,106,0)" rx="2" ry="2" />
<text x="688.24" y="463.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="627.6" y="485" width="0.1" height="15.0" fill="rgb(213,75,17)" rx="2" ry="2" />
<text x="630.61" y="495.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="304.9" y="629" width="0.1" height="15.0" fill="rgb(217,66,20)" rx="2" ry="2" />
<text x="307.88" y="639.5" ></text>
</g>
<g >
<title>http_callPluginField (16 samples, 0.08%)</title><rect x="326.2" y="485" width="1.0" height="15.0" fill="rgb(253,95,34)" rx="2" ry="2" />
<text x="329.24" y="495.5" ></text>
</g>
<g >
<title>Maat_clean_status (14 samples, 0.07%)</title><rect x="563.8" y="501" width="0.8" height="15.0" fill="rgb(216,93,49)" rx="2" ry="2" />
<text x="566.78" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="594.6" y="325" width="0.2" height="15.0" fill="rgb(224,134,43)" rx="2" ry="2" />
<text x="597.63" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="300.7" y="261" width="0.1" height="15.0" fill="rgb(235,35,52)" rx="2" ry="2" />
<text x="303.69" y="271.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="809.6" y="421" width="0.1" height="15.0" fill="rgb(217,215,44)" rx="2" ry="2" />
<text x="812.59" y="431.5" ></text>
</g>
<g >
<title>get_rr_str2json (7 samples, 0.03%)</title><rect x="1002.7" y="677" width="0.4" height="15.0" fill="rgb(249,157,43)" rx="2" ry="2" />
<text x="1005.65" y="687.5" ></text>
</g>
<g >
<title>__lock_text_start (14 samples, 0.07%)</title><rect x="931.2" y="613" width="0.8" height="15.0" fill="rgb(231,27,25)" rx="2" ry="2" />
<text x="934.22" y="623.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="400.0" y="693" width="0.1" height="15.0" fill="rgb(223,16,23)" rx="2" ry="2" />
<text x="403.03" y="703.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (131 samples, 0.65%)</title><rect x="330.2" y="517" width="7.7" height="15.0" fill="rgb(231,96,8)" rx="2" ry="2" />
<text x="333.19" y="527.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="1017.3" y="549" width="0.3" height="15.0" fill="rgb(248,36,1)" rx="2" ry="2" />
<text x="1020.34" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="421.1" y="693" width="0.1" height="15.0" fill="rgb(235,20,22)" rx="2" ry="2" />
<text x="424.09" y="703.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="322.2" y="357" width="0.3" height="15.0" fill="rgb(237,136,48)" rx="2" ry="2" />
<text x="325.22" y="367.5" ></text>
</g>
<g >
<title>__sprintf (5 samples, 0.02%)</title><rect x="992.4" y="597" width="0.3" height="15.0" fill="rgb(220,157,42)" rx="2" ry="2" />
<text x="995.39" y="607.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (27 samples, 0.13%)</title><rect x="300.5" y="501" width="1.6" height="15.0" fill="rgb(211,228,47)" rx="2" ry="2" />
<text x="303.46" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="533" width="0.2" height="15.0" fill="rgb(246,52,44)" rx="2" ry="2" />
<text x="987.84" y="543.5" ></text>
</g>
<g >
<title>qsort@plt (2 samples, 0.01%)</title><rect x="162.1" y="741" width="0.1" height="15.0" fill="rgb(226,76,31)" rx="2" ry="2" />
<text x="165.13" y="751.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="978.9" y="565" width="0.2" height="15.0" fill="rgb(237,34,5)" rx="2" ry="2" />
<text x="981.88" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="387.9" y="517" width="0.3" height="15.0" fill="rgb(223,22,37)" rx="2" ry="2" />
<text x="390.88" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="333.4" y="213" width="0.3" height="15.0" fill="rgb(226,203,41)" rx="2" ry="2" />
<text x="336.43" y="223.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="569.0" y="405" width="0.1" height="15.0" fill="rgb(237,207,19)" rx="2" ry="2" />
<text x="571.97" y="415.5" ></text>
</g>
<g >
<title>dealipv4udppkt (200 samples, 1.00%)</title><rect x="388.2" y="661" width="11.8" height="15.0" fill="rgb(237,228,23)" rx="2" ry="2" />
<text x="391.17" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (16 samples, 0.08%)</title><rect x="326.2" y="405" width="1.0" height="15.0" fill="rgb(207,192,8)" rx="2" ry="2" />
<text x="329.24" y="415.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="340.7" y="501" width="0.1" height="15.0" fill="rgb(205,169,43)" rx="2" ry="2" />
<text x="343.69" y="511.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (6 samples, 0.03%)</title><rect x="987.6" y="613" width="0.3" height="15.0" fill="rgb(206,164,33)" rx="2" ry="2" />
<text x="990.55" y="623.5" ></text>
</g>
<g >
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="987.3" y="709" width="0.2" height="15.0" fill="rgb(216,162,4)" rx="2" ry="2" />
<text x="990.32" y="719.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (11 samples, 0.05%)</title><rect x="763.8" y="453" width="0.7" height="15.0" fill="rgb(243,68,5)" rx="2" ry="2" />
<text x="766.81" y="463.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="362.5" y="453" width="0.1" height="15.0" fill="rgb(233,113,39)" rx="2" ry="2" />
<text x="365.45" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="598.1" y="437" width="0.1" height="15.0" fill="rgb(230,78,53)" rx="2" ry="2" />
<text x="601.05" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="989.4" y="597" width="0.4" height="15.0" fill="rgb(218,45,10)" rx="2" ry="2" />
<text x="992.38" y="607.5" ></text>
</g>
<g >
<title>marsio_buff_ctrlzone (123 samples, 0.61%)</title><rect x="888.7" y="725" width="7.3" height="15.0" fill="rgb(248,152,23)" rx="2" ry="2" />
<text x="891.75" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="794.3" y="565" width="0.2" height="15.0" fill="rgb(241,24,46)" rx="2" ry="2" />
<text x="797.31" y="575.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (87 samples, 0.43%)</title><rect x="558.1" y="469" width="5.2" height="15.0" fill="rgb(225,132,15)" rx="2" ry="2" />
<text x="561.12" y="479.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type (2 samples, 0.01%)</title><rect x="93.4" y="757" width="0.1" height="15.0" fill="rgb(235,6,29)" rx="2" ry="2" />
<text x="96.41" y="767.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (18 samples, 0.09%)</title><rect x="330.2" y="309" width="1.0" height="15.0" fill="rgb(215,1,5)" rx="2" ry="2" />
<text x="333.19" y="319.5" ></text>
</g>
<g >
<title>plugin_call_appentry (31 samples, 0.15%)</title><rect x="327.2" y="469" width="1.8" height="15.0" fill="rgb(237,120,3)" rx="2" ry="2" />
<text x="330.18" y="479.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="541.5" y="501" width="0.1" height="15.0" fill="rgb(210,20,19)" rx="2" ry="2" />
<text x="544.48" y="511.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (19 samples, 0.09%)</title><rect x="120.4" y="693" width="1.1" height="15.0" fill="rgb(228,93,54)" rx="2" ry="2" />
<text x="123.43" y="703.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (34 samples, 0.17%)</title><rect x="320.6" y="421" width="2.0" height="15.0" fill="rgb(207,116,22)" rx="2" ry="2" />
<text x="323.57" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (16 samples, 0.08%)</title><rect x="604.1" y="485" width="1.0" height="15.0" fill="rgb(210,211,52)" rx="2" ry="2" />
<text x="607.13" y="495.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="989.4" y="565" width="0.4" height="15.0" fill="rgb(240,35,38)" rx="2" ry="2" />
<text x="992.38" y="575.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="1005.5" y="709" width="0.1" height="15.0" fill="rgb(247,172,46)" rx="2" ry="2" />
<text x="1008.48" y="719.5" ></text>
</g>
<g >
<title>strncmp_one_word_mesa (2 samples, 0.01%)</title><rect x="575.6" y="469" width="0.2" height="15.0" fill="rgb(241,185,44)" rx="2" ry="2" />
<text x="578.64" y="479.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="809.3" y="549" width="0.5" height="15.0" fill="rgb(236,83,32)" rx="2" ry="2" />
<text x="812.35" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (2 samples, 0.01%)</title><rect x="334.4" y="437" width="0.1" height="15.0" fill="rgb(239,5,29)" rx="2" ry="2" />
<text x="337.38" y="447.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (150 samples, 0.75%)</title><rect x="320.2" y="565" width="8.8" height="15.0" fill="rgb(231,49,28)" rx="2" ry="2" />
<text x="323.16" y="575.5" ></text>
</g>
<g >
<title>cJSON_Delete (2 samples, 0.01%)</title><rect x="997.0" y="645" width="0.2" height="15.0" fill="rgb(244,27,21)" rx="2" ry="2" />
<text x="1000.05" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="494.4" y="485" width="0.1" height="15.0" fill="rgb(237,18,47)" rx="2" ry="2" />
<text x="497.35" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (21 samples, 0.10%)</title><rect x="298.4" y="389" width="1.2" height="15.0" fill="rgb(243,74,33)" rx="2" ry="2" />
<text x="301.39" y="399.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (35 samples, 0.17%)</title><rect x="586.6" y="421" width="2.0" height="15.0" fill="rgb(217,218,40)" rx="2" ry="2" />
<text x="589.55" y="431.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="401.2" y="613" width="0.1" height="15.0" fill="rgb(218,173,49)" rx="2" ry="2" />
<text x="404.15" y="623.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="573.7" y="453" width="0.2" height="15.0" fill="rgb(239,136,20)" rx="2" ry="2" />
<text x="576.69" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="374.4" y="357" width="0.3" height="15.0" fill="rgb(249,228,26)" rx="2" ry="2" />
<text x="377.37" y="367.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="1002.8" y="661" width="0.1" height="15.0" fill="rgb(230,197,43)" rx="2" ry="2" />
<text x="1005.83" y="671.5" ></text>
</g>
<g >
<title>plugin_process_data (7 samples, 0.03%)</title><rect x="301.5" y="421" width="0.4" height="15.0" fill="rgb(246,14,8)" rx="2" ry="2" />
<text x="304.52" y="431.5" ></text>
</g>
<g >
<title>project_requirement_create (15 samples, 0.07%)</title><rect x="470.3" y="645" width="0.9" height="15.0" fill="rgb(208,139,40)" rx="2" ry="2" />
<text x="473.34" y="655.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (12 samples, 0.06%)</title><rect x="306.4" y="389" width="0.7" height="15.0" fill="rgb(242,153,30)" rx="2" ry="2" />
<text x="309.42" y="399.5" ></text>
</g>
<g >
<title>http_doWithGzipData (11 samples, 0.05%)</title><rect x="570.7" y="405" width="0.7" height="15.0" fill="rgb(209,84,49)" rx="2" ry="2" />
<text x="573.74" y="415.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (6 samples, 0.03%)</title><rect x="373.0" y="517" width="0.3" height="15.0" fill="rgb(229,80,1)" rx="2" ry="2" />
<text x="375.95" y="527.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (4 samples, 0.02%)</title><rect x="106.2" y="709" width="0.2" height="15.0" fill="rgb(226,83,36)" rx="2" ry="2" />
<text x="109.21" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="327.1" y="325" width="0.1" height="15.0" fill="rgb(248,182,3)" rx="2" ry="2" />
<text x="330.06" y="335.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="400.0" y="677" width="0.1" height="15.0" fill="rgb(233,177,18)" rx="2" ry="2" />
<text x="403.03" y="687.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="984.7" y="549" width="0.1" height="15.0" fill="rgb(244,20,34)" rx="2" ry="2" />
<text x="987.66" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="570.6" y="373" width="0.1" height="15.0" fill="rgb(219,98,28)" rx="2" ry="2" />
<text x="573.56" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="301.5" y="373" width="0.4" height="15.0" fill="rgb(226,94,20)" rx="2" ry="2" />
<text x="304.52" y="383.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (10 samples, 0.05%)</title><rect x="627.8" y="501" width="0.6" height="15.0" fill="rgb(211,214,23)" rx="2" ry="2" />
<text x="630.78" y="511.5" ></text>
</g>
<g >
<title>eth_entry (55 samples, 0.27%)</title><rect x="987.6" y="741" width="3.2" height="15.0" fill="rgb(245,127,19)" rx="2" ry="2" />
<text x="990.55" y="751.5" ></text>
</g>
<g >
<title>[tsg_master.so] (17 samples, 0.08%)</title><rect x="801.9" y="373" width="1.0" height="15.0" fill="rgb(251,71,44)" rx="2" ry="2" />
<text x="804.86" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="627.1" y="485" width="0.1" height="15.0" fill="rgb(236,157,14)" rx="2" ry="2" />
<text x="630.08" y="495.5" ></text>
</g>
<g >
<title>http_doWithHost (5 samples, 0.02%)</title><rect x="574.4" y="437" width="0.3" height="15.0" fill="rgb(246,222,17)" rx="2" ry="2" />
<text x="577.40" y="447.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (24 samples, 0.12%)</title><rect x="583.1" y="373" width="1.4" height="15.0" fill="rgb(218,224,9)" rx="2" ry="2" />
<text x="586.07" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="389" width="0.9" height="15.0" fill="rgb(212,164,25)" rx="2" ry="2" />
<text x="303.46" y="399.5" ></text>
</g>
<g >
<title>tsg_send_log (33 samples, 0.16%)</title><rect x="320.6" y="389" width="2.0" height="15.0" fill="rgb(247,92,39)" rx="2" ry="2" />
<text x="323.63" y="399.5" ></text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="337.0" y="405" width="0.1" height="15.0" fill="rgb(237,224,50)" rx="2" ry="2" />
<text x="339.97" y="415.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="979.6" y="533" width="0.2" height="15.0" fill="rgb(222,11,50)" rx="2" ry="2" />
<text x="982.65" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="793.3" y="549" width="0.5" height="15.0" fill="rgb(252,74,28)" rx="2" ry="2" />
<text x="796.30" y="559.5" ></text>
</g>
<g >
<title>APP_SKETCH_POLLING_ENTRY (63 samples, 0.31%)</title><rect x="941.0" y="725" width="3.7" height="15.0" fill="rgb(215,58,52)" rx="2" ry="2" />
<text x="944.01" y="735.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (60 samples, 0.30%)</title><rect x="558.6" y="437" width="3.5" height="15.0" fill="rgb(211,5,44)" rx="2" ry="2" />
<text x="561.59" y="447.5" ></text>
</g>
<g >
<title>[libhos-client-cpp.so] (2 samples, 0.01%)</title><rect x="591.2" y="261" width="0.1" height="15.0" fill="rgb(227,209,33)" rx="2" ry="2" />
<text x="594.21" y="271.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="809.3" y="533" width="0.5" height="15.0" fill="rgb(214,72,32)" rx="2" ry="2" />
<text x="812.35" y="543.5" ></text>
</g>
<g >
<title>std::vector&lt;char, std::allocator&lt;char&gt; &gt;::_M_range_insert&lt;unsigned char*&gt; (2 samples, 0.01%)</title><rect x="570.8" y="325" width="0.1" height="15.0" fill="rgb(216,223,30)" rx="2" ry="2" />
<text x="573.80" y="335.5" ></text>
</g>
<g >
<title>operator new (8 samples, 0.04%)</title><rect x="570.9" y="357" width="0.5" height="15.0" fill="rgb(249,50,0)" rx="2" ry="2" />
<text x="573.92" y="367.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="855.4" y="501" width="0.1" height="15.0" fill="rgb(240,151,13)" rx="2" ry="2" />
<text x="858.36" y="511.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (4 samples, 0.02%)</title><rect x="400.9" y="629" width="0.3" height="15.0" fill="rgb(220,170,36)" rx="2" ry="2" />
<text x="403.91" y="639.5" ></text>
</g>
<g >
<title>[sapp] (137 samples, 0.68%)</title><rect x="795.4" y="565" width="8.1" height="15.0" fill="rgb(251,178,23)" rx="2" ry="2" />
<text x="798.43" y="575.5" ></text>
</g>
<g >
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="552.5" y="453" width="0.1" height="15.0" fill="rgb(245,64,29)" rx="2" ry="2" />
<text x="555.46" y="463.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (4 samples, 0.02%)</title><rect x="979.6" y="597" width="0.3" height="15.0" fill="rgb(226,135,15)" rx="2" ry="2" />
<text x="982.65" y="607.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (36 samples, 0.18%)</title><rect x="973.7" y="645" width="2.2" height="15.0" fill="rgb(235,227,4)" rx="2" ry="2" />
<text x="976.75" y="655.5" ></text>
</g>
<g >
<title>qmdpi_result_flags_get (3 samples, 0.01%)</title><rect x="823.0" y="485" width="0.2" height="15.0" fill="rgb(206,150,6)" rx="2" ry="2" />
<text x="825.98" y="495.5" ></text>
</g>
<g >
<title>stream_bridge_create_per_stream (7 samples, 0.03%)</title><rect x="545.7" y="565" width="0.4" height="15.0" fill="rgb(217,164,6)" rx="2" ry="2" />
<text x="548.67" y="575.5" ></text>
</g>
<g >
<title>__GI_sscanf (3 samples, 0.01%)</title><rect x="992.2" y="597" width="0.2" height="15.0" fill="rgb(247,11,35)" rx="2" ry="2" />
<text x="995.21" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="604.4" y="469" width="0.2" height="15.0" fill="rgb(213,20,12)" rx="2" ry="2" />
<text x="607.37" y="479.5" ></text>
</g>
<g >
<title>CAPTURE_UDP_PACKET_ENTRY (40 samples, 0.20%)</title><rect x="829.9" y="549" width="2.3" height="15.0" fill="rgb(216,193,15)" rx="2" ry="2" />
<text x="832.88" y="559.5" ></text>
</g>
<g >
<title>hash_del_stream (5 samples, 0.02%)</title><rect x="679.8" y="533" width="0.3" height="15.0" fill="rgb(237,181,33)" rx="2" ry="2" />
<text x="682.81" y="543.5" ></text>
</g>
<g >
<title>stream_process (1,006 samples, 5.03%)</title><rect x="726.4" y="565" width="59.4" height="15.0" fill="rgb(208,99,5)" rx="2" ry="2" />
<text x="729.41" y="575.5" >stream..</text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="869.3" y="549" width="0.1" height="15.0" fill="rgb(242,55,52)" rx="2" ry="2" />
<text x="872.28" y="559.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="986.6" y="517" width="0.3" height="15.0" fill="rgb(213,39,39)" rx="2" ry="2" />
<text x="989.61" y="527.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (2 samples, 0.01%)</title><rect x="535.8" y="469" width="0.1" height="15.0" fill="rgb(236,214,25)" rx="2" ry="2" />
<text x="538.82" y="479.5" ></text>
</g>
<g >
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="1016.8" y="549" width="0.2" height="15.0" fill="rgb(209,141,11)" rx="2" ry="2" />
<text x="1019.75" y="559.5" ></text>
</g>
<g >
<title>sapp_mem_free (4 samples, 0.02%)</title><rect x="682.8" y="517" width="0.2" height="15.0" fill="rgb(252,202,43)" rx="2" ry="2" />
<text x="685.76" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="591.2" y="325" width="0.2" height="15.0" fill="rgb(214,6,25)" rx="2" ry="2" />
<text x="594.15" y="335.5" ></text>
</g>
<g >
<title>[libwangw.so] (7 samples, 0.03%)</title><rect x="973.7" y="629" width="0.5" height="15.0" fill="rgb(241,180,2)" rx="2" ry="2" />
<text x="976.75" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.5" y="469" width="0.1" height="15.0" fill="rgb(212,71,29)" rx="2" ry="2" />
<text x="497.47" y="479.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="1006.6" y="757" width="0.1" height="15.0" fill="rgb(253,88,37)" rx="2" ry="2" />
<text x="1009.61" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="591.0" y="373" width="0.2" height="15.0" fill="rgb(241,225,11)" rx="2" ry="2" />
<text x="594.03" y="383.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="334.5" y="437" width="0.3" height="15.0" fill="rgb(233,193,52)" rx="2" ry="2" />
<text x="337.49" y="447.5" ></text>
</g>
<g >
<title>checkstreamorder (98 samples, 0.49%)</title><rect x="481.8" y="645" width="5.8" height="15.0" fill="rgb(230,212,20)" rx="2" ry="2" />
<text x="484.85" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="590.6" y="293" width="0.1" height="15.0" fill="rgb(219,70,49)" rx="2" ry="2" />
<text x="593.62" y="303.5" ></text>
</g>
<g >
<title>__sprintf (3 samples, 0.01%)</title><rect x="556.8" y="453" width="0.1" height="15.0" fill="rgb(243,175,28)" rx="2" ry="2" />
<text x="559.76" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (7 samples, 0.03%)</title><rect x="94.2" y="773" width="0.4" height="15.0" fill="rgb(228,163,54)" rx="2" ry="2" />
<text x="97.18" y="783.5" ></text>
</g>
<g >
<title>[sapp] (2,095 samples, 10.47%)</title><rect x="297.7" y="789" width="123.6" height="15.0" fill="rgb(228,212,27)" rx="2" ry="2" />
<text x="300.74" y="799.5" >[sapp]</text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (50 samples, 0.25%)</title><rect x="228.2" y="693" width="2.9" height="15.0" fill="rgb(222,160,33)" rx="2" ry="2" />
<text x="231.20" y="703.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (28 samples, 0.14%)</title><rect x="1013.9" y="421" width="1.6" height="15.0" fill="rgb(250,149,12)" rx="2" ry="2" />
<text x="1016.86" y="431.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="383.9" y="517" width="0.6" height="15.0" fill="rgb(249,32,19)" rx="2" ry="2" />
<text x="386.93" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="991.6" y="677" width="0.1" height="15.0" fill="rgb(243,8,23)" rx="2" ry="2" />
<text x="994.56" y="687.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (4 samples, 0.02%)</title><rect x="612.4" y="485" width="0.2" height="15.0" fill="rgb(238,9,1)" rx="2" ry="2" />
<text x="615.39" y="495.5" ></text>
</g>
<g >
<title>copy_ipport_union_addr (9 samples, 0.04%)</title><rect x="536.3" y="565" width="0.5" height="15.0" fill="rgb(222,43,44)" rx="2" ry="2" />
<text x="539.29" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (16 samples, 0.08%)</title><rect x="326.2" y="421" width="1.0" height="15.0" fill="rgb(210,142,43)" rx="2" ry="2" />
<text x="329.24" y="431.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="986.4" y="533" width="0.2" height="15.0" fill="rgb(219,211,8)" rx="2" ry="2" />
<text x="989.43" y="543.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (11 samples, 0.05%)</title><rect x="992.1" y="645" width="0.6" height="15.0" fill="rgb(230,51,27)" rx="2" ry="2" />
<text x="995.09" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1010.4" y="357" width="0.5" height="15.0" fill="rgb(219,4,2)" rx="2" ry="2" />
<text x="1013.44" y="367.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (452 samples, 2.26%)</title><rect x="339.5" y="565" width="26.7" height="15.0" fill="rgb(235,1,38)" rx="2" ry="2" />
<text x="342.51" y="575.5" >t..</text>
</g>
<g >
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="301.2" y="261" width="0.1" height="15.0" fill="rgb(223,170,40)" rx="2" ry="2" />
<text x="304.22" y="271.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="331.5" y="229" width="0.2" height="15.0" fill="rgb(214,156,46)" rx="2" ry="2" />
<text x="334.54" y="239.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="320.2" y="405" width="0.4" height="15.0" fill="rgb(211,200,10)" rx="2" ry="2" />
<text x="323.16" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="383.6" y="405" width="0.1" height="15.0" fill="rgb(223,106,49)" rx="2" ry="2" />
<text x="386.63" y="415.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (78 samples, 0.39%)</title><rect x="330.2" y="485" width="4.6" height="15.0" fill="rgb(252,185,20)" rx="2" ry="2" />
<text x="333.19" y="495.5" ></text>
</g>
<g >
<title>[sapp] (9,307 samples, 46.53%)</title><rect x="424.0" y="757" width="549.0" height="15.0" fill="rgb(238,213,32)" rx="2" ry="2" />
<text x="426.98" y="767.5" >[sapp]</text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1015.8" y="645" width="0.1" height="15.0" fill="rgb(220,170,29)" rx="2" ry="2" />
<text x="1018.81" y="655.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (10 samples, 0.05%)</title><rect x="319.5" y="469" width="0.5" height="15.0" fill="rgb(218,104,53)" rx="2" ry="2" />
<text x="322.45" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1017.6" y="517" width="0.2" height="15.0" fill="rgb(253,172,25)" rx="2" ry="2" />
<text x="1020.64" y="527.5" ></text>
</g>
<g >
<title>_itoa_word (3 samples, 0.01%)</title><rect x="1013.5" y="437" width="0.2" height="15.0" fill="rgb(208,142,11)" rx="2" ry="2" />
<text x="1016.51" y="447.5" ></text>
</g>
<g >
<title>__GI___printf_fp_l (4 samples, 0.02%)</title><rect x="992.4" y="549" width="0.3" height="15.0" fill="rgb(248,138,10)" rx="2" ry="2" />
<text x="995.45" y="559.5" ></text>
</g>
<g >
<title>sapp_mem_free (5 samples, 0.02%)</title><rect x="923.3" y="677" width="0.3" height="15.0" fill="rgb(217,207,3)" rx="2" ry="2" />
<text x="926.26" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.05%)</title><rect x="302.2" y="485" width="0.7" height="15.0" fill="rgb(207,0,20)" rx="2" ry="2" />
<text x="305.23" y="495.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="679.5" y="517" width="0.1" height="15.0" fill="rgb(221,134,36)" rx="2" ry="2" />
<text x="682.52" y="527.5" ></text>
</g>
<g >
<title>stream_process (1,347 samples, 6.73%)</title><rect x="546.9" y="549" width="79.4" height="15.0" fill="rgb(207,32,23)" rx="2" ry="2" />
<text x="549.85" y="559.5" >stream_pr..</text>
</g>
<g >
<title>ddos_sketch_logging_print (9 samples, 0.04%)</title><rect x="646.0" y="485" width="0.5" height="15.0" fill="rgb(226,0,37)" rx="2" ry="2" />
<text x="649.01" y="495.5" ></text>
</g>
<g >
<title>[libqmengine.so] (85 samples, 0.42%)</title><rect x="558.2" y="453" width="5.1" height="15.0" fill="rgb(218,203,40)" rx="2" ry="2" />
<text x="561.24" y="463.5" ></text>
</g>
<g >
<title>__ctype_tolower_loc (2 samples, 0.01%)</title><rect x="338.8" y="469" width="0.1" height="15.0" fill="rgb(219,90,53)" rx="2" ry="2" />
<text x="341.80" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (10 samples, 0.05%)</title><rect x="685.8" y="469" width="0.6" height="15.0" fill="rgb(243,50,51)" rx="2" ry="2" />
<text x="688.77" y="479.5" ></text>
</g>
<g >
<title>tcp_free_stream (171 samples, 0.85%)</title><rect x="374.4" y="597" width="10.1" height="15.0" fill="rgb(233,121,25)" rx="2" ry="2" />
<text x="377.37" y="607.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (2 samples, 0.01%)</title><rect x="975.9" y="597" width="0.1" height="15.0" fill="rgb(244,71,38)" rx="2" ry="2" />
<text x="978.87" y="607.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (29 samples, 0.14%)</title><rect x="974.2" y="581" width="1.7" height="15.0" fill="rgb(237,195,20)" rx="2" ry="2" />
<text x="977.16" y="591.5" ></text>
</g>
<g >
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="927.7" y="613" width="0.3" height="15.0" fill="rgb(241,157,12)" rx="2" ry="2" />
<text x="930.68" y="623.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (86 samples, 0.43%)</title><rect x="639.8" y="453" width="5.1" height="15.0" fill="rgb(226,118,25)" rx="2" ry="2" />
<text x="642.82" y="463.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="420.4" y="629" width="0.2" height="15.0" fill="rgb(242,125,38)" rx="2" ry="2" />
<text x="423.44" y="639.5" ></text>
</g>
<g >
<title>dealipv4udppkt (34 samples, 0.17%)</title><rect x="1013.8" y="629" width="2.0" height="15.0" fill="rgb(242,169,38)" rx="2" ry="2" />
<text x="1016.80" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="320.6" y="373" width="1.6" height="15.0" fill="rgb(206,104,1)" rx="2" ry="2" />
<text x="323.63" y="383.5" ></text>
</g>
<g >
<title>polling_stream_timeout (240 samples, 1.20%)</title><rect x="914.8" y="741" width="14.2" height="15.0" fill="rgb(254,203,40)" rx="2" ry="2" />
<text x="917.82" y="751.5" ></text>
</g>
<g >
<title>http_callPluginField (34 samples, 0.17%)</title><rect x="320.6" y="485" width="2.0" height="15.0" fill="rgb(212,164,51)" rx="2" ry="2" />
<text x="323.57" y="495.5" ></text>
</g>
<g >
<title>check_port (2 samples, 0.01%)</title><rect x="832.7" y="533" width="0.1" height="15.0" fill="rgb(225,136,42)" rx="2" ry="2" />
<text x="835.71" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="305.0" y="469" width="2.5" height="15.0" fill="rgb(238,83,13)" rx="2" ry="2" />
<text x="308.00" y="479.5" ></text>
</g>
<g >
<title>FIPS_module_mode (2 samples, 0.01%)</title><rect x="1006.5" y="757" width="0.1" height="15.0" fill="rgb(218,35,26)" rx="2" ry="2" />
<text x="1009.49" y="767.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (3 samples, 0.01%)</title><rect x="873.2" y="613" width="0.2" height="15.0" fill="rgb(205,182,37)" rx="2" ry="2" />
<text x="876.23" y="623.5" ></text>
</g>
<g >
<title>stream_process_udp (11 samples, 0.05%)</title><rect x="928.3" y="693" width="0.7" height="15.0" fill="rgb(223,194,26)" rx="2" ry="2" />
<text x="931.33" y="703.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (53 samples, 0.26%)</title><rect x="1009.8" y="549" width="3.1" height="15.0" fill="rgb(218,57,1)" rx="2" ry="2" />
<text x="1012.79" y="559.5" ></text>
</g>
<g >
<title>__sprintf (28 samples, 0.14%)</title><rect x="1003.3" y="741" width="1.7" height="15.0" fill="rgb(239,77,41)" rx="2" ry="2" />
<text x="1006.30" y="751.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="394.0" y="341" width="0.1" height="15.0" fill="rgb(228,111,25)" rx="2" ry="2" />
<text x="397.01" y="351.5" ></text>
</g>
<g >
<title>[libqmengine.so] (9 samples, 0.04%)</title><rect x="299.9" y="469" width="0.6" height="15.0" fill="rgb(249,115,47)" rx="2" ry="2" />
<text x="302.93" y="479.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (3 samples, 0.01%)</title><rect x="974.0" y="597" width="0.2" height="15.0" fill="rgb(238,83,18)" rx="2" ry="2" />
<text x="976.99" y="607.5" ></text>
</g>
<g >
<title>__memset_sse2 (6 samples, 0.03%)</title><rect x="836.7" y="469" width="0.3" height="15.0" fill="rgb(241,2,7)" rx="2" ry="2" />
<text x="839.66" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="397.5" y="501" width="0.1" height="15.0" fill="rgb(223,203,54)" rx="2" ry="2" />
<text x="400.49" y="511.5" ></text>
</g>
<g >
<title>__IO_vsprintf (8 samples, 0.04%)</title><rect x="339.0" y="485" width="0.4" height="15.0" fill="rgb(246,82,27)" rx="2" ry="2" />
<text x="341.98" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="565.7" y="485" width="0.4" height="15.0" fill="rgb(207,156,51)" rx="2" ry="2" />
<text x="568.73" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="383.0" y="405" width="0.6" height="15.0" fill="rgb(226,196,50)" rx="2" ry="2" />
<text x="386.04" y="415.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (41 samples, 0.20%)</title><rect x="987.6" y="709" width="2.4" height="15.0" fill="rgb(243,88,53)" rx="2" ry="2" />
<text x="990.55" y="719.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (38 samples, 0.19%)</title><rect x="925.8" y="693" width="2.2" height="15.0" fill="rgb(242,151,25)" rx="2" ry="2" />
<text x="928.79" y="703.5" ></text>
</g>
<g >
<title>JSON_checker_char (3 samples, 0.01%)</title><rect x="597.8" y="469" width="0.2" height="15.0" fill="rgb(239,20,11)" rx="2" ry="2" />
<text x="600.82" y="479.5" ></text>
</g>
<g >
<title>__snprintf (9 samples, 0.04%)</title><rect x="636.0" y="501" width="0.6" height="15.0" fill="rgb(222,97,4)" rx="2" ry="2" />
<text x="639.04" y="511.5" ></text>
</g>
<g >
<title>[ftp.so] (4 samples, 0.02%)</title><rect x="598.4" y="469" width="0.2" height="15.0" fill="rgb(219,78,34)" rx="2" ry="2" />
<text x="601.41" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="325.8" y="341" width="0.4" height="15.0" fill="rgb(234,201,51)" rx="2" ry="2" />
<text x="328.82" y="351.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="301.2" y="213" width="0.1" height="15.0" fill="rgb(233,177,24)" rx="2" ry="2" />
<text x="304.22" y="223.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="320.2" y="389" width="0.4" height="15.0" fill="rgb(224,188,26)" rx="2" ry="2" />
<text x="323.16" y="399.5" ></text>
</g>
<g >
<title>del_stream_by_time (174 samples, 0.87%)</title><rect x="676.3" y="565" width="10.3" height="15.0" fill="rgb(213,13,31)" rx="2" ry="2" />
<text x="679.33" y="575.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (18 samples, 0.09%)</title><rect x="825.5" y="405" width="1.1" height="15.0" fill="rgb(218,134,20)" rx="2" ry="2" />
<text x="828.51" y="415.5" ></text>
</g>
<g >
<title>FS_operate (5 samples, 0.02%)</title><rect x="646.2" y="469" width="0.3" height="15.0" fill="rgb(249,69,16)" rx="2" ry="2" />
<text x="649.25" y="479.5" ></text>
</g>
<g >
<title>FIPS_mode (3 samples, 0.01%)</title><rect x="1006.3" y="757" width="0.2" height="15.0" fill="rgb(208,16,18)" rx="2" ry="2" />
<text x="1009.31" y="767.5" ></text>
</g>
<g >
<title>free_polling_inject_context (10 samples, 0.05%)</title><rect x="923.0" y="693" width="0.6" height="15.0" fill="rgb(225,70,12)" rx="2" ry="2" />
<text x="925.96" y="703.5" ></text>
</g>
<g >
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="922.8" y="677" width="0.2" height="15.0" fill="rgb(247,173,17)" rx="2" ry="2" />
<text x="925.78" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (17 samples, 0.08%)</title><rect x="647.8" y="501" width="1.0" height="15.0" fill="rgb(229,206,40)" rx="2" ry="2" />
<text x="650.84" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="1016.6" y="469" width="0.1" height="15.0" fill="rgb(216,98,43)" rx="2" ry="2" />
<text x="1019.57" y="479.5" ></text>
</g>
<g >
<title>ssl_analyseAppData (19 samples, 0.09%)</title><rect x="329.1" y="517" width="1.1" height="15.0" fill="rgb(223,147,34)" rx="2" ry="2" />
<text x="332.07" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (18 samples, 0.09%)</title><rect x="571.8" y="405" width="1.1" height="15.0" fill="rgb(218,187,13)" rx="2" ry="2" />
<text x="574.80" y="415.5" ></text>
</g>
<g >
<title>plugin_process_data (5 samples, 0.02%)</title><rect x="977.1" y="517" width="0.3" height="15.0" fill="rgb(214,146,46)" rx="2" ry="2" />
<text x="980.11" y="527.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (4 samples, 0.02%)</title><rect x="541.7" y="485" width="0.2" height="15.0" fill="rgb(210,202,47)" rx="2" ry="2" />
<text x="544.66" y="495.5" ></text>
</g>
<g >
<title>http_judgeHttpMethod (3 samples, 0.01%)</title><rect x="575.0" y="469" width="0.2" height="15.0" fill="rgb(236,105,33)" rx="2" ry="2" />
<text x="577.99" y="479.5" ></text>
</g>
<g >
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="337.5" y="389" width="0.1" height="15.0" fill="rgb(213,11,22)" rx="2" ry="2" />
<text x="340.50" y="399.5" ></text>
</g>
<g >
<title>malloc_consolidate (28 samples, 0.14%)</title><rect x="634.4" y="469" width="1.6" height="15.0" fill="rgb(227,53,12)" rx="2" ry="2" />
<text x="637.39" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="827.3" y="437" width="0.1" height="15.0" fill="rgb(219,167,38)" rx="2" ry="2" />
<text x="830.28" y="447.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (6 samples, 0.03%)</title><rect x="335.2" y="373" width="0.4" height="15.0" fill="rgb(228,26,28)" rx="2" ry="2" />
<text x="338.20" y="383.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="991.6" y="645" width="0.1" height="15.0" fill="rgb(254,222,50)" rx="2" ry="2" />
<text x="994.56" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (14 samples, 0.07%)</title><rect x="537.9" y="485" width="0.8" height="15.0" fill="rgb(207,229,29)" rx="2" ry="2" />
<text x="540.89" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="990.0" y="597" width="0.3" height="15.0" fill="rgb(229,46,44)" rx="2" ry="2" />
<text x="992.97" y="607.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (868 samples, 4.34%)</title><rect x="817.0" y="565" width="51.2" height="15.0" fill="rgb(210,85,48)" rx="2" ry="2" />
<text x="819.96" y="575.5" >plugi..</text>
</g>
<g >
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="1012.6" y="517" width="0.1" height="15.0" fill="rgb(239,128,4)" rx="2" ry="2" />
<text x="1015.56" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (17 samples, 0.08%)</title><rect x="384.5" y="581" width="1.0" height="15.0" fill="rgb(224,209,26)" rx="2" ry="2" />
<text x="387.52" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="388.4" y="453" width="0.1" height="15.0" fill="rgb(230,62,10)" rx="2" ry="2" />
<text x="391.35" y="463.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (19 samples, 0.09%)</title><rect x="799.3" y="485" width="1.1" height="15.0" fill="rgb(248,26,30)" rx="2" ry="2" />
<text x="802.32" y="495.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.01%)</title><rect x="335.6" y="373" width="0.1" height="15.0" fill="rgb(215,142,30)" rx="2" ry="2" />
<text x="338.56" y="383.5" ></text>
</g>
<g >
<title>__libc_nanosleep (2 samples, 0.01%)</title><rect x="936.5" y="725" width="0.1" height="15.0" fill="rgb(211,151,33)" rx="2" ry="2" />
<text x="939.53" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="927.4" y="581" width="0.2" height="15.0" fill="rgb(230,41,54)" rx="2" ry="2" />
<text x="930.44" y="591.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (5 samples, 0.02%)</title><rect x="1016.8" y="517" width="0.2" height="15.0" fill="rgb(251,51,19)" rx="2" ry="2" />
<text x="1019.75" y="527.5" ></text>
</g>
<g >
<title>stream_process_polling (616 samples, 3.08%)</title><rect x="936.6" y="741" width="36.4" height="15.0" fill="rgb(207,178,13)" rx="2" ry="2" />
<text x="939.65" y="751.5" >str..</text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="327.2" y="405" width="0.2" height="15.0" fill="rgb(246,211,20)" rx="2" ry="2" />
<text x="330.24" y="415.5" ></text>
</g>
<g >
<title>sip_identify_from_to (7 samples, 0.03%)</title><rect x="841.4" y="517" width="0.4" height="15.0" fill="rgb(241,56,13)" rx="2" ry="2" />
<text x="844.38" y="527.5" ></text>
</g>
<g >
<title>TLD_append (6 samples, 0.03%)</title><rect x="982.3" y="485" width="0.4" height="15.0" fill="rgb(215,132,0)" rx="2" ry="2" />
<text x="985.30" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.05%)</title><rect x="326.4" y="341" width="0.6" height="15.0" fill="rgb(238,46,43)" rx="2" ry="2" />
<text x="329.41" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="868.2" y="549" width="0.4" height="15.0" fill="rgb(233,173,10)" rx="2" ry="2" />
<text x="871.16" y="559.5" ></text>
</g>
<g >
<title>_IO_no_init (3 samples, 0.01%)</title><rect x="637.2" y="437" width="0.2" height="15.0" fill="rgb(239,13,10)" rx="2" ry="2" />
<text x="640.22" y="447.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="999.0" y="613" width="0.1" height="15.0" fill="rgb(243,86,48)" rx="2" ry="2" />
<text x="1002.00" y="623.5" ></text>
</g>
<g >
<title>__sprintf (4 samples, 0.02%)</title><rect x="1005.0" y="757" width="0.2" height="15.0" fill="rgb(213,165,1)" rx="2" ry="2" />
<text x="1007.95" y="767.5" ></text>
</g>
<g >
<title>stream_process (73 samples, 0.36%)</title><rect x="490.3" y="597" width="4.3" height="15.0" fill="rgb(251,147,25)" rx="2" ry="2" />
<text x="493.34" y="607.5" ></text>
</g>
<g >
<title>tsg_send_log (15 samples, 0.07%)</title><rect x="326.3" y="389" width="0.9" height="15.0" fill="rgb(244,71,53)" rx="2" ry="2" />
<text x="329.29" y="399.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (26 samples, 0.13%)</title><rect x="118.9" y="693" width="1.5" height="15.0" fill="rgb(214,195,0)" rx="2" ry="2" />
<text x="121.89" y="703.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="1017.6" y="405" width="0.2" height="15.0" fill="rgb(214,92,38)" rx="2" ry="2" />
<text x="1020.64" y="415.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="840.4" y="485" width="0.1" height="15.0" fill="rgb(242,186,9)" rx="2" ry="2" />
<text x="843.38" y="495.5" ></text>
</g>
<g >
<title>_IO_vsscanf (3 samples, 0.01%)</title><rect x="992.2" y="581" width="0.2" height="15.0" fill="rgb(238,15,32)" rx="2" ry="2" />
<text x="995.21" y="591.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="989.8" y="629" width="0.2" height="15.0" fill="rgb(215,127,26)" rx="2" ry="2" />
<text x="992.79" y="639.5" ></text>
</g>
<g >
<title>ec_precompute_mont_data (8 samples, 0.04%)</title><rect x="591.6" y="341" width="0.5" height="15.0" fill="rgb(243,69,32)" rx="2" ry="2" />
<text x="594.62" y="351.5" ></text>
</g>
<g >
<title>lpi_update_dpkt (2 samples, 0.01%)</title><rect x="603.9" y="501" width="0.1" height="15.0" fill="rgb(232,26,48)" rx="2" ry="2" />
<text x="606.89" y="511.5" ></text>
</g>
<g >
<title>stream_process_tcp (3 samples, 0.01%)</title><rect x="308.4" y="597" width="0.2" height="15.0" fill="rgb(229,161,10)" rx="2" ry="2" />
<text x="311.42" y="607.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (20 samples, 0.10%)</title><rect x="371.8" y="517" width="1.2" height="15.0" fill="rgb(251,221,36)" rx="2" ry="2" />
<text x="374.77" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="316.8" y="325" width="0.1" height="15.0" fill="rgb(248,99,22)" rx="2" ry="2" />
<text x="319.80" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="835.9" y="405" width="0.1" height="15.0" fill="rgb(215,144,9)" rx="2" ry="2" />
<text x="838.89" y="415.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="302.9" y="501" width="0.3" height="15.0" fill="rgb(228,178,0)" rx="2" ry="2" />
<text x="305.88" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="332.7" y="229" width="0.4" height="15.0" fill="rgb(240,51,22)" rx="2" ry="2" />
<text x="335.72" y="239.5" ></text>
</g>
<g >
<title>eth_entry (131 samples, 0.65%)</title><rect x="976.8" y="789" width="7.7" height="15.0" fill="rgb(224,17,6)" rx="2" ry="2" />
<text x="979.82" y="799.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (4,618 samples, 23.09%)</title><rect x="516.2" y="613" width="272.4" height="15.0" fill="rgb(206,121,3)" rx="2" ry="2" />
<text x="519.18" y="623.5" >dealipv4tcppkt</text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (40 samples, 0.20%)</title><rect x="369.4" y="517" width="2.3" height="15.0" fill="rgb(219,221,23)" rx="2" ry="2" />
<text x="372.36" y="527.5" ></text>
</g>
<g >
<title>imap4_entry_fun (6 samples, 0.03%)</title><rect x="575.5" y="501" width="0.3" height="15.0" fill="rgb(228,3,20)" rx="2" ry="2" />
<text x="578.46" y="511.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (2 samples, 0.01%)</title><rect x="792.4" y="517" width="0.1" height="15.0" fill="rgb(206,163,45)" rx="2" ry="2" />
<text x="795.36" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="597.0" y="485" width="0.1" height="15.0" fill="rgb(217,86,20)" rx="2" ry="2" />
<text x="599.99" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="396.7" y="565" width="0.5" height="15.0" fill="rgb(211,47,33)" rx="2" ry="2" />
<text x="399.67" y="575.5" ></text>
</g>
<g >
<title>CStringMatch::search_rule (416 samples, 2.08%)</title><rect x="19.7" y="789" width="24.6" height="15.0" fill="rgb(246,34,15)" rx="2" ry="2" />
<text x="22.73" y="799.5" >C..</text>
</g>
<g >
<title>stream_process_tcp_allpkt (416 samples, 2.08%)</title><rect x="626.3" y="565" width="24.5" height="15.0" fill="rgb(227,188,39)" rx="2" ry="2" />
<text x="629.31" y="575.5" >s..</text>
</g>
<g >
<title>CBoolExprMatch::search_expr (137 samples, 0.68%)</title><rect x="226.5" y="709" width="8.1" height="15.0" fill="rgb(225,80,24)" rx="2" ry="2" />
<text x="229.49" y="719.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="420.4" y="581" width="0.2" height="15.0" fill="rgb(215,104,22)" rx="2" ry="2" />
<text x="423.44" y="591.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (4 samples, 0.02%)</title><rect x="276.6" y="709" width="0.2" height="15.0" fill="rgb(225,219,20)" rx="2" ry="2" />
<text x="279.57" y="719.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (11 samples, 0.05%)</title><rect x="928.3" y="661" width="0.7" height="15.0" fill="rgb(216,57,42)" rx="2" ry="2" />
<text x="931.33" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="310.2" y="485" width="0.9" height="15.0" fill="rgb(234,40,54)" rx="2" ry="2" />
<text x="313.19" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="330.9" y="85" width="0.1" height="15.0" fill="rgb(237,144,38)" rx="2" ry="2" />
<text x="333.90" y="95.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="374.4" y="405" width="0.4" height="15.0" fill="rgb(226,29,19)" rx="2" ry="2" />
<text x="377.37" y="415.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.01%)</title><rect x="948.1" y="565" width="0.2" height="15.0" fill="rgb(251,94,27)" rx="2" ry="2" />
<text x="951.15" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="399.6" y="517" width="0.3" height="15.0" fill="rgb(214,168,5)" rx="2" ry="2" />
<text x="402.62" y="527.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="990.3" y="629" width="0.2" height="15.0" fill="rgb(231,228,21)" rx="2" ry="2" />
<text x="993.32" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_new (2 samples, 0.01%)</title><rect x="300.7" y="277" width="0.1" height="15.0" fill="rgb(244,125,24)" rx="2" ry="2" />
<text x="303.69" y="287.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="809.4" y="437" width="0.1" height="15.0" fill="rgb(214,70,37)" rx="2" ry="2" />
<text x="812.41" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="402.2" y="645" width="0.4" height="15.0" fill="rgb(220,150,28)" rx="2" ry="2" />
<text x="405.15" y="655.5" ></text>
</g>
<g >
<title>TLD_create (4 samples, 0.02%)</title><rect x="594.6" y="357" width="0.2" height="15.0" fill="rgb(210,173,20)" rx="2" ry="2" />
<text x="597.57" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (30 samples, 0.15%)</title><rect x="491.8" y="501" width="1.7" height="15.0" fill="rgb(217,104,33)" rx="2" ry="2" />
<text x="494.76" y="511.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (19 samples, 0.09%)</title><rect x="234.7" y="709" width="1.2" height="15.0" fill="rgb(221,57,42)" rx="2" ry="2" />
<text x="237.75" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="556.2" y="453" width="0.4" height="15.0" fill="rgb(249,47,51)" rx="2" ry="2" />
<text x="559.23" y="463.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (14 samples, 0.07%)</title><rect x="700.0" y="517" width="0.8" height="15.0" fill="rgb(220,53,12)" rx="2" ry="2" />
<text x="702.99" y="527.5" ></text>
</g>
<g >
<title>RSA_new_method (4 samples, 0.02%)</title><rect x="591.2" y="309" width="0.2" height="15.0" fill="rgb(214,147,50)" rx="2" ry="2" />
<text x="594.15" y="319.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="1016.8" y="501" width="0.2" height="15.0" fill="rgb(216,88,47)" rx="2" ry="2" />
<text x="1019.75" y="511.5" ></text>
</g>
<g >
<title>[quic.so] (7 samples, 0.03%)</title><rect x="836.2" y="485" width="0.5" height="15.0" fill="rgb(233,9,4)" rx="2" ry="2" />
<text x="839.25" y="495.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="611.9" y="469" width="0.1" height="15.0" fill="rgb(223,52,9)" rx="2" ry="2" />
<text x="614.92" y="479.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="570.6" y="405" width="0.1" height="15.0" fill="rgb(246,12,26)" rx="2" ry="2" />
<text x="573.56" y="415.5" ></text>
</g>
<g >
<title>Maat_full_scan_string_detail (814 samples, 4.07%)</title><rect x="44.4" y="789" width="48.0" height="15.0" fill="rgb(234,32,13)" rx="2" ry="2" />
<text x="47.39" y="799.5" >Maat..</text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="645.7" y="485" width="0.1" height="15.0" fill="rgb(243,172,52)" rx="2" ry="2" />
<text x="648.72" y="495.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="608.1" y="469" width="0.2" height="15.0" fill="rgb(215,0,31)" rx="2" ry="2" />
<text x="611.08" y="479.5" ></text>
</g>
<g >
<title>[libprotoident.so] (12 samples, 0.06%)</title><rect x="850.4" y="485" width="0.7" height="15.0" fill="rgb(231,179,20)" rx="2" ry="2" />
<text x="853.40" y="495.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="989.8" y="517" width="0.2" height="15.0" fill="rgb(222,9,19)" rx="2" ry="2" />
<text x="992.79" y="527.5" ></text>
</g>
<g >
<title>PROT_PROCESS (45 samples, 0.22%)</title><rect x="581.8" y="421" width="2.7" height="15.0" fill="rgb(223,73,43)" rx="2" ry="2" />
<text x="584.83" y="431.5" ></text>
</g>
<g >
<title>ipv4_entry (131 samples, 0.65%)</title><rect x="976.8" y="773" width="7.7" height="15.0" fill="rgb(214,107,18)" rx="2" ry="2" />
<text x="979.82" y="783.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="44.1" y="709" width="0.2" height="15.0" fill="rgb(239,146,27)" rx="2" ry="2" />
<text x="47.10" y="719.5" ></text>
</g>
<g >
<title>qmdpi_result_attr_getnext_with_index (3 samples, 0.01%)</title><rect x="827.9" y="453" width="0.2" height="15.0" fill="rgb(223,109,37)" rx="2" ry="2" />
<text x="830.93" y="463.5" ></text>
</g>
<g >
<title>wire_graft_build_link_info (2 samples, 0.01%)</title><rect x="854.7" y="533" width="0.1" height="15.0" fill="rgb(234,91,36)" rx="2" ry="2" />
<text x="857.71" y="543.5" ></text>
</g>
<g >
<title>X509V3_EXT_d2i (7 samples, 0.03%)</title><rect x="590.3" y="421" width="0.4" height="15.0" fill="rgb(249,126,42)" rx="2" ry="2" />
<text x="593.33" y="431.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (13 samples, 0.06%)</title><rect x="573.9" y="453" width="0.8" height="15.0" fill="rgb(205,126,7)" rx="2" ry="2" />
<text x="576.93" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="340.2" y="501" width="0.2" height="15.0" fill="rgb(215,56,12)" rx="2" ry="2" />
<text x="343.22" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (7 samples, 0.03%)</title><rect x="872.3" y="533" width="0.5" height="15.0" fill="rgb(225,153,53)" rx="2" ry="2" />
<text x="875.35" y="543.5" ></text>
</g>
<g >
<title>pbe_ul3l4_cache_find (3 samples, 0.01%)</title><rect x="300.3" y="437" width="0.2" height="15.0" fill="rgb(222,124,51)" rx="2" ry="2" />
<text x="303.28" y="447.5" ></text>
</g>
<g >
<title>[sapp] (96 samples, 0.48%)</title><rect x="297.9" y="613" width="5.6" height="15.0" fill="rgb(232,23,37)" rx="2" ry="2" />
<text x="300.86" y="623.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="375.0" y="485" width="0.3" height="15.0" fill="rgb(217,20,29)" rx="2" ry="2" />
<text x="378.02" y="495.5" ></text>
</g>
<g >
<title>PROT_PROCESS (14 samples, 0.07%)</title><rect x="985.1" y="565" width="0.9" height="15.0" fill="rgb(218,41,26)" rx="2" ry="2" />
<text x="988.13" y="575.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (13 samples, 0.06%)</title><rect x="45.9" y="773" width="0.7" height="15.0" fill="rgb(235,157,13)" rx="2" ry="2" />
<text x="48.86" y="783.5" ></text>
</g>
<g >
<title>__sys_recvfrom (4 samples, 0.02%)</title><rect x="948.0" y="613" width="0.3" height="15.0" fill="rgb(208,53,27)" rx="2" ry="2" />
<text x="951.03" y="623.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="999.0" y="645" width="0.1" height="15.0" fill="rgb(223,99,17)" rx="2" ry="2" />
<text x="1002.00" y="655.5" ></text>
</g>
<g >
<title>BKDR_hash_algo (2 samples, 0.01%)</title><rect x="973.8" y="581" width="0.1" height="15.0" fill="rgb(249,22,4)" rx="2" ry="2" />
<text x="976.81" y="591.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (6 samples, 0.03%)</title><rect x="986.6" y="613" width="0.4" height="15.0" fill="rgb(233,78,21)" rx="2" ry="2" />
<text x="989.61" y="623.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="275.1" y="725" width="0.2" height="15.0" fill="rgb(205,213,19)" rx="2" ry="2" />
<text x="278.09" y="735.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="336.2" y="389" width="0.1" height="15.0" fill="rgb(210,5,8)" rx="2" ry="2" />
<text x="339.20" y="399.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (10 samples, 0.05%)</title><rect x="362.3" y="485" width="0.6" height="15.0" fill="rgb(233,14,18)" rx="2" ry="2" />
<text x="365.28" y="495.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (6 samples, 0.03%)</title><rect x="998.6" y="661" width="0.4" height="15.0" fill="rgb(232,211,25)" rx="2" ry="2" />
<text x="1001.64" y="671.5" ></text>
</g>
<g >
<title>tcp_dump_sig (16 samples, 0.08%)</title><rect x="566.2" y="485" width="0.9" height="15.0" fill="rgb(240,195,24)" rx="2" ry="2" />
<text x="569.20" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="341" width="0.1" height="15.0" fill="rgb(210,165,7)" rx="2" ry="2" />
<text x="404.56" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="987.3" y="629" width="0.1" height="15.0" fill="rgb(251,136,4)" rx="2" ry="2" />
<text x="990.32" y="639.5" ></text>
</g>
<g >
<title>sk_pop_free (2 samples, 0.01%)</title><rect x="589.7" y="325" width="0.1" height="15.0" fill="rgb(236,104,9)" rx="2" ry="2" />
<text x="592.68" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="493.9" y="453" width="0.2" height="15.0" fill="rgb(253,45,46)" rx="2" ry="2" />
<text x="496.94" y="463.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (17 samples, 0.08%)</title><rect x="799.4" y="469" width="1.0" height="15.0" fill="rgb(205,211,18)" rx="2" ry="2" />
<text x="802.44" y="479.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="570.6" y="389" width="0.1" height="15.0" fill="rgb(226,190,49)" rx="2" ry="2" />
<text x="573.56" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="569.4" y="373" width="0.8" height="15.0" fill="rgb(254,65,39)" rx="2" ry="2" />
<text x="572.44" y="383.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (154 samples, 0.77%)</title><rect x="374.8" y="533" width="9.1" height="15.0" fill="rgb(248,19,16)" rx="2" ry="2" />
<text x="377.84" y="543.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="841.5" y="501" width="0.1" height="15.0" fill="rgb(247,192,39)" rx="2" ry="2" />
<text x="844.50" y="511.5" ></text>
</g>
<g >
<title>BN_MONT_CTX_set (6 samples, 0.03%)</title><rect x="591.7" y="325" width="0.4" height="15.0" fill="rgb(233,88,26)" rx="2" ry="2" />
<text x="594.74" y="335.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="989.4" y="533" width="0.3" height="15.0" fill="rgb(223,6,34)" rx="2" ry="2" />
<text x="992.44" y="543.5" ></text>
</g>
<g >
<title>plugin_process_close (29 samples, 0.14%)</title><rect x="801.3" y="453" width="1.7" height="15.0" fill="rgb(212,200,10)" rx="2" ry="2" />
<text x="804.33" y="463.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="363.8" y="437" width="0.1" height="15.0" fill="rgb(226,117,47)" rx="2" ry="2" />
<text x="366.75" y="447.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (29 samples, 0.14%)</title><rect x="974.2" y="613" width="1.7" height="15.0" fill="rgb(249,104,40)" rx="2" ry="2" />
<text x="977.16" y="623.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="989.2" y="565" width="0.1" height="15.0" fill="rgb(213,224,31)" rx="2" ry="2" />
<text x="992.20" y="575.5" ></text>
</g>
<g >
<title>stream_bridge_destroy_per_stream (5 samples, 0.02%)</title><rect x="925.5" y="693" width="0.3" height="15.0" fill="rgb(249,60,38)" rx="2" ry="2" />
<text x="928.50" y="703.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="94.6" y="773" width="0.2" height="15.0" fill="rgb(253,188,18)" rx="2" ry="2" />
<text x="97.65" y="783.5" ></text>
</g>
<g >
<title>CStringMatch::check_match_mode (11 samples, 0.05%)</title><rect x="21.9" y="773" width="0.7" height="15.0" fill="rgb(208,29,8)" rx="2" ry="2" />
<text x="24.92" y="783.5" ></text>
</g>
<g >
<title>ssl_analyseStream (9 samples, 0.04%)</title><rect x="1010.4" y="517" width="0.6" height="15.0" fill="rgb(210,148,37)" rx="2" ry="2" />
<text x="1013.44" y="527.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (5 samples, 0.02%)</title><rect x="1017.3" y="453" width="0.3" height="15.0" fill="rgb(226,184,5)" rx="2" ry="2" />
<text x="1020.34" y="463.5" ></text>
</g>
<g >
<title>__calloc (112 samples, 0.56%)</title><rect x="250.2" y="741" width="6.6" height="15.0" fill="rgb(236,48,35)" rx="2" ry="2" />
<text x="253.20" y="751.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="570.6" y="357" width="0.1" height="15.0" fill="rgb(207,87,35)" rx="2" ry="2" />
<text x="573.56" y="367.5" ></text>
</g>
<g >
<title>__IO_vsprintf (3 samples, 0.01%)</title><rect x="302.1" y="485" width="0.1" height="15.0" fill="rgb(251,226,35)" rx="2" ry="2" />
<text x="305.05" y="495.5" ></text>
</g>
<g >
<title>CZipFormat::AddOneSection (10 samples, 0.05%)</title><rect x="572.9" y="373" width="0.6" height="15.0" fill="rgb(213,10,17)" rx="2" ry="2" />
<text x="575.87" y="383.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (291 samples, 1.45%)</title><rect x="280.5" y="789" width="17.1" height="15.0" fill="rgb(247,108,23)" rx="2" ry="2" />
<text x="283.46" y="799.5" ></text>
</g>
<g >
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="320.3" y="373" width="0.3" height="15.0" fill="rgb(242,169,18)" rx="2" ry="2" />
<text x="323.28" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="494.1" y="437" width="0.1" height="15.0" fill="rgb(228,107,41)" rx="2" ry="2" />
<text x="497.12" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="301.9" y="389" width="0.2" height="15.0" fill="rgb(247,51,1)" rx="2" ry="2" />
<text x="304.93" y="399.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="981.4" y="501" width="0.1" height="15.0" fill="rgb(254,82,37)" rx="2" ry="2" />
<text x="984.42" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="437" width="3.9" height="15.0" fill="rgb(215,117,45)" rx="2" ry="2" />
<text x="393.77" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (32 samples, 0.16%)</title><rect x="994.1" y="645" width="1.9" height="15.0" fill="rgb(214,194,54)" rx="2" ry="2" />
<text x="997.10" y="655.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="981.5" y="501" width="0.2" height="15.0" fill="rgb(229,142,40)" rx="2" ry="2" />
<text x="984.54" y="511.5" ></text>
</g>
<g >
<title>stream_process (96 samples, 0.48%)</title><rect x="297.9" y="581" width="5.6" height="15.0" fill="rgb(223,214,18)" rx="2" ry="2" />
<text x="300.86" y="591.5" ></text>
</g>
<g >
<title>[sapp] (43 samples, 0.21%)</title><rect x="976.8" y="741" width="2.6" height="15.0" fill="rgb(247,100,39)" rx="2" ry="2" />
<text x="979.82" y="751.5" ></text>
</g>
<g >
<title>stream_process_tcp (10 samples, 0.05%)</title><rect x="973.2" y="677" width="0.5" height="15.0" fill="rgb(246,224,14)" rx="2" ry="2" />
<text x="976.16" y="687.5" ></text>
</g>
<g >
<title>ssl_analyseStream (154 samples, 0.77%)</title><rect x="329.1" y="549" width="9.1" height="15.0" fill="rgb(230,124,34)" rx="2" ry="2" />
<text x="332.07" y="559.5" ></text>
</g>
<g >
<title>MESA_htable_search (4 samples, 0.02%)</title><rect x="1017.8" y="613" width="0.2" height="15.0" fill="rgb(254,59,17)" rx="2" ry="2" />
<text x="1020.75" y="623.5" ></text>
</g>
<g >
<title>__calloc (44 samples, 0.22%)</title><rect x="247.5" y="741" width="2.6" height="15.0" fill="rgb(211,58,9)" rx="2" ry="2" />
<text x="250.49" y="751.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="421.2" y="773" width="0.1" height="15.0" fill="rgb(235,19,31)" rx="2" ry="2" />
<text x="424.21" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="573.5" y="357" width="0.2" height="15.0" fill="rgb(227,132,30)" rx="2" ry="2" />
<text x="576.51" y="367.5" ></text>
</g>
<g >
<title>stream_process (26 samples, 0.13%)</title><rect x="977.8" y="693" width="1.6" height="15.0" fill="rgb(245,168,20)" rx="2" ry="2" />
<text x="980.82" y="703.5" ></text>
</g>
<g >
<title>[libMESA_htable.so] (4 samples, 0.02%)</title><rect x="1017.8" y="597" width="0.2" height="15.0" fill="rgb(210,78,25)" rx="2" ry="2" />
<text x="1020.75" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="437" width="4.2" height="15.0" fill="rgb(235,136,10)" rx="2" ry="2" />
<text x="333.19" y="447.5" ></text>
</g>
<g >
<title>http_doWithGzipData (14 samples, 0.07%)</title><rect x="572.9" y="421" width="0.8" height="15.0" fill="rgb(254,135,15)" rx="2" ry="2" />
<text x="575.87" y="431.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (16 samples, 0.08%)</title><rect x="539.9" y="533" width="0.9" height="15.0" fill="rgb(241,126,13)" rx="2" ry="2" />
<text x="542.89" y="543.5" ></text>
</g>
<g >
<title>MD5_Update (2 samples, 0.01%)</title><rect x="1006.6" y="773" width="0.1" height="15.0" fill="rgb(212,221,53)" rx="2" ry="2" />
<text x="1009.61" y="783.5" ></text>
</g>
<g >
<title>stream_process (17 samples, 0.08%)</title><rect x="976.8" y="693" width="1.0" height="15.0" fill="rgb(211,50,43)" rx="2" ry="2" />
<text x="979.82" y="703.5" ></text>
</g>
<g >
<title>hash_add_stream (2 samples, 0.01%)</title><rect x="793.1" y="581" width="0.1" height="15.0" fill="rgb(209,23,46)" rx="2" ry="2" />
<text x="796.13" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="979.6" y="517" width="0.2" height="15.0" fill="rgb(222,202,20)" rx="2" ry="2" />
<text x="982.65" y="527.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (9 samples, 0.04%)</title><rect x="132.0" y="661" width="0.6" height="15.0" fill="rgb(223,57,54)" rx="2" ry="2" />
<text x="135.05" y="671.5" ></text>
</g>
<g >
<title>http_doWithEntity (34 samples, 0.17%)</title><rect x="320.6" y="517" width="2.0" height="15.0" fill="rgb(227,160,23)" rx="2" ry="2" />
<text x="323.57" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="987.6" y="549" width="0.3" height="15.0" fill="rgb(234,210,10)" rx="2" ry="2" />
<text x="990.55" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="928.8" y="629" width="0.2" height="15.0" fill="rgb(216,11,3)" rx="2" ry="2" />
<text x="931.80" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="373" width="4.2" height="15.0" fill="rgb(228,109,20)" rx="2" ry="2" />
<text x="333.19" y="383.5" ></text>
</g>
<g >
<title>mail_identify_pop3 (3 samples, 0.01%)</title><rect x="575.9" y="485" width="0.2" height="15.0" fill="rgb(254,53,2)" rx="2" ry="2" />
<text x="578.87" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="386.0" y="501" width="0.2" height="15.0" fill="rgb(251,173,46)" rx="2" ry="2" />
<text x="388.99" y="511.5" ></text>
</g>
<g >
<title>ssl_doWithApplicationData (19 samples, 0.09%)</title><rect x="329.1" y="501" width="1.1" height="15.0" fill="rgb(211,125,18)" rx="2" ry="2" />
<text x="332.07" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (25 samples, 0.12%)</title><rect x="400.0" y="725" width="1.5" height="15.0" fill="rgb(226,199,46)" rx="2" ry="2" />
<text x="403.03" y="735.5" ></text>
</g>
<g >
<title>http_callPluginField (14 samples, 0.07%)</title><rect x="985.1" y="581" width="0.9" height="15.0" fill="rgb(217,4,49)" rx="2" ry="2" />
<text x="988.13" y="591.5" ></text>
</g>
<g >
<title>qmdpi_flow_info_get (2 samples, 0.01%)</title><rect x="819.7" y="501" width="0.1" height="15.0" fill="rgb(221,15,3)" rx="2" ry="2" />
<text x="822.67" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="308.4" y="565" width="0.2" height="15.0" fill="rgb(231,111,4)" rx="2" ry="2" />
<text x="311.42" y="575.5" ></text>
</g>
<g >
<title>tcp_free_stream (16 samples, 0.08%)</title><rect x="541.0" y="549" width="0.9" height="15.0" fill="rgb(239,223,47)" rx="2" ry="2" />
<text x="543.95" y="559.5" ></text>
</g>
<g >
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="337.9" y="517" width="0.3" height="15.0" fill="rgb(247,14,41)" rx="2" ry="2" />
<text x="340.92" y="527.5" ></text>
</g>
<g >
<title>first_data_process (2 samples, 0.01%)</title><rect x="304.4" y="549" width="0.1" height="15.0" fill="rgb(217,129,15)" rx="2" ry="2" />
<text x="307.35" y="559.5" ></text>
</g>
<g >
<title>[sapp] (240 samples, 1.20%)</title><rect x="789.5" y="597" width="14.2" height="15.0" fill="rgb(214,9,52)" rx="2" ry="2" />
<text x="792.53" y="607.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="977.4" y="565" width="0.1" height="15.0" fill="rgb(218,169,0)" rx="2" ry="2" />
<text x="980.41" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (22 samples, 0.11%)</title><rect x="421.3" y="789" width="1.3" height="15.0" fill="rgb(244,41,34)" rx="2" ry="2" />
<text x="424.32" y="799.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="401.2" y="597" width="0.1" height="15.0" fill="rgb(207,120,51)" rx="2" ry="2" />
<text x="404.15" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (29 samples, 0.14%)</title><rect x="332.3" y="293" width="1.7" height="15.0" fill="rgb(230,13,47)" rx="2" ry="2" />
<text x="335.31" y="303.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="987.3" y="677" width="0.1" height="15.0" fill="rgb(247,140,27)" rx="2" ry="2" />
<text x="990.32" y="687.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="374.8" y="469" width="0.2" height="15.0" fill="rgb(253,21,7)" rx="2" ry="2" />
<text x="377.84" y="479.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (2 samples, 0.01%)</title><rect x="977.0" y="565" width="0.1" height="15.0" fill="rgb(223,46,18)" rx="2" ry="2" />
<text x="979.99" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="385.6" y="501" width="0.2" height="15.0" fill="rgb(233,154,7)" rx="2" ry="2" />
<text x="388.58" y="511.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (3 samples, 0.01%)</title><rect x="1009.6" y="581" width="0.2" height="15.0" fill="rgb(222,67,16)" rx="2" ry="2" />
<text x="1012.61" y="591.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (15 samples, 0.07%)</title><rect x="594.9" y="453" width="0.9" height="15.0" fill="rgb(250,217,6)" rx="2" ry="2" />
<text x="597.87" y="463.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (11 samples, 0.05%)</title><rect x="400.9" y="709" width="0.6" height="15.0" fill="rgb(235,108,38)" rx="2" ry="2" />
<text x="403.86" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="927.4" y="565" width="0.2" height="15.0" fill="rgb(244,36,33)" rx="2" ry="2" />
<text x="930.44" y="575.5" ></text>
</g>
<g >
<title>qmdpi_flow_create (8 samples, 0.04%)</title><rect x="552.2" y="469" width="0.4" height="15.0" fill="rgb(215,103,4)" rx="2" ry="2" />
<text x="555.16" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="973.3" y="597" width="0.2" height="15.0" fill="rgb(215,208,14)" rx="2" ry="2" />
<text x="976.34" y="607.5" ></text>
</g>
<g >
<title>[libqmengine.so] (133 samples, 0.66%)</title><rect x="311.1" y="501" width="7.8" height="15.0" fill="rgb(241,117,23)" rx="2" ry="2" />
<text x="314.08" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (820 samples, 4.10%)</title><rect x="737.3" y="549" width="48.4" height="15.0" fill="rgb(222,38,20)" rx="2" ry="2" />
<text x="740.32" y="559.5" >plug..</text>
</g>
<g >
<title>http_analyseHttpReqResHeader (3 samples, 0.01%)</title><rect x="420.2" y="693" width="0.2" height="15.0" fill="rgb(210,68,2)" rx="2" ry="2" />
<text x="423.20" y="703.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1018.3" y="693" width="0.2" height="15.0" fill="rgb(227,215,39)" rx="2" ry="2" />
<text x="1021.34" y="703.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (5 samples, 0.02%)</title><rect x="302.9" y="485" width="0.3" height="15.0" fill="rgb(238,108,31)" rx="2" ry="2" />
<text x="305.88" y="495.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (11 samples, 0.05%)</title><rect x="595.1" y="373" width="0.7" height="15.0" fill="rgb(239,165,52)" rx="2" ry="2" />
<text x="598.10" y="383.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (268 samples, 1.34%)</title><rect x="742.9" y="517" width="15.8" height="15.0" fill="rgb(243,26,25)" rx="2" ry="2" />
<text x="745.87" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="570.6" y="341" width="0.1" height="15.0" fill="rgb(244,29,29)" rx="2" ry="2" />
<text x="573.62" y="351.5" ></text>
</g>
<g >
<title>malloc_consolidate (8 samples, 0.04%)</title><rect x="1001.7" y="597" width="0.4" height="15.0" fill="rgb(252,196,44)" rx="2" ry="2" />
<text x="1004.65" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="374.4" y="341" width="0.3" height="15.0" fill="rgb(217,52,41)" rx="2" ry="2" />
<text x="377.37" y="351.5" ></text>
</g>
<g >
<title>sk_pop_free (3 samples, 0.01%)</title><rect x="334.1" y="277" width="0.2" height="15.0" fill="rgb(250,155,27)" rx="2" ry="2" />
<text x="337.14" y="287.5" ></text>
</g>
<g >
<title>stream_make_hash (11 samples, 0.05%)</title><rect x="675.3" y="565" width="0.7" height="15.0" fill="rgb(216,203,42)" rx="2" ry="2" />
<text x="678.33" y="575.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="301.9" y="469" width="0.2" height="15.0" fill="rgb(230,203,27)" rx="2" ry="2" />
<text x="304.93" y="479.5" ></text>
</g>
<g >
<title>__strncat_sse2_unaligned (3 samples, 0.01%)</title><rect x="609.3" y="469" width="0.1" height="15.0" fill="rgb(240,62,12)" rx="2" ry="2" />
<text x="612.26" y="479.5" ></text>
</g>
<g >
<title>MAIL_TCP_ENTRY (18 samples, 0.09%)</title><rect x="575.3" y="517" width="1.1" height="15.0" fill="rgb(219,128,52)" rx="2" ry="2" />
<text x="578.34" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (9 samples, 0.04%)</title><rect x="821.2" y="453" width="0.5" height="15.0" fill="rgb(217,32,19)" rx="2" ry="2" />
<text x="824.21" y="463.5" ></text>
</g>
<g >
<title>hash_func (10 samples, 0.05%)</title><rect x="812.2" y="549" width="0.6" height="15.0" fill="rgb(212,143,8)" rx="2" ry="2" />
<text x="815.18" y="559.5" ></text>
</g>
<g >
<title>tsg_send_log (48 samples, 0.24%)</title><rect x="491.5" y="517" width="2.8" height="15.0" fill="rgb(228,165,27)" rx="2" ry="2" />
<text x="494.46" y="527.5" ></text>
</g>
<g >
<title>ssl_doWithCertificateDetail (20 samples, 0.10%)</title><rect x="334.8" y="485" width="1.2" height="15.0" fill="rgb(230,73,37)" rx="2" ry="2" />
<text x="337.79" y="495.5" ></text>
</g>
<g >
<title>ssl_doWithInsterestedRegion (2 samples, 0.01%)</title><rect x="596.5" y="501" width="0.1" height="15.0" fill="rgb(219,32,46)" rx="2" ry="2" />
<text x="599.46" y="511.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (7 samples, 0.03%)</title><rect x="420.6" y="661" width="0.4" height="15.0" fill="rgb(218,193,29)" rx="2" ry="2" />
<text x="423.62" y="671.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1018.3" y="565" width="0.2" height="15.0" fill="rgb(228,186,12)" rx="2" ry="2" />
<text x="1021.34" y="575.5" ></text>
</g>
<g >
<title>X509_PUBKEY_get (26 samples, 0.13%)</title><rect x="591.0" y="421" width="1.6" height="15.0" fill="rgb(243,146,21)" rx="2" ry="2" />
<text x="594.03" y="431.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="420.9" y="533" width="0.1" height="15.0" fill="rgb(206,107,4)" rx="2" ry="2" />
<text x="423.85" y="543.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (2 samples, 0.01%)</title><rect x="1005.2" y="757" width="0.1" height="15.0" fill="rgb(221,110,34)" rx="2" ry="2" />
<text x="1008.19" y="767.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="984.7" y="597" width="0.1" height="15.0" fill="rgb(229,200,54)" rx="2" ry="2" />
<text x="987.66" y="607.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (48 samples, 0.24%)</title><rect x="558.9" y="405" width="2.8" height="15.0" fill="rgb(239,212,28)" rx="2" ry="2" />
<text x="561.89" y="415.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="49.7" y="709" width="0.1" height="15.0" fill="rgb(253,184,19)" rx="2" ry="2" />
<text x="52.70" y="719.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="304.5" y="597" width="0.4" height="15.0" fill="rgb(230,144,4)" rx="2" ry="2" />
<text x="307.47" y="607.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (7 samples, 0.03%)</title><rect x="374.4" y="421" width="0.4" height="15.0" fill="rgb(232,218,20)" rx="2" ry="2" />
<text x="377.37" y="431.5" ></text>
</g>
<g >
<title>project_req_get_struct (25 samples, 0.12%)</title><rect x="784.0" y="501" width="1.5" height="15.0" fill="rgb(253,12,7)" rx="2" ry="2" />
<text x="787.04" y="511.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (8 samples, 0.04%)</title><rect x="567.3" y="485" width="0.4" height="15.0" fill="rgb(226,172,30)" rx="2" ry="2" />
<text x="570.26" y="495.5" ></text>
</g>
<g >
<title>__GI_____strtoull_l_internal (2 samples, 0.01%)</title><rect x="602.9" y="453" width="0.2" height="15.0" fill="rgb(218,210,38)" rx="2" ry="2" />
<text x="605.95" y="463.5" ></text>
</g>
<g >
<title>set_transport_addr (2 samples, 0.01%)</title><rect x="812.8" y="597" width="0.1" height="15.0" fill="rgb(207,186,4)" rx="2" ry="2" />
<text x="815.77" y="607.5" ></text>
</g>
<g >
<title>[libqmengine.so] (9 samples, 0.04%)</title><rect x="318.4" y="485" width="0.5" height="15.0" fill="rgb(234,17,42)" rx="2" ry="2" />
<text x="321.39" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="1005.4" y="789" width="0.3" height="15.0" fill="rgb(250,226,16)" rx="2" ry="2" />
<text x="1008.37" y="799.5" ></text>
</g>
<g >
<title>[tsg_master.so] (38 samples, 0.19%)</title><rect x="607.7" y="501" width="2.2" height="15.0" fill="rgb(234,106,43)" rx="2" ry="2" />
<text x="610.67" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="1010.5" y="277" width="0.3" height="15.0" fill="rgb(238,14,47)" rx="2" ry="2" />
<text x="1013.50" y="287.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="992.4" y="565" width="0.3" height="15.0" fill="rgb(223,31,3)" rx="2" ry="2" />
<text x="995.39" y="575.5" ></text>
</g>
<g >
<title>__IO_vsprintf (29 samples, 0.14%)</title><rect x="974.2" y="549" width="1.7" height="15.0" fill="rgb(221,6,42)" rx="2" ry="2" />
<text x="977.16" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="683.1" y="517" width="0.1" height="15.0" fill="rgb(239,71,28)" rx="2" ry="2" />
<text x="686.11" y="527.5" ></text>
</g>
<g >
<title>rulescan_search (293 samples, 1.46%)</title><rect x="171.6" y="773" width="17.3" height="15.0" fill="rgb(227,81,31)" rx="2" ry="2" />
<text x="174.57" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="645.8" y="485" width="0.2" height="15.0" fill="rgb(238,229,52)" rx="2" ry="2" />
<text x="648.83" y="495.5" ></text>
</g>
<g >
<title>[libqmengine.so] (5 samples, 0.02%)</title><rect x="562.4" y="405" width="0.3" height="15.0" fill="rgb(239,190,6)" rx="2" ry="2" />
<text x="565.37" y="415.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (4 samples, 0.02%)</title><rect x="493.6" y="485" width="0.2" height="15.0" fill="rgb(207,206,27)" rx="2" ry="2" />
<text x="496.59" y="495.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="637.4" y="485" width="0.2" height="15.0" fill="rgb(207,42,32)" rx="2" ry="2" />
<text x="640.40" y="495.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (51 samples, 0.25%)</title><rect x="911.8" y="725" width="3.0" height="15.0" fill="rgb(243,101,14)" rx="2" ry="2" />
<text x="914.81" y="735.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (13 samples, 0.06%)</title><rect x="763.7" y="501" width="0.8" height="15.0" fill="rgb(215,90,43)" rx="2" ry="2" />
<text x="766.69" y="511.5" ></text>
</g>
<g >
<title>counting_bloom_check (31 samples, 0.15%)</title><rect x="810.9" y="565" width="1.9" height="15.0" fill="rgb(215,192,51)" rx="2" ry="2" />
<text x="813.94" y="575.5" ></text>
</g>
<g >
<title>CZipFormat::AddDocData (10 samples, 0.05%)</title><rect x="572.9" y="389" width="0.6" height="15.0" fill="rgb(223,27,5)" rx="2" ry="2" />
<text x="575.87" y="399.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (29 samples, 0.14%)</title><rect x="974.2" y="597" width="1.7" height="15.0" fill="rgb(239,82,28)" rx="2" ry="2" />
<text x="977.16" y="607.5" ></text>
</g>
<g >
<title>plugin_call_ipentry (5 samples, 0.02%)</title><rect x="871.7" y="581" width="0.3" height="15.0" fill="rgb(212,108,0)" rx="2" ry="2" />
<text x="874.70" y="591.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (30 samples, 0.15%)</title><rect x="1016.0" y="661" width="1.8" height="15.0" fill="rgb(249,76,36)" rx="2" ry="2" />
<text x="1018.98" y="671.5" ></text>
</g>
<g >
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="304.9" y="485" width="0.1" height="15.0" fill="rgb(237,169,0)" rx="2" ry="2" />
<text x="307.88" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="1015.6" y="469" width="0.1" height="15.0" fill="rgb(251,202,29)" rx="2" ry="2" />
<text x="1018.57" y="479.5" ></text>
</g>
<g >
<title>Maat_table_get_by_id_raw (6 samples, 0.03%)</title><rect x="200.3" y="741" width="0.3" height="15.0" fill="rgb(223,72,23)" rx="2" ry="2" />
<text x="203.30" y="751.5" ></text>
</g>
<g >
<title>TLD_cancel (5 samples, 0.02%)</title><rect x="304.6" y="469" width="0.3" height="15.0" fill="rgb(242,21,25)" rx="2" ry="2" />
<text x="307.59" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (27 samples, 0.13%)</title><rect x="392.7" y="405" width="1.5" height="15.0" fill="rgb(249,91,3)" rx="2" ry="2" />
<text x="395.66" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.5" y="453" width="0.1" height="15.0" fill="rgb(205,37,49)" rx="2" ry="2" />
<text x="497.47" y="463.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="1002.1" y="645" width="0.1" height="15.0" fill="rgb(244,144,14)" rx="2" ry="2" />
<text x="1005.12" y="655.5" ></text>
</g>
<g >
<title>free_heap_stream_info (18 samples, 0.09%)</title><rect x="795.7" y="533" width="1.0" height="15.0" fill="rgb(220,150,0)" rx="2" ry="2" />
<text x="798.66" y="543.5" ></text>
</g>
<g >
<title>http_doWithChunkedData (2 samples, 0.01%)</title><rect x="977.0" y="597" width="0.1" height="15.0" fill="rgb(247,49,40)" rx="2" ry="2" />
<text x="979.99" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="546.0" y="517" width="0.1" height="15.0" fill="rgb(246,30,27)" rx="2" ry="2" />
<text x="548.97" y="527.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (5 samples, 0.02%)</title><rect x="174.8" y="741" width="0.3" height="15.0" fill="rgb(240,197,42)" rx="2" ry="2" />
<text x="177.81" y="751.5" ></text>
</g>
<g >
<title>printaddr (7 samples, 0.03%)</title><rect x="1011.0" y="517" width="0.4" height="15.0" fill="rgb(214,11,45)" rx="2" ry="2" />
<text x="1013.97" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="421.2" y="709" width="0.1" height="15.0" fill="rgb(239,73,43)" rx="2" ry="2" />
<text x="424.21" y="719.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (154 samples, 0.77%)</title><rect x="374.8" y="501" width="9.1" height="15.0" fill="rgb(205,140,8)" rx="2" ry="2" />
<text x="377.84" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_child_id@plt (3 samples, 0.01%)</title><rect x="200.8" y="757" width="0.1" height="15.0" fill="rgb(217,128,29)" rx="2" ry="2" />
<text x="203.77" y="767.5" ></text>
</g>
<g >
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="376.0" y="469" width="0.1" height="15.0" fill="rgb(241,91,35)" rx="2" ry="2" />
<text x="379.02" y="479.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (3 samples, 0.01%)</title><rect x="234.6" y="709" width="0.1" height="15.0" fill="rgb(210,222,21)" rx="2" ry="2" />
<text x="237.57" y="719.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (3 samples, 0.01%)</title><rect x="758.5" y="501" width="0.2" height="15.0" fill="rgb(244,143,51)" rx="2" ry="2" />
<text x="761.50" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (4 samples, 0.02%)</title><rect x="948.0" y="629" width="0.3" height="15.0" fill="rgb(207,130,37)" rx="2" ry="2" />
<text x="951.03" y="639.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="336.1" y="373" width="0.1" height="15.0" fill="rgb(253,101,26)" rx="2" ry="2" />
<text x="339.09" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="543.0" y="533" width="0.3" height="15.0" fill="rgb(231,41,33)" rx="2" ry="2" />
<text x="545.96" y="543.5" ></text>
</g>
<g >
<title>fw_ssl_entry (4 samples, 0.02%)</title><rect x="337.7" y="421" width="0.2" height="15.0" fill="rgb(245,42,40)" rx="2" ry="2" />
<text x="340.68" y="431.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="320.3" y="357" width="0.2" height="15.0" fill="rgb(208,15,23)" rx="2" ry="2" />
<text x="323.28" y="367.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (3 samples, 0.01%)</title><rect x="597.2" y="485" width="0.2" height="15.0" fill="rgb(228,120,19)" rx="2" ry="2" />
<text x="600.23" y="495.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_type (17 samples, 0.08%)</title><rect x="203.5" y="741" width="1.0" height="15.0" fill="rgb(226,101,45)" rx="2" ry="2" />
<text x="206.54" y="751.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (4 samples, 0.02%)</title><rect x="174.5" y="725" width="0.2" height="15.0" fill="rgb(248,10,41)" rx="2" ry="2" />
<text x="177.46" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="385.6" y="533" width="0.2" height="15.0" fill="rgb(217,37,23)" rx="2" ry="2" />
<text x="388.58" y="543.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="1018.3" y="725" width="0.2" height="15.0" fill="rgb(230,131,35)" rx="2" ry="2" />
<text x="1021.34" y="735.5" ></text>
</g>
<g >
<title>ipv4_entry (1,552 samples, 7.76%)</title><rect x="308.4" y="677" width="91.6" height="15.0" fill="rgb(240,210,47)" rx="2" ry="2" />
<text x="311.42" y="687.5" >ipv4_entry</text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (2 samples, 0.01%)</title><rect x="92.3" y="725" width="0.1" height="15.0" fill="rgb(235,107,5)" rx="2" ry="2" />
<text x="95.29" y="735.5" ></text>
</g>
<g >
<title>udp_free_stream (6 samples, 0.03%)</title><rect x="990.0" y="645" width="0.3" height="15.0" fill="rgb(214,169,48)" rx="2" ry="2" />
<text x="992.97" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="322.3" y="309" width="0.2" height="15.0" fill="rgb(216,133,0)" rx="2" ry="2" />
<text x="325.34" y="319.5" ></text>
</g>
<g >
<title>eth_entry (11 samples, 0.05%)</title><rect x="401.5" y="773" width="0.7" height="15.0" fill="rgb(247,30,48)" rx="2" ry="2" />
<text x="404.50" y="783.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="975.9" y="613" width="0.1" height="15.0" fill="rgb(245,130,32)" rx="2" ry="2" />
<text x="978.87" y="623.5" ></text>
</g>
<g >
<title>tsg_record_dns_entry (25 samples, 0.12%)</title><rect x="801.6" y="421" width="1.4" height="15.0" fill="rgb(230,54,45)" rx="2" ry="2" />
<text x="804.56" y="431.5" ></text>
</g>
<g >
<title>http_doWithStartLine (3 samples, 0.01%)</title><rect x="420.2" y="677" width="0.2" height="15.0" fill="rgb(214,89,52)" rx="2" ry="2" />
<text x="423.20" y="687.5" ></text>
</g>
<g >
<title>CompareRule (17 samples, 0.08%)</title><rect x="296.5" y="757" width="1.0" height="15.0" fill="rgb(248,180,36)" rx="2" ry="2" />
<text x="299.51" y="767.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_init (3 samples, 0.01%)</title><rect x="630.3" y="501" width="0.2" height="15.0" fill="rgb(205,141,13)" rx="2" ry="2" />
<text x="633.32" y="511.5" ></text>
</g>
<g >
<title>APP_L7_PROTOCOL_UDP_RAW_ENTRY (4 samples, 0.02%)</title><rect x="817.4" y="549" width="0.2" height="15.0" fill="rgb(215,191,22)" rx="2" ry="2" />
<text x="820.37" y="559.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (817 samples, 4.08%)</title><rect x="110.0" y="725" width="48.2" height="15.0" fill="rgb(236,174,35)" rx="2" ry="2" />
<text x="113.04" y="735.5" >msor..</text>
</g>
<g >
<title>http_findAndDoWithRegion (7 samples, 0.03%)</title><rect x="986.2" y="645" width="0.4" height="15.0" fill="rgb(212,129,15)" rx="2" ry="2" />
<text x="989.20" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="985.3" y="469" width="0.1" height="15.0" fill="rgb(240,87,2)" rx="2" ry="2" />
<text x="988.31" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (14 samples, 0.07%)</title><rect x="1001.3" y="613" width="0.8" height="15.0" fill="rgb(254,211,15)" rx="2" ry="2" />
<text x="1004.30" y="623.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1005.7" y="789" width="0.1" height="15.0" fill="rgb(211,123,2)" rx="2" ry="2" />
<text x="1008.66" y="799.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (5 samples, 0.02%)</title><rect x="1016.8" y="453" width="0.2" height="15.0" fill="rgb(212,124,24)" rx="2" ry="2" />
<text x="1019.75" y="463.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="401.6" y="565" width="0.1" height="15.0" fill="rgb(217,24,29)" rx="2" ry="2" />
<text x="404.56" y="575.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (6 samples, 0.03%)</title><rect x="1189.6" y="725" width="0.4" height="15.0" fill="rgb(221,102,30)" rx="2" ry="2" />
<text x="1192.65" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="604.4" y="453" width="0.2" height="15.0" fill="rgb(217,64,45)" rx="2" ry="2" />
<text x="607.37" y="463.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="420.6" y="549" width="0.3" height="15.0" fill="rgb(211,128,16)" rx="2" ry="2" />
<text x="423.62" y="559.5" ></text>
</g>
<g >
<title>qmdpi_worker_engine_get (3 samples, 0.01%)</title><rect x="557.2" y="453" width="0.2" height="15.0" fill="rgb(206,211,35)" rx="2" ry="2" />
<text x="560.23" y="463.5" ></text>
</g>
<g >
<title>TSG_MASTER_TCPALL_ENTRY (3 samples, 0.01%)</title><rect x="684.8" y="485" width="0.2" height="15.0" fill="rgb(245,214,41)" rx="2" ry="2" />
<text x="687.83" y="495.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="420.4" y="517" width="0.2" height="15.0" fill="rgb(239,88,43)" rx="2" ry="2" />
<text x="423.44" y="527.5" ></text>
</g>
<g >
<title>http_doWithStartLine (14 samples, 0.07%)</title><rect x="985.1" y="629" width="0.9" height="15.0" fill="rgb(237,91,9)" rx="2" ry="2" />
<text x="988.13" y="639.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (5 samples, 0.02%)</title><rect x="987.0" y="501" width="0.3" height="15.0" fill="rgb(215,125,29)" rx="2" ry="2" />
<text x="989.96" y="511.5" ></text>
</g>
<g >
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="366.5" y="549" width="0.6" height="15.0" fill="rgb(233,4,5)" rx="2" ry="2" />
<text x="369.47" y="559.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (3 samples, 0.01%)</title><rect x="984.6" y="789" width="0.2" height="15.0" fill="rgb(212,133,29)" rx="2" ry="2" />
<text x="987.60" y="799.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="469" width="0.2" height="15.0" fill="rgb(224,6,26)" rx="2" ry="2" />
<text x="987.84" y="479.5" ></text>
</g>
<g >
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="329.1" y="389" width="0.7" height="15.0" fill="rgb(248,109,15)" rx="2" ry="2" />
<text x="332.13" y="399.5" ></text>
</g>
<g >
<title>lrustream (171 samples, 0.85%)</title><rect x="374.4" y="629" width="10.1" height="15.0" fill="rgb(250,170,50)" rx="2" ry="2" />
<text x="377.37" y="639.5" ></text>
</g>
<g >
<title>[libqmengine.so] (12 samples, 0.06%)</title><rect x="554.4" y="421" width="0.7" height="15.0" fill="rgb(243,188,5)" rx="2" ry="2" />
<text x="557.40" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (18 samples, 0.09%)</title><rect x="249.0" y="725" width="1.1" height="15.0" fill="rgb(229,12,10)" rx="2" ry="2" />
<text x="252.02" y="735.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="421" width="4.2" height="15.0" fill="rgb(239,185,37)" rx="2" ry="2" />
<text x="333.19" y="431.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (14 samples, 0.07%)</title><rect x="800.4" y="485" width="0.9" height="15.0" fill="rgb(230,211,24)" rx="2" ry="2" />
<text x="803.44" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="301.0" y="277" width="0.1" height="15.0" fill="rgb(246,153,36)" rx="2" ry="2" />
<text x="303.99" y="287.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="367.8" y="533" width="0.1" height="15.0" fill="rgb(239,68,25)" rx="2" ry="2" />
<text x="370.76" y="543.5" ></text>
</g>
<g >
<title>MV_Sketch_update (93 samples, 0.46%)</title><rect x="639.7" y="469" width="5.5" height="15.0" fill="rgb(206,25,51)" rx="2" ry="2" />
<text x="642.70" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="982.5" y="469" width="0.1" height="15.0" fill="rgb(222,68,7)" rx="2" ry="2" />
<text x="985.48" y="479.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="686.2" y="437" width="0.2" height="15.0" fill="rgb(229,57,40)" rx="2" ry="2" />
<text x="689.24" y="447.5" ></text>
</g>
<g >
<title>Maat_clean_status (11 samples, 0.05%)</title><rect x="924.2" y="661" width="0.6" height="15.0" fill="rgb(205,58,39)" rx="2" ry="2" />
<text x="927.20" y="671.5" ></text>
</g>
<g >
<title>__lll_lock_wait (2 samples, 0.01%)</title><rect x="381.9" y="341" width="0.1" height="15.0" fill="rgb(217,98,0)" rx="2" ry="2" />
<text x="384.86" y="351.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (11 samples, 0.05%)</title><rect x="992.1" y="661" width="0.6" height="15.0" fill="rgb(229,217,15)" rx="2" ry="2" />
<text x="995.09" y="671.5" ></text>
</g>
<g >
<title>http_doWithStartLine (25 samples, 0.12%)</title><rect x="568.8" y="469" width="1.5" height="15.0" fill="rgb(235,94,54)" rx="2" ry="2" />
<text x="571.80" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1012.7" y="469" width="0.2" height="15.0" fill="rgb(233,18,54)" rx="2" ry="2" />
<text x="1015.74" y="479.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (3 samples, 0.01%)</title><rect x="979.6" y="549" width="0.2" height="15.0" fill="rgb(222,225,10)" rx="2" ry="2" />
<text x="982.65" y="559.5" ></text>
</g>
<g >
<title>[sip.so] (13 samples, 0.06%)</title><rect x="837.4" y="533" width="0.7" height="15.0" fill="rgb(219,168,1)" rx="2" ry="2" />
<text x="840.37" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1016.4" y="581" width="0.1" height="15.0" fill="rgb(225,48,4)" rx="2" ry="2" />
<text x="1019.40" y="591.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (10 samples, 0.05%)</title><rect x="992.2" y="613" width="0.5" height="15.0" fill="rgb(228,17,26)" rx="2" ry="2" />
<text x="995.15" y="623.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="420.4" y="533" width="0.2" height="15.0" fill="rgb(231,127,18)" rx="2" ry="2" />
<text x="423.44" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1009.6" y="453" width="0.2" height="15.0" fill="rgb(209,77,40)" rx="2" ry="2" />
<text x="1012.61" y="463.5" ></text>
</g>
<g >
<title>http_doWithEntity (55 samples, 0.27%)</title><rect x="570.4" y="469" width="3.3" height="15.0" fill="rgb(225,127,0)" rx="2" ry="2" />
<text x="573.45" y="479.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="420.0" y="709" width="0.2" height="15.0" fill="rgb(235,180,31)" rx="2" ry="2" />
<text x="422.97" y="719.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (2 samples, 0.01%)</title><rect x="984.8" y="629" width="0.2" height="15.0" fill="rgb(215,5,41)" rx="2" ry="2" />
<text x="987.84" y="639.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="990.8" y="773" width="0.1" height="15.0" fill="rgb(252,104,17)" rx="2" ry="2" />
<text x="993.80" y="783.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (31 samples, 0.15%)</title><rect x="1013.9" y="517" width="1.8" height="15.0" fill="rgb(253,172,21)" rx="2" ry="2" />
<text x="1016.86" y="527.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (19 samples, 0.09%)</title><rect x="931.2" y="629" width="1.1" height="15.0" fill="rgb(208,97,45)" rx="2" ry="2" />
<text x="934.22" y="639.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="304.1" y="533" width="0.3" height="15.0" fill="rgb(235,216,1)" rx="2" ry="2" />
<text x="307.06" y="543.5" ></text>
</g>
<g >
<title>rulescan_search (629 samples, 3.14%)</title><rect x="55.3" y="773" width="37.1" height="15.0" fill="rgb(240,163,10)" rx="2" ry="2" />
<text x="58.30" y="783.5" >rul..</text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="332.3" y="261" width="0.9" height="15.0" fill="rgb(229,185,5)" rx="2" ry="2" />
<text x="335.31" y="271.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (9 samples, 0.04%)</title><rect x="339.0" y="549" width="0.5" height="15.0" fill="rgb(249,202,44)" rx="2" ry="2" />
<text x="341.98" y="559.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="998.8" y="645" width="0.2" height="15.0" fill="rgb(226,177,24)" rx="2" ry="2" />
<text x="1001.82" y="655.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="1010.3" y="389" width="0.1" height="15.0" fill="rgb(239,96,21)" rx="2" ry="2" />
<text x="1013.26" y="399.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (29 samples, 0.14%)</title><rect x="801.3" y="469" width="1.7" height="15.0" fill="rgb(251,216,11)" rx="2" ry="2" />
<text x="804.33" y="479.5" ></text>
</g>
<g >
<title>app_proto_worke_process (2 samples, 0.01%)</title><rect x="401.6" y="581" width="0.1" height="15.0" fill="rgb(209,162,32)" rx="2" ry="2" />
<text x="404.56" y="591.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (6 samples, 0.03%)</title><rect x="331.9" y="213" width="0.4" height="15.0" fill="rgb(243,149,25)" rx="2" ry="2" />
<text x="334.90" y="223.5" ></text>
</g>
<g >
<title>stream_process_udp (73 samples, 0.36%)</title><rect x="490.3" y="613" width="4.3" height="15.0" fill="rgb(233,99,36)" rx="2" ry="2" />
<text x="493.34" y="623.5" ></text>
</g>
<g >
<title>rulescan_computeresult (225 samples, 1.12%)</title><rect x="222.6" y="725" width="13.3" height="15.0" fill="rgb(245,150,20)" rx="2" ry="2" />
<text x="225.59" y="735.5" ></text>
</g>
<g >
<title>__GI_memmem (3 samples, 0.01%)</title><rect x="571.6" y="405" width="0.1" height="15.0" fill="rgb(235,148,0)" rx="2" ry="2" />
<text x="574.57" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="574.2" y="357" width="0.1" height="15.0" fill="rgb(211,177,49)" rx="2" ry="2" />
<text x="577.22" y="367.5" ></text>
</g>
<g >
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="561.5" y="389" width="0.2" height="15.0" fill="rgb(237,5,43)" rx="2" ry="2" />
<text x="564.54" y="399.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (20 samples, 0.10%)</title><rect x="560.2" y="373" width="1.2" height="15.0" fill="rgb(226,197,1)" rx="2" ry="2" />
<text x="563.18" y="383.5" ></text>
</g>
<g >
<title>rulescan_searchstream (4 samples, 0.02%)</title><rect x="279.9" y="773" width="0.3" height="15.0" fill="rgb(245,8,10)" rx="2" ry="2" />
<text x="282.93" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="628.1" y="469" width="0.1" height="15.0" fill="rgb(254,213,16)" rx="2" ry="2" />
<text x="631.08" y="479.5" ></text>
</g>
<g >
<title>[sapp] (23 samples, 0.11%)</title><rect x="784.2" y="485" width="1.3" height="15.0" fill="rgb(241,37,31)" rx="2" ry="2" />
<text x="787.16" y="495.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="989.8" y="581" width="0.2" height="15.0" fill="rgb(213,29,24)" rx="2" ry="2" />
<text x="992.79" y="591.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="979.4" y="661" width="0.2" height="15.0" fill="rgb(208,120,23)" rx="2" ry="2" />
<text x="982.35" y="671.5" ></text>
</g>
<g >
<title>marsio_recv_burst (207 samples, 1.03%)</title><rect x="896.1" y="725" width="12.2" height="15.0" fill="rgb(214,72,11)" rx="2" ry="2" />
<text x="899.12" y="735.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="983.4" y="597" width="0.1" height="15.0" fill="rgb(237,142,3)" rx="2" ry="2" />
<text x="986.42" y="607.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="420.6" y="533" width="0.3" height="15.0" fill="rgb(252,160,7)" rx="2" ry="2" />
<text x="423.62" y="543.5" ></text>
</g>
<g >
<title>get_timespec64 (3 samples, 0.01%)</title><rect x="930.8" y="661" width="0.2" height="15.0" fill="rgb(242,148,10)" rx="2" ry="2" />
<text x="933.81" y="671.5" ></text>
</g>
<g >
<title>SSL_ENTRY (8 samples, 0.04%)</title><rect x="420.6" y="725" width="0.5" height="15.0" fill="rgb(232,141,47)" rx="2" ry="2" />
<text x="423.62" y="735.5" ></text>
</g>
<g >
<title>[sapp] (65 samples, 0.32%)</title><rect x="532.3" y="565" width="3.8" height="15.0" fill="rgb(250,204,0)" rx="2" ry="2" />
<text x="535.28" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="590.3" y="373" width="0.4" height="15.0" fill="rgb(214,109,12)" rx="2" ry="2" />
<text x="593.33" y="383.5" ></text>
</g>
<g >
<title>eth_entry (7,347 samples, 36.73%)</title><rect x="444.7" y="709" width="433.4" height="15.0" fill="rgb(226,210,53)" rx="2" ry="2" />
<text x="447.68" y="719.5" >eth_entry</text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="573.5" y="373" width="0.2" height="15.0" fill="rgb(237,204,54)" rx="2" ry="2" />
<text x="576.51" y="383.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="985.3" y="501" width="0.1" height="15.0" fill="rgb(238,196,11)" rx="2" ry="2" />
<text x="988.31" y="511.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (7 samples, 0.03%)</title><rect x="336.5" y="325" width="0.4" height="15.0" fill="rgb(222,197,52)" rx="2" ry="2" />
<text x="339.50" y="335.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (6 samples, 0.03%)</title><rect x="851.1" y="485" width="0.4" height="15.0" fill="rgb(207,132,44)" rx="2" ry="2" />
<text x="854.11" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (9 samples, 0.04%)</title><rect x="303.5" y="565" width="0.6" height="15.0" fill="rgb(240,208,51)" rx="2" ry="2" />
<text x="306.53" y="575.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="421" width="0.2" height="15.0" fill="rgb(222,89,19)" rx="2" ry="2" />
<text x="987.84" y="431.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (28 samples, 0.14%)</title><rect x="587.0" y="357" width="1.6" height="15.0" fill="rgb(251,54,13)" rx="2" ry="2" />
<text x="589.96" y="367.5" ></text>
</g>
<g >
<title>__sprintf (5 samples, 0.02%)</title><rect x="1017.3" y="437" width="0.3" height="15.0" fill="rgb(251,217,37)" rx="2" ry="2" />
<text x="1020.34" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (281 samples, 1.40%)</title><rect x="345.5" y="453" width="16.6" height="15.0" fill="rgb(227,99,22)" rx="2" ry="2" />
<text x="348.52" y="463.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (10 samples, 0.05%)</title><rect x="336.3" y="357" width="0.6" height="15.0" fill="rgb(231,27,28)" rx="2" ry="2" />
<text x="339.32" y="367.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (2 samples, 0.01%)</title><rect x="1015.8" y="677" width="0.1" height="15.0" fill="rgb(210,103,30)" rx="2" ry="2" />
<text x="1018.81" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="389" width="0.1" height="15.0" fill="rgb(205,212,40)" rx="2" ry="2" />
<text x="337.38" y="399.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (45 samples, 0.22%)</title><rect x="52.6" y="725" width="2.6" height="15.0" fill="rgb(248,210,2)" rx="2" ry="2" />
<text x="55.59" y="735.5" ></text>
</g>
<g >
<title>sk_new (2 samples, 0.01%)</title><rect x="334.0" y="293" width="0.1" height="15.0" fill="rgb(235,39,36)" rx="2" ry="2" />
<text x="337.02" y="303.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (38 samples, 0.19%)</title><rect x="987.6" y="629" width="2.2" height="15.0" fill="rgb(210,53,39)" rx="2" ry="2" />
<text x="990.55" y="639.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="535.8" y="485" width="0.1" height="15.0" fill="rgb(227,105,17)" rx="2" ry="2" />
<text x="538.82" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (1,360 samples, 6.80%)</title><rect x="546.1" y="565" width="80.2" height="15.0" fill="rgb(225,226,53)" rx="2" ry="2" />
<text x="549.08" y="575.5" >stream_pr..</text>
</g>
<g >
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="991.9" y="645" width="0.2" height="15.0" fill="rgb(230,199,10)" rx="2" ry="2" />
<text x="994.92" y="655.5" ></text>
</g>
<g >
<title>OBJ_obj2txt (5 samples, 0.02%)</title><rect x="590.0" y="421" width="0.3" height="15.0" fill="rgb(249,188,10)" rx="2" ry="2" />
<text x="593.03" y="431.5" ></text>
</g>
<g >
<title>FS_operate (5 samples, 0.02%)</title><rect x="551.1" y="469" width="0.3" height="15.0" fill="rgb(214,54,51)" rx="2" ry="2" />
<text x="554.10" y="479.5" ></text>
</g>
<g >
<title>stratum_json_checker (6 samples, 0.03%)</title><rect x="597.8" y="485" width="0.4" height="15.0" fill="rgb(240,150,44)" rx="2" ry="2" />
<text x="600.82" y="495.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="308.4" y="613" width="0.2" height="15.0" fill="rgb(225,197,9)" rx="2" ry="2" />
<text x="311.42" y="623.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="977.6" y="661" width="0.2" height="15.0" fill="rgb(205,178,5)" rx="2" ry="2" />
<text x="980.64" y="671.5" ></text>
</g>
<g >
<title>counting_bloom_add (55 samples, 0.27%)</title><rect x="688.0" y="517" width="3.2" height="15.0" fill="rgb(220,5,34)" rx="2" ry="2" />
<text x="690.95" y="527.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="564.6" y="485" width="0.1" height="15.0" fill="rgb(236,155,33)" rx="2" ry="2" />
<text x="567.61" y="495.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (30 samples, 0.15%)</title><rect x="828.1" y="549" width="1.8" height="15.0" fill="rgb(254,40,28)" rx="2" ry="2" />
<text x="831.11" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="399.6" y="549" width="0.3" height="15.0" fill="rgb(234,171,7)" rx="2" ry="2" />
<text x="402.56" y="559.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="873.5" y="597" width="0.1" height="15.0" fill="rgb(217,211,35)" rx="2" ry="2" />
<text x="876.53" y="607.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (4 samples, 0.02%)</title><rect x="998.1" y="645" width="0.2" height="15.0" fill="rgb(217,48,7)" rx="2" ry="2" />
<text x="1001.11" y="655.5" ></text>
</g>
<g >
<title>[quic.so] (2 samples, 0.01%)</title><rect x="836.4" y="405" width="0.1" height="15.0" fill="rgb(208,149,21)" rx="2" ry="2" />
<text x="839.42" y="415.5" ></text>
</g>
<g >
<title>dealipv4udppkt (14 samples, 0.07%)</title><rect x="990.0" y="709" width="0.8" height="15.0" fill="rgb(241,98,34)" rx="2" ry="2" />
<text x="992.97" y="719.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="1016.6" y="501" width="0.1" height="15.0" fill="rgb(225,91,43)" rx="2" ry="2" />
<text x="1019.57" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="491.2" y="501" width="0.1" height="15.0" fill="rgb(254,37,15)" rx="2" ry="2" />
<text x="494.17" y="511.5" ></text>
</g>
<g >
<title>tsg_record_quic_entry (10 samples, 0.05%)</title><rect x="835.1" y="469" width="0.6" height="15.0" fill="rgb(241,185,26)" rx="2" ry="2" />
<text x="838.07" y="479.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (2 samples, 0.01%)</title><rect x="691.1" y="485" width="0.1" height="15.0" fill="rgb(231,31,44)" rx="2" ry="2" />
<text x="694.08" y="495.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="557.8" y="421" width="0.1" height="15.0" fill="rgb(248,129,35)" rx="2" ry="2" />
<text x="560.82" y="431.5" ></text>
</g>
<g >
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="494.3" y="533" width="0.3" height="15.0" fill="rgb(224,211,38)" rx="2" ry="2" />
<text x="497.29" y="543.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="303.5" y="549" width="0.6" height="15.0" fill="rgb(239,184,25)" rx="2" ry="2" />
<text x="306.53" y="559.5" ></text>
</g>
<g >
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="320.2" y="437" width="0.4" height="15.0" fill="rgb(207,188,11)" rx="2" ry="2" />
<text x="323.16" y="447.5" ></text>
</g>
<g >
<title>STRATUM_ENTRY (20 samples, 0.10%)</title><rect x="597.1" y="517" width="1.2" height="15.0" fill="rgb(218,93,47)" rx="2" ry="2" />
<text x="600.11" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="316.4" y="277" width="0.2" height="15.0" fill="rgb(224,164,20)" rx="2" ry="2" />
<text x="319.38" y="287.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (26 samples, 0.13%)</title><rect x="977.8" y="645" width="1.6" height="15.0" fill="rgb(215,36,52)" rx="2" ry="2" />
<text x="980.82" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="593.2" y="373" width="0.2" height="15.0" fill="rgb(227,62,5)" rx="2" ry="2" />
<text x="596.16" y="383.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="377.3" y="405" width="0.3" height="15.0" fill="rgb(253,114,51)" rx="2" ry="2" />
<text x="380.26" y="415.5" ></text>
</g>
<g >
<title>plugin_call_appentry (16 samples, 0.08%)</title><rect x="326.2" y="453" width="1.0" height="15.0" fill="rgb(231,45,14)" rx="2" ry="2" />
<text x="329.24" y="463.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="831.9" y="501" width="0.2" height="15.0" fill="rgb(253,33,54)" rx="2" ry="2" />
<text x="834.88" y="511.5" ></text>
</g>
<g >
<title>dealipv4udppkt (17 samples, 0.08%)</title><rect x="983.5" y="693" width="1.0" height="15.0" fill="rgb(231,18,35)" rx="2" ry="2" />
<text x="986.54" y="703.5" ></text>
</g>
<g >
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="307.3" y="389" width="0.1" height="15.0" fill="rgb(224,174,23)" rx="2" ry="2" />
<text x="310.30" y="399.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (452 samples, 2.26%)</title><rect x="339.5" y="533" width="26.7" height="15.0" fill="rgb(241,198,17)" rx="2" ry="2" />
<text x="342.51" y="543.5" >[..</text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="840.6" y="517" width="0.1" height="15.0" fill="rgb(243,154,5)" rx="2" ry="2" />
<text x="843.55" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (8 samples, 0.04%)</title><rect x="337.2" y="405" width="0.5" height="15.0" fill="rgb(227,37,52)" rx="2" ry="2" />
<text x="340.21" y="415.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="591.2" y="357" width="0.2" height="15.0" fill="rgb(238,186,21)" rx="2" ry="2" />
<text x="594.15" y="367.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="308.4" y="581" width="0.2" height="15.0" fill="rgb(230,50,6)" rx="2" ry="2" />
<text x="311.42" y="591.5" ></text>
</g>
<g >
<title>counting_bloom_add (373 samples, 1.86%)</title><rect x="702.5" y="517" width="22.0" height="15.0" fill="rgb(234,117,40)" rx="2" ry="2" />
<text x="705.46" y="527.5" >c..</text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="545.1" y="517" width="0.6" height="15.0" fill="rgb(221,215,13)" rx="2" ry="2" />
<text x="548.08" y="527.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="983.4" y="565" width="0.1" height="15.0" fill="rgb(223,183,4)" rx="2" ry="2" />
<text x="986.42" y="575.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="987.0" y="453" width="0.3" height="15.0" fill="rgb(238,122,26)" rx="2" ry="2" />
<text x="989.96" y="463.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="569.5" y="341" width="0.2" height="15.0" fill="rgb(243,209,47)" rx="2" ry="2" />
<text x="572.50" y="351.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (5 samples, 0.02%)</title><rect x="400.1" y="709" width="0.3" height="15.0" fill="rgb(251,190,34)" rx="2" ry="2" />
<text x="403.15" y="719.5" ></text>
</g>
<g >
<title>update_polling_inject_context (90 samples, 0.45%)</title><rect x="497.1" y="661" width="5.3" height="15.0" fill="rgb(239,68,11)" rx="2" ry="2" />
<text x="500.12" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="587.6" y="309" width="0.7" height="15.0" fill="rgb(218,72,39)" rx="2" ry="2" />
<text x="590.61" y="319.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="853.1" y="485" width="0.1" height="15.0" fill="rgb(238,59,13)" rx="2" ry="2" />
<text x="856.06" y="495.5" ></text>
</g>
<g >
<title>streamaddlist (6 samples, 0.03%)</title><rect x="990.0" y="677" width="0.3" height="15.0" fill="rgb(215,157,32)" rx="2" ry="2" />
<text x="992.97" y="687.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="309" width="0.1" height="15.0" fill="rgb(252,153,45)" rx="2" ry="2" />
<text x="337.38" y="319.5" ></text>
</g>
<g >
<title>secondary_startup_64 (2,908 samples, 14.54%)</title><rect x="1018.5" y="789" width="171.5" height="15.0" fill="rgb(254,188,45)" rx="2" ry="2" />
<text x="1021.46" y="799.5" >secondary_startup_64</text>
</g>
<g >
<title>marsio_recv_burst@plt (4 samples, 0.02%)</title><rect x="972.7" y="709" width="0.3" height="15.0" fill="rgb(228,44,33)" rx="2" ry="2" />
<text x="975.75" y="719.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="990.5" y="613" width="0.1" height="15.0" fill="rgb(213,26,26)" rx="2" ry="2" />
<text x="993.50" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="793.5" y="533" width="0.3" height="15.0" fill="rgb(251,182,26)" rx="2" ry="2" />
<text x="796.48" y="543.5" ></text>
</g>
<g >
<title>process_ipv4_pkt (65 samples, 0.32%)</title><rect x="869.4" y="613" width="3.8" height="15.0" fill="rgb(242,59,14)" rx="2" ry="2" />
<text x="872.40" y="623.5" ></text>
</g>
<g >
<title>plugin_process_pending (3 samples, 0.01%)</title><rect x="420.2" y="597" width="0.2" height="15.0" fill="rgb(239,141,20)" rx="2" ry="2" />
<text x="423.20" y="607.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="280.2" y="773" width="0.2" height="15.0" fill="rgb(231,214,15)" rx="2" ry="2" />
<text x="283.17" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (37 samples, 0.18%)</title><rect x="323.4" y="341" width="2.2" height="15.0" fill="rgb(209,176,53)" rx="2" ry="2" />
<text x="326.40" y="351.5" ></text>
</g>
<g >
<title>BIO_vsnprintf (3 samples, 0.01%)</title><rect x="590.1" y="389" width="0.2" height="15.0" fill="rgb(231,54,3)" rx="2" ry="2" />
<text x="593.15" y="399.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="1017.0" y="517" width="0.3" height="15.0" fill="rgb(254,143,31)" rx="2" ry="2" />
<text x="1020.05" y="527.5" ></text>
</g>
<g >
<title>qmdpi_result_attr_getnext (3 samples, 0.01%)</title><rect x="827.9" y="469" width="0.2" height="15.0" fill="rgb(221,11,11)" rx="2" ry="2" />
<text x="830.93" y="479.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (7 samples, 0.03%)</title><rect x="989.4" y="549" width="0.4" height="15.0" fill="rgb(229,130,42)" rx="2" ry="2" />
<text x="992.38" y="559.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (20 samples, 0.10%)</title><rect x="588.7" y="373" width="1.2" height="15.0" fill="rgb(230,169,2)" rx="2" ry="2" />
<text x="591.67" y="383.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="300.0" y="421" width="0.1" height="15.0" fill="rgb(238,29,21)" rx="2" ry="2" />
<text x="302.99" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="997.3" y="613" width="0.2" height="15.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text x="1000.34" y="623.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (13 samples, 0.06%)</title><rect x="763.7" y="485" width="0.8" height="15.0" fill="rgb(223,196,25)" rx="2" ry="2" />
<text x="766.69" y="495.5" ></text>
</g>
<g >
<title>[sapp] (46 samples, 0.23%)</title><rect x="973.2" y="693" width="2.7" height="15.0" fill="rgb(234,78,27)" rx="2" ry="2" />
<text x="976.16" y="703.5" ></text>
</g>
<g >
<title>free_polling_inject_context (14 samples, 0.07%)</title><rect x="678.9" y="533" width="0.9" height="15.0" fill="rgb(238,140,49)" rx="2" ry="2" />
<text x="681.93" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="569.6" y="293" width="0.1" height="15.0" fill="rgb(242,173,53)" rx="2" ry="2" />
<text x="572.56" y="303.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (34 samples, 0.17%)</title><rect x="113.1" y="709" width="2.0" height="15.0" fill="rgb(232,26,49)" rx="2" ry="2" />
<text x="116.11" y="719.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (98 samples, 0.49%)</title><rect x="176.8" y="709" width="5.8" height="15.0" fill="rgb(206,119,49)" rx="2" ry="2" />
<text x="179.82" y="719.5" ></text>
</g>
<g >
<title>stream_process_tcp (30 samples, 0.15%)</title><rect x="1016.0" y="693" width="1.8" height="15.0" fill="rgb(231,121,0)" rx="2" ry="2" />
<text x="1018.98" y="703.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="976.9" y="581" width="0.1" height="15.0" fill="rgb(215,202,34)" rx="2" ry="2" />
<text x="979.88" y="591.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="300.6" y="293" width="0.7" height="15.0" fill="rgb(209,90,15)" rx="2" ry="2" />
<text x="303.63" y="303.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="589.9" y="373" width="0.1" height="15.0" fill="rgb(212,194,0)" rx="2" ry="2" />
<text x="592.85" y="383.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (8 samples, 0.04%)</title><rect x="1010.4" y="421" width="0.5" height="15.0" fill="rgb(241,57,28)" rx="2" ry="2" />
<text x="1013.44" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (25 samples, 0.12%)</title><rect x="492.0" y="469" width="1.5" height="15.0" fill="rgb(222,110,41)" rx="2" ry="2" />
<text x="494.99" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (62 samples, 0.31%)</title><rect x="322.6" y="453" width="3.6" height="15.0" fill="rgb(245,33,32)" rx="2" ry="2" />
<text x="325.58" y="463.5" ></text>
</g>
<g >
<title>__GI_bsearch (42 samples, 0.21%)</title><rect x="158.2" y="741" width="2.5" height="15.0" fill="rgb(205,120,28)" rx="2" ry="2" />
<text x="161.24" y="751.5" ></text>
</g>
<g >
<title>_int_malloc (37 samples, 0.18%)</title><rect x="323.4" y="325" width="2.2" height="15.0" fill="rgb(243,100,1)" rx="2" ry="2" />
<text x="326.40" y="335.5" ></text>
</g>
<g >
<title>project_requirement_destroy (23 samples, 0.11%)</title><rect x="797.0" y="533" width="1.4" height="15.0" fill="rgb(227,21,15)" rx="2" ry="2" />
<text x="800.02" y="543.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="568.8" y="437" width="0.3" height="15.0" fill="rgb(216,62,28)" rx="2" ry="2" />
<text x="571.80" y="447.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (82 samples, 0.41%)</title><rect x="553.3" y="469" width="4.8" height="15.0" fill="rgb(220,40,3)" rx="2" ry="2" />
<text x="556.28" y="479.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (5 samples, 0.02%)</title><rect x="800.5" y="453" width="0.3" height="15.0" fill="rgb(244,138,29)" rx="2" ry="2" />
<text x="803.50" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="330.2" y="229" width="0.9" height="15.0" fill="rgb(214,134,8)" rx="2" ry="2" />
<text x="333.25" y="239.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (9 samples, 0.04%)</title><rect x="1010.4" y="453" width="0.6" height="15.0" fill="rgb(205,10,29)" rx="2" ry="2" />
<text x="1013.44" y="463.5" ></text>
</g>
<g >
<title>fw_ssl_entry (2 samples, 0.01%)</title><rect x="1017.6" y="501" width="0.2" height="15.0" fill="rgb(220,215,33)" rx="2" ry="2" />
<text x="1020.64" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="738.9" y="533" width="0.3" height="15.0" fill="rgb(226,131,17)" rx="2" ry="2" />
<text x="741.86" y="543.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="337.7" y="437" width="0.2" height="15.0" fill="rgb(212,35,11)" rx="2" ry="2" />
<text x="340.68" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (44 samples, 0.22%)</title><rect x="385.6" y="565" width="2.6" height="15.0" fill="rgb(205,33,4)" rx="2" ry="2" />
<text x="388.58" y="575.5" ></text>
</g>
<g >
<title>lrustream (8 samples, 0.04%)</title><rect x="402.2" y="773" width="0.4" height="15.0" fill="rgb(234,80,47)" rx="2" ry="2" />
<text x="405.15" y="783.5" ></text>
</g>
<g >
<title>[sapp] (42 samples, 0.21%)</title><rect x="979.6" y="661" width="2.5" height="15.0" fill="rgb(222,196,6)" rx="2" ry="2" />
<text x="982.65" y="671.5" ></text>
</g>
<g >
<title>docanalyze_startstream (3 samples, 0.01%)</title><rect x="573.5" y="405" width="0.2" height="15.0" fill="rgb(236,206,33)" rx="2" ry="2" />
<text x="576.51" y="415.5" ></text>
</g>
<g >
<title>free_heap_stream_info (5 samples, 0.02%)</title><rect x="785.9" y="565" width="0.3" height="15.0" fill="rgb(212,82,9)" rx="2" ry="2" />
<text x="788.93" y="575.5" ></text>
</g>
<g >
<title>save_polling_inject_context (12 samples, 0.06%)</title><rect x="545.0" y="565" width="0.7" height="15.0" fill="rgb(247,202,51)" rx="2" ry="2" />
<text x="547.96" y="575.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="976.0" y="661" width="0.6" height="15.0" fill="rgb(242,200,37)" rx="2" ry="2" />
<text x="978.99" y="671.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (87 samples, 0.43%)</title><rect x="930.6" y="677" width="5.1" height="15.0" fill="rgb(250,34,2)" rx="2" ry="2" />
<text x="933.57" y="687.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="562.5" y="389" width="0.2" height="15.0" fill="rgb(245,4,23)" rx="2" ry="2" />
<text x="565.48" y="399.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (13 samples, 0.06%)</title><rect x="115.1" y="709" width="0.8" height="15.0" fill="rgb(206,111,24)" rx="2" ry="2" />
<text x="118.12" y="719.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="977.6" y="613" width="0.2" height="15.0" fill="rgb(215,32,54)" rx="2" ry="2" />
<text x="980.64" y="623.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (2 samples, 0.01%)</title><rect x="984.7" y="773" width="0.1" height="15.0" fill="rgb(213,122,13)" rx="2" ry="2" />
<text x="987.66" y="783.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="569.0" y="389" width="0.1" height="15.0" fill="rgb(244,119,44)" rx="2" ry="2" />
<text x="571.97" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="301.5" y="405" width="0.4" height="15.0" fill="rgb(229,183,27)" rx="2" ry="2" />
<text x="304.52" y="415.5" ></text>
</g>
<g >
<title>PROT_PROCESS (14 samples, 0.07%)</title><rect x="571.9" y="389" width="0.8" height="15.0" fill="rgb(241,128,39)" rx="2" ry="2" />
<text x="574.92" y="399.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="325" width="0.1" height="15.0" fill="rgb(250,130,53)" rx="2" ry="2" />
<text x="404.56" y="335.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="517" width="0.1" height="15.0" fill="rgb(228,220,25)" rx="2" ry="2" />
<text x="404.56" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (31 samples, 0.15%)</title><rect x="327.2" y="517" width="1.8" height="15.0" fill="rgb(218,202,6)" rx="2" ry="2" />
<text x="330.18" y="527.5" ></text>
</g>
<g >
<title>_int_free (18 samples, 0.09%)</title><rect x="677.4" y="517" width="1.1" height="15.0" fill="rgb(216,82,46)" rx="2" ry="2" />
<text x="680.39" y="527.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (4 samples, 0.02%)</title><rect x="645.4" y="437" width="0.2" height="15.0" fill="rgb(240,205,9)" rx="2" ry="2" />
<text x="648.36" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="304.9" y="501" width="0.1" height="15.0" fill="rgb(220,1,25)" rx="2" ry="2" />
<text x="307.88" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="490.0" y="597" width="0.1" height="15.0" fill="rgb(219,178,40)" rx="2" ry="2" />
<text x="492.99" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="573.3" y="309" width="0.2" height="15.0" fill="rgb(205,69,31)" rx="2" ry="2" />
<text x="576.28" y="319.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="997.0" y="661" width="0.2" height="15.0" fill="rgb(249,55,23)" rx="2" ry="2" />
<text x="999.99" y="671.5" ></text>
</g>
<g >
<title>stream_process_overlay_ipv4 (25 samples, 0.12%)</title><rect x="874.9" y="677" width="1.5" height="15.0" fill="rgb(218,225,35)" rx="2" ry="2" />
<text x="877.89" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (17 samples, 0.08%)</title><rect x="298.6" y="373" width="1.0" height="15.0" fill="rgb(246,201,42)" rx="2" ry="2" />
<text x="301.63" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="388.4" y="437" width="0.1" height="15.0" fill="rgb(250,135,19)" rx="2" ry="2" />
<text x="391.35" y="447.5" ></text>
</g>
<g >
<title>PROT_PROCESS (7 samples, 0.03%)</title><rect x="420.6" y="629" width="0.4" height="15.0" fill="rgb(209,81,42)" rx="2" ry="2" />
<text x="423.62" y="639.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="485" width="0.1" height="15.0" fill="rgb(238,210,18)" rx="2" ry="2" />
<text x="404.56" y="495.5" ></text>
</g>
<g >
<title>get_global_stream_id (5 samples, 0.02%)</title><rect x="470.0" y="645" width="0.3" height="15.0" fill="rgb(208,58,16)" rx="2" ry="2" />
<text x="473.05" y="655.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (7 samples, 0.03%)</title><rect x="400.4" y="677" width="0.5" height="15.0" fill="rgb(206,177,28)" rx="2" ry="2" />
<text x="403.44" y="687.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (3 samples, 0.01%)</title><rect x="339.2" y="453" width="0.2" height="15.0" fill="rgb(242,203,32)" rx="2" ry="2" />
<text x="342.21" y="463.5" ></text>
</g>
<g >
<title>stream_process (38 samples, 0.19%)</title><rect x="684.2" y="517" width="2.3" height="15.0" fill="rgb(241,82,0)" rx="2" ry="2" />
<text x="687.24" y="527.5" ></text>
</g>
<g >
<title>__snprintf (10 samples, 0.05%)</title><rect x="567.1" y="501" width="0.6" height="15.0" fill="rgb(224,186,50)" rx="2" ry="2" />
<text x="570.14" y="511.5" ></text>
</g>
<g >
<title>plugin_process_data (3 samples, 0.01%)</title><rect x="574.5" y="373" width="0.2" height="15.0" fill="rgb(251,127,32)" rx="2" ry="2" />
<text x="577.52" y="383.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (139 samples, 0.69%)</title><rect x="366.2" y="581" width="8.2" height="15.0" fill="rgb(221,47,42)" rx="2" ry="2" />
<text x="369.17" y="591.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="1005.4" y="757" width="0.1" height="15.0" fill="rgb(206,162,39)" rx="2" ry="2" />
<text x="1008.37" y="767.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="762.5" y="517" width="0.2" height="15.0" fill="rgb(218,116,26)" rx="2" ry="2" />
<text x="765.45" y="527.5" ></text>
</g>
<g >
<title>docanalyze_parsestream (3 samples, 0.01%)</title><rect x="570.7" y="389" width="0.2" height="15.0" fill="rgb(212,90,2)" rx="2" ry="2" />
<text x="573.74" y="399.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="388.6" y="517" width="0.1" height="15.0" fill="rgb(230,107,35)" rx="2" ry="2" />
<text x="391.59" y="527.5" ></text>
</g>
<g >
<title>region_compile (126 samples, 0.63%)</title><rect x="47.9" y="773" width="7.4" height="15.0" fill="rgb(205,186,2)" rx="2" ry="2" />
<text x="50.87" y="783.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="370.8" y="469" width="0.6" height="15.0" fill="rgb(248,103,27)" rx="2" ry="2" />
<text x="373.83" y="479.5" ></text>
</g>
<g >
<title>BN_bn2bin (3 samples, 0.01%)</title><rect x="592.6" y="309" width="0.1" height="15.0" fill="rgb(248,93,1)" rx="2" ry="2" />
<text x="595.57" y="319.5" ></text>
</g>
<g >
<title>do_nanosleep (74 samples, 0.37%)</title><rect x="931.0" y="645" width="4.4" height="15.0" fill="rgb(213,45,40)" rx="2" ry="2" />
<text x="934.04" y="655.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="402.2" y="693" width="0.4" height="15.0" fill="rgb(254,147,3)" rx="2" ry="2" />
<text x="405.15" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="818.4" y="485" width="0.2" height="15.0" fill="rgb(207,13,26)" rx="2" ry="2" />
<text x="821.43" y="495.5" ></text>
</g>
<g >
<title>stream_process_udp (8 samples, 0.04%)</title><rect x="990.3" y="693" width="0.5" height="15.0" fill="rgb(225,152,15)" rx="2" ry="2" />
<text x="993.32" y="703.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="985.0" y="677" width="0.1" height="15.0" fill="rgb(231,54,10)" rx="2" ry="2" />
<text x="987.96" y="687.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_unlock (2 samples, 0.01%)</title><rect x="861.2" y="469" width="0.1" height="15.0" fill="rgb(239,5,54)" rx="2" ry="2" />
<text x="864.20" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (32 samples, 0.16%)</title><rect x="559.7" y="389" width="1.8" height="15.0" fill="rgb(238,22,1)" rx="2" ry="2" />
<text x="562.65" y="399.5" ></text>
</g>
<g >
<title>ipv4_entry (7,211 samples, 36.05%)</title><rect x="451.0" y="693" width="425.4" height="15.0" fill="rgb(249,92,26)" rx="2" ry="2" />
<text x="454.00" y="703.5" >ipv4_entry</text>
</g>
<g >
<title>http_positioningACompleteLine (3 samples, 0.01%)</title><rect x="569.1" y="453" width="0.2" height="15.0" fill="rgb(217,61,43)" rx="2" ry="2" />
<text x="572.09" y="463.5" ></text>
</g>
<g >
<title>stream_process_udp (51 samples, 0.25%)</title><rect x="305.0" y="629" width="3.0" height="15.0" fill="rgb(236,56,37)" rx="2" ry="2" />
<text x="308.00" y="639.5" ></text>
</g>
<g >
<title>http_callPlugin (16 samples, 0.08%)</title><rect x="326.2" y="501" width="1.0" height="15.0" fill="rgb(241,195,36)" rx="2" ry="2" />
<text x="329.24" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="104.7" y="741" width="0.4" height="15.0" fill="rgb(221,107,46)" rx="2" ry="2" />
<text x="107.68" y="751.5" ></text>
</g>
<g >
<title>[tsg_master.so] (32 samples, 0.16%)</title><rect x="385.9" y="533" width="1.9" height="15.0" fill="rgb(232,119,31)" rx="2" ry="2" />
<text x="388.87" y="543.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="300.5" y="325" width="0.8" height="15.0" fill="rgb(227,46,47)" rx="2" ry="2" />
<text x="303.46" y="335.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (6 samples, 0.03%)</title><rect x="987.6" y="565" width="0.3" height="15.0" fill="rgb(214,55,42)" rx="2" ry="2" />
<text x="990.55" y="575.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (7 samples, 0.03%)</title><rect x="374.4" y="533" width="0.4" height="15.0" fill="rgb(249,32,45)" rx="2" ry="2" />
<text x="377.37" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="280.2" y="725" width="0.2" height="15.0" fill="rgb(249,35,11)" rx="2" ry="2" />
<text x="283.17" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_free (9 samples, 0.04%)</title><rect x="563.8" y="469" width="0.6" height="15.0" fill="rgb(234,156,4)" rx="2" ry="2" />
<text x="566.84" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (15 samples, 0.07%)</title><rect x="1001.2" y="629" width="0.9" height="15.0" fill="rgb(242,103,41)" rx="2" ry="2" />
<text x="1004.24" y="639.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (30 samples, 0.15%)</title><rect x="193.0" y="773" width="1.8" height="15.0" fill="rgb(226,152,25)" rx="2" ry="2" />
<text x="195.98" y="783.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="421" width="0.1" height="15.0" fill="rgb(213,61,49)" rx="2" ry="2" />
<text x="404.56" y="431.5" ></text>
</g>
<g >
<title>[ftp.so] (2 samples, 0.01%)</title><rect x="610.2" y="485" width="0.1" height="15.0" fill="rgb(211,64,2)" rx="2" ry="2" />
<text x="613.20" y="495.5" ></text>
</g>
<g >
<title>@plt (2 samples, 0.01%)</title><rect x="108.3" y="725" width="0.1" height="15.0" fill="rgb(252,51,3)" rx="2" ry="2" />
<text x="111.27" y="735.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="801.0" y="437" width="0.3" height="15.0" fill="rgb(230,225,7)" rx="2" ry="2" />
<text x="804.03" y="447.5" ></text>
</g>
<g >
<title>sapp_mem_free (3 samples, 0.01%)</title><rect x="471.8" y="629" width="0.2" height="15.0" fill="rgb(248,213,13)" rx="2" ry="2" />
<text x="474.82" y="639.5" ></text>
</g>
<g >
<title>http_doWithChunkedData (20 samples, 0.10%)</title><rect x="570.6" y="453" width="1.1" height="15.0" fill="rgb(205,168,24)" rx="2" ry="2" />
<text x="573.56" y="463.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (44 samples, 0.22%)</title><rect x="297.9" y="549" width="2.6" height="15.0" fill="rgb(205,217,7)" rx="2" ry="2" />
<text x="300.86" y="559.5" ></text>
</g>
<g >
<title>BN_MONT_CTX_set (6 samples, 0.03%)</title><rect x="592.1" y="341" width="0.3" height="15.0" fill="rgb(219,176,23)" rx="2" ry="2" />
<text x="595.10" y="351.5" ></text>
</g>
<g >
<title>[sapp] (45 samples, 0.22%)</title><rect x="984.8" y="757" width="2.7" height="15.0" fill="rgb(234,181,33)" rx="2" ry="2" />
<text x="987.84" y="767.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="763.3" y="501" width="0.1" height="15.0" fill="rgb(234,122,25)" rx="2" ry="2" />
<text x="766.28" y="511.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (2 samples, 0.01%)</title><rect x="421.2" y="725" width="0.1" height="15.0" fill="rgb(239,145,44)" rx="2" ry="2" />
<text x="424.21" y="735.5" ></text>
</g>
<g >
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="400.2" y="517" width="0.1" height="15.0" fill="rgb(206,155,7)" rx="2" ry="2" />
<text x="403.21" y="527.5" ></text>
</g>
<g >
<title>[sapp] (68 samples, 0.34%)</title><rect x="1009.8" y="613" width="4.0" height="15.0" fill="rgb(210,158,47)" rx="2" ry="2" />
<text x="1012.79" y="623.5" ></text>
</g>
<g >
<title>CIPv4Match::SearchIP (281 samples, 1.40%)</title><rect x="280.9" y="773" width="16.6" height="15.0" fill="rgb(254,145,45)" rx="2" ry="2" />
<text x="283.93" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="794.7" y="533" width="0.3" height="15.0" fill="rgb(220,70,23)" rx="2" ry="2" />
<text x="797.66" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (22 samples, 0.11%)</title><rect x="421.3" y="773" width="1.3" height="15.0" fill="rgb(233,221,48)" rx="2" ry="2" />
<text x="424.32" y="783.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="307.5" y="453" width="0.4" height="15.0" fill="rgb(246,8,45)" rx="2" ry="2" />
<text x="310.54" y="463.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (14 samples, 0.07%)</title><rect x="362.3" y="501" width="0.8" height="15.0" fill="rgb(207,65,44)" rx="2" ry="2" />
<text x="365.28" y="511.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (6 samples, 0.03%)</title><rect x="338.6" y="501" width="0.3" height="15.0" fill="rgb(246,122,7)" rx="2" ry="2" />
<text x="341.56" y="511.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="301.9" y="437" width="0.2" height="15.0" fill="rgb(239,134,51)" rx="2" ry="2" />
<text x="304.93" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="989.8" y="597" width="0.2" height="15.0" fill="rgb(207,95,24)" rx="2" ry="2" />
<text x="992.79" y="607.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="817.8" y="517" width="0.2" height="15.0" fill="rgb(231,152,2)" rx="2" ry="2" />
<text x="820.84" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="683.8" y="421" width="0.3" height="15.0" fill="rgb(233,14,36)" rx="2" ry="2" />
<text x="686.82" y="431.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="798.3" y="517" width="0.1" height="15.0" fill="rgb(221,104,22)" rx="2" ry="2" />
<text x="801.26" y="527.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (38 samples, 0.19%)</title><rect x="684.2" y="533" width="2.3" height="15.0" fill="rgb(213,147,35)" rx="2" ry="2" />
<text x="687.24" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="551.5" y="469" width="0.1" height="15.0" fill="rgb(205,84,48)" rx="2" ry="2" />
<text x="554.51" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (62 samples, 0.31%)</title><rect x="322.6" y="405" width="3.6" height="15.0" fill="rgb(241,123,53)" rx="2" ry="2" />
<text x="325.58" y="415.5" ></text>
</g>
<g >
<title>http_parser_execute (5 samples, 0.02%)</title><rect x="610.8" y="485" width="0.3" height="15.0" fill="rgb(244,207,26)" rx="2" ry="2" />
<text x="613.79" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="334.0" y="245" width="0.1" height="15.0" fill="rgb(251,41,49)" rx="2" ry="2" />
<text x="337.02" y="255.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="327.0" y="341" width="0.2" height="15.0" fill="rgb(218,207,40)" rx="2" ry="2" />
<text x="330.00" y="351.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="984.7" y="661" width="0.1" height="15.0" fill="rgb(248,215,38)" rx="2" ry="2" />
<text x="987.66" y="671.5" ></text>
</g>
<g >
<title>[sapp] (16 samples, 0.08%)</title><rect x="686.8" y="549" width="0.9" height="15.0" fill="rgb(234,39,10)" rx="2" ry="2" />
<text x="689.77" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="335.0" y="373" width="0.1" height="15.0" fill="rgb(208,215,14)" rx="2" ry="2" />
<text x="337.97" y="383.5" ></text>
</g>
<g >
<title>[libqmengine.so] (32 samples, 0.16%)</title><rect x="820.4" y="485" width="1.9" height="15.0" fill="rgb(206,222,34)" rx="2" ry="2" />
<text x="823.44" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (96 samples, 0.48%)</title><rect x="297.9" y="597" width="5.6" height="15.0" fill="rgb(222,179,27)" rx="2" ry="2" />
<text x="300.86" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="590.1" y="373" width="0.2" height="15.0" fill="rgb(219,184,36)" rx="2" ry="2" />
<text x="593.15" y="383.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (18 samples, 0.09%)</title><rect x="393.1" y="389" width="1.1" height="15.0" fill="rgb(216,200,20)" rx="2" ry="2" />
<text x="396.13" y="399.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="1016.8" y="485" width="0.2" height="15.0" fill="rgb(215,56,34)" rx="2" ry="2" />
<text x="1019.75" y="495.5" ></text>
</g>
<g >
<title>_make_outer_status (114 samples, 0.57%)</title><rect x="250.1" y="757" width="6.7" height="15.0" fill="rgb(207,193,19)" rx="2" ry="2" />
<text x="253.08" y="767.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (11 samples, 0.05%)</title><rect x="400.9" y="645" width="0.6" height="15.0" fill="rgb(250,2,27)" rx="2" ry="2" />
<text x="403.86" y="655.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (113 samples, 0.56%)</title><rect x="568.5" y="501" width="6.7" height="15.0" fill="rgb(220,35,46)" rx="2" ry="2" />
<text x="571.50" y="511.5" ></text>
</g>
<g >
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="1017.3" y="533" width="0.3" height="15.0" fill="rgb(242,84,13)" rx="2" ry="2" />
<text x="1020.34" y="543.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (31 samples, 0.15%)</title><rect x="1013.9" y="565" width="1.8" height="15.0" fill="rgb(217,102,44)" rx="2" ry="2" />
<text x="1016.86" y="575.5" ></text>
</g>
<g >
<title>CIntervalMatch::search_rule (32 samples, 0.16%)</title><rect x="172.8" y="741" width="1.9" height="15.0" fill="rgb(238,50,13)" rx="2" ry="2" />
<text x="175.81" y="751.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (4 samples, 0.02%)</title><rect x="615.3" y="485" width="0.2" height="15.0" fill="rgb(236,30,15)" rx="2" ry="2" />
<text x="618.28" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="307.5" y="485" width="0.4" height="15.0" fill="rgb(231,11,19)" rx="2" ry="2" />
<text x="310.54" y="495.5" ></text>
</g>
<g >
<title>grab_mid@plt (2 samples, 0.01%)</title><rect x="256.8" y="773" width="0.1" height="15.0" fill="rgb(218,39,44)" rx="2" ry="2" />
<text x="259.81" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="491.2" y="469" width="0.1" height="15.0" fill="rgb(222,38,32)" rx="2" ry="2" />
<text x="494.17" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (62 samples, 0.31%)</title><rect x="322.6" y="421" width="3.6" height="15.0" fill="rgb(223,59,21)" rx="2" ry="2" />
<text x="325.58" y="431.5" ></text>
</g>
<g >
<title>http_findLineEnd_CR (2 samples, 0.01%)</title><rect x="574.7" y="421" width="0.1" height="15.0" fill="rgb(229,217,31)" rx="2" ry="2" />
<text x="577.69" y="431.5" ></text>
</g>
<g >
<title>marsio_send_burst (50 samples, 0.25%)</title><rect x="908.3" y="725" width="3.0" height="15.0" fill="rgb(209,59,37)" rx="2" ry="2" />
<text x="911.33" y="735.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="336.0" y="405" width="0.1" height="15.0" fill="rgb(220,147,40)" rx="2" ry="2" />
<text x="338.97" y="415.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="453" width="0.2" height="15.0" fill="rgb(242,29,38)" rx="2" ry="2" />
<text x="987.84" y="463.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (3 samples, 0.01%)</title><rect x="991.9" y="677" width="0.2" height="15.0" fill="rgb(225,128,33)" rx="2" ry="2" />
<text x="994.92" y="687.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (3 samples, 0.01%)</title><rect x="371.9" y="501" width="0.2" height="15.0" fill="rgb(225,161,3)" rx="2" ry="2" />
<text x="374.89" y="511.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="400.7" y="597" width="0.2" height="15.0" fill="rgb(240,203,8)" rx="2" ry="2" />
<text x="403.74" y="607.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="400.9" y="581" width="0.3" height="15.0" fill="rgb(217,30,52)" rx="2" ry="2" />
<text x="403.91" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="493.9" y="437" width="0.2" height="15.0" fill="rgb(241,150,30)" rx="2" ry="2" />
<text x="496.94" y="447.5" ></text>
</g>
<g >
<title>TLD_cancel (3 samples, 0.01%)</title><rect x="1002.2" y="661" width="0.2" height="15.0" fill="rgb(231,152,7)" rx="2" ry="2" />
<text x="1005.24" y="671.5" ></text>
</g>
<g >
<title>__IO_vsprintf (13 samples, 0.06%)</title><rect x="1012.9" y="469" width="0.8" height="15.0" fill="rgb(245,144,33)" rx="2" ry="2" />
<text x="1015.92" y="479.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="800.6" y="437" width="0.2" height="15.0" fill="rgb(229,163,32)" rx="2" ry="2" />
<text x="803.62" y="447.5" ></text>
</g>
<g >
<title>cJSON_Delete (3 samples, 0.01%)</title><rect x="997.0" y="677" width="0.2" height="15.0" fill="rgb(238,102,16)" rx="2" ry="2" />
<text x="999.99" y="687.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="592.6" y="373" width="0.1" height="15.0" fill="rgb(254,147,4)" rx="2" ry="2" />
<text x="595.57" y="383.5" ></text>
</g>
<g >
<title>UTF8_putc (2 samples, 0.01%)</title><rect x="331.5" y="213" width="0.2" height="15.0" fill="rgb(245,128,27)" rx="2" ry="2" />
<text x="334.54" y="223.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="973.2" y="629" width="0.3" height="15.0" fill="rgb(252,17,53)" rx="2" ry="2" />
<text x="976.16" y="639.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (5 samples, 0.02%)</title><rect x="979.4" y="645" width="0.2" height="15.0" fill="rgb(226,9,12)" rx="2" ry="2" />
<text x="982.35" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="569.6" y="309" width="0.1" height="15.0" fill="rgb(224,179,18)" rx="2" ry="2" />
<text x="572.56" y="319.5" ></text>
</g>
<g >
<title>http_doWithACompleteRegion (7 samples, 0.03%)</title><rect x="986.2" y="613" width="0.4" height="15.0" fill="rgb(213,2,45)" rx="2" ry="2" />
<text x="989.20" y="623.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (25 samples, 0.12%)</title><rect x="300.5" y="485" width="1.4" height="15.0" fill="rgb(238,115,0)" rx="2" ry="2" />
<text x="303.46" y="495.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="1009.6" y="661" width="0.2" height="15.0" fill="rgb(211,86,13)" rx="2" ry="2" />
<text x="1012.61" y="671.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (11 samples, 0.05%)</title><rect x="976.0" y="629" width="0.6" height="15.0" fill="rgb(236,115,0)" rx="2" ry="2" />
<text x="978.99" y="639.5" ></text>
</g>
<g >
<title>tsg_record_dns_entry (2 samples, 0.01%)</title><rect x="809.6" y="437" width="0.1" height="15.0" fill="rgb(248,113,35)" rx="2" ry="2" />
<text x="812.59" y="447.5" ></text>
</g>
<g >
<title>[sapp] (48 samples, 0.24%)</title><rect x="973.2" y="709" width="2.8" height="15.0" fill="rgb(249,45,12)" rx="2" ry="2" />
<text x="976.16" y="719.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (68 samples, 0.34%)</title><rect x="390.8" y="549" width="4.0" height="15.0" fill="rgb(239,140,2)" rx="2" ry="2" />
<text x="393.77" y="559.5" ></text>
</g>
<g >
<title>rulescan_searchstream (621 samples, 3.10%)</title><rect x="55.8" y="757" width="36.6" height="15.0" fill="rgb(234,63,4)" rx="2" ry="2" />
<text x="58.77" y="767.5" >rul..</text>
</g>
<g >
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="827.5" y="453" width="0.3" height="15.0" fill="rgb(247,51,6)" rx="2" ry="2" />
<text x="830.46" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (19 samples, 0.09%)</title><rect x="321.0" y="341" width="1.1" height="15.0" fill="rgb(231,137,24)" rx="2" ry="2" />
<text x="323.99" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="320.3" y="309" width="0.2" height="15.0" fill="rgb(232,188,0)" rx="2" ry="2" />
<text x="323.28" y="319.5" ></text>
</g>
<g >
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="827.5" y="437" width="0.3" height="15.0" fill="rgb(219,78,7)" rx="2" ry="2" />
<text x="830.52" y="447.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="564.6" y="501" width="0.1" height="15.0" fill="rgb(250,133,44)" rx="2" ry="2" />
<text x="567.61" y="511.5" ></text>
</g>
<g >
<title>dealipv4udppkt (7,117 samples, 35.58%)</title><rect x="454.8" y="677" width="419.8" height="15.0" fill="rgb(241,140,35)" rx="2" ry="2" />
<text x="457.77" y="687.5" >dealipv4udppkt</text>
</g>
<g >
<title>strncmp_one_word_mesa (2 samples, 0.01%)</title><rect x="575.9" y="469" width="0.2" height="15.0" fill="rgb(217,10,49)" rx="2" ry="2" />
<text x="578.93" y="479.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="589.7" y="277" width="0.1" height="15.0" fill="rgb(248,81,44)" rx="2" ry="2" />
<text x="592.68" y="287.5" ></text>
</g>
<g >
<title>SIP_UDP_ENTRY (13 samples, 0.06%)</title><rect x="837.4" y="549" width="0.7" height="15.0" fill="rgb(211,23,33)" rx="2" ry="2" />
<text x="840.37" y="559.5" ></text>
</g>
<g >
<title>sapp_identify_tunnel_inner_pkt (8 samples, 0.04%)</title><rect x="876.7" y="677" width="0.5" height="15.0" fill="rgb(247,180,13)" rx="2" ry="2" />
<text x="879.71" y="687.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="304.5" y="485" width="0.4" height="15.0" fill="rgb(214,178,30)" rx="2" ry="2" />
<text x="307.47" y="495.5" ></text>
</g>
<g >
<title>kni_tcpall_entry (2 samples, 0.01%)</title><rect x="304.4" y="565" width="0.1" height="15.0" fill="rgb(216,150,7)" rx="2" ry="2" />
<text x="307.35" y="575.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="990.3" y="613" width="0.2" height="15.0" fill="rgb(212,228,47)" rx="2" ry="2" />
<text x="993.32" y="623.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="397.5" y="517" width="0.1" height="15.0" fill="rgb(229,47,19)" rx="2" ry="2" />
<text x="400.49" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="590.3" y="341" width="0.4" height="15.0" fill="rgb(253,149,30)" rx="2" ry="2" />
<text x="593.33" y="351.5" ></text>
</g>
<g >
<title>del_stream_by_time (22 samples, 0.11%)</title><rect x="982.1" y="645" width="1.3" height="15.0" fill="rgb(211,170,37)" rx="2" ry="2" />
<text x="985.13" y="655.5" ></text>
</g>
<g >
<title>WANGW_POLLING_ENTRY (61 samples, 0.30%)</title><rect x="944.7" y="725" width="3.6" height="15.0" fill="rgb(207,92,45)" rx="2" ry="2" />
<text x="947.73" y="735.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (2 samples, 0.01%)</title><rect x="843.2" y="501" width="0.1" height="15.0" fill="rgb(211,99,36)" rx="2" ry="2" />
<text x="846.21" y="511.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (4 samples, 0.02%)</title><rect x="588.3" y="309" width="0.3" height="15.0" fill="rgb(206,59,41)" rx="2" ry="2" />
<text x="591.32" y="319.5" ></text>
</g>
<g >
<title>CRYPTO_free (5 samples, 0.02%)</title><rect x="589.0" y="293" width="0.3" height="15.0" fill="rgb(238,214,21)" rx="2" ry="2" />
<text x="592.03" y="303.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="873.5" y="581" width="0.1" height="15.0" fill="rgb(222,90,4)" rx="2" ry="2" />
<text x="876.53" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="610.5" y="469" width="0.1" height="15.0" fill="rgb(247,66,41)" rx="2" ry="2" />
<text x="613.50" y="479.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (167 samples, 0.83%)</title><rect x="962.9" y="693" width="9.8" height="15.0" fill="rgb(224,200,18)" rx="2" ry="2" />
<text x="965.90" y="703.5" ></text>
</g>
<g >
<title>marsio_recv_burst (190 samples, 0.95%)</title><rect x="961.5" y="709" width="11.2" height="15.0" fill="rgb(244,98,2)" rx="2" ry="2" />
<text x="964.54" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="382.2" y="453" width="1.5" height="15.0" fill="rgb(216,112,49)" rx="2" ry="2" />
<text x="385.22" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="987.3" y="613" width="0.1" height="15.0" fill="rgb(249,169,32)" rx="2" ry="2" />
<text x="990.32" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="822.3" y="485" width="0.2" height="15.0" fill="rgb(214,197,27)" rx="2" ry="2" />
<text x="825.33" y="495.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (112 samples, 0.56%)</title><rect x="297.9" y="645" width="6.6" height="15.0" fill="rgb(219,51,52)" rx="2" ry="2" />
<text x="300.86" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="538.4" y="469" width="0.3" height="15.0" fill="rgb(221,92,20)" rx="2" ry="2" />
<text x="541.36" y="479.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="986.3" y="501" width="0.1" height="15.0" fill="rgb(242,80,39)" rx="2" ry="2" />
<text x="989.31" y="511.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="797.7" y="469" width="0.3" height="15.0" fill="rgb(236,132,25)" rx="2" ry="2" />
<text x="800.73" y="479.5" ></text>
</g>
<g >
<title>rd_malloc (4 samples, 0.02%)</title><rect x="381.6" y="421" width="0.3" height="15.0" fill="rgb(231,21,9)" rx="2" ry="2" />
<text x="384.63" y="431.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="382.1" y="453" width="0.1" height="15.0" fill="rgb(230,32,39)" rx="2" ry="2" />
<text x="385.10" y="463.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (40 samples, 0.20%)</title><rect x="1016.0" y="741" width="2.3" height="15.0" fill="rgb(219,63,26)" rx="2" ry="2" />
<text x="1018.98" y="751.5" ></text>
</g>
<g >
<title>STRATUM_ENTRY (3 samples, 0.01%)</title><rect x="302.1" y="549" width="0.1" height="15.0" fill="rgb(240,178,31)" rx="2" ry="2" />
<text x="305.05" y="559.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (58 samples, 0.29%)</title><rect x="857.7" y="469" width="3.4" height="15.0" fill="rgb(236,83,0)" rx="2" ry="2" />
<text x="860.72" y="479.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (15 samples, 0.07%)</title><rect x="537.8" y="517" width="0.9" height="15.0" fill="rgb(247,226,33)" rx="2" ry="2" />
<text x="540.83" y="527.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (31 samples, 0.15%)</title><rect x="382.1" y="469" width="1.8" height="15.0" fill="rgb(211,14,49)" rx="2" ry="2" />
<text x="385.10" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="683.2" y="501" width="1.0" height="15.0" fill="rgb(207,73,10)" rx="2" ry="2" />
<text x="686.23" y="511.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="845.2" y="533" width="0.1" height="15.0" fill="rgb(234,208,24)" rx="2" ry="2" />
<text x="848.15" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (1,560 samples, 7.80%)</title><rect x="308.0" y="741" width="92.0" height="15.0" fill="rgb(220,228,22)" rx="2" ry="2" />
<text x="311.01" y="751.5" >ipv4_entry</text>
</g>
<g >
<title>http_releaseHttpLinkNode (5 samples, 0.02%)</title><rect x="1017.0" y="613" width="0.3" height="15.0" fill="rgb(216,164,27)" rx="2" ry="2" />
<text x="1020.05" y="623.5" ></text>
</g>
<g >
<title>http_judgeResponseEntityPresent (16 samples, 0.08%)</title><rect x="326.2" y="517" width="1.0" height="15.0" fill="rgb(213,36,41)" rx="2" ry="2" />
<text x="329.24" y="527.5" ></text>
</g>
<g >
<title>app_proto_worke_process (4 samples, 0.02%)</title><rect x="979.6" y="565" width="0.3" height="15.0" fill="rgb(224,182,54)" rx="2" ry="2" />
<text x="982.65" y="575.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="810.5" y="565" width="0.2" height="15.0" fill="rgb(227,218,1)" rx="2" ry="2" />
<text x="813.47" y="575.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (22 samples, 0.11%)</title><rect x="987.9" y="613" width="1.3" height="15.0" fill="rgb(254,148,5)" rx="2" ry="2" />
<text x="990.91" y="623.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="402.2" y="629" width="0.4" height="15.0" fill="rgb(237,85,53)" rx="2" ry="2" />
<text x="405.15" y="639.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="1013.7" y="469" width="0.1" height="15.0" fill="rgb(211,30,21)" rx="2" ry="2" />
<text x="1016.68" y="479.5" ></text>
</g>
<g >
<title>http_findLineEnd_CR (3 samples, 0.01%)</title><rect x="569.1" y="421" width="0.2" height="15.0" fill="rgb(209,9,22)" rx="2" ry="2" />
<text x="572.09" y="431.5" ></text>
</g>
<g >
<title>free_heap_stream_info (28 samples, 0.14%)</title><rect x="677.3" y="533" width="1.6" height="15.0" fill="rgb(245,194,24)" rx="2" ry="2" />
<text x="680.27" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (8 samples, 0.04%)</title><rect x="388.2" y="533" width="0.5" height="15.0" fill="rgb(241,123,9)" rx="2" ry="2" />
<text x="391.23" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="982.7" y="485" width="0.4" height="15.0" fill="rgb(251,157,21)" rx="2" ry="2" />
<text x="985.66" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="590.2" y="357" width="0.1" height="15.0" fill="rgb(210,59,22)" rx="2" ry="2" />
<text x="593.21" y="367.5" ></text>
</g>
<g >
<title>streamleavlist (2 samples, 0.01%)</title><rect x="686.5" y="533" width="0.1" height="15.0" fill="rgb(220,184,39)" rx="2" ry="2" />
<text x="689.48" y="543.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (12 samples, 0.06%)</title><rect x="368.5" y="533" width="0.7" height="15.0" fill="rgb(220,224,33)" rx="2" ry="2" />
<text x="371.53" y="543.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="982.7" y="469" width="0.2" height="15.0" fill="rgb(210,98,34)" rx="2" ry="2" />
<text x="985.72" y="479.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="308.0" y="661" width="0.4" height="15.0" fill="rgb(222,153,53)" rx="2" ry="2" />
<text x="311.01" y="671.5" ></text>
</g>
<g >
<title>ipv4_entry (55 samples, 0.27%)</title><rect x="987.6" y="725" width="3.2" height="15.0" fill="rgb(223,60,8)" rx="2" ry="2" />
<text x="990.55" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="615.1" y="469" width="0.2" height="15.0" fill="rgb(247,134,44)" rx="2" ry="2" />
<text x="618.10" y="479.5" ></text>
</g>
<g >
<title>udp_free_stream (85 samples, 0.42%)</title><rect x="489.6" y="629" width="5.0" height="15.0" fill="rgb(209,17,1)" rx="2" ry="2" />
<text x="492.63" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="984.7" y="677" width="0.1" height="15.0" fill="rgb(228,180,50)" rx="2" ry="2" />
<text x="987.66" y="687.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (6 samples, 0.03%)</title><rect x="277.4" y="741" width="0.3" height="15.0" fill="rgb(220,164,39)" rx="2" ry="2" />
<text x="280.39" y="751.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="587.3" y="325" width="1.0" height="15.0" fill="rgb(207,152,51)" rx="2" ry="2" />
<text x="590.32" y="335.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="1009.6" y="565" width="0.2" height="15.0" fill="rgb(254,48,47)" rx="2" ry="2" />
<text x="1012.61" y="575.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (17 samples, 0.08%)</title><rect x="983.5" y="645" width="1.0" height="15.0" fill="rgb(253,19,10)" rx="2" ry="2" />
<text x="986.54" y="655.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (128 samples, 0.64%)</title><rect x="639.2" y="501" width="7.5" height="15.0" fill="rgb(249,117,48)" rx="2" ry="2" />
<text x="642.17" y="511.5" ></text>
</g>
<g >
<title>plugin_process_close (4 samples, 0.02%)</title><rect x="683.8" y="437" width="0.3" height="15.0" fill="rgb(220,66,33)" rx="2" ry="2" />
<text x="686.82" y="447.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="809.6" y="453" width="0.1" height="15.0" fill="rgb(242,69,31)" rx="2" ry="2" />
<text x="812.59" y="463.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (21 samples, 0.10%)</title><rect x="318.9" y="565" width="1.3" height="15.0" fill="rgb(250,224,26)" rx="2" ry="2" />
<text x="321.92" y="575.5" ></text>
</g>
<g >
<title>path_put (2 samples, 0.01%)</title><rect x="935.9" y="645" width="0.1" height="15.0" fill="rgb(207,174,23)" rx="2" ry="2" />
<text x="938.88" y="655.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (41 samples, 0.20%)</title><rect x="564.7" y="501" width="2.4" height="15.0" fill="rgb(215,17,39)" rx="2" ry="2" />
<text x="567.73" y="511.5" ></text>
</g>
<g >
<title>__IO_vsprintf (3 samples, 0.01%)</title><rect x="637.2" y="453" width="0.2" height="15.0" fill="rgb(244,128,25)" rx="2" ry="2" />
<text x="640.22" y="463.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (4 samples, 0.02%)</title><rect x="337.7" y="501" width="0.2" height="15.0" fill="rgb(236,84,52)" rx="2" ry="2" />
<text x="340.68" y="511.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="997.6" y="661" width="0.2" height="15.0" fill="rgb(221,187,52)" rx="2" ry="2" />
<text x="1000.64" y="671.5" ></text>
</g>
<g >
<title>stream_process (191 samples, 0.95%)</title><rect x="388.7" y="629" width="11.3" height="15.0" fill="rgb(226,2,37)" rx="2" ry="2" />
<text x="391.70" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="786.9" y="501" width="0.3" height="15.0" fill="rgb(252,130,37)" rx="2" ry="2" />
<text x="789.93" y="511.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (77 samples, 0.38%)</title><rect x="290.5" y="757" width="4.5" height="15.0" fill="rgb(215,100,27)" rx="2" ry="2" />
<text x="293.49" y="767.5" ></text>
</g>
<g >
<title>scaling_bloom_add (395 samples, 1.97%)</title><rect x="701.2" y="533" width="23.3" height="15.0" fill="rgb(250,12,42)" rx="2" ry="2" />
<text x="704.16" y="543.5" >s..</text>
</g>
<g >
<title>[librulescan.so.2.2] (11 samples, 0.05%)</title><rect x="43.6" y="741" width="0.7" height="15.0" fill="rgb(230,45,28)" rx="2" ry="2" />
<text x="46.62" y="751.5" ></text>
</g>
<g >
<title>set_transport_addr (19 samples, 0.09%)</title><rect x="724.5" y="581" width="1.1" height="15.0" fill="rgb(234,75,12)" rx="2" ry="2" />
<text x="727.47" y="591.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="980.5" y="501" width="0.1" height="15.0" fill="rgb(222,65,20)" rx="2" ry="2" />
<text x="983.47" y="511.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (8 samples, 0.04%)</title><rect x="339.0" y="517" width="0.4" height="15.0" fill="rgb(246,64,3)" rx="2" ry="2" />
<text x="341.98" y="527.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="986.0" y="581" width="0.1" height="15.0" fill="rgb(226,158,36)" rx="2" ry="2" />
<text x="988.96" y="591.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (6 samples, 0.03%)</title><rect x="987.6" y="597" width="0.3" height="15.0" fill="rgb(209,202,9)" rx="2" ry="2" />
<text x="990.55" y="607.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="322.8" y="373" width="0.1" height="15.0" fill="rgb(236,136,45)" rx="2" ry="2" />
<text x="325.76" y="383.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1000.2" y="613" width="0.2" height="15.0" fill="rgb(253,105,11)" rx="2" ry="2" />
<text x="1003.23" y="623.5" ></text>
</g>
<g >
<title>stream_process_udp (6 samples, 0.03%)</title><rect x="990.0" y="629" width="0.3" height="15.0" fill="rgb(248,58,4)" rx="2" ry="2" />
<text x="992.97" y="639.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (3 samples, 0.01%)</title><rect x="596.3" y="437" width="0.2" height="15.0" fill="rgb(230,200,36)" rx="2" ry="2" />
<text x="599.28" y="447.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="421" width="0.3" height="15.0" fill="rgb(207,189,0)" rx="2" ry="2" />
<text x="990.55" y="431.5" ></text>
</g>
<g >
<title>ASN1_STRING_type_new (6 samples, 0.03%)</title><rect x="331.9" y="229" width="0.4" height="15.0" fill="rgb(237,190,40)" rx="2" ry="2" />
<text x="334.90" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="330.8" y="37" width="0.1" height="15.0" fill="rgb(207,186,54)" rx="2" ry="2" />
<text x="333.78" y="47.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="308.0" y="645" width="0.4" height="15.0" fill="rgb(224,159,8)" rx="2" ry="2" />
<text x="311.01" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.02%)</title><rect x="276.3" y="725" width="0.2" height="15.0" fill="rgb(254,135,15)" rx="2" ry="2" />
<text x="279.27" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="792.2" y="533" width="0.2" height="15.0" fill="rgb(245,31,23)" rx="2" ry="2" />
<text x="795.24" y="543.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (2 samples, 0.01%)</title><rect x="301.9" y="405" width="0.2" height="15.0" fill="rgb(235,3,26)" rx="2" ry="2" />
<text x="304.93" y="415.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (110 samples, 0.55%)</title><rect x="586.4" y="453" width="6.5" height="15.0" fill="rgb(233,170,24)" rx="2" ry="2" />
<text x="589.43" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (89 samples, 0.44%)</title><rect x="838.3" y="533" width="5.3" height="15.0" fill="rgb(238,152,5)" rx="2" ry="2" />
<text x="841.31" y="543.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="630.2" y="501" width="0.1" height="15.0" fill="rgb(232,50,23)" rx="2" ry="2" />
<text x="633.20" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="587.8" y="277" width="0.4" height="15.0" fill="rgb(230,105,7)" rx="2" ry="2" />
<text x="590.79" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 0.15%)</title><rect x="363.9" y="453" width="1.9" height="15.0" fill="rgb(229,166,51)" rx="2" ry="2" />
<text x="366.93" y="463.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="802.9" y="389" width="0.1" height="15.0" fill="rgb(220,50,7)" rx="2" ry="2" />
<text x="805.92" y="399.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (8 samples, 0.04%)</title><rect x="56.5" y="741" width="0.5" height="15.0" fill="rgb(220,113,32)" rx="2" ry="2" />
<text x="59.48" y="751.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (5 samples, 0.02%)</title><rect x="591.2" y="341" width="0.2" height="15.0" fill="rgb(226,138,9)" rx="2" ry="2" />
<text x="594.15" y="351.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="989.8" y="533" width="0.2" height="15.0" fill="rgb(252,24,40)" rx="2" ry="2" />
<text x="992.79" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="305.0" y="485" width="2.5" height="15.0" fill="rgb(218,44,35)" rx="2" ry="2" />
<text x="308.00" y="495.5" ></text>
</g>
<g >
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="987.0" y="597" width="0.3" height="15.0" fill="rgb(225,217,34)" rx="2" ry="2" />
<text x="989.96" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="330.8" y="53" width="0.1" height="15.0" fill="rgb(216,225,2)" rx="2" ry="2" />
<text x="333.78" y="63.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="501" width="0.3" height="15.0" fill="rgb(248,71,4)" rx="2" ry="2" />
<text x="990.55" y="511.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="574.2" y="373" width="0.1" height="15.0" fill="rgb(227,20,17)" rx="2" ry="2" />
<text x="577.22" y="383.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (10 samples, 0.05%)</title><rect x="999.2" y="677" width="0.6" height="15.0" fill="rgb(248,26,37)" rx="2" ry="2" />
<text x="1002.17" y="687.5" ></text>
</g>
<g >
<title>[libqmengine.so] (16 samples, 0.08%)</title><rect x="827.0" y="469" width="0.9" height="15.0" fill="rgb(239,45,32)" rx="2" ry="2" />
<text x="829.99" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_free (6 samples, 0.03%)</title><rect x="682.0" y="517" width="0.3" height="15.0" fill="rgb(215,67,44)" rx="2" ry="2" />
<text x="684.99" y="527.5" ></text>
</g>
<g >
<title>Maat_table_runtime_plugin_get_ex_data (3 samples, 0.01%)</title><rect x="372.3" y="501" width="0.2" height="15.0" fill="rgb(212,49,17)" rx="2" ry="2" />
<text x="375.31" y="511.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="593.7" y="341" width="0.2" height="15.0" fill="rgb(235,24,23)" rx="2" ry="2" />
<text x="596.75" y="351.5" ></text>
</g>
<g >
<title>MV_Sketch_update (68 samples, 0.34%)</title><rect x="857.3" y="485" width="4.0" height="15.0" fill="rgb(210,149,16)" rx="2" ry="2" />
<text x="860.31" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1005.4" y="725" width="0.1" height="15.0" fill="rgb(215,81,40)" rx="2" ry="2" />
<text x="1008.37" y="735.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (21 samples, 0.10%)</title><rect x="982.1" y="501" width="1.3" height="15.0" fill="rgb(218,50,12)" rx="2" ry="2" />
<text x="985.13" y="511.5" ></text>
</g>
<g >
<title>plugin_call_ipentry (2 samples, 0.01%)</title><rect x="876.2" y="661" width="0.2" height="15.0" fill="rgb(235,14,7)" rx="2" ry="2" />
<text x="879.24" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="330.6" y="133" width="0.4" height="15.0" fill="rgb(230,98,33)" rx="2" ry="2" />
<text x="333.60" y="143.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (5 samples, 0.02%)</title><rect x="396.9" y="533" width="0.3" height="15.0" fill="rgb(251,201,12)" rx="2" ry="2" />
<text x="399.90" y="543.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (14 samples, 0.07%)</title><rect x="832.2" y="549" width="0.9" height="15.0" fill="rgb(220,102,9)" rx="2" ry="2" />
<text x="835.24" y="559.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="318.0" y="389" width="0.1" height="15.0" fill="rgb(208,19,48)" rx="2" ry="2" />
<text x="320.98" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (26 samples, 0.13%)</title><rect x="543.4" y="549" width="1.6" height="15.0" fill="rgb(222,142,50)" rx="2" ry="2" />
<text x="546.43" y="559.5" ></text>
</g>
<g >
<title>set_session_attributes (3 samples, 0.01%)</title><rect x="308.2" y="533" width="0.2" height="15.0" fill="rgb(254,109,47)" rx="2" ry="2" />
<text x="311.19" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (12 samples, 0.06%)</title><rect x="560.4" y="357" width="0.7" height="15.0" fill="rgb(253,69,20)" rx="2" ry="2" />
<text x="563.36" y="367.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="984.7" y="693" width="0.1" height="15.0" fill="rgb(238,221,21)" rx="2" ry="2" />
<text x="987.66" y="703.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.03%)</title><rect x="796.0" y="517" width="0.3" height="15.0" fill="rgb(217,86,33)" rx="2" ry="2" />
<text x="798.96" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="573.8" y="373" width="0.1" height="15.0" fill="rgb(207,35,24)" rx="2" ry="2" />
<text x="576.75" y="383.5" ></text>
</g>
<g >
<title>[libqmengine.so] (49 samples, 0.24%)</title><rect x="305.0" y="517" width="2.9" height="15.0" fill="rgb(243,193,22)" rx="2" ry="2" />
<text x="308.00" y="527.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="569.9" y="261" width="0.3" height="15.0" fill="rgb(232,47,1)" rx="2" ry="2" />
<text x="572.92" y="271.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="927.4" y="613" width="0.3" height="15.0" fill="rgb(207,93,22)" rx="2" ry="2" />
<text x="930.38" y="623.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="400.7" y="581" width="0.2" height="15.0" fill="rgb(251,124,46)" rx="2" ry="2" />
<text x="403.74" y="591.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="304.4" y="581" width="0.1" height="15.0" fill="rgb(228,32,25)" rx="2" ry="2" />
<text x="307.35" y="591.5" ></text>
</g>
<g >
<title>__snprintf (11 samples, 0.05%)</title><rect x="566.5" y="469" width="0.6" height="15.0" fill="rgb(212,62,15)" rx="2" ry="2" />
<text x="569.49" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (92 samples, 0.46%)</title><rect x="242.1" y="725" width="5.4" height="15.0" fill="rgb(237,132,26)" rx="2" ry="2" />
<text x="245.06" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (20 samples, 0.10%)</title><rect x="274.1" y="741" width="1.2" height="15.0" fill="rgb(228,134,28)" rx="2" ry="2" />
<text x="277.09" y="751.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (27 samples, 0.13%)</title><rect x="300.5" y="517" width="1.6" height="15.0" fill="rgb(226,28,0)" rx="2" ry="2" />
<text x="303.46" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="1015.8" y="757" width="0.1" height="15.0" fill="rgb(233,122,11)" rx="2" ry="2" />
<text x="1018.81" y="767.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="278.9" y="725" width="0.3" height="15.0" fill="rgb(238,214,54)" rx="2" ry="2" />
<text x="281.93" y="735.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (35 samples, 0.17%)</title><rect x="297.9" y="469" width="2.0" height="15.0" fill="rgb(237,181,54)" rx="2" ry="2" />
<text x="300.86" y="479.5" ></text>
</g>
<g >
<title>mtx_unlock (2 samples, 0.01%)</title><rect x="493.6" y="469" width="0.1" height="15.0" fill="rgb(207,41,26)" rx="2" ry="2" />
<text x="496.59" y="479.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (197 samples, 0.98%)</title><rect x="991.4" y="773" width="11.7" height="15.0" fill="rgb(241,58,33)" rx="2" ry="2" />
<text x="994.45" y="783.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="977.1" y="565" width="0.3" height="15.0" fill="rgb(211,82,53)" rx="2" ry="2" />
<text x="980.11" y="575.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (32 samples, 0.16%)</title><rect x="369.5" y="501" width="1.9" height="15.0" fill="rgb(222,157,13)" rx="2" ry="2" />
<text x="372.47" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1010.4" y="405" width="0.5" height="15.0" fill="rgb(238,88,44)" rx="2" ry="2" />
<text x="1013.44" y="415.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="989.2" y="453" width="0.1" height="15.0" fill="rgb(209,118,39)" rx="2" ry="2" />
<text x="992.20" y="463.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (107 samples, 0.53%)</title><rect x="598.8" y="517" width="6.3" height="15.0" fill="rgb(224,4,51)" rx="2" ry="2" />
<text x="601.76" y="527.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (3 samples, 0.01%)</title><rect x="574.5" y="341" width="0.2" height="15.0" fill="rgb(207,26,39)" rx="2" ry="2" />
<text x="577.52" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1010.4" y="293" width="0.5" height="15.0" fill="rgb(233,13,48)" rx="2" ry="2" />
<text x="1013.44" y="303.5" ></text>
</g>
<g >
<title>std::vector&lt;char, std::allocator&lt;char&gt; &gt;::_M_range_insert&lt;unsigned char*&gt; (3 samples, 0.01%)</title><rect x="573.3" y="341" width="0.2" height="15.0" fill="rgb(232,116,14)" rx="2" ry="2" />
<text x="576.28" y="351.5" ></text>
</g>
<g >
<title>tsg_send_log (11 samples, 0.05%)</title><rect x="400.9" y="661" width="0.6" height="15.0" fill="rgb(230,70,15)" rx="2" ry="2" />
<text x="403.86" y="671.5" ></text>
</g>
<g >
<title>pthread_mutex_init (3 samples, 0.01%)</title><rect x="638.5" y="501" width="0.1" height="15.0" fill="rgb(218,124,33)" rx="2" ry="2" />
<text x="641.46" y="511.5" ></text>
</g>
<g >
<title>TLD_append (7 samples, 0.03%)</title><rect x="594.2" y="357" width="0.4" height="15.0" fill="rgb(241,60,9)" rx="2" ry="2" />
<text x="597.16" y="367.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (273 samples, 1.36%)</title><rect x="579.9" y="485" width="16.1" height="15.0" fill="rgb(225,87,15)" rx="2" ry="2" />
<text x="582.89" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="565.7" y="469" width="0.4" height="15.0" fill="rgb(223,10,17)" rx="2" ry="2" />
<text x="568.73" y="479.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (8 samples, 0.04%)</title><rect x="399.0" y="517" width="0.4" height="15.0" fill="rgb(227,192,53)" rx="2" ry="2" />
<text x="401.97" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="648.8" y="501" width="0.3" height="15.0" fill="rgb(227,145,30)" rx="2" ry="2" />
<text x="651.84" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.5" y="501" width="0.1" height="15.0" fill="rgb(209,3,2)" rx="2" ry="2" />
<text x="497.47" y="511.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="989.2" y="501" width="0.1" height="15.0" fill="rgb(251,130,4)" rx="2" ry="2" />
<text x="992.20" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="388.3" y="501" width="0.3" height="15.0" fill="rgb(205,130,10)" rx="2" ry="2" />
<text x="391.29" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (146 samples, 0.73%)</title><rect x="375.3" y="485" width="8.6" height="15.0" fill="rgb(206,55,34)" rx="2" ry="2" />
<text x="378.31" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="420.0" y="629" width="0.2" height="15.0" fill="rgb(254,189,41)" rx="2" ry="2" />
<text x="422.97" y="639.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="1013.7" y="501" width="0.1" height="15.0" fill="rgb(214,34,54)" rx="2" ry="2" />
<text x="1016.68" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="799.1" y="501" width="0.2" height="15.0" fill="rgb(249,46,23)" rx="2" ry="2" />
<text x="802.14" y="511.5" ></text>
</g>
<g >
<title>tsg_send_log (57 samples, 0.28%)</title><rect x="993.6" y="661" width="3.3" height="15.0" fill="rgb(207,117,35)" rx="2" ry="2" />
<text x="996.57" y="671.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (6 samples, 0.03%)</title><rect x="809.4" y="517" width="0.4" height="15.0" fill="rgb(243,92,2)" rx="2" ry="2" />
<text x="812.41" y="527.5" ></text>
</g>
<g >
<title>malloc_consolidate (7 samples, 0.03%)</title><rect x="802.4" y="325" width="0.5" height="15.0" fill="rgb(221,1,7)" rx="2" ry="2" />
<text x="805.45" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (24 samples, 0.12%)</title><rect x="591.2" y="405" width="1.4" height="15.0" fill="rgb(220,101,32)" rx="2" ry="2" />
<text x="594.15" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="979.9" y="597" width="0.8" height="15.0" fill="rgb(209,142,53)" rx="2" ry="2" />
<text x="982.94" y="607.5" ></text>
</g>
<g >
<title>del_stream_by_time (18 samples, 0.09%)</title><rect x="540.8" y="565" width="1.1" height="15.0" fill="rgb(249,222,21)" rx="2" ry="2" />
<text x="543.83" y="575.5" ></text>
</g>
<g >
<title>OPENSSL_init_library (2 samples, 0.01%)</title><rect x="1006.4" y="741" width="0.1" height="15.0" fill="rgb(242,54,44)" rx="2" ry="2" />
<text x="1009.37" y="751.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="1016.6" y="565" width="0.1" height="15.0" fill="rgb(241,103,8)" rx="2" ry="2" />
<text x="1019.57" y="575.5" ></text>
</g>
<g >
<title>sock_recvmsg (2 samples, 0.01%)</title><rect x="948.0" y="597" width="0.1" height="15.0" fill="rgb(206,34,45)" rx="2" ry="2" />
<text x="951.03" y="607.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (2 samples, 0.01%)</title><rect x="792.4" y="501" width="0.1" height="15.0" fill="rgb(218,59,2)" rx="2" ry="2" />
<text x="795.36" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_child_id (14 samples, 0.07%)</title><rect x="199.9" y="757" width="0.9" height="15.0" fill="rgb(233,41,27)" rx="2" ry="2" />
<text x="202.94" y="767.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="684.6" y="501" width="0.2" height="15.0" fill="rgb(253,117,27)" rx="2" ry="2" />
<text x="687.59" y="511.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="556.9" y="437" width="0.2" height="15.0" fill="rgb(233,49,43)" rx="2" ry="2" />
<text x="559.94" y="447.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="402.2" y="549" width="0.2" height="15.0" fill="rgb(208,104,49)" rx="2" ry="2" />
<text x="405.21" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (139 samples, 0.69%)</title><rect x="366.2" y="565" width="8.2" height="15.0" fill="rgb(249,123,1)" rx="2" ry="2" />
<text x="369.17" y="575.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (124 samples, 0.62%)</title><rect x="311.1" y="421" width="7.3" height="15.0" fill="rgb(225,180,47)" rx="2" ry="2" />
<text x="314.08" y="431.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="686.2" y="453" width="0.2" height="15.0" fill="rgb(248,118,2)" rx="2" ry="2" />
<text x="689.24" y="463.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="800.1" y="389" width="0.3" height="15.0" fill="rgb(239,52,7)" rx="2" ry="2" />
<text x="803.09" y="399.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (5 samples, 0.02%)</title><rect x="638.1" y="485" width="0.3" height="15.0" fill="rgb(226,65,10)" rx="2" ry="2" />
<text x="641.11" y="495.5" ></text>
</g>
<g >
<title>tsg_get_ip_location (7 samples, 0.03%)</title><rect x="842.3" y="501" width="0.4" height="15.0" fill="rgb(253,158,43)" rx="2" ry="2" />
<text x="845.26" y="511.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (3 samples, 0.01%)</title><rect x="420.4" y="677" width="0.2" height="15.0" fill="rgb(234,81,41)" rx="2" ry="2" />
<text x="423.44" y="687.5" ></text>
</g>
<g >
<title>stream_process_udp (83 samples, 0.41%)</title><rect x="798.6" y="533" width="4.9" height="15.0" fill="rgb(245,21,33)" rx="2" ry="2" />
<text x="801.61" y="543.5" ></text>
</g>
<g >
<title>http_callPluginField (31 samples, 0.15%)</title><rect x="327.2" y="501" width="1.8" height="15.0" fill="rgb(246,99,1)" rx="2" ry="2" />
<text x="330.18" y="511.5" ></text>
</g>
<g >
<title>eth_entry (105 samples, 0.52%)</title><rect x="1009.6" y="725" width="6.2" height="15.0" fill="rgb(210,197,31)" rx="2" ry="2" />
<text x="1012.61" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (43 samples, 0.21%)</title><rect x="105.1" y="741" width="2.6" height="15.0" fill="rgb(233,164,24)" rx="2" ry="2" />
<text x="108.15" y="751.5" ></text>
</g>
<g >
<title>CZipFormat::AddDocData (3 samples, 0.01%)</title><rect x="570.7" y="373" width="0.2" height="15.0" fill="rgb(211,48,35)" rx="2" ry="2" />
<text x="573.74" y="383.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="999.0" y="629" width="0.1" height="15.0" fill="rgb(236,24,46)" rx="2" ry="2" />
<text x="1002.00" y="639.5" ></text>
</g>
<g >
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="987.0" y="565" width="0.3" height="15.0" fill="rgb(232,26,2)" rx="2" ry="2" />
<text x="989.96" y="575.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="683.3" y="485" width="0.2" height="15.0" fill="rgb(219,116,42)" rx="2" ry="2" />
<text x="686.29" y="495.5" ></text>
</g>
<g >
<title>plugin_process_close (7 samples, 0.03%)</title><rect x="596.0" y="469" width="0.5" height="15.0" fill="rgb(241,123,42)" rx="2" ry="2" />
<text x="599.05" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (10 samples, 0.05%)</title><rect x="331.7" y="277" width="0.6" height="15.0" fill="rgb(210,125,45)" rx="2" ry="2" />
<text x="334.66" y="287.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="420.4" y="565" width="0.2" height="15.0" fill="rgb(227,165,8)" rx="2" ry="2" />
<text x="423.44" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (57 samples, 0.28%)</title><rect x="490.9" y="533" width="3.4" height="15.0" fill="rgb(244,115,26)" rx="2" ry="2" />
<text x="493.93" y="543.5" ></text>
</g>
<g >
<title>pop3_entry_fun (4 samples, 0.02%)</title><rect x="575.8" y="501" width="0.3" height="15.0" fill="rgb(246,159,26)" rx="2" ry="2" />
<text x="578.81" y="511.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (5 samples, 0.02%)</title><rect x="400.4" y="645" width="0.3" height="15.0" fill="rgb(251,43,41)" rx="2" ry="2" />
<text x="403.44" y="655.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (26 samples, 0.13%)</title><rect x="977.8" y="581" width="1.6" height="15.0" fill="rgb(252,50,45)" rx="2" ry="2" />
<text x="980.82" y="591.5" ></text>
</g>
<g >
<title>__sprintf (13 samples, 0.06%)</title><rect x="1012.9" y="485" width="0.8" height="15.0" fill="rgb(214,216,12)" rx="2" ry="2" />
<text x="1015.92" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="979.4" y="709" width="0.2" height="15.0" fill="rgb(215,53,46)" rx="2" ry="2" />
<text x="982.35" y="719.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (243 samples, 1.21%)</title><rect x="405.6" y="741" width="14.4" height="15.0" fill="rgb(229,10,9)" rx="2" ry="2" />
<text x="408.63" y="751.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (8 samples, 0.04%)</title><rect x="390.3" y="533" width="0.5" height="15.0" fill="rgb(224,210,18)" rx="2" ry="2" />
<text x="393.30" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="420.0" y="693" width="0.2" height="15.0" fill="rgb(238,94,46)" rx="2" ry="2" />
<text x="422.97" y="703.5" ></text>
</g>
<g >
<title>tcp_free_stream (3 samples, 0.01%)</title><rect x="989.8" y="645" width="0.2" height="15.0" fill="rgb(211,71,28)" rx="2" ry="2" />
<text x="992.79" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="322.3" y="325" width="0.2" height="15.0" fill="rgb(221,48,8)" rx="2" ry="2" />
<text x="325.34" y="335.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (3 samples, 0.01%)</title><rect x="557.9" y="453" width="0.2" height="15.0" fill="rgb(211,154,6)" rx="2" ry="2" />
<text x="560.94" y="463.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (14 samples, 0.07%)</title><rect x="397.7" y="485" width="0.9" height="15.0" fill="rgb(221,29,21)" rx="2" ry="2" />
<text x="400.73" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (24 samples, 0.12%)</title><rect x="320.7" y="357" width="1.5" height="15.0" fill="rgb(223,41,45)" rx="2" ry="2" />
<text x="323.75" y="367.5" ></text>
</g>
<g >
<title>_IO_no_init (4 samples, 0.02%)</title><rect x="1009.8" y="437" width="0.2" height="15.0" fill="rgb(240,87,17)" rx="2" ry="2" />
<text x="1012.79" y="447.5" ></text>
</g>
<g >
<title>ipv4_entry (105 samples, 0.52%)</title><rect x="1009.6" y="709" width="6.2" height="15.0" fill="rgb(216,137,32)" rx="2" ry="2" />
<text x="1012.61" y="719.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="341" width="0.1" height="15.0" fill="rgb(210,5,32)" rx="2" ry="2" />
<text x="337.38" y="351.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="989.8" y="613" width="0.2" height="15.0" fill="rgb(251,116,44)" rx="2" ry="2" />
<text x="992.79" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (13 samples, 0.06%)</title><rect x="470.5" y="613" width="0.7" height="15.0" fill="rgb(220,142,4)" rx="2" ry="2" />
<text x="473.46" y="623.5" ></text>
</g>
<g >
<title>[libqmengine.so] (31 samples, 0.15%)</title><rect x="1013.9" y="501" width="1.8" height="15.0" fill="rgb(235,197,51)" rx="2" ry="2" />
<text x="1016.86" y="511.5" ></text>
</g>
<g >
<title>CSuccinctHash::find@plt (2 samples, 0.01%)</title><rect x="290.4" y="741" width="0.1" height="15.0" fill="rgb(223,202,10)" rx="2" ry="2" />
<text x="293.37" y="751.5" ></text>
</g>
<g >
<title>APP_L7_PROTOCOL_TCP_ENTRY (2 samples, 0.01%)</title><rect x="550.3" y="517" width="0.1" height="15.0" fill="rgb(250,219,33)" rx="2" ry="2" />
<text x="553.27" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (35 samples, 0.17%)</title><rect x="297.9" y="421" width="2.0" height="15.0" fill="rgb(208,114,24)" rx="2" ry="2" />
<text x="300.86" y="431.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="420.4" y="501" width="0.2" height="15.0" fill="rgb(213,224,18)" rx="2" ry="2" />
<text x="423.44" y="511.5" ></text>
</g>
<g >
<title>__sprintf (5 samples, 0.02%)</title><rect x="637.6" y="485" width="0.3" height="15.0" fill="rgb(216,87,3)" rx="2" ry="2" />
<text x="640.58" y="495.5" ></text>
</g>
<g >
<title>strncmp_one_word_mesa (2 samples, 0.01%)</title><rect x="576.2" y="469" width="0.1" height="15.0" fill="rgb(253,98,46)" rx="2" ry="2" />
<text x="579.23" y="479.5" ></text>
</g>
<g >
<title>eth_entry (1,560 samples, 7.80%)</title><rect x="308.0" y="757" width="92.0" height="15.0" fill="rgb(249,108,45)" rx="2" ry="2" />
<text x="311.01" y="767.5" >eth_entry</text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="609.7" y="485" width="0.2" height="15.0" fill="rgb(205,12,20)" rx="2" ry="2" />
<text x="612.73" y="495.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="983.2" y="485" width="0.1" height="15.0" fill="rgb(230,14,26)" rx="2" ry="2" />
<text x="986.19" y="495.5" ></text>
</g>
<g >
<title>bool_matcher_match (15 samples, 0.07%)</title><rect x="278.3" y="741" width="0.9" height="15.0" fill="rgb(217,198,22)" rx="2" ry="2" />
<text x="281.28" y="751.5" ></text>
</g>
<g >
<title>Maat_clean_status (6 samples, 0.03%)</title><rect x="800.5" y="469" width="0.4" height="15.0" fill="rgb(236,189,44)" rx="2" ry="2" />
<text x="803.50" y="479.5" ></text>
</g>
<g >
<title>app_proto_worke_process (5 samples, 0.02%)</title><rect x="983.5" y="597" width="0.3" height="15.0" fill="rgb(252,16,43)" rx="2" ry="2" />
<text x="986.54" y="607.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="330.8" y="69" width="0.1" height="15.0" fill="rgb(224,145,45)" rx="2" ry="2" />
<text x="333.78" y="79.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="420.9" y="517" width="0.1" height="15.0" fill="rgb(226,43,16)" rx="2" ry="2" />
<text x="423.85" y="527.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="337.9" y="437" width="0.1" height="15.0" fill="rgb(245,41,12)" rx="2" ry="2" />
<text x="340.92" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="108.6" y="725" width="0.1" height="15.0" fill="rgb(249,62,29)" rx="2" ry="2" />
<text x="111.63" y="735.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="989.4" y="581" width="0.4" height="15.0" fill="rgb(217,114,4)" rx="2" ry="2" />
<text x="992.38" y="591.5" ></text>
</g>
<g >
<title>fw_ssl_entry (5 samples, 0.02%)</title><rect x="987.0" y="533" width="0.3" height="15.0" fill="rgb(208,68,23)" rx="2" ry="2" />
<text x="989.96" y="543.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (11 samples, 0.05%)</title><rect x="368.6" y="517" width="0.6" height="15.0" fill="rgb(223,5,4)" rx="2" ry="2" />
<text x="371.59" y="527.5" ></text>
</g>
<g >
<title>counting_bloom_check (154 samples, 0.77%)</title><rect x="691.7" y="549" width="9.1" height="15.0" fill="rgb(228,40,22)" rx="2" ry="2" />
<text x="694.73" y="559.5" ></text>
</g>
<g >
<title>[sapp] (1,118 samples, 5.59%)</title><rect x="308.4" y="629" width="66.0" height="15.0" fill="rgb(226,216,38)" rx="2" ry="2" />
<text x="311.42" y="639.5" >[sapp]</text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="405" width="0.3" height="15.0" fill="rgb(240,2,29)" rx="2" ry="2" />
<text x="990.55" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="333.5" y="197" width="0.2" height="15.0" fill="rgb(238,210,18)" rx="2" ry="2" />
<text x="336.49" y="207.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="420.2" y="581" width="0.2" height="15.0" fill="rgb(234,214,28)" rx="2" ry="2" />
<text x="423.20" y="591.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="305.0" y="437" width="2.5" height="15.0" fill="rgb(235,208,36)" rx="2" ry="2" />
<text x="308.00" y="447.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="857.1" y="485" width="0.2" height="15.0" fill="rgb(227,219,21)" rx="2" ry="2" />
<text x="860.07" y="495.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1017.6" y="469" width="0.2" height="15.0" fill="rgb(254,185,33)" rx="2" ry="2" />
<text x="1020.64" y="479.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (58 samples, 0.29%)</title><rect x="687.8" y="549" width="3.4" height="15.0" fill="rgb(242,127,6)" rx="2" ry="2" />
<text x="690.77" y="559.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (124 samples, 0.62%)</title><rect x="568.0" y="517" width="7.3" height="15.0" fill="rgb(241,66,17)" rx="2" ry="2" />
<text x="571.03" y="527.5" ></text>
</g>
<g >
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="997.6" y="693" width="0.2" height="15.0" fill="rgb(206,3,9)" rx="2" ry="2" />
<text x="1000.58" y="703.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="437" width="0.1" height="15.0" fill="rgb(222,228,17)" rx="2" ry="2" />
<text x="404.56" y="447.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="420.2" y="533" width="0.1" height="15.0" fill="rgb(241,28,28)" rx="2" ry="2" />
<text x="423.20" y="543.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (144 samples, 0.72%)</title><rect x="748.1" y="485" width="8.5" height="15.0" fill="rgb(210,215,2)" rx="2" ry="2" />
<text x="751.06" y="495.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="491.1" y="517" width="0.2" height="15.0" fill="rgb(252,200,12)" rx="2" ry="2" />
<text x="494.11" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="800.2" y="373" width="0.2" height="15.0" fill="rgb(206,136,24)" rx="2" ry="2" />
<text x="803.21" y="383.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="683.5" y="421" width="0.1" height="15.0" fill="rgb(224,19,2)" rx="2" ry="2" />
<text x="686.47" y="431.5" ></text>
</g>
<g >
<title>CSuccinctHash::find (54 samples, 0.27%)</title><rect x="287.2" y="741" width="3.2" height="15.0" fill="rgb(227,2,1)" rx="2" ry="2" />
<text x="290.19" y="751.5" ></text>
</g>
<g >
<title>project_requirement_destroy (49 samples, 0.24%)</title><rect x="680.1" y="533" width="2.9" height="15.0" fill="rgb(240,2,53)" rx="2" ry="2" />
<text x="683.11" y="543.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (16 samples, 0.08%)</title><rect x="536.9" y="517" width="0.9" height="15.0" fill="rgb(237,121,40)" rx="2" ry="2" />
<text x="539.88" y="527.5" ></text>
</g>
<g >
<title>_L_lock_883 (2 samples, 0.01%)</title><rect x="381.9" y="357" width="0.1" height="15.0" fill="rgb(246,225,8)" rx="2" ry="2" />
<text x="384.86" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="280.2" y="709" width="0.2" height="15.0" fill="rgb(214,218,47)" rx="2" ry="2" />
<text x="283.17" y="719.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (6 samples, 0.03%)</title><rect x="1010.1" y="485" width="0.3" height="15.0" fill="rgb(237,40,15)" rx="2" ry="2" />
<text x="1013.09" y="495.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="869.0" y="597" width="0.4" height="15.0" fill="rgb(220,46,8)" rx="2" ry="2" />
<text x="871.99" y="607.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1000.2" y="629" width="0.2" height="15.0" fill="rgb(251,97,45)" rx="2" ry="2" />
<text x="1003.23" y="639.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="977.4" y="581" width="0.1" height="15.0" fill="rgb(216,35,13)" rx="2" ry="2" />
<text x="980.41" y="591.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="998.2" y="629" width="0.1" height="15.0" fill="rgb(207,226,43)" rx="2" ry="2" />
<text x="1001.17" y="639.5" ></text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="598.5" y="453" width="0.1" height="15.0" fill="rgb(218,69,53)" rx="2" ry="2" />
<text x="601.53" y="463.5" ></text>
</g>
<g >
<title>cpuidle_poll_time (2 samples, 0.01%)</title><rect x="1183.5" y="661" width="0.1" height="15.0" fill="rgb(228,3,8)" rx="2" ry="2" />
<text x="1186.45" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="469.7" y="645" width="0.3" height="15.0" fill="rgb(228,14,25)" rx="2" ry="2" />
<text x="472.70" y="655.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="373" width="0.1" height="15.0" fill="rgb(225,177,2)" rx="2" ry="2" />
<text x="404.56" y="383.5" ></text>
</g>
<g >
<title>_itoa_word (2 samples, 0.01%)</title><rect x="1009.4" y="725" width="0.1" height="15.0" fill="rgb(205,6,11)" rx="2" ry="2" />
<text x="1012.38" y="735.5" ></text>
</g>
<g >
<title>stream_make_hash (14 samples, 0.07%)</title><rect x="487.6" y="645" width="0.9" height="15.0" fill="rgb(227,9,23)" rx="2" ry="2" />
<text x="490.63" y="655.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (63 samples, 0.31%)</title><rect x="384.5" y="629" width="3.7" height="15.0" fill="rgb(236,54,4)" rx="2" ry="2" />
<text x="387.46" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="1009.3" y="725" width="0.1" height="15.0" fill="rgb(216,185,43)" rx="2" ry="2" />
<text x="1012.26" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="493.9" y="469" width="0.3" height="15.0" fill="rgb(245,117,20)" rx="2" ry="2" />
<text x="496.88" y="479.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (44 samples, 0.22%)</title><rect x="297.9" y="501" width="2.6" height="15.0" fill="rgb(207,182,37)" rx="2" ry="2" />
<text x="300.86" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (31 samples, 0.15%)</title><rect x="820.5" y="469" width="1.8" height="15.0" fill="rgb(208,183,54)" rx="2" ry="2" />
<text x="823.50" y="479.5" ></text>
</g>
<g >
<title>__GI_bsearch (2 samples, 0.01%)</title><rect x="276.8" y="741" width="0.1" height="15.0" fill="rgb(222,82,10)" rx="2" ry="2" />
<text x="279.80" y="751.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (52 samples, 0.26%)</title><rect x="823.9" y="469" width="3.1" height="15.0" fill="rgb(241,140,11)" rx="2" ry="2" />
<text x="826.92" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (6 samples, 0.03%)</title><rect x="381.5" y="453" width="0.4" height="15.0" fill="rgb(241,24,45)" rx="2" ry="2" />
<text x="384.51" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="1009.6" y="485" width="0.2" height="15.0" fill="rgb(207,160,29)" rx="2" ry="2" />
<text x="1012.61" y="495.5" ></text>
</g>
<g >
<title>ipv4_entry (83 samples, 0.41%)</title><rect x="979.6" y="709" width="4.9" height="15.0" fill="rgb(207,62,14)" rx="2" ry="2" />
<text x="982.65" y="719.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="997.8" y="677" width="0.1" height="15.0" fill="rgb(209,186,47)" rx="2" ry="2" />
<text x="1000.82" y="687.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (7 samples, 0.03%)</title><rect x="420.2" y="709" width="0.4" height="15.0" fill="rgb(251,42,22)" rx="2" ry="2" />
<text x="423.20" y="719.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (14 samples, 0.07%)</title><rect x="370.0" y="453" width="0.8" height="15.0" fill="rgb(212,228,44)" rx="2" ry="2" />
<text x="373.00" y="463.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1000.2" y="677" width="0.2" height="15.0" fill="rgb(218,178,3)" rx="2" ry="2" />
<text x="1003.23" y="687.5" ></text>
</g>
<g >
<title>plugin_call_appentry (102 samples, 0.51%)</title><rect x="991.5" y="725" width="6.0" height="15.0" fill="rgb(235,157,24)" rx="2" ry="2" />
<text x="994.50" y="735.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="574.5" y="325" width="0.2" height="15.0" fill="rgb(207,150,15)" rx="2" ry="2" />
<text x="577.52" y="335.5" ></text>
</g>
<g >
<title>TLD_create (2 samples, 0.01%)</title><rect x="776.7" y="517" width="0.1" height="15.0" fill="rgb(213,89,22)" rx="2" ry="2" />
<text x="779.67" y="527.5" ></text>
</g>
<g >
<title>stream_process (25 samples, 0.12%)</title><rect x="400.0" y="741" width="1.5" height="15.0" fill="rgb(218,116,47)" rx="2" ry="2" />
<text x="403.03" y="751.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (3 samples, 0.01%)</title><rect x="986.0" y="613" width="0.1" height="15.0" fill="rgb(238,132,4)" rx="2" ry="2" />
<text x="988.96" y="623.5" ></text>
</g>
<g >
<title>magic_buffer (2 samples, 0.01%)</title><rect x="986.0" y="485" width="0.1" height="15.0" fill="rgb(225,165,22)" rx="2" ry="2" />
<text x="988.96" y="495.5" ></text>
</g>
<g >
<title>sapp_usleep (130 samples, 0.65%)</title><rect x="929.0" y="741" width="7.6" height="15.0" fill="rgb(228,19,30)" rx="2" ry="2" />
<text x="931.98" y="751.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (16 samples, 0.08%)</title><rect x="300.5" y="453" width="0.9" height="15.0" fill="rgb(231,209,25)" rx="2" ry="2" />
<text x="303.46" y="463.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (3 samples, 0.01%)</title><rect x="536.1" y="565" width="0.2" height="15.0" fill="rgb(247,19,22)" rx="2" ry="2" />
<text x="539.12" y="575.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (48 samples, 0.24%)</title><rect x="973.2" y="725" width="2.8" height="15.0" fill="rgb(240,161,29)" rx="2" ry="2" />
<text x="976.16" y="735.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (128 samples, 0.64%)</title><rect x="929.0" y="725" width="7.5" height="15.0" fill="rgb(215,85,35)" rx="2" ry="2" />
<text x="931.98" y="735.5" ></text>
</g>
<g >
<title>bitmap_check (19 samples, 0.09%)</title><rect x="811.1" y="549" width="1.1" height="15.0" fill="rgb(205,136,43)" rx="2" ry="2" />
<text x="814.06" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (25 samples, 0.12%)</title><rect x="492.0" y="453" width="1.5" height="15.0" fill="rgb(208,32,45)" rx="2" ry="2" />
<text x="494.99" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (162 samples, 0.81%)</title><rect x="374.4" y="581" width="9.5" height="15.0" fill="rgb(216,52,44)" rx="2" ry="2" />
<text x="377.37" y="591.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="383.9" y="565" width="0.6" height="15.0" fill="rgb(251,80,35)" rx="2" ry="2" />
<text x="386.93" y="575.5" ></text>
</g>
<g >
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="317.9" y="373" width="0.1" height="15.0" fill="rgb(216,64,33)" rx="2" ry="2" />
<text x="320.86" y="383.5" ></text>
</g>
<g >
<title>qmdpi_flow_destroy (2 samples, 0.01%)</title><rect x="809.4" y="469" width="0.1" height="15.0" fill="rgb(208,55,0)" rx="2" ry="2" />
<text x="812.41" y="479.5" ></text>
</g>
<g >
<title>fw_ssl_entry (15 samples, 0.07%)</title><rect x="334.8" y="405" width="0.9" height="15.0" fill="rgb(230,59,42)" rx="2" ry="2" />
<text x="337.79" y="415.5" ></text>
</g>
<g >
<title>tsg_send_log (40 samples, 0.20%)</title><rect x="385.8" y="549" width="2.4" height="15.0" fill="rgb(216,225,14)" rx="2" ry="2" />
<text x="388.81" y="559.5" ></text>
</g>
<g >
<title>CAPTURE_TCP_PACKET_ENTRY (331 samples, 1.65%)</title><rect x="739.2" y="533" width="19.5" height="15.0" fill="rgb(251,82,40)" rx="2" ry="2" />
<text x="742.21" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="303.5" y="485" width="0.6" height="15.0" fill="rgb(243,30,19)" rx="2" ry="2" />
<text x="306.53" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="365.8" y="437" width="0.2" height="15.0" fill="rgb(220,178,13)" rx="2" ry="2" />
<text x="368.76" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="842.3" y="437" width="0.3" height="15.0" fill="rgb(212,193,12)" rx="2" ry="2" />
<text x="845.26" y="447.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="545.7" y="549" width="0.4" height="15.0" fill="rgb(248,171,16)" rx="2" ry="2" />
<text x="548.67" y="559.5" ></text>
</g>
<g >
<title>plugin_process_close (62 samples, 0.31%)</title><rect x="322.6" y="469" width="3.6" height="15.0" fill="rgb(227,218,39)" rx="2" ry="2" />
<text x="325.58" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (6 samples, 0.03%)</title><rect x="986.6" y="549" width="0.4" height="15.0" fill="rgb(239,229,17)" rx="2" ry="2" />
<text x="989.61" y="559.5" ></text>
</g>
<g >
<title>pthread_spin_lock (3 samples, 0.01%)</title><rect x="1005.8" y="789" width="0.2" height="15.0" fill="rgb(232,93,10)" rx="2" ry="2" />
<text x="1008.78" y="799.5" ></text>
</g>
<g >
<title>PROT_PROCESS (20 samples, 0.10%)</title><rect x="334.8" y="453" width="1.2" height="15.0" fill="rgb(211,75,54)" rx="2" ry="2" />
<text x="337.79" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="396.5" y="549" width="0.2" height="15.0" fill="rgb(214,184,29)" rx="2" ry="2" />
<text x="399.55" y="559.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (9 samples, 0.04%)</title><rect x="792.4" y="581" width="0.5" height="15.0" fill="rgb(211,48,37)" rx="2" ry="2" />
<text x="795.36" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="280.2" y="757" width="0.2" height="15.0" fill="rgb(243,116,48)" rx="2" ry="2" />
<text x="283.17" y="767.5" ></text>
</g>
<g >
<title>__IO_vsprintf (14 samples, 0.07%)</title><rect x="397.7" y="501" width="0.9" height="15.0" fill="rgb(245,219,43)" rx="2" ry="2" />
<text x="400.73" y="511.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (3 samples, 0.01%)</title><rect x="420.4" y="693" width="0.2" height="15.0" fill="rgb(248,118,50)" rx="2" ry="2" />
<text x="423.44" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (29 samples, 0.14%)</title><rect x="994.3" y="597" width="1.7" height="15.0" fill="rgb(221,68,36)" rx="2" ry="2" />
<text x="997.28" y="607.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (3 samples, 0.01%)</title><rect x="280.2" y="693" width="0.2" height="15.0" fill="rgb(242,29,29)" rx="2" ry="2" />
<text x="283.22" y="703.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="983.4" y="661" width="0.1" height="15.0" fill="rgb(251,16,10)" rx="2" ry="2" />
<text x="986.42" y="671.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="421.3" y="661" width="0.4" height="15.0" fill="rgb(218,128,45)" rx="2" ry="2" />
<text x="424.32" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="470.6" y="597" width="0.6" height="15.0" fill="rgb(207,87,10)" rx="2" ry="2" />
<text x="473.64" y="607.5" ></text>
</g>
<g >
<title>ASN1_template_free (19 samples, 0.09%)</title><rect x="588.7" y="357" width="1.1" height="15.0" fill="rgb(241,125,31)" rx="2" ry="2" />
<text x="591.67" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.3" y="517" width="0.2" height="15.0" fill="rgb(209,146,32)" rx="2" ry="2" />
<text x="497.29" y="527.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="573.8" y="357" width="0.1" height="15.0" fill="rgb(206,78,10)" rx="2" ry="2" />
<text x="576.75" y="367.5" ></text>
</g>
<g >
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="561.4" y="373" width="0.1" height="15.0" fill="rgb(246,9,40)" rx="2" ry="2" />
<text x="564.42" y="383.5" ></text>
</g>
<g >
<title>plugin_process_close (16 samples, 0.08%)</title><rect x="326.2" y="469" width="1.0" height="15.0" fill="rgb(221,84,22)" rx="2" ry="2" />
<text x="329.24" y="479.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="333.8" y="229" width="0.2" height="15.0" fill="rgb(247,94,5)" rx="2" ry="2" />
<text x="336.85" y="239.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="563.3" y="437" width="0.1" height="15.0" fill="rgb(210,138,5)" rx="2" ry="2" />
<text x="566.25" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="991.6" y="629" width="0.1" height="15.0" fill="rgb(239,203,3)" rx="2" ry="2" />
<text x="994.56" y="639.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (139 samples, 0.69%)</title><rect x="366.2" y="613" width="8.2" height="15.0" fill="rgb(234,105,45)" rx="2" ry="2" />
<text x="369.17" y="623.5" ></text>
</g>
<g >
<title>lrustream (180 samples, 0.90%)</title><rect x="676.0" y="581" width="10.6" height="15.0" fill="rgb(210,30,44)" rx="2" ry="2" />
<text x="678.98" y="591.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (590 samples, 2.95%)</title><rect x="57.5" y="725" width="34.8" height="15.0" fill="rgb(224,63,6)" rx="2" ry="2" />
<text x="60.49" y="735.5" >CB..</text>
</g>
<g >
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="421.7" y="693" width="0.4" height="15.0" fill="rgb(244,212,17)" rx="2" ry="2" />
<text x="424.74" y="703.5" ></text>
</g>
<g >
<title>http_doWithEntity (3 samples, 0.01%)</title><rect x="986.0" y="629" width="0.1" height="15.0" fill="rgb(210,22,0)" rx="2" ry="2" />
<text x="988.96" y="639.5" ></text>
</g>
<g >
<title>eth_entry (102 samples, 0.51%)</title><rect x="1009.8" y="661" width="6.0" height="15.0" fill="rgb(220,86,25)" rx="2" ry="2" />
<text x="1012.79" y="671.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="357" width="0.1" height="15.0" fill="rgb(240,214,10)" rx="2" ry="2" />
<text x="404.56" y="367.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (150 samples, 0.75%)</title><rect x="329.1" y="533" width="8.8" height="15.0" fill="rgb(209,140,8)" rx="2" ry="2" />
<text x="332.07" y="543.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (7 samples, 0.03%)</title><rect x="1011.0" y="501" width="0.4" height="15.0" fill="rgb(232,223,26)" rx="2" ry="2" />
<text x="1013.97" y="511.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (18 samples, 0.09%)</title><rect x="329.1" y="405" width="1.1" height="15.0" fill="rgb(251,67,30)" rx="2" ry="2" />
<text x="332.13" y="415.5" ></text>
</g>
<g >
<title>udp_free_stream (137 samples, 0.68%)</title><rect x="795.4" y="549" width="8.1" height="15.0" fill="rgb(219,218,15)" rx="2" ry="2" />
<text x="798.43" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="331.7" y="245" width="0.2" height="15.0" fill="rgb(205,151,23)" rx="2" ry="2" />
<text x="334.66" y="255.5" ></text>
</g>
<g >
<title>TLD_create (3 samples, 0.01%)</title><rect x="787.1" y="485" width="0.1" height="15.0" fill="rgb(233,135,10)" rx="2" ry="2" />
<text x="790.05" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (11 samples, 0.05%)</title><rect x="587.6" y="293" width="0.7" height="15.0" fill="rgb(249,75,51)" rx="2" ry="2" />
<text x="590.61" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (26 samples, 0.13%)</title><rect x="386.2" y="485" width="1.6" height="15.0" fill="rgb(246,87,4)" rx="2" ry="2" />
<text x="389.23" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (29 samples, 0.14%)</title><rect x="994.3" y="613" width="1.7" height="15.0" fill="rgb(246,6,26)" rx="2" ry="2" />
<text x="997.28" y="623.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="973.6" y="581" width="0.1" height="15.0" fill="rgb(219,12,21)" rx="2" ry="2" />
<text x="976.57" y="591.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (4 samples, 0.02%)</title><rect x="337.9" y="469" width="0.3" height="15.0" fill="rgb(246,87,5)" rx="2" ry="2" />
<text x="340.92" y="479.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="991.0" y="773" width="0.3" height="15.0" fill="rgb(216,119,8)" rx="2" ry="2" />
<text x="994.03" y="783.5" ></text>
</g>
<g >
<title>[libqmengine.so] (42 samples, 0.21%)</title><rect x="553.8" y="437" width="2.4" height="15.0" fill="rgb(252,75,4)" rx="2" ry="2" />
<text x="556.75" y="447.5" ></text>
</g>
<g >
<title>[quic.so] (5 samples, 0.02%)</title><rect x="836.2" y="421" width="0.3" height="15.0" fill="rgb(252,35,16)" rx="2" ry="2" />
<text x="839.25" y="431.5" ></text>
</g>
<g >
<title>[sapp] (174 samples, 0.87%)</title><rect x="297.7" y="757" width="10.3" height="15.0" fill="rgb(252,17,38)" rx="2" ry="2" />
<text x="300.74" y="767.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="614.6" y="453" width="0.1" height="15.0" fill="rgb(232,205,22)" rx="2" ry="2" />
<text x="617.57" y="463.5" ></text>
</g>
<g >
<title>stream_process (42 samples, 0.21%)</title><rect x="984.8" y="709" width="2.5" height="15.0" fill="rgb(206,19,24)" rx="2" ry="2" />
<text x="987.84" y="719.5" ></text>
</g>
<g >
<title>[libqmengine.so] (44 samples, 0.22%)</title><rect x="553.6" y="453" width="2.6" height="15.0" fill="rgb(230,76,13)" rx="2" ry="2" />
<text x="556.64" y="463.5" ></text>
</g>
<g >
<title>plugin_process_pending (2 samples, 0.01%)</title><rect x="1017.6" y="533" width="0.2" height="15.0" fill="rgb(208,115,14)" rx="2" ry="2" />
<text x="1020.64" y="543.5" ></text>
</g>
<g >
<title>__strncasecmp_avx (4 samples, 0.02%)</title><rect x="837.6" y="517" width="0.2" height="15.0" fill="rgb(241,38,28)" rx="2" ry="2" />
<text x="840.60" y="527.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (8 samples, 0.04%)</title><rect x="152.3" y="629" width="0.5" height="15.0" fill="rgb(208,122,13)" rx="2" ry="2" />
<text x="155.34" y="639.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="335.2" y="341" width="0.3" height="15.0" fill="rgb(232,150,18)" rx="2" ry="2" />
<text x="338.20" y="351.5" ></text>
</g>
<g >
<title>wangw_ip_plug_entry (7 samples, 0.03%)</title><rect x="872.8" y="581" width="0.4" height="15.0" fill="rgb(214,163,31)" rx="2" ry="2" />
<text x="875.82" y="591.5" ></text>
</g>
<g >
<title>FS_operate (3 samples, 0.01%)</title><rect x="491.5" y="501" width="0.1" height="15.0" fill="rgb(230,105,14)" rx="2" ry="2" />
<text x="494.46" y="511.5" ></text>
</g>
<g >
<title>set_transport_addr (31 samples, 0.15%)</title><rect x="494.8" y="661" width="1.8" height="15.0" fill="rgb(231,229,40)" rx="2" ry="2" />
<text x="497.77" y="671.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="420.4" y="613" width="0.2" height="15.0" fill="rgb(221,155,31)" rx="2" ry="2" />
<text x="423.44" y="623.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="795.0" y="565" width="0.4" height="15.0" fill="rgb(246,167,53)" rx="2" ry="2" />
<text x="797.96" y="575.5" ></text>
</g>
<g >
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="399.0" y="485" width="0.1" height="15.0" fill="rgb(224,164,34)" rx="2" ry="2" />
<text x="401.97" y="495.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="987.0" y="469" width="0.3" height="15.0" fill="rgb(240,126,28)" rx="2" ry="2" />
<text x="989.96" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="628.7" y="485" width="0.1" height="15.0" fill="rgb(225,124,44)" rx="2" ry="2" />
<text x="631.67" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="588.3" y="277" width="0.3" height="15.0" fill="rgb(224,88,8)" rx="2" ry="2" />
<text x="591.32" y="287.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="1018.3" y="581" width="0.2" height="15.0" fill="rgb(208,125,45)" rx="2" ry="2" />
<text x="1021.34" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="336.0" y="389" width="0.1" height="15.0" fill="rgb(250,196,44)" rx="2" ry="2" />
<text x="338.97" y="399.5" ></text>
</g>
<g >
<title>ipv4_entry (172 samples, 0.86%)</title><rect x="297.9" y="725" width="10.1" height="15.0" fill="rgb(234,74,44)" rx="2" ry="2" />
<text x="300.86" y="735.5" ></text>
</g>
<g >
<title>ssl_initSslStream (4 samples, 0.02%)</title><rect x="596.7" y="501" width="0.2" height="15.0" fill="rgb(230,54,47)" rx="2" ry="2" />
<text x="599.70" y="511.5" ></text>
</g>
<g >
<title>plugin_process_pending (14 samples, 0.07%)</title><rect x="594.9" y="405" width="0.9" height="15.0" fill="rgb(252,154,14)" rx="2" ry="2" />
<text x="597.93" y="415.5" ></text>
</g>
<g >
<title>_IO_old_init (3 samples, 0.01%)</title><rect x="566.7" y="421" width="0.1" height="15.0" fill="rgb(214,169,7)" rx="2" ry="2" />
<text x="569.67" y="431.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="683.5" y="453" width="0.1" height="15.0" fill="rgb(208,92,21)" rx="2" ry="2" />
<text x="686.47" y="463.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (124 samples, 0.62%)</title><rect x="311.1" y="485" width="7.3" height="15.0" fill="rgb(212,82,33)" rx="2" ry="2" />
<text x="314.08" y="495.5" ></text>
</g>
<g >
<title>tcp_free_stream (8 samples, 0.04%)</title><rect x="402.2" y="741" width="0.4" height="15.0" fill="rgb(226,59,47)" rx="2" ry="2" />
<text x="405.15" y="751.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (26 samples, 0.13%)</title><rect x="1013.9" y="389" width="1.6" height="15.0" fill="rgb(205,10,18)" rx="2" ry="2" />
<text x="1016.92" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (13 samples, 0.06%)</title><rect x="595.0" y="389" width="0.8" height="15.0" fill="rgb(206,156,19)" rx="2" ry="2" />
<text x="597.99" y="399.5" ></text>
</g>
<g >
<title>[libqmengine.so] (68 samples, 0.34%)</title><rect x="390.8" y="533" width="4.0" height="15.0" fill="rgb(239,132,18)" rx="2" ry="2" />
<text x="393.77" y="543.5" ></text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="304.5" y="549" width="0.4" height="15.0" fill="rgb(232,205,20)" rx="2" ry="2" />
<text x="307.47" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (4 samples, 0.02%)</title><rect x="337.9" y="533" width="0.3" height="15.0" fill="rgb(230,177,17)" rx="2" ry="2" />
<text x="340.92" y="543.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (65 samples, 0.32%)</title><rect x="490.8" y="565" width="3.8" height="15.0" fill="rgb(236,170,31)" rx="2" ry="2" />
<text x="493.81" y="575.5" ></text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="373.5" y="501" width="0.2" height="15.0" fill="rgb(243,90,39)" rx="2" ry="2" />
<text x="376.54" y="511.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="330.2" y="213" width="0.9" height="15.0" fill="rgb(252,113,28)" rx="2" ry="2" />
<text x="333.25" y="223.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (33 samples, 0.16%)</title><rect x="586.7" y="373" width="1.9" height="15.0" fill="rgb(235,184,21)" rx="2" ry="2" />
<text x="589.67" y="383.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (75 samples, 0.37%)</title><rect x="563.5" y="517" width="4.4" height="15.0" fill="rgb(219,23,4)" rx="2" ry="2" />
<text x="566.49" y="527.5" ></text>
</g>
<g >
<title>event_base_loop (128 samples, 0.64%)</title><rect x="951.2" y="725" width="7.6" height="15.0" fill="rgb(252,129,12)" rx="2" ry="2" />
<text x="954.22" y="735.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (2 samples, 0.01%)</title><rect x="304.4" y="613" width="0.1" height="15.0" fill="rgb(236,5,0)" rx="2" ry="2" />
<text x="307.35" y="623.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (68 samples, 0.34%)</title><rect x="536.8" y="565" width="4.0" height="15.0" fill="rgb(231,201,45)" rx="2" ry="2" />
<text x="539.82" y="575.5" ></text>
</g>
<g >
<title>marsio_send_burst (294 samples, 1.47%)</title><rect x="402.6" y="773" width="17.4" height="15.0" fill="rgb(214,67,54)" rx="2" ry="2" />
<text x="405.63" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="368.1" y="517" width="0.2" height="15.0" fill="rgb(234,166,17)" rx="2" ry="2" />
<text x="371.06" y="527.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="566.1" y="485" width="0.1" height="15.0" fill="rgb(250,209,36)" rx="2" ry="2" />
<text x="569.08" y="495.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (175 samples, 0.87%)</title><rect x="308.6" y="549" width="10.3" height="15.0" fill="rgb(217,5,46)" rx="2" ry="2" />
<text x="311.60" y="559.5" ></text>
</g>
<g >
<title>fn_DocFormatCallBack (3 samples, 0.01%)</title><rect x="573.3" y="357" width="0.2" height="15.0" fill="rgb(236,34,6)" rx="2" ry="2" />
<text x="576.28" y="367.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="985.1" y="501" width="0.2" height="15.0" fill="rgb(231,48,33)" rx="2" ry="2" />
<text x="988.13" y="511.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (7 samples, 0.03%)</title><rect x="590.3" y="405" width="0.4" height="15.0" fill="rgb(237,148,37)" rx="2" ry="2" />
<text x="593.33" y="415.5" ></text>
</g>
<g >
<title>__snprintf (3 samples, 0.01%)</title><rect x="991.9" y="661" width="0.2" height="15.0" fill="rgb(236,90,38)" rx="2" ry="2" />
<text x="994.92" y="671.5" ></text>
</g>
<g >
<title>__snprintf (8 samples, 0.04%)</title><rect x="401.7" y="549" width="0.5" height="15.0" fill="rgb(232,95,41)" rx="2" ry="2" />
<text x="404.68" y="559.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (4 samples, 0.02%)</title><rect x="188.6" y="725" width="0.3" height="15.0" fill="rgb(220,206,29)" rx="2" ry="2" />
<text x="191.62" y="735.5" ></text>
</g>
<g >
<title>http_doWithEntity (9 samples, 0.04%)</title><rect x="976.9" y="613" width="0.5" height="15.0" fill="rgb(221,114,52)" rx="2" ry="2" />
<text x="979.88" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="331.9" y="181" width="0.4" height="15.0" fill="rgb(229,92,22)" rx="2" ry="2" />
<text x="334.90" y="191.5" ></text>
</g>
<g >
<title>stratum_identify (2 samples, 0.01%)</title><rect x="611.7" y="501" width="0.2" height="15.0" fill="rgb(208,64,17)" rx="2" ry="2" />
<text x="614.74" y="511.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (61 samples, 0.30%)</title><rect x="819.8" y="501" width="3.6" height="15.0" fill="rgb(228,156,10)" rx="2" ry="2" />
<text x="822.85" y="511.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="1005.5" y="741" width="0.1" height="15.0" fill="rgb(252,213,21)" rx="2" ry="2" />
<text x="1008.48" y="751.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (3 samples, 0.01%)</title><rect x="603.1" y="453" width="0.1" height="15.0" fill="rgb(205,44,20)" rx="2" ry="2" />
<text x="606.07" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (1,020 samples, 5.10%)</title><rect x="725.6" y="581" width="60.2" height="15.0" fill="rgb(241,13,40)" rx="2" ry="2" />
<text x="728.59" y="591.5" >stream..</text>
</g>
<g >
<title>__GI___libc_malloc (18 samples, 0.09%)</title><rect x="585.1" y="453" width="1.0" height="15.0" fill="rgb(218,28,38)" rx="2" ry="2" />
<text x="588.08" y="463.5" ></text>
</g>
<g >
<title>[sapp] (68 samples, 0.34%)</title><rect x="1009.8" y="597" width="4.0" height="15.0" fill="rgb(215,195,9)" rx="2" ry="2" />
<text x="1012.79" y="607.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (2 samples, 0.01%)</title><rect x="683.5" y="485" width="0.1" height="15.0" fill="rgb(235,111,42)" rx="2" ry="2" />
<text x="686.47" y="495.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (11 samples, 0.05%)</title><rect x="976.9" y="629" width="0.6" height="15.0" fill="rgb(232,178,39)" rx="2" ry="2" />
<text x="979.88" y="639.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="595.0" y="373" width="0.1" height="15.0" fill="rgb(209,103,47)" rx="2" ry="2" />
<text x="597.99" y="383.5" ></text>
</g>
<g >
<title>[tsg_master.so] (42 samples, 0.21%)</title><rect x="323.2" y="357" width="2.4" height="15.0" fill="rgb(232,93,6)" rx="2" ry="2" />
<text x="326.17" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="327.8" y="325" width="0.1" height="15.0" fill="rgb(239,81,51)" rx="2" ry="2" />
<text x="330.77" y="335.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="485" width="0.3" height="15.0" fill="rgb(249,131,7)" rx="2" ry="2" />
<text x="990.55" y="495.5" ></text>
</g>
<g >
<title>APP_SKETCH_HTTP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="985.1" y="517" width="0.2" height="15.0" fill="rgb(219,207,34)" rx="2" ry="2" />
<text x="988.13" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (9 samples, 0.04%)</title><rect x="377.0" y="437" width="0.6" height="15.0" fill="rgb(223,83,0)" rx="2" ry="2" />
<text x="380.02" y="447.5" ></text>
</g>
<g >
<title>app_proto_stream_create_ctx (16 samples, 0.08%)</title><rect x="551.7" y="485" width="0.9" height="15.0" fill="rgb(220,212,44)" rx="2" ry="2" />
<text x="554.69" y="495.5" ></text>
</g>
<g >
<title>ec_GFp_simple_oct2point (2 samples, 0.01%)</title><rect x="592.4" y="373" width="0.2" height="15.0" fill="rgb(225,99,34)" rx="2" ry="2" />
<text x="595.45" y="383.5" ></text>
</g>
<g >
<title>__GI_bsearch (3 samples, 0.01%)</title><rect x="556.6" y="453" width="0.2" height="15.0" fill="rgb(252,116,47)" rx="2" ry="2" />
<text x="559.58" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="341" width="0.9" height="15.0" fill="rgb(205,38,32)" rx="2" ry="2" />
<text x="303.46" y="351.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (109 samples, 0.54%)</title><rect x="639.3" y="485" width="6.4" height="15.0" fill="rgb(205,74,51)" rx="2" ry="2" />
<text x="642.29" y="495.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="928.4" y="597" width="0.1" height="15.0" fill="rgb(238,203,54)" rx="2" ry="2" />
<text x="931.39" y="607.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="401.2" y="629" width="0.1" height="15.0" fill="rgb(249,65,46)" rx="2" ry="2" />
<text x="404.15" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_free (12 samples, 0.06%)</title><rect x="756.6" y="485" width="0.7" height="15.0" fill="rgb(211,160,0)" rx="2" ry="2" />
<text x="759.55" y="495.5" ></text>
</g>
<g >
<title>qmdpi_flow_5tuple_get (2 samples, 0.01%)</title><rect x="562.8" y="421" width="0.1" height="15.0" fill="rgb(218,70,26)" rx="2" ry="2" />
<text x="565.78" y="431.5" ></text>
</g>
<g >
<title>ASN1_template_free (21 samples, 0.10%)</title><rect x="588.6" y="389" width="1.3" height="15.0" fill="rgb(226,209,25)" rx="2" ry="2" />
<text x="591.62" y="399.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="597.3" y="453" width="0.1" height="15.0" fill="rgb(215,202,6)" rx="2" ry="2" />
<text x="600.29" y="463.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (63 samples, 0.31%)</title><rect x="384.5" y="597" width="3.7" height="15.0" fill="rgb(245,136,44)" rx="2" ry="2" />
<text x="387.46" y="607.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="421.1" y="709" width="0.1" height="15.0" fill="rgb(214,115,7)" rx="2" ry="2" />
<text x="424.09" y="719.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (4 samples, 0.02%)</title><rect x="1012.7" y="501" width="0.2" height="15.0" fill="rgb(218,207,49)" rx="2" ry="2" />
<text x="1015.68" y="511.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (23 samples, 0.11%)</title><rect x="926.6" y="645" width="1.4" height="15.0" fill="rgb(240,137,7)" rx="2" ry="2" />
<text x="929.62" y="655.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="469" width="3.9" height="15.0" fill="rgb(226,216,34)" rx="2" ry="2" />
<text x="393.77" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (24 samples, 0.12%)</title><rect x="980.7" y="549" width="1.4" height="15.0" fill="rgb(220,91,5)" rx="2" ry="2" />
<text x="983.65" y="559.5" ></text>
</g>
<g >
<title>stream_process (17 samples, 0.08%)</title><rect x="983.5" y="661" width="1.0" height="15.0" fill="rgb(218,180,23)" rx="2" ry="2" />
<text x="986.54" y="671.5" ></text>
</g>
<g >
<title>EC_GROUP_new_by_curve_name (17 samples, 0.08%)</title><rect x="591.4" y="373" width="1.0" height="15.0" fill="rgb(207,131,21)" rx="2" ry="2" />
<text x="594.45" y="383.5" ></text>
</g>
<g >
<title>DNS_UDP_ENTRY (32 samples, 0.16%)</title><rect x="801.3" y="485" width="1.9" height="15.0" fill="rgb(242,89,16)" rx="2" ry="2" />
<text x="804.27" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (18 samples, 0.09%)</title><rect x="330.2" y="277" width="1.0" height="15.0" fill="rgb(247,118,34)" rx="2" ry="2" />
<text x="333.19" y="287.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (5 samples, 0.02%)</title><rect x="390.4" y="485" width="0.3" height="15.0" fill="rgb(214,150,4)" rx="2" ry="2" />
<text x="393.41" y="495.5" ></text>
</g>
<g >
<title>[mail.so] (2 samples, 0.01%)</title><rect x="576.2" y="485" width="0.1" height="15.0" fill="rgb(247,215,40)" rx="2" ry="2" />
<text x="579.23" y="495.5" ></text>
</g>
<g >
<title>operator new[] (3 samples, 0.01%)</title><rect x="44.1" y="725" width="0.2" height="15.0" fill="rgb(210,217,1)" rx="2" ry="2" />
<text x="47.10" y="735.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (4 samples, 0.02%)</title><rect x="369.0" y="501" width="0.2" height="15.0" fill="rgb(246,90,16)" rx="2" ry="2" />
<text x="372.00" y="511.5" ></text>
</g>
<g >
<title>[libwangw.so] (9 samples, 0.04%)</title><rect x="628.9" y="517" width="0.5" height="15.0" fill="rgb(205,27,41)" rx="2" ry="2" />
<text x="631.90" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="986.0" y="517" width="0.1" height="15.0" fill="rgb(252,149,1)" rx="2" ry="2" />
<text x="988.96" y="527.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="384.3" y="469" width="0.2" height="15.0" fill="rgb(239,94,1)" rx="2" ry="2" />
<text x="387.34" y="479.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="840.1" y="517" width="0.2" height="15.0" fill="rgb(227,226,25)" rx="2" ry="2" />
<text x="843.14" y="527.5" ></text>
</g>
<g >
<title>app_proto_worke_process (180 samples, 0.90%)</title><rect x="552.6" y="485" width="10.7" height="15.0" fill="rgb(246,87,34)" rx="2" ry="2" />
<text x="555.63" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="829.0" y="517" width="0.5" height="15.0" fill="rgb(246,146,27)" rx="2" ry="2" />
<text x="831.99" y="527.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="535.8" y="501" width="0.1" height="15.0" fill="rgb(233,96,41)" rx="2" ry="2" />
<text x="538.82" y="511.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (5 samples, 0.02%)</title><rect x="983.5" y="581" width="0.3" height="15.0" fill="rgb(252,211,49)" rx="2" ry="2" />
<text x="986.54" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (11 samples, 0.05%)</title><rect x="983.8" y="613" width="0.7" height="15.0" fill="rgb(250,3,13)" rx="2" ry="2" />
<text x="986.84" y="623.5" ></text>
</g>
<g >
<title>plugin_process_pending (6 samples, 0.03%)</title><rect x="986.6" y="565" width="0.4" height="15.0" fill="rgb(220,50,22)" rx="2" ry="2" />
<text x="989.61" y="575.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (5 samples, 0.02%)</title><rect x="333.4" y="229" width="0.3" height="15.0" fill="rgb(208,57,3)" rx="2" ry="2" />
<text x="336.43" y="239.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (21 samples, 0.10%)</title><rect x="982.1" y="565" width="1.3" height="15.0" fill="rgb(241,120,54)" rx="2" ry="2" />
<text x="985.13" y="575.5" ></text>
</g>
<g >
<title>TLD_append (29 samples, 0.14%)</title><rect x="1000.5" y="661" width="1.7" height="15.0" fill="rgb(254,0,42)" rx="2" ry="2" />
<text x="1003.53" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="373" width="0.9" height="15.0" fill="rgb(226,126,18)" rx="2" ry="2" />
<text x="303.46" y="383.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="322.3" y="341" width="0.2" height="15.0" fill="rgb(209,48,47)" rx="2" ry="2" />
<text x="325.34" y="351.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="1016.6" y="517" width="0.1" height="15.0" fill="rgb(227,6,51)" rx="2" ry="2" />
<text x="1019.57" y="527.5" ></text>
</g>
<g >
<title>ssl_doWithInsterestedRegion@plt (2 samples, 0.01%)</title><rect x="596.6" y="501" width="0.1" height="15.0" fill="rgb(239,177,20)" rx="2" ry="2" />
<text x="599.58" y="511.5" ></text>
</g>
<g >
<title>kni_tcpall_entry (12 samples, 0.06%)</title><rect x="762.9" y="533" width="0.7" height="15.0" fill="rgb(244,198,15)" rx="2" ry="2" />
<text x="765.93" y="543.5" ></text>
</g>
<g >
<title>SSL_ENTRY (154 samples, 0.77%)</title><rect x="329.1" y="565" width="9.1" height="15.0" fill="rgb(238,109,36)" rx="2" ry="2" />
<text x="332.07" y="575.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="683.5" y="389" width="0.1" height="15.0" fill="rgb(225,224,22)" rx="2" ry="2" />
<text x="686.47" y="399.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (5 samples, 0.02%)</title><rect x="1009.8" y="485" width="0.3" height="15.0" fill="rgb(219,108,9)" rx="2" ry="2" />
<text x="1012.79" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (976 samples, 4.88%)</title><rect x="308.6" y="581" width="57.6" height="15.0" fill="rgb(231,207,25)" rx="2" ry="2" />
<text x="311.60" y="591.5" >plugin..</text>
</g>
<g >
<title>stratum_json_checker (2 samples, 0.01%)</title><rect x="611.7" y="485" width="0.2" height="15.0" fill="rgb(252,77,28)" rx="2" ry="2" />
<text x="614.74" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="400.4" y="581" width="0.3" height="15.0" fill="rgb(235,21,16)" rx="2" ry="2" />
<text x="403.44" y="591.5" ></text>
</g>
<g >
<title>APP_STAT_LATEENCY (8 samples, 0.04%)</title><rect x="550.9" y="485" width="0.5" height="15.0" fill="rgb(225,81,19)" rx="2" ry="2" />
<text x="553.92" y="495.5" ></text>
</g>
<g >
<title>stream_process (10 samples, 0.05%)</title><rect x="401.6" y="645" width="0.6" height="15.0" fill="rgb(220,65,43)" rx="2" ry="2" />
<text x="404.56" y="655.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (7 samples, 0.03%)</title><rect x="336.5" y="341" width="0.4" height="15.0" fill="rgb(223,130,35)" rx="2" ry="2" />
<text x="339.50" y="351.5" ></text>
</g>
<g >
<title>[sapp] (4 samples, 0.02%)</title><rect x="830.5" y="517" width="0.2" height="15.0" fill="rgb(238,119,37)" rx="2" ry="2" />
<text x="833.47" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="1011.4" y="533" width="1.5" height="15.0" fill="rgb(227,25,8)" rx="2" ry="2" />
<text x="1014.38" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="842.9" y="469" width="0.1" height="15.0" fill="rgb(251,118,49)" rx="2" ry="2" />
<text x="845.85" y="479.5" ></text>
</g>
<g >
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="470.3" y="629" width="0.2" height="15.0" fill="rgb(221,30,49)" rx="2" ry="2" />
<text x="473.34" y="639.5" ></text>
</g>
<g >
<title>[mail.so] (2 samples, 0.01%)</title><rect x="575.6" y="485" width="0.2" height="15.0" fill="rgb(210,216,34)" rx="2" ry="2" />
<text x="578.64" y="495.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (65 samples, 0.32%)</title><rect x="490.8" y="549" width="3.8" height="15.0" fill="rgb(239,117,11)" rx="2" ry="2" />
<text x="493.81" y="559.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (12 samples, 0.06%)</title><rect x="569.5" y="357" width="0.7" height="15.0" fill="rgb(209,214,47)" rx="2" ry="2" />
<text x="572.50" y="367.5" ></text>
</g>
<g >
<title>lrustream (14 samples, 0.07%)</title><rect x="303.5" y="613" width="0.9" height="15.0" fill="rgb(231,126,42)" rx="2" ry="2" />
<text x="306.53" y="623.5" ></text>
</g>
<g >
<title>printaddr (39 samples, 0.19%)</title><rect x="1003.1" y="773" width="2.3" height="15.0" fill="rgb(206,41,41)" rx="2" ry="2" />
<text x="1006.07" y="783.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (35 samples, 0.17%)</title><rect x="297.9" y="453" width="2.0" height="15.0" fill="rgb(253,144,53)" rx="2" ry="2" />
<text x="300.86" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="335.0" y="341" width="0.1" height="15.0" fill="rgb(209,44,49)" rx="2" ry="2" />
<text x="337.97" y="351.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="683.5" y="325" width="0.1" height="15.0" fill="rgb(212,204,31)" rx="2" ry="2" />
<text x="686.47" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="923.0" y="677" width="0.2" height="15.0" fill="rgb(212,166,47)" rx="2" ry="2" />
<text x="926.02" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (16 samples, 0.08%)</title><rect x="539.9" y="517" width="0.9" height="15.0" fill="rgb(227,92,50)" rx="2" ry="2" />
<text x="542.89" y="527.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="793.3" y="565" width="0.5" height="15.0" fill="rgb(219,179,35)" rx="2" ry="2" />
<text x="796.30" y="575.5" ></text>
</g>
<g >
<title>http_doWithDefaultRegion (2 samples, 0.01%)</title><rect x="986.3" y="597" width="0.1" height="15.0" fill="rgb(233,119,7)" rx="2" ry="2" />
<text x="989.31" y="607.5" ></text>
</g>
<g >
<title>http_callPlugin (7 samples, 0.03%)</title><rect x="320.2" y="485" width="0.4" height="15.0" fill="rgb(211,152,22)" rx="2" ry="2" />
<text x="323.16" y="495.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="366.8" y="517" width="0.2" height="15.0" fill="rgb(216,133,5)" rx="2" ry="2" />
<text x="369.82" y="527.5" ></text>
</g>
<g >
<title>BN_CTX_get (2 samples, 0.01%)</title><rect x="591.7" y="293" width="0.2" height="15.0" fill="rgb(249,58,34)" rx="2" ry="2" />
<text x="594.74" y="303.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (34 samples, 0.17%)</title><rect x="320.6" y="437" width="2.0" height="15.0" fill="rgb(208,25,48)" rx="2" ry="2" />
<text x="323.57" y="447.5" ></text>
</g>
<g >
<title>free_polling_inject_context (4 samples, 0.02%)</title><rect x="796.7" y="533" width="0.3" height="15.0" fill="rgb(209,48,45)" rx="2" ry="2" />
<text x="799.73" y="543.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="490.5" y="549" width="0.1" height="15.0" fill="rgb(248,138,11)" rx="2" ry="2" />
<text x="493.52" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (21 samples, 0.10%)</title><rect x="327.7" y="373" width="1.2" height="15.0" fill="rgb(223,124,40)" rx="2" ry="2" />
<text x="330.71" y="383.5" ></text>
</g>
<g >
<title>[sapp] (112 samples, 0.56%)</title><rect x="297.9" y="629" width="6.6" height="15.0" fill="rgb(227,224,26)" rx="2" ry="2" />
<text x="300.86" y="639.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (2 samples, 0.01%)</title><rect x="400.7" y="645" width="0.2" height="15.0" fill="rgb(217,219,26)" rx="2" ry="2" />
<text x="403.74" y="655.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="1016.8" y="437" width="0.1" height="15.0" fill="rgb(253,205,43)" rx="2" ry="2" />
<text x="1019.81" y="447.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (5 samples, 0.02%)</title><rect x="1017.3" y="581" width="0.3" height="15.0" fill="rgb(237,114,52)" rx="2" ry="2" />
<text x="1020.34" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="1006.7" y="773" width="0.1" height="15.0" fill="rgb(245,118,5)" rx="2" ry="2" />
<text x="1009.72" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="595.2" y="325" width="0.5" height="15.0" fill="rgb(231,16,38)" rx="2" ry="2" />
<text x="598.22" y="335.5" ></text>
</g>
<g >
<title>plugin_process_data (2 samples, 0.01%)</title><rect x="986.3" y="533" width="0.1" height="15.0" fill="rgb(206,85,43)" rx="2" ry="2" />
<text x="989.31" y="543.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (25 samples, 0.12%)</title><rect x="985.1" y="661" width="1.5" height="15.0" fill="rgb(213,76,37)" rx="2" ry="2" />
<text x="988.13" y="671.5" ></text>
</g>
<g >
<title>set_session_attributes (9 samples, 0.04%)</title><rect x="422.1" y="741" width="0.5" height="15.0" fill="rgb(237,17,21)" rx="2" ry="2" />
<text x="425.09" y="751.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="400.6" y="517" width="0.1" height="15.0" fill="rgb(231,56,51)" rx="2" ry="2" />
<text x="403.62" y="527.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (5 samples, 0.02%)</title><rect x="1017.3" y="469" width="0.3" height="15.0" fill="rgb(234,187,8)" rx="2" ry="2" />
<text x="1020.34" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="382.5" y="405" width="0.5" height="15.0" fill="rgb(239,27,8)" rx="2" ry="2" />
<text x="385.51" y="415.5" ></text>
</g>
<g >
<title>plugin_process_close (3 samples, 0.01%)</title><rect x="573.7" y="421" width="0.2" height="15.0" fill="rgb(224,117,39)" rx="2" ry="2" />
<text x="576.69" y="431.5" ></text>
</g>
<g >
<title>[libprotoident.so] (75 samples, 0.37%)</title><rect x="599.5" y="485" width="4.4" height="15.0" fill="rgb(236,115,21)" rx="2" ry="2" />
<text x="602.47" y="495.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="1005.5" y="677" width="0.1" height="15.0" fill="rgb(235,122,49)" rx="2" ry="2" />
<text x="1008.48" y="687.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (6 samples, 0.03%)</title><rect x="924.3" y="645" width="0.4" height="15.0" fill="rgb(227,1,26)" rx="2" ry="2" />
<text x="927.32" y="655.5" ></text>
</g>
<g >
<title>ssl_doWithClientHello (2 samples, 0.01%)</title><rect x="301.9" y="485" width="0.2" height="15.0" fill="rgb(242,158,32)" rx="2" ry="2" />
<text x="304.93" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="576.6" y="485" width="0.2" height="15.0" fill="rgb(241,225,38)" rx="2" ry="2" />
<text x="579.58" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (71 samples, 0.35%)</title><rect x="330.2" y="469" width="4.2" height="15.0" fill="rgb(215,171,2)" rx="2" ry="2" />
<text x="333.19" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="989.6" y="485" width="0.1" height="15.0" fill="rgb(244,173,42)" rx="2" ry="2" />
<text x="992.56" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (14 samples, 0.07%)</title><rect x="338.2" y="549" width="0.8" height="15.0" fill="rgb(244,202,0)" rx="2" ry="2" />
<text x="341.15" y="559.5" ></text>
</g>
<g >
<title>__snprintf (2 samples, 0.01%)</title><rect x="973.6" y="517" width="0.1" height="15.0" fill="rgb(227,51,12)" rx="2" ry="2" />
<text x="976.57" y="527.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="398.3" y="469" width="0.2" height="15.0" fill="rgb(215,157,1)" rx="2" ry="2" />
<text x="401.26" y="479.5" ></text>
</g>
<g >
<title>lrustream (105 samples, 0.52%)</title><rect x="488.5" y="661" width="6.1" height="15.0" fill="rgb(234,64,10)" rx="2" ry="2" />
<text x="491.45" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.05%)</title><rect x="326.4" y="325" width="0.6" height="15.0" fill="rgb(245,18,24)" rx="2" ry="2" />
<text x="329.41" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (4 samples, 0.02%)</title><rect x="541.7" y="501" width="0.2" height="15.0" fill="rgb(208,114,7)" rx="2" ry="2" />
<text x="544.66" y="511.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="990.5" y="581" width="0.1" height="15.0" fill="rgb(250,157,10)" rx="2" ry="2" />
<text x="993.50" y="591.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="990.3" y="645" width="0.2" height="15.0" fill="rgb(254,17,28)" rx="2" ry="2" />
<text x="993.32" y="655.5" ></text>
</g>
<g >
<title>__memset_sse2 (18 samples, 0.09%)</title><rect x="630.7" y="485" width="1.0" height="15.0" fill="rgb(215,229,3)" rx="2" ry="2" />
<text x="633.67" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="469" width="0.3" height="15.0" fill="rgb(220,63,19)" rx="2" ry="2" />
<text x="990.55" y="479.5" ></text>
</g>
<g >
<title>stream_process_tcp (17 samples, 0.08%)</title><rect x="976.8" y="709" width="1.0" height="15.0" fill="rgb(226,94,33)" rx="2" ry="2" />
<text x="979.82" y="719.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="541.5" y="485" width="0.1" height="15.0" fill="rgb(208,49,16)" rx="2" ry="2" />
<text x="544.48" y="495.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="556.8" y="437" width="0.1" height="15.0" fill="rgb(229,198,0)" rx="2" ry="2" />
<text x="559.82" y="447.5" ></text>
</g>
<g >
<title>__memchr (2 samples, 0.01%)</title><rect x="569.1" y="405" width="0.1" height="15.0" fill="rgb(249,189,8)" rx="2" ry="2" />
<text x="572.09" y="415.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="986.3" y="565" width="0.1" height="15.0" fill="rgb(235,131,18)" rx="2" ry="2" />
<text x="989.31" y="575.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="627.6" y="501" width="0.1" height="15.0" fill="rgb(243,68,50)" rx="2" ry="2" />
<text x="630.61" y="511.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (133 samples, 0.66%)</title><rect x="311.1" y="517" width="7.8" height="15.0" fill="rgb(251,144,14)" rx="2" ry="2" />
<text x="314.08" y="527.5" ></text>
</g>
<g >
<title>app_proto_stream_create_ctx (19 samples, 0.09%)</title><rect x="818.4" y="517" width="1.1" height="15.0" fill="rgb(248,96,26)" rx="2" ry="2" />
<text x="821.37" y="527.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="805.2" y="565" width="0.7" height="15.0" fill="rgb(210,16,50)" rx="2" ry="2" />
<text x="808.22" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="388.2" y="517" width="0.4" height="15.0" fill="rgb(229,169,24)" rx="2" ry="2" />
<text x="391.23" y="527.5" ></text>
</g>
<g >
<title>__snprintf (21 samples, 0.10%)</title><rect x="318.9" y="517" width="1.3" height="15.0" fill="rgb(209,181,47)" rx="2" ry="2" />
<text x="321.92" y="527.5" ></text>
</g>
<g >
<title>grab_mid (5 samples, 0.02%)</title><rect x="47.5" y="773" width="0.3" height="15.0" fill="rgb(229,110,51)" rx="2" ry="2" />
<text x="50.52" y="783.5" ></text>
</g>
<g >
<title>__IO_vsprintf (28 samples, 0.14%)</title><rect x="1003.3" y="725" width="1.7" height="15.0" fill="rgb(235,103,33)" rx="2" ry="2" />
<text x="1006.30" y="735.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (4 samples, 0.02%)</title><rect x="330.8" y="101" width="0.2" height="15.0" fill="rgb(239,110,28)" rx="2" ry="2" />
<text x="333.78" y="111.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="1017.0" y="597" width="0.3" height="15.0" fill="rgb(245,35,46)" rx="2" ry="2" />
<text x="1020.05" y="607.5" ></text>
</g>
<g >
<title>[sapp] (7,474 samples, 37.36%)</title><rect x="440.1" y="725" width="440.9" height="15.0" fill="rgb(245,4,53)" rx="2" ry="2" />
<text x="443.08" y="735.5" >[sapp]</text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="628.7" y="501" width="0.1" height="15.0" fill="rgb(223,207,9)" rx="2" ry="2" />
<text x="631.67" y="511.5" ></text>
</g>
<g >
<title>plugin_process_data (25 samples, 0.12%)</title><rect x="834.2" y="501" width="1.5" height="15.0" fill="rgb(252,95,1)" rx="2" ry="2" />
<text x="837.18" y="511.5" ></text>
</g>
<g >
<title>FIPS_module_mode (3 samples, 0.01%)</title><rect x="591.2" y="293" width="0.2" height="15.0" fill="rgb(226,124,43)" rx="2" ry="2" />
<text x="594.21" y="303.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (2 samples, 0.01%)</title><rect x="991.6" y="693" width="0.1" height="15.0" fill="rgb(249,190,10)" rx="2" ry="2" />
<text x="994.56" y="703.5" ></text>
</g>
<g >
<title>parse_dns_protocol (244 samples, 1.22%)</title><rect x="991.0" y="789" width="14.4" height="15.0" fill="rgb(215,90,32)" rx="2" ry="2" />
<text x="993.97" y="799.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="594.2" y="325" width="0.4" height="15.0" fill="rgb(221,84,18)" rx="2" ry="2" />
<text x="597.22" y="335.5" ></text>
</g>
<g >
<title>MD5_Init (5 samples, 0.02%)</title><rect x="1006.3" y="773" width="0.3" height="15.0" fill="rgb(209,140,18)" rx="2" ry="2" />
<text x="1009.31" y="783.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="384.0" y="485" width="0.5" height="15.0" fill="rgb(254,100,51)" rx="2" ry="2" />
<text x="387.04" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="320.3" y="341" width="0.2" height="15.0" fill="rgb(247,158,3)" rx="2" ry="2" />
<text x="323.28" y="351.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="310.2" y="469" width="0.8" height="15.0" fill="rgb(226,15,12)" rx="2" ry="2" />
<text x="313.25" y="479.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="977.4" y="597" width="0.1" height="15.0" fill="rgb(253,171,0)" rx="2" ry="2" />
<text x="980.41" y="607.5" ></text>
</g>
<g >
<title>TLD_append (18 samples, 0.09%)</title><rect x="801.8" y="389" width="1.1" height="15.0" fill="rgb(220,160,0)" rx="2" ry="2" />
<text x="804.80" y="399.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (13 samples, 0.06%)</title><rect x="538.9" y="517" width="0.8" height="15.0" fill="rgb(236,54,30)" rx="2" ry="2" />
<text x="541.89" y="527.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="490.2" y="597" width="0.1" height="15.0" fill="rgb(239,119,41)" rx="2" ry="2" />
<text x="493.16" y="607.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (7 samples, 0.03%)</title><rect x="366.6" y="533" width="0.4" height="15.0" fill="rgb(226,128,40)" rx="2" ry="2" />
<text x="369.58" y="543.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (6 samples, 0.03%)</title><rect x="842.3" y="453" width="0.3" height="15.0" fill="rgb(252,134,28)" rx="2" ry="2" />
<text x="845.26" y="463.5" ></text>
</g>
<g >
<title>http_doWithStartLine (3 samples, 0.01%)</title><rect x="400.1" y="661" width="0.2" height="15.0" fill="rgb(208,200,53)" rx="2" ry="2" />
<text x="403.15" y="671.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="299.9" y="437" width="0.4" height="15.0" fill="rgb(212,124,20)" rx="2" ry="2" />
<text x="302.93" y="447.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (32 samples, 0.16%)</title><rect x="571.8" y="437" width="1.9" height="15.0" fill="rgb(250,188,5)" rx="2" ry="2" />
<text x="574.80" y="447.5" ></text>
</g>
<g >
<title>__strchrnul (3 samples, 0.01%)</title><rect x="975.5" y="517" width="0.1" height="15.0" fill="rgb(239,35,7)" rx="2" ry="2" />
<text x="978.46" y="527.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (79 samples, 0.39%)</title><rect x="823.4" y="501" width="4.7" height="15.0" fill="rgb(252,150,6)" rx="2" ry="2" />
<text x="826.45" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="609.7" y="469" width="0.2" height="15.0" fill="rgb(217,86,10)" rx="2" ry="2" />
<text x="612.73" y="479.5" ></text>
</g>
<g >
<title>X509V3_get_d2i (3 samples, 0.01%)</title><rect x="590.7" y="421" width="0.2" height="15.0" fill="rgb(210,111,8)" rx="2" ry="2" />
<text x="593.74" y="431.5" ></text>
</g>
<g >
<title>ssl_analyseStream (299 samples, 1.49%)</title><rect x="578.8" y="501" width="17.7" height="15.0" fill="rgb(245,64,16)" rx="2" ry="2" />
<text x="581.82" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="818.4" y="501" width="0.2" height="15.0" fill="rgb(252,185,26)" rx="2" ry="2" />
<text x="821.43" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="421.2" y="741" width="0.1" height="15.0" fill="rgb(233,112,40)" rx="2" ry="2" />
<text x="424.21" y="751.5" ></text>
</g>
<g >
<title>http_findAndDoWithRegion (15 samples, 0.07%)</title><rect x="573.9" y="485" width="0.9" height="15.0" fill="rgb(223,62,54)" rx="2" ry="2" />
<text x="576.93" y="495.5" ></text>
</g>
<g >
<title>MV_Sketch_update (7 samples, 0.03%)</title><rect x="872.3" y="549" width="0.5" height="15.0" fill="rgb(212,72,24)" rx="2" ry="2" />
<text x="875.35" y="559.5" ></text>
</g>
<g >
<title>[app_proto_identify.so] (167 samples, 0.83%)</title><rect x="843.7" y="549" width="9.8" height="15.0" fill="rgb(228,110,38)" rx="2" ry="2" />
<text x="846.68" y="559.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (175 samples, 0.87%)</title><rect x="308.6" y="565" width="10.3" height="15.0" fill="rgb(221,11,36)" rx="2" ry="2" />
<text x="311.60" y="575.5" ></text>
</g>
<g >
<title>[sapp] (41 samples, 0.20%)</title><rect x="987.6" y="693" width="2.4" height="15.0" fill="rgb(212,202,18)" rx="2" ry="2" />
<text x="990.55" y="703.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (5 samples, 0.02%)</title><rect x="302.9" y="533" width="0.3" height="15.0" fill="rgb(212,38,51)" rx="2" ry="2" />
<text x="305.88" y="543.5" ></text>
</g>
<g >
<title>project_requirement_destroy (31 samples, 0.15%)</title><rect x="923.7" y="693" width="1.8" height="15.0" fill="rgb(207,219,31)" rx="2" ry="2" />
<text x="926.67" y="703.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="316.1" y="293" width="0.5" height="15.0" fill="rgb(214,203,24)" rx="2" ry="2" />
<text x="319.15" y="303.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (124 samples, 0.62%)</title><rect x="311.1" y="453" width="7.3" height="15.0" fill="rgb(252,114,47)" rx="2" ry="2" />
<text x="314.08" y="463.5" ></text>
</g>
<g >
<title>stream_process_overlay_udp (9 samples, 0.04%)</title><rect x="496.6" y="661" width="0.5" height="15.0" fill="rgb(218,215,19)" rx="2" ry="2" />
<text x="499.59" y="671.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (12 samples, 0.06%)</title><rect x="985.3" y="517" width="0.7" height="15.0" fill="rgb(241,70,21)" rx="2" ry="2" />
<text x="988.25" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (20 samples, 0.10%)</title><rect x="1011.4" y="485" width="1.2" height="15.0" fill="rgb(208,199,17)" rx="2" ry="2" />
<text x="1014.38" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="405" width="0.9" height="15.0" fill="rgb(235,174,18)" rx="2" ry="2" />
<text x="303.46" y="415.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (3 samples, 0.01%)</title><rect x="726.2" y="565" width="0.2" height="15.0" fill="rgb(239,196,49)" rx="2" ry="2" />
<text x="729.23" y="575.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (3 samples, 0.01%)</title><rect x="397.4" y="533" width="0.2" height="15.0" fill="rgb(227,37,17)" rx="2" ry="2" />
<text x="400.43" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (22 samples, 0.11%)</title><rect x="987.9" y="597" width="1.3" height="15.0" fill="rgb(254,192,1)" rx="2" ry="2" />
<text x="990.91" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="331.9" y="261" width="0.4" height="15.0" fill="rgb(250,225,29)" rx="2" ry="2" />
<text x="334.90" y="271.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (2 samples, 0.01%)</title><rect x="990.5" y="597" width="0.1" height="15.0" fill="rgb(205,18,30)" rx="2" ry="2" />
<text x="993.50" y="607.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (8 samples, 0.04%)</title><rect x="536.4" y="549" width="0.4" height="15.0" fill="rgb(210,37,20)" rx="2" ry="2" />
<text x="539.35" y="559.5" ></text>
</g>
<g >
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="1018.3" y="677" width="0.2" height="15.0" fill="rgb(224,212,14)" rx="2" ry="2" />
<text x="1021.34" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="345.1" y="453" width="0.3" height="15.0" fill="rgb(228,183,29)" rx="2" ry="2" />
<text x="348.11" y="463.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (80 samples, 0.40%)</title><rect x="931.0" y="661" width="4.7" height="15.0" fill="rgb(244,133,32)" rx="2" ry="2" />
<text x="933.98" y="671.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="517" width="0.3" height="15.0" fill="rgb(250,149,51)" rx="2" ry="2" />
<text x="990.55" y="527.5" ></text>
</g>
<g >
<title>memcpy@plt (3 samples, 0.01%)</title><rect x="911.3" y="725" width="0.2" height="15.0" fill="rgb(238,49,5)" rx="2" ry="2" />
<text x="914.28" y="735.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (3 samples, 0.01%)</title><rect x="587.4" y="277" width="0.2" height="15.0" fill="rgb(247,37,33)" rx="2" ry="2" />
<text x="590.38" y="287.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_udp_entry (107 samples, 0.53%)</title><rect x="855.1" y="549" width="6.3" height="15.0" fill="rgb(233,195,29)" rx="2" ry="2" />
<text x="858.12" y="559.5" ></text>
</g>
<g >
<title>stream_process (15 samples, 0.07%)</title><rect x="1012.9" y="565" width="0.9" height="15.0" fill="rgb(251,103,22)" rx="2" ry="2" />
<text x="1015.92" y="575.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="302.1" y="453" width="0.1" height="15.0" fill="rgb(222,67,45)" rx="2" ry="2" />
<text x="305.05" y="463.5" ></text>
</g>
<g >
<title>dealipv4udppkt (105 samples, 0.52%)</title><rect x="1009.6" y="693" width="6.2" height="15.0" fill="rgb(210,188,14)" rx="2" ry="2" />
<text x="1012.61" y="703.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (2 samples, 0.01%)</title><rect x="401.6" y="613" width="0.1" height="15.0" fill="rgb(214,77,18)" rx="2" ry="2" />
<text x="404.56" y="623.5" ></text>
</g>
<g >
<title>app_proto_worke_process (31 samples, 0.15%)</title><rect x="1013.9" y="533" width="1.8" height="15.0" fill="rgb(247,4,12)" rx="2" ry="2" />
<text x="1016.86" y="543.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="489.6" y="597" width="0.2" height="15.0" fill="rgb(247,149,4)" rx="2" ry="2" />
<text x="492.63" y="607.5" ></text>
</g>
<g >
<title>c2i_ASN1_OBJECT (4 samples, 0.02%)</title><rect x="333.8" y="245" width="0.2" height="15.0" fill="rgb(224,18,7)" rx="2" ry="2" />
<text x="336.79" y="255.5" ></text>
</g>
<g >
<title>__snprintf (26 samples, 0.13%)</title><rect x="977.8" y="613" width="1.6" height="15.0" fill="rgb(232,89,45)" rx="2" ry="2" />
<text x="980.82" y="623.5" ></text>
</g>
<g >
<title>stream_process (38 samples, 0.19%)</title><rect x="987.6" y="645" width="2.2" height="15.0" fill="rgb(226,184,1)" rx="2" ry="2" />
<text x="990.55" y="655.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (20 samples, 0.10%)</title><rect x="853.7" y="549" width="1.2" height="15.0" fill="rgb(210,20,34)" rx="2" ry="2" />
<text x="856.71" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="996.1" y="581" width="0.1" height="15.0" fill="rgb(251,169,10)" rx="2" ry="2" />
<text x="999.11" y="591.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (4 samples, 0.02%)</title><rect x="837.8" y="517" width="0.3" height="15.0" fill="rgb(209,179,24)" rx="2" ry="2" />
<text x="840.84" y="527.5" ></text>
</g>
<g >
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="1016.8" y="469" width="0.2" height="15.0" fill="rgb(218,170,28)" rx="2" ry="2" />
<text x="1019.75" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="363.3" y="453" width="0.6" height="15.0" fill="rgb(234,165,47)" rx="2" ry="2" />
<text x="366.34" y="463.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="563.3" y="421" width="0.1" height="15.0" fill="rgb(220,41,40)" rx="2" ry="2" />
<text x="566.25" y="431.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="989.8" y="501" width="0.1" height="15.0" fill="rgb(245,137,54)" rx="2" ry="2" />
<text x="992.79" y="511.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (27 samples, 0.13%)</title><rect x="543.4" y="565" width="1.6" height="15.0" fill="rgb(210,44,49)" rx="2" ry="2" />
<text x="546.37" y="575.5" ></text>
</g>
<g >
<title>tsg_app_id2name (2 samples, 0.01%)</title><rect x="983.0" y="469" width="0.1" height="15.0" fill="rgb(246,8,3)" rx="2" ry="2" />
<text x="985.95" y="479.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (9 samples, 0.04%)</title><rect x="381.5" y="469" width="0.5" height="15.0" fill="rgb(238,105,18)" rx="2" ry="2" />
<text x="384.51" y="479.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="998.3" y="677" width="0.2" height="15.0" fill="rgb(211,97,34)" rx="2" ry="2" />
<text x="1001.35" y="687.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (6 samples, 0.03%)</title><rect x="800.9" y="453" width="0.4" height="15.0" fill="rgb(232,102,35)" rx="2" ry="2" />
<text x="803.91" y="463.5" ></text>
</g>
<g >
<title>app_proto_worke_process (103 samples, 0.51%)</title><rect x="388.7" y="565" width="6.1" height="15.0" fill="rgb(234,28,35)" rx="2" ry="2" />
<text x="391.70" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1010.4" y="325" width="0.5" height="15.0" fill="rgb(211,94,14)" rx="2" ry="2" />
<text x="1013.44" y="335.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (2 samples, 0.01%)</title><rect x="494.6" y="661" width="0.2" height="15.0" fill="rgb(244,30,34)" rx="2" ry="2" />
<text x="497.65" y="671.5" ></text>
</g>
<g >
<title>tsg_send_log (3 samples, 0.01%)</title><rect x="1009.6" y="533" width="0.2" height="15.0" fill="rgb(247,101,41)" rx="2" ry="2" />
<text x="1012.61" y="543.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (44 samples, 0.22%)</title><rect x="385.6" y="581" width="2.6" height="15.0" fill="rgb(232,225,6)" rx="2" ry="2" />
<text x="388.58" y="591.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (7 samples, 0.03%)</title><rect x="493.9" y="501" width="0.4" height="15.0" fill="rgb(225,162,12)" rx="2" ry="2" />
<text x="496.88" y="511.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_ip_entry (14 samples, 0.07%)</title><rect x="872.0" y="581" width="0.8" height="15.0" fill="rgb(226,205,28)" rx="2" ry="2" />
<text x="874.99" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="327.1" y="309" width="0.1" height="15.0" fill="rgb(237,24,22)" rx="2" ry="2" />
<text x="330.06" y="319.5" ></text>
</g>
<g >
<title>stream_process_tcp (21 samples, 0.10%)</title><rect x="420.0" y="773" width="1.2" height="15.0" fill="rgb(227,90,30)" rx="2" ry="2" />
<text x="422.97" y="783.5" ></text>
</g>
<g >
<title>malloc@plt (2 samples, 0.01%)</title><rect x="650.7" y="517" width="0.1" height="15.0" fill="rgb(231,16,19)" rx="2" ry="2" />
<text x="653.73" y="527.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="1018.3" y="661" width="0.2" height="15.0" fill="rgb(221,8,0)" rx="2" ry="2" />
<text x="1021.34" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="301.2" y="229" width="0.1" height="15.0" fill="rgb(251,150,46)" rx="2" ry="2" />
<text x="304.22" y="239.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="303.2" y="533" width="0.3" height="15.0" fill="rgb(211,92,22)" rx="2" ry="2" />
<text x="306.23" y="543.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (5 samples, 0.02%)</title><rect x="541.6" y="533" width="0.3" height="15.0" fill="rgb(206,209,37)" rx="2" ry="2" />
<text x="544.60" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseStream (2 samples, 0.01%)</title><rect x="973.5" y="613" width="0.1" height="15.0" fill="rgb(205,160,12)" rx="2" ry="2" />
<text x="976.45" y="623.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.02%)</title><rect x="565.8" y="453" width="0.3" height="15.0" fill="rgb(229,110,24)" rx="2" ry="2" />
<text x="568.85" y="463.5" ></text>
</g>
<g >
<title>pbe_uevent_parent_create (2 samples, 0.01%)</title><rect x="318.2" y="389" width="0.1" height="15.0" fill="rgb(205,140,41)" rx="2" ry="2" />
<text x="321.21" y="399.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="625.4" y="469" width="0.5" height="15.0" fill="rgb(209,90,15)" rx="2" ry="2" />
<text x="628.42" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="472.1" y="613" width="0.4" height="15.0" fill="rgb(240,32,51)" rx="2" ry="2" />
<text x="475.11" y="623.5" ></text>
</g>
<g >
<title>SSL_ENTRY (11 samples, 0.05%)</title><rect x="986.6" y="677" width="0.7" height="15.0" fill="rgb(230,28,40)" rx="2" ry="2" />
<text x="989.61" y="687.5" ></text>
</g>
<g >
<title>tsg_record_quic_entry (3 samples, 0.01%)</title><rect x="835.8" y="469" width="0.2" height="15.0" fill="rgb(211,8,53)" rx="2" ry="2" />
<text x="838.83" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="852.6" y="501" width="0.1" height="15.0" fill="rgb(244,182,47)" rx="2" ry="2" />
<text x="855.59" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (17 samples, 0.08%)</title><rect x="585.1" y="437" width="1.0" height="15.0" fill="rgb(220,17,24)" rx="2" ry="2" />
<text x="588.13" y="447.5" ></text>
</g>
<g >
<title>__IO_vsprintf (27 samples, 0.13%)</title><rect x="388.7" y="517" width="1.6" height="15.0" fill="rgb(229,51,14)" rx="2" ry="2" />
<text x="391.70" y="527.5" ></text>
</g>
<g >
<title>hash_func (9 samples, 0.04%)</title><rect x="690.7" y="501" width="0.5" height="15.0" fill="rgb(221,151,34)" rx="2" ry="2" />
<text x="693.66" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (28 samples, 0.14%)</title><rect x="491.8" y="485" width="1.7" height="15.0" fill="rgb(207,43,25)" rx="2" ry="2" />
<text x="494.82" y="495.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (22 samples, 0.11%)</title><rect x="421.3" y="757" width="1.3" height="15.0" fill="rgb(249,2,24)" rx="2" ry="2" />
<text x="424.32" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="993.2" y="629" width="0.3" height="15.0" fill="rgb(238,30,48)" rx="2" ry="2" />
<text x="996.16" y="639.5" ></text>
</g>
<g >
<title>tcp_free_stream (2 samples, 0.01%)</title><rect x="975.9" y="661" width="0.1" height="15.0" fill="rgb(243,92,51)" rx="2" ry="2" />
<text x="978.87" y="671.5" ></text>
</g>
<g >
<title>marsio_buff_get_metadata (3 samples, 0.01%)</title><rect x="880.2" y="677" width="0.2" height="15.0" fill="rgb(212,105,50)" rx="2" ry="2" />
<text x="883.19" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="365.8" y="421" width="0.2" height="15.0" fill="rgb(248,165,13)" rx="2" ry="2" />
<text x="368.76" y="431.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (5 samples, 0.02%)</title><rect x="988.7" y="581" width="0.3" height="15.0" fill="rgb(254,23,52)" rx="2" ry="2" />
<text x="991.73" y="591.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (15 samples, 0.07%)</title><rect x="1012.9" y="581" width="0.9" height="15.0" fill="rgb(213,154,32)" rx="2" ry="2" />
<text x="1015.92" y="591.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="986.4" y="581" width="0.2" height="15.0" fill="rgb(225,99,40)" rx="2" ry="2" />
<text x="989.43" y="591.5" ></text>
</g>
<g >
<title>Maat_scan_intval (1,635 samples, 8.17%)</title><rect x="92.4" y="789" width="96.5" height="15.0" fill="rgb(246,104,27)" rx="2" ry="2" />
<text x="95.41" y="799.5" >Maat_scan_i..</text>
</g>
<g >
<title>[libMESA_handle_logger.so.2.0] (2 samples, 0.01%)</title><rect x="990.3" y="597" width="0.1" height="15.0" fill="rgb(210,144,19)" rx="2" ry="2" />
<text x="993.32" y="607.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1018.3" y="597" width="0.2" height="15.0" fill="rgb(223,79,44)" rx="2" ry="2" />
<text x="1021.34" y="607.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (9 samples, 0.04%)</title><rect x="396.7" y="549" width="0.5" height="15.0" fill="rgb(224,5,21)" rx="2" ry="2" />
<text x="399.67" y="559.5" ></text>
</g>
<g >
<title>dictator_malloc@plt (2 samples, 0.01%)</title><rect x="599.3" y="501" width="0.1" height="15.0" fill="rgb(220,12,30)" rx="2" ry="2" />
<text x="602.29" y="511.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.02%)</title><rect x="921.7" y="693" width="0.3" height="15.0" fill="rgb(229,206,47)" rx="2" ry="2" />
<text x="924.72" y="703.5" ></text>
</g>
<g >
<title>TLD_append (12 samples, 0.06%)</title><rect x="992.7" y="661" width="0.8" height="15.0" fill="rgb(232,94,45)" rx="2" ry="2" />
<text x="995.74" y="671.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (8 samples, 0.04%)</title><rect x="420.6" y="677" width="0.5" height="15.0" fill="rgb(205,172,0)" rx="2" ry="2" />
<text x="423.62" y="687.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (14 samples, 0.07%)</title><rect x="49.9" y="709" width="0.8" height="15.0" fill="rgb(219,32,14)" rx="2" ry="2" />
<text x="52.88" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="979.4" y="677" width="0.2" height="15.0" fill="rgb(219,203,39)" rx="2" ry="2" />
<text x="982.35" y="687.5" ></text>
</g>
<g >
<title>__GI___qsort_r (26 samples, 0.13%)</title><rect x="275.3" y="741" width="1.5" height="15.0" fill="rgb(247,134,30)" rx="2" ry="2" />
<text x="278.27" y="751.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="305.7" y="405" width="1.7" height="15.0" fill="rgb(228,25,45)" rx="2" ry="2" />
<text x="308.71" y="415.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (25 samples, 0.12%)</title><rect x="298.2" y="405" width="1.4" height="15.0" fill="rgb(221,159,5)" rx="2" ry="2" />
<text x="301.16" y="415.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (4 samples, 0.02%)</title><rect x="983.6" y="501" width="0.2" height="15.0" fill="rgb(212,52,49)" rx="2" ry="2" />
<text x="986.60" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="625.9" y="517" width="0.4" height="15.0" fill="rgb(215,212,53)" rx="2" ry="2" />
<text x="628.90" y="527.5" ></text>
</g>
<g >
<title>wangw_ingress_build_session_key (4 samples, 0.02%)</title><rect x="629.2" y="501" width="0.2" height="15.0" fill="rgb(234,99,41)" rx="2" ry="2" />
<text x="632.20" y="511.5" ></text>
</g>
<g >
<title>plugin_process_pending (29 samples, 0.14%)</title><rect x="336.0" y="453" width="1.7" height="15.0" fill="rgb(236,167,8)" rx="2" ry="2" />
<text x="338.97" y="463.5" ></text>
</g>
<g >
<title>[quic.so] (8 samples, 0.04%)</title><rect x="840.9" y="485" width="0.5" height="15.0" fill="rgb(213,102,1)" rx="2" ry="2" />
<text x="843.91" y="495.5" ></text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="999.8" y="677" width="0.1" height="15.0" fill="rgb(213,167,52)" rx="2" ry="2" />
<text x="1002.82" y="687.5" ></text>
</g>
<g >
<title>kni_polling_all_entry (241 samples, 1.20%)</title><rect x="958.8" y="725" width="14.2" height="15.0" fill="rgb(221,161,40)" rx="2" ry="2" />
<text x="961.77" y="735.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (42 samples, 0.21%)</title><rect x="984.8" y="693" width="2.5" height="15.0" fill="rgb(247,38,39)" rx="2" ry="2" />
<text x="987.84" y="703.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="1016.6" y="533" width="0.1" height="15.0" fill="rgb(223,24,33)" rx="2" ry="2" />
<text x="1019.57" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="975.9" y="549" width="0.1" height="15.0" fill="rgb(247,178,1)" rx="2" ry="2" />
<text x="978.87" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="989.8" y="549" width="0.2" height="15.0" fill="rgb(228,128,3)" rx="2" ry="2" />
<text x="992.79" y="559.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="928.6" y="597" width="0.1" height="15.0" fill="rgb(239,7,28)" rx="2" ry="2" />
<text x="931.56" y="607.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="538.7" y="517" width="0.1" height="15.0" fill="rgb(229,23,34)" rx="2" ry="2" />
<text x="541.71" y="527.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="557.8" y="405" width="0.1" height="15.0" fill="rgb(230,63,38)" rx="2" ry="2" />
<text x="560.82" y="415.5" ></text>
</g>
<g >
<title>http_callPlugin (15 samples, 0.07%)</title><rect x="569.3" y="437" width="0.9" height="15.0" fill="rgb(212,208,1)" rx="2" ry="2" />
<text x="572.33" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="1012.7" y="453" width="0.2" height="15.0" fill="rgb(225,167,20)" rx="2" ry="2" />
<text x="1015.74" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="948.0" y="645" width="0.3" height="15.0" fill="rgb(213,21,2)" rx="2" ry="2" />
<text x="951.03" y="655.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="1012.7" y="485" width="0.2" height="15.0" fill="rgb(236,32,37)" rx="2" ry="2" />
<text x="1015.68" y="495.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1015.8" y="709" width="0.1" height="15.0" fill="rgb(224,87,52)" rx="2" ry="2" />
<text x="1018.81" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="491.9" y="469" width="0.1" height="15.0" fill="rgb(222,110,46)" rx="2" ry="2" />
<text x="494.87" y="479.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="701.0" y="533" width="0.2" height="15.0" fill="rgb(222,55,1)" rx="2" ry="2" />
<text x="704.05" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="786.3" y="549" width="0.1" height="15.0" fill="rgb(247,189,5)" rx="2" ry="2" />
<text x="789.28" y="559.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (5 samples, 0.02%)</title><rect x="983.5" y="613" width="0.3" height="15.0" fill="rgb(236,106,51)" rx="2" ry="2" />
<text x="986.54" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1015.8" y="661" width="0.1" height="15.0" fill="rgb(228,43,43)" rx="2" ry="2" />
<text x="1018.81" y="671.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (18 samples, 0.09%)</title><rect x="330.2" y="261" width="1.0" height="15.0" fill="rgb(209,205,1)" rx="2" ry="2" />
<text x="333.19" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="679.4" y="517" width="0.1" height="15.0" fill="rgb(254,48,2)" rx="2" ry="2" />
<text x="682.40" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="420.2" y="629" width="0.2" height="15.0" fill="rgb(241,11,10)" rx="2" ry="2" />
<text x="423.20" y="639.5" ></text>
</g>
<g >
<title>udp_free_stream (16 samples, 0.08%)</title><rect x="928.0" y="709" width="1.0" height="15.0" fill="rgb(245,170,12)" rx="2" ry="2" />
<text x="931.03" y="719.5" ></text>
</g>
<g >
<title>dealipv6udppkt (3 samples, 0.01%)</title><rect x="873.5" y="613" width="0.1" height="15.0" fill="rgb(254,224,26)" rx="2" ry="2" />
<text x="876.47" y="623.5" ></text>
</g>
<g >
<title>X509V3_EXT_d2i (2 samples, 0.01%)</title><rect x="334.4" y="469" width="0.1" height="15.0" fill="rgb(211,212,51)" rx="2" ry="2" />
<text x="337.38" y="479.5" ></text>
</g>
<g >
<title>__sprintf (4 samples, 0.02%)</title><rect x="637.2" y="469" width="0.2" height="15.0" fill="rgb(226,183,6)" rx="2" ry="2" />
<text x="640.16" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="383.9" y="485" width="0.1" height="15.0" fill="rgb(221,17,16)" rx="2" ry="2" />
<text x="386.93" y="495.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="989.2" y="581" width="0.1" height="15.0" fill="rgb(240,183,38)" rx="2" ry="2" />
<text x="992.20" y="591.5" ></text>
</g>
<g >
<title>FS_operate (6 samples, 0.03%)</title><rect x="981.1" y="501" width="0.3" height="15.0" fill="rgb(243,74,17)" rx="2" ry="2" />
<text x="984.06" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (7 samples, 0.03%)</title><rect x="561.7" y="421" width="0.4" height="15.0" fill="rgb(219,64,9)" rx="2" ry="2" />
<text x="564.72" y="431.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (124 samples, 0.62%)</title><rect x="311.1" y="437" width="7.3" height="15.0" fill="rgb(237,228,9)" rx="2" ry="2" />
<text x="314.08" y="447.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_identify_udp_v4 (51 samples, 0.25%)</title><rect x="809.8" y="597" width="3.0" height="15.0" fill="rgb(214,65,10)" rx="2" ry="2" />
<text x="812.76" y="607.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (31 samples, 0.15%)</title><rect x="327.2" y="421" width="1.8" height="15.0" fill="rgb(214,209,6)" rx="2" ry="2" />
<text x="330.18" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (26 samples, 0.13%)</title><rect x="977.8" y="677" width="1.6" height="15.0" fill="rgb(230,119,53)" rx="2" ry="2" />
<text x="980.82" y="687.5" ></text>
</g>
<g >
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="928.0" y="693" width="0.2" height="15.0" fill="rgb(250,80,37)" rx="2" ry="2" />
<text x="931.03" y="703.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (26 samples, 0.13%)</title><rect x="977.8" y="629" width="1.6" height="15.0" fill="rgb(212,174,10)" rx="2" ry="2" />
<text x="980.82" y="639.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (21 samples, 0.10%)</title><rect x="982.1" y="581" width="1.3" height="15.0" fill="rgb(215,192,42)" rx="2" ry="2" />
<text x="985.13" y="591.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="368.4" y="533" width="0.1" height="15.0" fill="rgb(236,97,49)" rx="2" ry="2" />
<text x="371.41" y="543.5" ></text>
</g>
<g >
<title>plugin_process_close (7 samples, 0.03%)</title><rect x="374.4" y="453" width="0.4" height="15.0" fill="rgb(217,101,49)" rx="2" ry="2" />
<text x="377.37" y="463.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (2 samples, 0.01%)</title><rect x="809.4" y="501" width="0.1" height="15.0" fill="rgb(251,223,9)" rx="2" ry="2" />
<text x="812.41" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="400.7" y="565" width="0.2" height="15.0" fill="rgb(246,104,6)" rx="2" ry="2" />
<text x="403.74" y="575.5" ></text>
</g>
<g >
<title>__GI___isoc99_vsscanf (3 samples, 0.01%)</title><rect x="571.4" y="405" width="0.2" height="15.0" fill="rgb(239,65,37)" rx="2" ry="2" />
<text x="574.39" y="415.5" ></text>
</g>
<g >
<title>stream_process (8 samples, 0.04%)</title><rect x="990.3" y="677" width="0.5" height="15.0" fill="rgb(237,195,35)" rx="2" ry="2" />
<text x="993.32" y="687.5" ></text>
</g>
<g >
<title>stream_process_udp (8 samples, 0.04%)</title><rect x="388.2" y="597" width="0.5" height="15.0" fill="rgb(247,202,54)" rx="2" ry="2" />
<text x="391.23" y="607.5" ></text>
</g>
<g >
<title>syscall_trace_enter (5 samples, 0.02%)</title><rect x="936.2" y="677" width="0.3" height="15.0" fill="rgb(218,177,39)" rx="2" ry="2" />
<text x="939.23" y="687.5" ></text>
</g>
<g >
<title>dealipv4udppkt (56 samples, 0.28%)</title><rect x="987.5" y="773" width="3.3" height="15.0" fill="rgb(254,185,31)" rx="2" ry="2" />
<text x="990.49" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.05%)</title><rect x="302.2" y="501" width="0.7" height="15.0" fill="rgb(212,19,2)" rx="2" ry="2" />
<text x="305.23" y="511.5" ></text>
</g>
<g >
<title>Maat_table_get_by_id_raw@plt (2 samples, 0.01%)</title><rect x="200.6" y="741" width="0.2" height="15.0" fill="rgb(221,145,38)" rx="2" ry="2" />
<text x="203.65" y="751.5" ></text>
</g>
<g >
<title>[tsg_master.so] (31 samples, 0.15%)</title><rect x="994.2" y="629" width="1.8" height="15.0" fill="rgb(248,138,19)" rx="2" ry="2" />
<text x="997.16" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (9 samples, 0.04%)</title><rect x="330.5" y="181" width="0.5" height="15.0" fill="rgb(243,229,39)" rx="2" ry="2" />
<text x="333.48" y="191.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (2 samples, 0.01%)</title><rect x="928.9" y="581" width="0.1" height="15.0" fill="rgb(229,60,54)" rx="2" ry="2" />
<text x="931.86" y="591.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="1010.1" y="437" width="0.3" height="15.0" fill="rgb(216,224,45)" rx="2" ry="2" />
<text x="1013.09" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (19 samples, 0.09%)</title><rect x="369.7" y="469" width="1.1" height="15.0" fill="rgb(210,8,13)" rx="2" ry="2" />
<text x="372.71" y="479.5" ></text>
</g>
<g >
<title>sk_insert (2 samples, 0.01%)</title><rect x="331.1" y="245" width="0.1" height="15.0" fill="rgb(241,11,31)" rx="2" ry="2" />
<text x="334.13" y="255.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="785.8" y="565" width="0.1" height="15.0" fill="rgb(215,136,36)" rx="2" ry="2" />
<text x="788.75" y="575.5" ></text>
</g>
<g >
<title>SSL_ENTRY (322 samples, 1.61%)</title><rect x="578.1" y="517" width="19.0" height="15.0" fill="rgb(209,145,3)" rx="2" ry="2" />
<text x="581.12" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="1013.9" y="485" width="1.7" height="15.0" fill="rgb(235,187,27)" rx="2" ry="2" />
<text x="1016.86" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="388.4" y="469" width="0.1" height="15.0" fill="rgb(247,36,12)" rx="2" ry="2" />
<text x="391.35" y="479.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (3 samples, 0.01%)</title><rect x="587.4" y="309" width="0.2" height="15.0" fill="rgb(248,33,23)" rx="2" ry="2" />
<text x="590.38" y="319.5" ></text>
</g>
<g >
<title>[tsg_master.so] (15 samples, 0.07%)</title><rect x="1001.2" y="645" width="0.9" height="15.0" fill="rgb(220,31,44)" rx="2" ry="2" />
<text x="1004.24" y="655.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (259 samples, 1.29%)</title><rect x="143.0" y="645" width="15.2" height="15.0" fill="rgb(252,76,33)" rx="2" ry="2" />
<text x="145.96" y="655.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="597.4" y="469" width="0.1" height="15.0" fill="rgb(221,111,14)" rx="2" ry="2" />
<text x="600.40" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (148 samples, 0.74%)</title><rect x="776.8" y="517" width="8.7" height="15.0" fill="rgb(237,13,47)" rx="2" ry="2" />
<text x="779.79" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="469" width="0.1" height="15.0" fill="rgb(251,5,48)" rx="2" ry="2" />
<text x="404.56" y="479.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="1005.0" y="725" width="0.2" height="15.0" fill="rgb(222,133,50)" rx="2" ry="2" />
<text x="1008.01" y="735.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="385.6" y="549" width="0.2" height="15.0" fill="rgb(236,63,8)" rx="2" ry="2" />
<text x="388.58" y="559.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (6 samples, 0.03%)</title><rect x="853.2" y="501" width="0.3" height="15.0" fill="rgb(220,159,8)" rx="2" ry="2" />
<text x="856.18" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="304.9" y="549" width="0.1" height="15.0" fill="rgb(233,174,18)" rx="2" ry="2" />
<text x="307.88" y="559.5" ></text>
</g>
<g >
<title>plugin_call_appentry (94 samples, 0.47%)</title><rect x="997.5" y="725" width="5.6" height="15.0" fill="rgb(243,166,1)" rx="2" ry="2" />
<text x="1000.52" y="735.5" ></text>
</g>
<g >
<title>stream_process (8 samples, 0.04%)</title><rect x="388.2" y="581" width="0.5" height="15.0" fill="rgb(227,89,9)" rx="2" ry="2" />
<text x="391.23" y="591.5" ></text>
</g>
<g >
<title>marsio_send_burst_flush (57 samples, 0.28%)</title><rect x="911.5" y="741" width="3.3" height="15.0" fill="rgb(236,31,33)" rx="2" ry="2" />
<text x="914.46" y="751.5" ></text>
</g>
<g >
<title>packet_io_hook_input (28 samples, 0.14%)</title><rect x="878.8" y="709" width="1.6" height="15.0" fill="rgb(232,144,5)" rx="2" ry="2" />
<text x="881.78" y="719.5" ></text>
</g>
<g >
<title>rd_kafka_topic_partition_available (2 samples, 0.01%)</title><rect x="381.9" y="421" width="0.1" height="15.0" fill="rgb(229,27,31)" rx="2" ry="2" />
<text x="384.86" y="431.5" ></text>
</g>
<g >
<title>[sapp] (49 samples, 0.24%)</title><rect x="955.9" y="709" width="2.9" height="15.0" fill="rgb(214,1,2)" rx="2" ry="2" />
<text x="958.88" y="719.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (7 samples, 0.03%)</title><rect x="301.5" y="389" width="0.4" height="15.0" fill="rgb(253,119,3)" rx="2" ry="2" />
<text x="304.52" y="399.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (12 samples, 0.06%)</title><rect x="160.0" y="725" width="0.7" height="15.0" fill="rgb(222,18,48)" rx="2" ry="2" />
<text x="163.01" y="735.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (3 samples, 0.01%)</title><rect x="381.9" y="453" width="0.1" height="15.0" fill="rgb(216,81,28)" rx="2" ry="2" />
<text x="384.86" y="463.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (5 samples, 0.02%)</title><rect x="792.5" y="549" width="0.3" height="15.0" fill="rgb(242,69,23)" rx="2" ry="2" />
<text x="795.54" y="559.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="420.4" y="597" width="0.2" height="15.0" fill="rgb(243,124,26)" rx="2" ry="2" />
<text x="423.44" y="607.5" ></text>
</g>
<g >
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="819.0" y="485" width="0.3" height="15.0" fill="rgb(218,172,19)" rx="2" ry="2" />
<text x="822.02" y="495.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="683.4" y="437" width="0.1" height="15.0" fill="rgb(241,13,18)" rx="2" ry="2" />
<text x="686.35" y="447.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (3 samples, 0.01%)</title><rect x="222.4" y="725" width="0.2" height="15.0" fill="rgb(236,150,37)" rx="2" ry="2" />
<text x="225.42" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="985.5" y="469" width="0.2" height="15.0" fill="rgb(212,89,12)" rx="2" ry="2" />
<text x="988.49" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCPALL_PLUG_ENTRY (18 samples, 0.09%)</title><rect x="626.7" y="517" width="1.0" height="15.0" fill="rgb(237,50,48)" rx="2" ry="2" />
<text x="629.66" y="527.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (8 samples, 0.04%)</title><rect x="401.7" y="533" width="0.5" height="15.0" fill="rgb(208,206,20)" rx="2" ry="2" />
<text x="404.68" y="543.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (13 samples, 0.06%)</title><rect x="809.9" y="581" width="0.8" height="15.0" fill="rgb(239,22,0)" rx="2" ry="2" />
<text x="812.94" y="591.5" ></text>
</g>
<g >
<title>qmdpi_flow_offload (9 samples, 0.04%)</title><rect x="552.8" y="469" width="0.5" height="15.0" fill="rgb(231,93,16)" rx="2" ry="2" />
<text x="555.75" y="479.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="383.6" y="421" width="0.1" height="15.0" fill="rgb(249,190,27)" rx="2" ry="2" />
<text x="386.63" y="431.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (5 samples, 0.02%)</title><rect x="1017.0" y="533" width="0.3" height="15.0" fill="rgb(216,9,9)" rx="2" ry="2" />
<text x="1020.05" y="543.5" ></text>
</g>
<g >
<title>[libqmengine.so] (44 samples, 0.22%)</title><rect x="297.9" y="485" width="2.6" height="15.0" fill="rgb(243,101,16)" rx="2" ry="2" />
<text x="300.86" y="495.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="471.7" y="629" width="0.1" height="15.0" fill="rgb(214,62,50)" rx="2" ry="2" />
<text x="474.70" y="639.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (11 samples, 0.05%)</title><rect x="976.0" y="613" width="0.6" height="15.0" fill="rgb(252,182,14)" rx="2" ry="2" />
<text x="978.99" y="623.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (2 samples, 0.01%)</title><rect x="56.4" y="741" width="0.1" height="15.0" fill="rgb(216,4,47)" rx="2" ry="2" />
<text x="59.36" y="751.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (1,352 samples, 6.76%)</title><rect x="308.4" y="661" width="79.8" height="15.0" fill="rgb(245,229,28)" rx="2" ry="2" />
<text x="311.42" y="671.5" >dealipv4t..</text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (101 samples, 0.50%)</title><rect x="182.6" y="709" width="6.0" height="15.0" fill="rgb(221,5,39)" rx="2" ry="2" />
<text x="185.60" y="719.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (8 samples, 0.04%)</title><rect x="999.3" y="629" width="0.5" height="15.0" fill="rgb(222,225,4)" rx="2" ry="2" />
<text x="1002.29" y="639.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="979.4" y="597" width="0.2" height="15.0" fill="rgb(225,145,48)" rx="2" ry="2" />
<text x="982.35" y="607.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="597.4" y="485" width="0.1" height="15.0" fill="rgb(238,200,25)" rx="2" ry="2" />
<text x="600.40" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="594.2" y="341" width="0.4" height="15.0" fill="rgb(234,91,43)" rx="2" ry="2" />
<text x="597.22" y="351.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (28 samples, 0.14%)</title><rect x="369.7" y="485" width="1.7" height="15.0" fill="rgb(223,128,29)" rx="2" ry="2" />
<text x="372.71" y="495.5" ></text>
</g>
<g >
<title>get_propluginfo_plugid (2 samples, 0.01%)</title><rect x="572.0" y="373" width="0.2" height="15.0" fill="rgb(249,68,8)" rx="2" ry="2" />
<text x="575.04" y="383.5" ></text>
</g>
<g >
<title>stream_process_udp (3 samples, 0.01%)</title><rect x="1009.6" y="629" width="0.2" height="15.0" fill="rgb(237,25,48)" rx="2" ry="2" />
<text x="1012.61" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="335.6" y="389" width="0.1" height="15.0" fill="rgb(243,197,52)" rx="2" ry="2" />
<text x="338.56" y="399.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (9 samples, 0.04%)</title><rect x="399.4" y="597" width="0.6" height="15.0" fill="rgb(246,135,17)" rx="2" ry="2" />
<text x="402.44" y="607.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (5 samples, 0.02%)</title><rect x="987.0" y="517" width="0.3" height="15.0" fill="rgb(231,98,52)" rx="2" ry="2" />
<text x="989.96" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="485" width="3.9" height="15.0" fill="rgb(206,27,10)" rx="2" ry="2" />
<text x="393.77" y="495.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="421.1" y="661" width="0.1" height="15.0" fill="rgb(252,229,47)" rx="2" ry="2" />
<text x="424.09" y="671.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (11 samples, 0.05%)</title><rect x="603.2" y="469" width="0.7" height="15.0" fill="rgb(234,8,11)" rx="2" ry="2" />
<text x="606.24" y="479.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (5 samples, 0.02%)</title><rect x="639.4" y="453" width="0.3" height="15.0" fill="rgb(206,25,38)" rx="2" ry="2" />
<text x="642.40" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (6 samples, 0.03%)</title><rect x="308.0" y="565" width="0.4" height="15.0" fill="rgb(248,103,2)" rx="2" ry="2" />
<text x="311.01" y="575.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="421.2" y="757" width="0.1" height="15.0" fill="rgb(226,71,8)" rx="2" ry="2" />
<text x="424.21" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="300.5" y="277" width="0.1" height="15.0" fill="rgb(253,75,14)" rx="2" ry="2" />
<text x="303.52" y="287.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="400.1" y="613" width="0.2" height="15.0" fill="rgb(237,147,24)" rx="2" ry="2" />
<text x="403.15" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (26 samples, 0.13%)</title><rect x="977.8" y="661" width="1.6" height="15.0" fill="rgb(252,67,10)" rx="2" ry="2" />
<text x="980.82" y="671.5" ></text>
</g>
<g >
<title>docanalyze_startstream (8 samples, 0.04%)</title><rect x="570.9" y="389" width="0.5" height="15.0" fill="rgb(214,140,50)" rx="2" ry="2" />
<text x="573.92" y="399.5" ></text>
</g>
<g >
<title>stream_process (36 samples, 0.18%)</title><rect x="973.7" y="661" width="2.2" height="15.0" fill="rgb(224,208,2)" rx="2" ry="2" />
<text x="976.75" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.02%)</title><rect x="335.7" y="373" width="0.3" height="15.0" fill="rgb(209,63,50)" rx="2" ry="2" />
<text x="338.73" y="383.5" ></text>
</g>
<g >
<title>__strcasecmp_l_avx (2 samples, 0.01%)</title><rect x="852.9" y="501" width="0.1" height="15.0" fill="rgb(234,183,44)" rx="2" ry="2" />
<text x="855.88" y="511.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="301.2" y="197" width="0.1" height="15.0" fill="rgb(245,190,26)" rx="2" ry="2" />
<text x="304.22" y="207.5" ></text>
</g>
<g >
<title>TLD_create (5 samples, 0.02%)</title><rect x="985.4" y="501" width="0.3" height="15.0" fill="rgb(210,127,15)" rx="2" ry="2" />
<text x="988.43" y="511.5" ></text>
</g>
<g >
<title>lrustream (7 samples, 0.03%)</title><rect x="308.0" y="709" width="0.4" height="15.0" fill="rgb(253,56,44)" rx="2" ry="2" />
<text x="311.01" y="719.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (35 samples, 0.17%)</title><rect x="388.7" y="549" width="2.1" height="15.0" fill="rgb(216,9,37)" rx="2" ry="2" />
<text x="391.70" y="559.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="835.8" y="453" width="0.2" height="15.0" fill="rgb(209,75,0)" rx="2" ry="2" />
<text x="838.83" y="463.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="990.5" y="565" width="0.1" height="15.0" fill="rgb(236,191,10)" rx="2" ry="2" />
<text x="993.50" y="575.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="986.3" y="549" width="0.1" height="15.0" fill="rgb(238,84,44)" rx="2" ry="2" />
<text x="989.31" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (311 samples, 1.55%)</title><rect x="343.8" y="485" width="18.4" height="15.0" fill="rgb(228,222,51)" rx="2" ry="2" />
<text x="346.81" y="495.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (21 samples, 0.10%)</title><rect x="982.1" y="549" width="1.3" height="15.0" fill="rgb(223,50,31)" rx="2" ry="2" />
<text x="985.13" y="559.5" ></text>
</g>
<g >
<title>__snprintf (6 samples, 0.03%)</title><rect x="421.7" y="709" width="0.4" height="15.0" fill="rgb(248,138,1)" rx="2" ry="2" />
<text x="424.74" y="719.5" ></text>
</g>
<g >
<title>scaling_bloom_check (34 samples, 0.17%)</title><rect x="810.8" y="581" width="2.0" height="15.0" fill="rgb(247,76,37)" rx="2" ry="2" />
<text x="813.76" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="985.0" y="661" width="0.1" height="15.0" fill="rgb(231,157,28)" rx="2" ry="2" />
<text x="987.96" y="671.5" ></text>
</g>
<g >
<title>BN_mod_inverse (6 samples, 0.03%)</title><rect x="592.1" y="325" width="0.3" height="15.0" fill="rgb(205,97,33)" rx="2" ry="2" />
<text x="595.10" y="335.5" ></text>
</g>
<g >
<title>memcmp@plt (3 samples, 0.01%)</title><rect x="876.4" y="693" width="0.1" height="15.0" fill="rgb(232,173,30)" rx="2" ry="2" />
<text x="879.36" y="703.5" ></text>
</g>
<g >
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="541.0" y="533" width="0.1" height="15.0" fill="rgb(206,68,10)" rx="2" ry="2" />
<text x="543.95" y="543.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (23 samples, 0.11%)</title><rect x="828.3" y="533" width="1.3" height="15.0" fill="rgb(205,131,50)" rx="2" ry="2" />
<text x="831.28" y="543.5" ></text>
</g>
<g >
<title>ssl_callPlugins (6 samples, 0.03%)</title><rect x="986.6" y="597" width="0.4" height="15.0" fill="rgb(218,190,31)" rx="2" ry="2" />
<text x="989.61" y="607.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (37 samples, 0.18%)</title><rect x="1000.4" y="677" width="2.1" height="15.0" fill="rgb(213,159,25)" rx="2" ry="2" />
<text x="1003.35" y="687.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (24 samples, 0.12%)</title><rect x="980.7" y="597" width="1.4" height="15.0" fill="rgb(245,69,20)" rx="2" ry="2" />
<text x="983.65" y="607.5" ></text>
</g>
<g >
<title>TLD_cancel (2 samples, 0.01%)</title><rect x="338.0" y="453" width="0.2" height="15.0" fill="rgb(246,159,11)" rx="2" ry="2" />
<text x="341.03" y="463.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="639.5" y="437" width="0.2" height="15.0" fill="rgb(224,193,13)" rx="2" ry="2" />
<text x="642.46" y="447.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="1017.0" y="453" width="0.2" height="15.0" fill="rgb(212,218,31)" rx="2" ry="2" />
<text x="1020.05" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (21 samples, 0.10%)</title><rect x="543.7" y="533" width="1.3" height="15.0" fill="rgb(208,220,40)" rx="2" ry="2" />
<text x="546.73" y="543.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="840.1" y="501" width="0.2" height="15.0" fill="rgb(223,74,37)" rx="2" ry="2" />
<text x="843.14" y="511.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.07%)</title><rect x="422.6" y="789" width="0.8" height="15.0" fill="rgb(238,41,13)" rx="2" ry="2" />
<text x="425.62" y="799.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="628.2" y="469" width="0.2" height="15.0" fill="rgb(248,6,13)" rx="2" ry="2" />
<text x="631.20" y="479.5" ></text>
</g>
<g >
<title>start_thread (105 samples, 0.52%)</title><rect x="1009.6" y="789" width="6.2" height="15.0" fill="rgb(245,70,36)" rx="2" ry="2" />
<text x="1012.61" y="799.5" ></text>
</g>
<g >
<title>[tsg_master.so] (8 samples, 0.04%)</title><rect x="996.3" y="613" width="0.5" height="15.0" fill="rgb(247,224,4)" rx="2" ry="2" />
<text x="999.34" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="396.3" y="549" width="0.1" height="15.0" fill="rgb(249,179,37)" rx="2" ry="2" />
<text x="399.25" y="559.5" ></text>
</g>
<g >
<title>plugin_process_pending (5 samples, 0.02%)</title><rect x="400.4" y="597" width="0.3" height="15.0" fill="rgb(230,211,32)" rx="2" ry="2" />
<text x="403.44" y="607.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="330.5" y="149" width="0.5" height="15.0" fill="rgb(240,131,40)" rx="2" ry="2" />
<text x="333.54" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (66 samples, 0.33%)</title><rect x="377.6" y="437" width="3.8" height="15.0" fill="rgb(219,107,3)" rx="2" ry="2" />
<text x="380.56" y="447.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="984.8" y="661" width="0.2" height="15.0" fill="rgb(254,39,23)" rx="2" ry="2" />
<text x="987.84" y="671.5" ></text>
</g>
<g >
<title>ASN1_item_free (24 samples, 0.12%)</title><rect x="588.6" y="421" width="1.4" height="15.0" fill="rgb(240,74,3)" rx="2" ry="2" />
<text x="591.62" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="852.7" y="501" width="0.2" height="15.0" fill="rgb(233,94,41)" rx="2" ry="2" />
<text x="855.71" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="318.2" y="373" width="0.1" height="15.0" fill="rgb(246,3,35)" rx="2" ry="2" />
<text x="321.21" y="383.5" ></text>
</g>
<g >
<title>_itoa_word (4 samples, 0.02%)</title><rect x="975.6" y="517" width="0.3" height="15.0" fill="rgb(220,125,16)" rx="2" ry="2" />
<text x="978.64" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="589.7" y="293" width="0.1" height="15.0" fill="rgb(233,225,23)" rx="2" ry="2" />
<text x="592.68" y="303.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (41 samples, 0.20%)</title><rect x="979.6" y="613" width="2.5" height="15.0" fill="rgb(242,183,21)" rx="2" ry="2" />
<text x="982.65" y="623.5" ></text>
</g>
<g >
<title>__schedule (100 samples, 0.50%)</title><rect x="1183.7" y="709" width="5.9" height="15.0" fill="rgb(213,197,34)" rx="2" ry="2" />
<text x="1186.75" y="719.5" ></text>
</g>
<g >
<title>__GI_qsort (2 samples, 0.01%)</title><rect x="276.9" y="741" width="0.1" height="15.0" fill="rgb(246,140,48)" rx="2" ry="2" />
<text x="279.92" y="751.5" ></text>
</g>
<g >
<title>__sprintf (2 samples, 0.01%)</title><rect x="373.2" y="501" width="0.1" height="15.0" fill="rgb(245,91,4)" rx="2" ry="2" />
<text x="376.19" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (19 samples, 0.09%)</title><rect x="329.1" y="437" width="1.1" height="15.0" fill="rgb(254,25,37)" rx="2" ry="2" />
<text x="332.07" y="447.5" ></text>
</g>
<g >
<title>streamaddlist (2 samples, 0.01%)</title><rect x="1018.3" y="709" width="0.2" height="15.0" fill="rgb(224,107,48)" rx="2" ry="2" />
<text x="1021.34" y="719.5" ></text>
</g>
<g >
<title>__sprintf (4 samples, 0.02%)</title><rect x="400.9" y="613" width="0.3" height="15.0" fill="rgb(252,222,49)" rx="2" ry="2" />
<text x="403.91" y="623.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (4 samples, 0.02%)</title><rect x="829.6" y="501" width="0.3" height="15.0" fill="rgb(213,106,53)" rx="2" ry="2" />
<text x="832.64" y="511.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (12 samples, 0.06%)</title><rect x="979.9" y="565" width="0.8" height="15.0" fill="rgb(241,174,0)" rx="2" ry="2" />
<text x="982.94" y="575.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="984.8" y="613" width="0.2" height="15.0" fill="rgb(209,137,41)" rx="2" ry="2" />
<text x="987.84" y="623.5" ></text>
</g>
<g >
<title>__GI_strcpy (3 samples, 0.01%)</title><rect x="373.0" y="501" width="0.2" height="15.0" fill="rgb(210,207,46)" rx="2" ry="2" />
<text x="376.01" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (5 samples, 0.02%)</title><rect x="493.5" y="501" width="0.3" height="15.0" fill="rgb(251,81,9)" rx="2" ry="2" />
<text x="496.53" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="420.6" y="597" width="0.4" height="15.0" fill="rgb(208,207,21)" rx="2" ry="2" />
<text x="423.62" y="607.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="373.5" y="517" width="0.2" height="15.0" fill="rgb(253,72,50)" rx="2" ry="2" />
<text x="376.54" y="527.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (5 samples, 0.02%)</title><rect x="983.5" y="565" width="0.3" height="15.0" fill="rgb(221,113,38)" rx="2" ry="2" />
<text x="986.54" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="334.0" y="261" width="0.1" height="15.0" fill="rgb(227,213,53)" rx="2" ry="2" />
<text x="337.02" y="271.5" ></text>
</g>
<g >
<title>http_tripleMatching (14 samples, 0.07%)</title><rect x="985.1" y="613" width="0.9" height="15.0" fill="rgb(217,148,47)" rx="2" ry="2" />
<text x="988.13" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="335.6" y="357" width="0.1" height="15.0" fill="rgb(247,15,6)" rx="2" ry="2" />
<text x="338.56" y="367.5" ></text>
</g>
<g >
<title>rd_malloc (3 samples, 0.01%)</title><rect x="362.7" y="453" width="0.2" height="15.0" fill="rgb(247,57,2)" rx="2" ry="2" />
<text x="365.69" y="463.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (8 samples, 0.04%)</title><rect x="680.9" y="485" width="0.5" height="15.0" fill="rgb(206,221,12)" rx="2" ry="2" />
<text x="683.93" y="495.5" ></text>
</g>
<g >
<title>http_add_proto_tag (6 samples, 0.03%)</title><rect x="568.1" y="501" width="0.4" height="15.0" fill="rgb(218,2,31)" rx="2" ry="2" />
<text x="571.15" y="511.5" ></text>
</g>
<g >
<title>packet_io_hook_forward (12 samples, 0.06%)</title><rect x="878.1" y="709" width="0.7" height="15.0" fill="rgb(214,63,34)" rx="2" ry="2" />
<text x="881.07" y="719.5" ></text>
</g>
<g >
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="400.4" y="629" width="0.3" height="15.0" fill="rgb(240,218,26)" rx="2" ry="2" />
<text x="403.44" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (20 samples, 0.10%)</title><rect x="1011.4" y="517" width="1.2" height="15.0" fill="rgb(214,0,27)" rx="2" ry="2" />
<text x="1014.38" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.3" y="501" width="0.2" height="15.0" fill="rgb(248,191,33)" rx="2" ry="2" />
<text x="497.29" y="511.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="322.6" y="389" width="0.2" height="15.0" fill="rgb(233,124,54)" rx="2" ry="2" />
<text x="325.58" y="399.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="564.4" y="469" width="0.1" height="15.0" fill="rgb(227,77,44)" rx="2" ry="2" />
<text x="567.37" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (14 samples, 0.07%)</title><rect x="393.3" y="373" width="0.8" height="15.0" fill="rgb(238,4,5)" rx="2" ry="2" />
<text x="396.31" y="383.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (26 samples, 0.13%)</title><rect x="977.8" y="709" width="1.6" height="15.0" fill="rgb(220,161,21)" rx="2" ry="2" />
<text x="980.82" y="719.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="1017.8" y="661" width="0.5" height="15.0" fill="rgb(254,111,32)" rx="2" ry="2" />
<text x="1020.75" y="671.5" ></text>
</g>
<g >
<title>rd_kafka_topic_partition_available (2 samples, 0.01%)</title><rect x="362.9" y="453" width="0.1" height="15.0" fill="rgb(221,61,30)" rx="2" ry="2" />
<text x="365.93" y="463.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (3 samples, 0.01%)</title><rect x="494.5" y="517" width="0.1" height="15.0" fill="rgb(244,119,54)" rx="2" ry="2" />
<text x="497.47" y="527.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (94 samples, 0.47%)</title><rect x="838.1" y="549" width="5.6" height="15.0" fill="rgb(220,68,52)" rx="2" ry="2" />
<text x="841.14" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (20 samples, 0.10%)</title><rect x="334.8" y="469" width="1.2" height="15.0" fill="rgb(247,85,17)" rx="2" ry="2" />
<text x="337.79" y="479.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (8 samples, 0.04%)</title><rect x="423.4" y="789" width="0.5" height="15.0" fill="rgb(217,173,8)" rx="2" ry="2" />
<text x="426.45" y="799.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (2 samples, 0.01%)</title><rect x="983.4" y="613" width="0.1" height="15.0" fill="rgb(233,223,29)" rx="2" ry="2" />
<text x="986.42" y="623.5" ></text>
</g>
<g >
<title>__strchrnul (3 samples, 0.01%)</title><rect x="421.9" y="661" width="0.2" height="15.0" fill="rgb(213,35,34)" rx="2" ry="2" />
<text x="424.91" y="671.5" ></text>
</g>
<g >
<title>CIPv4Match::search_rule (6 samples, 0.03%)</title><rect x="219.7" y="725" width="0.4" height="15.0" fill="rgb(208,8,4)" rx="2" ry="2" />
<text x="222.70" y="735.5" ></text>
</g>
<g >
<title>ssl_analyseStream (6 samples, 0.03%)</title><rect x="683.7" y="469" width="0.4" height="15.0" fill="rgb(217,31,32)" rx="2" ry="2" />
<text x="686.70" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (27 samples, 0.13%)</title><rect x="327.4" y="405" width="1.6" height="15.0" fill="rgb(247,77,34)" rx="2" ry="2" />
<text x="330.42" y="415.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="501" width="0.1" height="15.0" fill="rgb(251,93,54)" rx="2" ry="2" />
<text x="404.56" y="511.5" ></text>
</g>
<g >
<title>PROT_PROCESS (15 samples, 0.07%)</title><rect x="594.9" y="421" width="0.9" height="15.0" fill="rgb(232,6,8)" rx="2" ry="2" />
<text x="597.87" y="431.5" ></text>
</g>
<g >
<title>__GI_strcpy (2 samples, 0.01%)</title><rect x="397.6" y="517" width="0.1" height="15.0" fill="rgb(213,154,30)" rx="2" ry="2" />
<text x="400.61" y="527.5" ></text>
</g>
<g >
<title>memcasemem (4 samples, 0.02%)</title><rect x="611.2" y="485" width="0.2" height="15.0" fill="rgb(226,190,3)" rx="2" ry="2" />
<text x="614.21" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="485" width="0.2" height="15.0" fill="rgb(211,66,50)" rx="2" ry="2" />
<text x="987.84" y="495.5" ></text>
</g>
<g >
<title>malloc_and_copy_streamindex (8 samples, 0.04%)</title><rect x="542.4" y="565" width="0.4" height="15.0" fill="rgb(236,63,52)" rx="2" ry="2" />
<text x="545.37" y="575.5" ></text>
</g>
<g >
<title>[libqmengine.so] (7 samples, 0.03%)</title><rect x="562.3" y="421" width="0.4" height="15.0" fill="rgb(208,133,12)" rx="2" ry="2" />
<text x="565.31" y="431.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (4 samples, 0.02%)</title><rect x="792.6" y="533" width="0.2" height="15.0" fill="rgb(247,137,20)" rx="2" ry="2" />
<text x="795.60" y="543.5" ></text>
</g>
<g >
<title>stream_process (17 samples, 0.08%)</title><rect x="683.2" y="517" width="1.0" height="15.0" fill="rgb(230,58,17)" rx="2" ry="2" />
<text x="686.23" y="527.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="628.0" y="469" width="0.1" height="15.0" fill="rgb(222,19,5)" rx="2" ry="2" />
<text x="630.96" y="479.5" ></text>
</g>
<g >
<title>[fw_http_plug.so] (2 samples, 0.01%)</title><rect x="986.5" y="485" width="0.1" height="15.0" fill="rgb(222,64,40)" rx="2" ry="2" />
<text x="989.49" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="493.9" y="485" width="0.4" height="15.0" fill="rgb(216,43,47)" rx="2" ry="2" />
<text x="496.88" y="495.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (29 samples, 0.14%)</title><rect x="974.2" y="533" width="1.7" height="15.0" fill="rgb(224,186,20)" rx="2" ry="2" />
<text x="977.16" y="543.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="1013.7" y="485" width="0.1" height="15.0" fill="rgb(235,39,22)" rx="2" ry="2" />
<text x="1016.68" y="495.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (2 samples, 0.01%)</title><rect x="334.4" y="293" width="0.1" height="15.0" fill="rgb(241,179,31)" rx="2" ry="2" />
<text x="337.38" y="303.5" ></text>
</g>
<g >
<title>http_tripleMatching (3 samples, 0.01%)</title><rect x="420.2" y="661" width="0.2" height="15.0" fill="rgb(213,84,20)" rx="2" ry="2" />
<text x="423.20" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (23 samples, 0.11%)</title><rect x="608.3" y="485" width="1.3" height="15.0" fill="rgb(254,50,50)" rx="2" ry="2" />
<text x="611.26" y="495.5" ></text>
</g>
<g >
<title>bool_matcher_match (75 samples, 0.37%)</title><rect x="50.9" y="741" width="4.4" height="15.0" fill="rgb(217,103,17)" rx="2" ry="2" />
<text x="53.88" y="751.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="802.9" y="373" width="0.1" height="15.0" fill="rgb(218,109,7)" rx="2" ry="2" />
<text x="805.92" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="374.4" y="325" width="0.3" height="15.0" fill="rgb(237,115,53)" rx="2" ry="2" />
<text x="377.43" y="335.5" ></text>
</g>
<g >
<title>plugin_call_appentry (26 samples, 0.13%)</title><rect x="583.0" y="389" width="1.5" height="15.0" fill="rgb(251,74,21)" rx="2" ry="2" />
<text x="585.95" y="399.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (170 samples, 0.85%)</title><rect x="818.1" y="533" width="10.0" height="15.0" fill="rgb(243,96,21)" rx="2" ry="2" />
<text x="821.08" y="543.5" ></text>
</g>
<g >
<title>findstreamindex (263 samples, 1.31%)</title><rect x="472.9" y="661" width="15.6" height="15.0" fill="rgb(219,25,11)" rx="2" ry="2" />
<text x="475.94" y="671.5" ></text>
</g>
<g >
<title>CInflate2::fn_iDecodeHuffmanCodeBlock (6 samples, 0.03%)</title><rect x="572.9" y="325" width="0.4" height="15.0" fill="rgb(253,97,9)" rx="2" ry="2" />
<text x="575.92" y="335.5" ></text>
</g>
<g >
<title>__strchrnul (3 samples, 0.01%)</title><rect x="1004.6" y="693" width="0.2" height="15.0" fill="rgb(249,157,20)" rx="2" ry="2" />
<text x="1007.60" y="703.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (114 samples, 0.57%)</title><rect x="861.4" y="549" width="6.8" height="15.0" fill="rgb(211,171,0)" rx="2" ry="2" />
<text x="864.44" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="989.2" y="485" width="0.1" height="15.0" fill="rgb(208,203,4)" rx="2" ry="2" />
<text x="992.20" y="495.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (9 samples, 0.04%)</title><rect x="383.9" y="533" width="0.6" height="15.0" fill="rgb(231,187,11)" rx="2" ry="2" />
<text x="386.93" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="494.4" y="469" width="0.1" height="15.0" fill="rgb(251,75,30)" rx="2" ry="2" />
<text x="497.35" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="420.0" y="725" width="0.2" height="15.0" fill="rgb(229,46,22)" rx="2" ry="2" />
<text x="422.97" y="735.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="590.2" y="341" width="0.1" height="15.0" fill="rgb(207,111,41)" rx="2" ry="2" />
<text x="593.21" y="351.5" ></text>
</g>
<g >
<title>[sapp] (66 samples, 0.33%)</title><rect x="979.6" y="677" width="3.9" height="15.0" fill="rgb(251,151,17)" rx="2" ry="2" />
<text x="982.65" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="453" width="0.3" height="15.0" fill="rgb(223,126,32)" rx="2" ry="2" />
<text x="990.55" y="463.5" ></text>
</g>
<g >
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="683.0" y="533" width="0.2" height="15.0" fill="rgb(250,32,22)" rx="2" ry="2" />
<text x="686.00" y="543.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (5 samples, 0.02%)</title><rect x="1017.3" y="405" width="0.3" height="15.0" fill="rgb(238,10,43)" rx="2" ry="2" />
<text x="1020.34" y="415.5" ></text>
</g>
<g >
<title>string_search (368 samples, 1.84%)</title><rect x="22.6" y="773" width="21.7" height="15.0" fill="rgb(217,17,39)" rx="2" ry="2" />
<text x="25.56" y="783.5" >s..</text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="421.2" y="677" width="0.1" height="15.0" fill="rgb(235,179,34)" rx="2" ry="2" />
<text x="424.21" y="687.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (2 samples, 0.01%)</title><rect x="986.5" y="453" width="0.1" height="15.0" fill="rgb(213,195,31)" rx="2" ry="2" />
<text x="989.49" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="590.3" y="357" width="0.4" height="15.0" fill="rgb(223,78,49)" rx="2" ry="2" />
<text x="593.33" y="367.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (24 samples, 0.12%)</title><rect x="980.7" y="533" width="1.4" height="15.0" fill="rgb(243,147,5)" rx="2" ry="2" />
<text x="983.65" y="543.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="987.3" y="725" width="0.2" height="15.0" fill="rgb(232,138,15)" rx="2" ry="2" />
<text x="990.32" y="735.5" ></text>
</g>
<g >
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="541.1" y="533" width="0.1" height="15.0" fill="rgb(245,68,31)" rx="2" ry="2" />
<text x="544.07" y="543.5" ></text>
</g>
<g >
<title>__IO_vsprintf (7 samples, 0.03%)</title><rect x="1011.0" y="469" width="0.4" height="15.0" fill="rgb(229,202,40)" rx="2" ry="2" />
<text x="1013.97" y="479.5" ></text>
</g>
<g >
<title>project_requirement_create (6 samples, 0.03%)</title><rect x="542.9" y="565" width="0.4" height="15.0" fill="rgb(241,139,21)" rx="2" ry="2" />
<text x="545.90" y="575.5" ></text>
</g>
<g >
<title>stream_bridge_create_per_stream (7 samples, 0.03%)</title><rect x="795.0" y="581" width="0.4" height="15.0" fill="rgb(221,226,51)" rx="2" ry="2" />
<text x="797.96" y="591.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (3 samples, 0.01%)</title><rect x="792.4" y="549" width="0.1" height="15.0" fill="rgb(227,212,1)" rx="2" ry="2" />
<text x="795.36" y="559.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (15 samples, 0.07%)</title><rect x="536.9" y="485" width="0.9" height="15.0" fill="rgb(219,116,53)" rx="2" ry="2" />
<text x="539.94" y="495.5" ></text>
</g>
<g >
<title>start_thread (9,307 samples, 46.53%)</title><rect x="424.0" y="773" width="549.0" height="15.0" fill="rgb(245,42,18)" rx="2" ry="2" />
<text x="426.98" y="783.5" >start_thread</text>
</g>
<g >
<title>set_session_attributes (3 samples, 0.01%)</title><rect x="977.6" y="581" width="0.2" height="15.0" fill="rgb(249,166,0)" rx="2" ry="2" />
<text x="980.64" y="591.5" ></text>
</g>
<g >
<title>[sapp] (5 samples, 0.02%)</title><rect x="927.7" y="597" width="0.3" height="15.0" fill="rgb(240,96,52)" rx="2" ry="2" />
<text x="930.68" y="607.5" ></text>
</g>
<g >
<title>grab_mid (348 samples, 1.74%)</title><rect x="236.3" y="773" width="20.5" height="15.0" fill="rgb(250,202,19)" rx="2" ry="2" />
<text x="239.28" y="783.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="420.0" y="645" width="0.2" height="15.0" fill="rgb(215,126,9)" rx="2" ry="2" />
<text x="422.97" y="655.5" ></text>
</g>
<g >
<title>qmdpi_worker_signature_get_byid (3 samples, 0.01%)</title><rect x="823.3" y="485" width="0.1" height="15.0" fill="rgb(237,176,7)" rx="2" ry="2" />
<text x="826.27" y="495.5" ></text>
</g>
<g >
<title>ssl_callPlugins (5 samples, 0.02%)</title><rect x="1017.3" y="565" width="0.3" height="15.0" fill="rgb(234,77,1)" rx="2" ry="2" />
<text x="1020.34" y="575.5" ></text>
</g>
<g >
<title>update_polling_inject_context (4 samples, 0.02%)</title><rect x="868.8" y="597" width="0.2" height="15.0" fill="rgb(230,12,1)" rx="2" ry="2" />
<text x="871.75" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (47 samples, 0.23%)</title><rect x="254.0" y="725" width="2.8" height="15.0" fill="rgb(231,53,22)" rx="2" ry="2" />
<text x="257.03" y="735.5" ></text>
</g>
<g >
<title>scaling_bloom_check (163 samples, 0.81%)</title><rect x="691.2" y="565" width="9.6" height="15.0" fill="rgb(221,118,39)" rx="2" ry="2" />
<text x="694.20" y="575.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (49 samples, 0.24%)</title><rect x="305.0" y="565" width="2.9" height="15.0" fill="rgb(233,196,10)" rx="2" ry="2" />
<text x="308.00" y="575.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (8 samples, 0.04%)</title><rect x="1010.4" y="437" width="0.5" height="15.0" fill="rgb(241,134,37)" rx="2" ry="2" />
<text x="1013.44" y="447.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.02%)</title><rect x="335.7" y="357" width="0.3" height="15.0" fill="rgb(237,44,4)" rx="2" ry="2" />
<text x="338.73" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="551.9" y="453" width="0.2" height="15.0" fill="rgb(249,211,0)" rx="2" ry="2" />
<text x="554.87" y="463.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="987.3" y="693" width="0.1" height="15.0" fill="rgb(210,106,14)" rx="2" ry="2" />
<text x="990.32" y="703.5" ></text>
</g>
<g >
<title>[quic.so] (19 samples, 0.09%)</title><rect x="836.0" y="517" width="1.1" height="15.0" fill="rgb(232,180,32)" rx="2" ry="2" />
<text x="839.01" y="527.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (3 samples, 0.01%)</title><rect x="997.2" y="629" width="0.1" height="15.0" fill="rgb(214,17,21)" rx="2" ry="2" />
<text x="1000.17" y="639.5" ></text>
</g>
<g >
<title>stream_process (30 samples, 0.15%)</title><rect x="1016.0" y="677" width="1.8" height="15.0" fill="rgb(216,5,23)" rx="2" ry="2" />
<text x="1018.98" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (35 samples, 0.17%)</title><rect x="297.9" y="437" width="2.0" height="15.0" fill="rgb(240,177,40)" rx="2" ry="2" />
<text x="300.86" y="447.5" ></text>
</g>
<g >
<title>EC_GROUP_set_generator (8 samples, 0.04%)</title><rect x="591.6" y="357" width="0.5" height="15.0" fill="rgb(230,188,5)" rx="2" ry="2" />
<text x="594.62" y="367.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="983.4" y="629" width="0.1" height="15.0" fill="rgb(225,147,2)" rx="2" ry="2" />
<text x="986.42" y="639.5" ></text>
</g>
<g >
<title>fn_DocFormatCallBack (2 samples, 0.01%)</title><rect x="570.8" y="341" width="0.1" height="15.0" fill="rgb(248,115,10)" rx="2" ry="2" />
<text x="573.80" y="351.5" ></text>
</g>
<g >
<title>get_global_stream_id (2 samples, 0.01%)</title><rect x="542.1" y="549" width="0.1" height="15.0" fill="rgb(209,58,38)" rx="2" ry="2" />
<text x="545.07" y="559.5" ></text>
</g>
<g >
<title>__IO_vsprintf (27 samples, 0.13%)</title><rect x="308.6" y="485" width="1.6" height="15.0" fill="rgb(239,163,36)" rx="2" ry="2" />
<text x="311.60" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="986.4" y="517" width="0.2" height="15.0" fill="rgb(251,194,19)" rx="2" ry="2" />
<text x="989.43" y="527.5" ></text>
</g>
<g >
<title>stream_process_tcp (17 samples, 0.08%)</title><rect x="683.2" y="533" width="1.0" height="15.0" fill="rgb(224,5,10)" rx="2" ry="2" />
<text x="686.23" y="543.5" ></text>
</g>
<g >
<title>[libqmengine.so] (78 samples, 0.39%)</title><rect x="823.5" y="485" width="4.6" height="15.0" fill="rgb(240,222,22)" rx="2" ry="2" />
<text x="826.51" y="495.5" ></text>
</g>
<g >
<title>tsg_send_log (5 samples, 0.02%)</title><rect x="1017.0" y="485" width="0.3" height="15.0" fill="rgb(215,5,36)" rx="2" ry="2" />
<text x="1020.05" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (96 samples, 0.48%)</title><rect x="297.9" y="565" width="5.6" height="15.0" fill="rgb(218,178,30)" rx="2" ry="2" />
<text x="300.86" y="575.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="987.6" y="437" width="0.3" height="15.0" fill="rgb(243,172,37)" rx="2" ry="2" />
<text x="990.55" y="447.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="304.9" y="565" width="0.1" height="15.0" fill="rgb(227,109,37)" rx="2" ry="2" />
<text x="307.88" y="575.5" ></text>
</g>
<g >
<title>vxlan_entry (172 samples, 0.86%)</title><rect x="297.9" y="693" width="10.1" height="15.0" fill="rgb(210,215,24)" rx="2" ry="2" />
<text x="300.86" y="703.5" ></text>
</g>
<g >
<title>malloc_consolidate (8 samples, 0.04%)</title><rect x="365.3" y="421" width="0.5" height="15.0" fill="rgb(211,96,35)" rx="2" ry="2" />
<text x="368.29" y="431.5" ></text>
</g>
<g >
<title>MESA_htable_search (2 samples, 0.01%)</title><rect x="976.6" y="629" width="0.2" height="15.0" fill="rgb(237,149,39)" rx="2" ry="2" />
<text x="979.64" y="639.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="400.7" y="549" width="0.2" height="15.0" fill="rgb(230,179,17)" rx="2" ry="2" />
<text x="403.74" y="559.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="420.2" y="549" width="0.2" height="15.0" fill="rgb(244,132,12)" rx="2" ry="2" />
<text x="423.20" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.04%)</title><rect x="539.1" y="485" width="0.6" height="15.0" fill="rgb(217,135,46)" rx="2" ry="2" />
<text x="542.12" y="495.5" ></text>
</g>
<g >
<title>vxlan_entry (102 samples, 0.51%)</title><rect x="1009.8" y="677" width="6.0" height="15.0" fill="rgb(218,4,32)" rx="2" ry="2" />
<text x="1012.79" y="687.5" ></text>
</g>
<g >
<title>do_idle (2,906 samples, 14.53%)</title><rect x="1018.6" y="741" width="171.4" height="15.0" fill="rgb(219,84,20)" rx="2" ry="2" />
<text x="1021.58" y="751.5" >do_idle</text>
</g>
<g >
<title>MESA_htable_search (4 samples, 0.02%)</title><rect x="973.7" y="597" width="0.3" height="15.0" fill="rgb(209,209,34)" rx="2" ry="2" />
<text x="976.75" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="333.8" y="197" width="0.2" height="15.0" fill="rgb(254,31,49)" rx="2" ry="2" />
<text x="336.85" y="207.5" ></text>
</g>
<g >
<title>[libprotoident.so] (74 samples, 0.37%)</title><rect x="847.1" y="501" width="4.4" height="15.0" fill="rgb(239,20,3)" rx="2" ry="2" />
<text x="850.10" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (16 samples, 0.08%)</title><rect x="315.7" y="341" width="1.0" height="15.0" fill="rgb(231,149,24)" rx="2" ry="2" />
<text x="318.74" y="351.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (11 samples, 0.05%)</title><rect x="992.1" y="677" width="0.6" height="15.0" fill="rgb(209,126,16)" rx="2" ry="2" />
<text x="995.09" y="687.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (4 samples, 0.02%)</title><rect x="644.9" y="453" width="0.2" height="15.0" fill="rgb(244,179,41)" rx="2" ry="2" />
<text x="647.89" y="463.5" ></text>
</g>
<g >
<title>[ssl.so] (2 samples, 0.01%)</title><rect x="541.2" y="517" width="0.2" height="15.0" fill="rgb(208,154,25)" rx="2" ry="2" />
<text x="544.25" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="318.4" y="469" width="0.5" height="15.0" fill="rgb(234,3,2)" rx="2" ry="2" />
<text x="321.39" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="800.0" y="405" width="0.4" height="15.0" fill="rgb(210,141,39)" rx="2" ry="2" />
<text x="803.03" y="415.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (6 samples, 0.03%)</title><rect x="637.0" y="485" width="0.4" height="15.0" fill="rgb(223,98,35)" rx="2" ry="2" />
<text x="640.04" y="495.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (9 samples, 0.04%)</title><rect x="797.5" y="485" width="0.5" height="15.0" fill="rgb(247,130,7)" rx="2" ry="2" />
<text x="800.49" y="495.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (5 samples, 0.02%)</title><rect x="400.1" y="693" width="0.3" height="15.0" fill="rgb(222,140,10)" rx="2" ry="2" />
<text x="403.15" y="703.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (4 samples, 0.02%)</title><rect x="46.7" y="773" width="0.2" height="15.0" fill="rgb(226,158,3)" rx="2" ry="2" />
<text x="49.69" y="783.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (10 samples, 0.05%)</title><rect x="373.8" y="533" width="0.6" height="15.0" fill="rgb(241,20,51)" rx="2" ry="2" />
<text x="376.78" y="543.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (3 samples, 0.01%)</title><rect x="335.3" y="325" width="0.1" height="15.0" fill="rgb(224,145,46)" rx="2" ry="2" />
<text x="338.26" y="335.5" ></text>
</g>
<g >
<title>region_compile (1,302 samples, 6.51%)</title><rect x="94.8" y="773" width="76.8" height="15.0" fill="rgb(214,170,44)" rx="2" ry="2" />
<text x="97.77" y="783.5" >region_c..</text>
</g>
<g >
<title>wiregraft_strdup (15 samples, 0.07%)</title><rect x="614.9" y="501" width="0.9" height="15.0" fill="rgb(226,136,14)" rx="2" ry="2" />
<text x="617.92" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="973.6" y="549" width="0.1" height="15.0" fill="rgb(229,35,18)" rx="2" ry="2" />
<text x="976.57" y="559.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (4 samples, 0.02%)</title><rect x="948.0" y="677" width="0.3" height="15.0" fill="rgb(216,228,44)" rx="2" ry="2" />
<text x="951.03" y="687.5" ></text>
</g>
<g >
<title>mtx_lock (2 samples, 0.01%)</title><rect x="381.9" y="389" width="0.1" height="15.0" fill="rgb(218,141,4)" rx="2" ry="2" />
<text x="384.86" y="399.5" ></text>
</g>
<g >
<title>lrustream (8 samples, 0.04%)</title><rect x="388.2" y="645" width="0.5" height="15.0" fill="rgb(234,103,54)" rx="2" ry="2" />
<text x="391.23" y="655.5" ></text>
</g>
<g >
<title>operator new (4 samples, 0.02%)</title><rect x="985.5" y="485" width="0.2" height="15.0" fill="rgb(251,39,41)" rx="2" ry="2" />
<text x="988.49" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="1017.6" y="485" width="0.2" height="15.0" fill="rgb(250,5,37)" rx="2" ry="2" />
<text x="1020.64" y="495.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (57 samples, 0.28%)</title><rect x="231.1" y="693" width="3.4" height="15.0" fill="rgb(219,204,40)" rx="2" ry="2" />
<text x="234.15" y="703.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (28 samples, 0.14%)</title><rect x="1013.9" y="405" width="1.6" height="15.0" fill="rgb(251,226,7)" rx="2" ry="2" />
<text x="1016.86" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="569.9" y="293" width="0.3" height="15.0" fill="rgb(242,124,18)" rx="2" ry="2" />
<text x="572.92" y="303.5" ></text>
</g>
<g >
<title>ssl_protoRecg (4 samples, 0.02%)</title><rect x="595.8" y="469" width="0.2" height="15.0" fill="rgb(224,77,35)" rx="2" ry="2" />
<text x="598.75" y="479.5" ></text>
</g>
<g >
<title>http_findLineEnd (3 samples, 0.01%)</title><rect x="569.1" y="437" width="0.2" height="15.0" fill="rgb(221,40,13)" rx="2" ry="2" />
<text x="572.09" y="447.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (4 samples, 0.02%)</title><rect x="401.3" y="629" width="0.2" height="15.0" fill="rgb(218,34,53)" rx="2" ry="2" />
<text x="404.27" y="639.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (37 samples, 0.18%)</title><rect x="824.5" y="437" width="2.2" height="15.0" fill="rgb(251,165,24)" rx="2" ry="2" />
<text x="827.51" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="362.7" y="437" width="0.2" height="15.0" fill="rgb(225,50,26)" rx="2" ry="2" />
<text x="365.69" y="447.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (2 samples, 0.01%)</title><rect x="609.9" y="501" width="0.1" height="15.0" fill="rgb(222,59,25)" rx="2" ry="2" />
<text x="612.91" y="511.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (31 samples, 0.15%)</title><rect x="327.2" y="453" width="1.8" height="15.0" fill="rgb(251,171,0)" rx="2" ry="2" />
<text x="330.18" y="463.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="845.2" y="517" width="0.1" height="15.0" fill="rgb(238,193,43)" rx="2" ry="2" />
<text x="848.15" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="986.0" y="565" width="0.1" height="15.0" fill="rgb(220,28,42)" rx="2" ry="2" />
<text x="988.96" y="575.5" ></text>
</g>
<g >
<title>CBoolExprMatch::search_expr (224 samples, 1.12%)</title><rect x="175.3" y="725" width="13.3" height="15.0" fill="rgb(228,98,32)" rx="2" ry="2" />
<text x="178.34" y="735.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (3 samples, 0.01%)</title><rect x="592.6" y="341" width="0.1" height="15.0" fill="rgb(231,221,29)" rx="2" ry="2" />
<text x="595.57" y="351.5" ></text>
</g>
<g >
<title>del_stream_by_time (14 samples, 0.07%)</title><rect x="303.5" y="597" width="0.9" height="15.0" fill="rgb(239,94,52)" rx="2" ry="2" />
<text x="306.53" y="607.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (20 samples, 0.10%)</title><rect x="108.7" y="725" width="1.2" height="15.0" fill="rgb(238,155,48)" rx="2" ry="2" />
<text x="111.75" y="735.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (9 samples, 0.04%)</title><rect x="383.9" y="581" width="0.6" height="15.0" fill="rgb(214,107,51)" rx="2" ry="2" />
<text x="386.93" y="591.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="827.3" y="453" width="0.2" height="15.0" fill="rgb(229,48,38)" rx="2" ry="2" />
<text x="830.28" y="463.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (7 samples, 0.03%)</title><rect x="986.2" y="629" width="0.4" height="15.0" fill="rgb(211,51,9)" rx="2" ry="2" />
<text x="989.20" y="639.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="574.5" y="389" width="0.2" height="15.0" fill="rgb(236,65,46)" rx="2" ry="2" />
<text x="577.52" y="399.5" ></text>
</g>
<g >
<title>asn1_ex_c2i (11 samples, 0.05%)</title><rect x="333.4" y="261" width="0.6" height="15.0" fill="rgb(213,58,35)" rx="2" ry="2" />
<text x="336.37" y="271.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (7 samples, 0.03%)</title><rect x="372.5" y="485" width="0.5" height="15.0" fill="rgb(210,57,50)" rx="2" ry="2" />
<text x="375.54" y="495.5" ></text>
</g>
<g >
<title>__snprintf (28 samples, 0.14%)</title><rect x="1007.8" y="773" width="1.7" height="15.0" fill="rgb(217,119,13)" rx="2" ry="2" />
<text x="1010.84" y="783.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="625.9" y="533" width="0.4" height="15.0" fill="rgb(226,192,43)" rx="2" ry="2" />
<text x="628.90" y="543.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (5 samples, 0.02%)</title><rect x="602.6" y="437" width="0.3" height="15.0" fill="rgb(225,75,45)" rx="2" ry="2" />
<text x="605.60" y="447.5" ></text>
</g>
<g >
<title>project_req_get_struct (8 samples, 0.04%)</title><rect x="625.4" y="485" width="0.5" height="15.0" fill="rgb(218,174,19)" rx="2" ry="2" />
<text x="628.42" y="495.5" ></text>
</g>
<g >
<title>stream_process_tcp (7 samples, 0.03%)</title><rect x="402.2" y="725" width="0.4" height="15.0" fill="rgb(220,43,51)" rx="2" ry="2" />
<text x="405.15" y="735.5" ></text>
</g>
<g >
<title>stream_process (9 samples, 0.04%)</title><rect x="786.7" y="549" width="0.5" height="15.0" fill="rgb(208,43,39)" rx="2" ry="2" />
<text x="789.70" y="559.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="998.1" y="661" width="0.2" height="15.0" fill="rgb(240,124,44)" rx="2" ry="2" />
<text x="1001.05" y="671.5" ></text>
</g>
<g >
<title>copy_ipport_union_addr (6 samples, 0.03%)</title><rect x="792.0" y="581" width="0.4" height="15.0" fill="rgb(206,84,16)" rx="2" ry="2" />
<text x="795.01" y="591.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (2 samples, 0.01%)</title><rect x="1015.8" y="693" width="0.1" height="15.0" fill="rgb(247,83,20)" rx="2" ry="2" />
<text x="1018.81" y="703.5" ></text>
</g>
<g >
<title>rd_malloc (2 samples, 0.01%)</title><rect x="996.1" y="597" width="0.1" height="15.0" fill="rgb(242,175,24)" rx="2" ry="2" />
<text x="999.11" y="607.5" ></text>
</g>
<g >
<title>plugin_process_pending (29 samples, 0.14%)</title><rect x="593.1" y="405" width="1.7" height="15.0" fill="rgb(244,65,53)" rx="2" ry="2" />
<text x="596.10" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (18 samples, 0.09%)</title><rect x="344.5" y="469" width="1.0" height="15.0" fill="rgb(234,49,47)" rx="2" ry="2" />
<text x="347.46" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="302.9" y="469" width="0.3" height="15.0" fill="rgb(243,138,30)" rx="2" ry="2" />
<text x="305.88" y="479.5" ></text>
</g>
<g >
<title>udp_free_stream (2 samples, 0.01%)</title><rect x="304.9" y="597" width="0.1" height="15.0" fill="rgb(252,149,24)" rx="2" ry="2" />
<text x="307.88" y="607.5" ></text>
</g>
<g >
<title>quic_protocol_identify (12 samples, 0.06%)</title><rect x="840.7" y="517" width="0.7" height="15.0" fill="rgb(205,62,24)" rx="2" ry="2" />
<text x="843.67" y="527.5" ></text>
</g>
<g >
<title>sapp_identify_broad_multicast_pkt (11 samples, 0.05%)</title><rect x="876.5" y="693" width="0.7" height="15.0" fill="rgb(224,72,42)" rx="2" ry="2" />
<text x="879.54" y="703.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="588.4" y="261" width="0.2" height="15.0" fill="rgb(237,125,31)" rx="2" ry="2" />
<text x="591.44" y="271.5" ></text>
</g>
<g >
<title>stream_process (63 samples, 0.31%)</title><rect x="384.5" y="613" width="3.7" height="15.0" fill="rgb(239,56,49)" rx="2" ry="2" />
<text x="387.46" y="623.5" ></text>
</g>
<g >
<title>http_findCRLF_Chunk (3 samples, 0.01%)</title><rect x="571.6" y="421" width="0.1" height="15.0" fill="rgb(213,166,39)" rx="2" ry="2" />
<text x="574.57" y="431.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="334.5" y="453" width="0.3" height="15.0" fill="rgb(206,153,51)" rx="2" ry="2" />
<text x="337.49" y="463.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="979.6" y="469" width="0.2" height="15.0" fill="rgb(227,147,21)" rx="2" ry="2" />
<text x="982.65" y="479.5" ></text>
</g>
<g >
<title>dictator_malloc (2 samples, 0.01%)</title><rect x="829.5" y="517" width="0.1" height="15.0" fill="rgb(224,116,48)" rx="2" ry="2" />
<text x="832.46" y="527.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (3 samples, 0.01%)</title><rect x="928.3" y="645" width="0.2" height="15.0" fill="rgb(220,103,6)" rx="2" ry="2" />
<text x="931.33" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="610.0" y="485" width="0.1" height="15.0" fill="rgb(229,217,52)" rx="2" ry="2" />
<text x="613.03" y="495.5" ></text>
</g>
<g >
<title>CUNZIP::fn_iUnGZ (7 samples, 0.03%)</title><rect x="572.9" y="357" width="0.4" height="15.0" fill="rgb(242,126,35)" rx="2" ry="2" />
<text x="575.87" y="367.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="1010.1" y="453" width="0.3" height="15.0" fill="rgb(215,122,43)" rx="2" ry="2" />
<text x="1013.09" y="463.5" ></text>
</g>
<g >
<title>ssl_callPlugins (6 samples, 0.03%)</title><rect x="683.7" y="453" width="0.4" height="15.0" fill="rgb(235,203,52)" rx="2" ry="2" />
<text x="686.70" y="463.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="977.6" y="597" width="0.2" height="15.0" fill="rgb(222,22,3)" rx="2" ry="2" />
<text x="980.64" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="852.7" y="485" width="0.2" height="15.0" fill="rgb(245,39,23)" rx="2" ry="2" />
<text x="855.71" y="495.5" ></text>
</g>
<g >
<title>plugin_process_data (10 samples, 0.05%)</title><rect x="572.2" y="373" width="0.5" height="15.0" fill="rgb(209,121,18)" rx="2" ry="2" />
<text x="575.16" y="383.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (7 samples, 0.03%)</title><rect x="420.2" y="725" width="0.4" height="15.0" fill="rgb(222,97,17)" rx="2" ry="2" />
<text x="423.20" y="735.5" ></text>
</g>
<g >
<title>set_vxlan_addr (8 samples, 0.04%)</title><rect x="874.1" y="645" width="0.5" height="15.0" fill="rgb(208,112,32)" rx="2" ry="2" />
<text x="877.12" y="655.5" ></text>
</g>
<g >
<title>del_stream_by_time (94 samples, 0.47%)</title><rect x="489.1" y="645" width="5.5" height="15.0" fill="rgb(243,134,46)" rx="2" ry="2" />
<text x="492.10" y="655.5" ></text>
</g>
<g >
<title>streamaddlist (7 samples, 0.03%)</title><rect x="304.5" y="613" width="0.4" height="15.0" fill="rgb(212,84,6)" rx="2" ry="2" />
<text x="307.47" y="623.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (29 samples, 0.14%)</title><rect x="1013.9" y="469" width="1.7" height="15.0" fill="rgb(245,159,9)" rx="2" ry="2" />
<text x="1016.86" y="479.5" ></text>
</g>
<g >
<title>qm_free_default (3 samples, 0.01%)</title><rect x="561.2" y="357" width="0.2" height="15.0" fill="rgb(235,215,1)" rx="2" ry="2" />
<text x="564.19" y="367.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (2 samples, 0.01%)</title><rect x="535.8" y="437" width="0.1" height="15.0" fill="rgb(211,174,39)" rx="2" ry="2" />
<text x="538.82" y="447.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (3 samples, 0.01%)</title><rect x="1009.6" y="597" width="0.2" height="15.0" fill="rgb(233,85,20)" rx="2" ry="2" />
<text x="1012.61" y="607.5" ></text>
</g>
<g >
<title>ssl_callPlugins (7 samples, 0.03%)</title><rect x="420.6" y="645" width="0.4" height="15.0" fill="rgb(217,90,29)" rx="2" ry="2" />
<text x="423.62" y="655.5" ></text>
</g>
<g >
<title>[tsg_master.so] (29 samples, 0.14%)</title><rect x="974.2" y="629" width="1.7" height="15.0" fill="rgb(217,13,15)" rx="2" ry="2" />
<text x="977.16" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="357" width="0.1" height="15.0" fill="rgb(210,142,12)" rx="2" ry="2" />
<text x="337.38" y="367.5" ></text>
</g>
<g >
<title>APP_STAT_TCP_ADD (3 samples, 0.01%)</title><rect x="550.6" y="501" width="0.2" height="15.0" fill="rgb(222,88,5)" rx="2" ry="2" />
<text x="553.63" y="511.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="594.5" y="293" width="0.1" height="15.0" fill="rgb(212,184,51)" rx="2" ry="2" />
<text x="597.46" y="303.5" ></text>
</g>
<g >
<title>ftp_data_identify (2 samples, 0.01%)</title><rect x="610.2" y="501" width="0.1" height="15.0" fill="rgb(223,222,41)" rx="2" ry="2" />
<text x="613.20" y="511.5" ></text>
</g>
<g >
<title>hash_func (48 samples, 0.24%)</title><rect x="721.6" y="501" width="2.9" height="15.0" fill="rgb(221,36,43)" rx="2" ry="2" />
<text x="724.63" y="511.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (10 samples, 0.05%)</title><rect x="329.2" y="373" width="0.6" height="15.0" fill="rgb(227,164,0)" rx="2" ry="2" />
<text x="332.19" y="383.5" ></text>
</g>
<g >
<title>NewDocumentAnalyzer (8 samples, 0.04%)</title><rect x="570.9" y="373" width="0.5" height="15.0" fill="rgb(210,93,25)" rx="2" ry="2" />
<text x="573.92" y="383.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="927.3" y="597" width="0.1" height="15.0" fill="rgb(212,152,20)" rx="2" ry="2" />
<text x="930.27" y="607.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="1015.8" y="773" width="0.1" height="15.0" fill="rgb(244,70,37)" rx="2" ry="2" />
<text x="1018.81" y="783.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (11 samples, 0.05%)</title><rect x="400.9" y="693" width="0.6" height="15.0" fill="rgb(220,168,8)" rx="2" ry="2" />
<text x="403.86" y="703.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (2 samples, 0.01%)</title><rect x="569.0" y="373" width="0.1" height="15.0" fill="rgb(238,166,42)" rx="2" ry="2" />
<text x="571.97" y="383.5" ></text>
</g>
<g >
<title>__sprintf (7 samples, 0.03%)</title><rect x="1011.0" y="485" width="0.4" height="15.0" fill="rgb(216,127,27)" rx="2" ry="2" />
<text x="1013.97" y="495.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="400.2" y="501" width="0.1" height="15.0" fill="rgb(214,56,38)" rx="2" ry="2" />
<text x="403.21" y="511.5" ></text>
</g>
<g >
<title>http_tripleMatching (3 samples, 0.01%)</title><rect x="400.1" y="645" width="0.2" height="15.0" fill="rgb(235,170,52)" rx="2" ry="2" />
<text x="403.15" y="655.5" ></text>
</g>
<g >
<title>TLD_create (2 samples, 0.01%)</title><rect x="625.2" y="485" width="0.2" height="15.0" fill="rgb(243,83,14)" rx="2" ry="2" />
<text x="628.25" y="495.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (3 samples, 0.01%)</title><rect x="928.3" y="629" width="0.2" height="15.0" fill="rgb(226,147,47)" rx="2" ry="2" />
<text x="931.33" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (15 samples, 0.07%)</title><rect x="536.9" y="469" width="0.9" height="15.0" fill="rgb(222,208,25)" rx="2" ry="2" />
<text x="539.94" y="479.5" ></text>
</g>
<g >
<title>__strnlen_sse2 (3 samples, 0.01%)</title><rect x="609.4" y="469" width="0.2" height="15.0" fill="rgb(228,85,12)" rx="2" ry="2" />
<text x="612.44" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (71 samples, 0.35%)</title><rect x="799.3" y="501" width="4.2" height="15.0" fill="rgb(229,129,53)" rx="2" ry="2" />
<text x="802.32" y="511.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (191 samples, 0.95%)</title><rect x="388.7" y="613" width="11.3" height="15.0" fill="rgb(245,13,25)" rx="2" ry="2" />
<text x="391.70" y="623.5" ></text>
</g>
<g >
<title>eth_entry (11 samples, 0.05%)</title><rect x="401.5" y="709" width="0.7" height="15.0" fill="rgb(245,87,13)" rx="2" ry="2" />
<text x="404.50" y="719.5" ></text>
</g>
<g >
<title>lrustream (22 samples, 0.11%)</title><rect x="982.1" y="661" width="1.3" height="15.0" fill="rgb(212,196,49)" rx="2" ry="2" />
<text x="985.13" y="671.5" ></text>
</g>
<g >
<title>__strncasecmp_l_avx (3 samples, 0.01%)</title><rect x="841.6" y="501" width="0.2" height="15.0" fill="rgb(247,211,22)" rx="2" ry="2" />
<text x="844.62" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="300.3" y="421" width="0.2" height="15.0" fill="rgb(233,47,54)" rx="2" ry="2" />
<text x="303.28" y="431.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (7 samples, 0.03%)</title><rect x="588.9" y="309" width="0.4" height="15.0" fill="rgb(226,137,18)" rx="2" ry="2" />
<text x="591.91" y="319.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (4 samples, 0.02%)</title><rect x="420.0" y="677" width="0.2" height="15.0" fill="rgb(247,94,19)" rx="2" ry="2" />
<text x="422.97" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="979.6" y="501" width="0.2" height="15.0" fill="rgb(219,157,33)" rx="2" ry="2" />
<text x="982.65" y="511.5" ></text>
</g>
<g >
<title>o2i_ECPublicKey (2 samples, 0.01%)</title><rect x="592.4" y="389" width="0.2" height="15.0" fill="rgb(207,123,11)" rx="2" ry="2" />
<text x="595.45" y="399.5" ></text>
</g>
<g >
<title>BN_mod_inverse (5 samples, 0.02%)</title><rect x="591.7" y="309" width="0.3" height="15.0" fill="rgb(250,199,27)" rx="2" ry="2" />
<text x="594.74" y="319.5" ></text>
</g>
<g >
<title>plugin_process_data (19 samples, 0.09%)</title><rect x="329.1" y="453" width="1.1" height="15.0" fill="rgb(244,160,40)" rx="2" ry="2" />
<text x="332.07" y="463.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="398.8" y="533" width="0.2" height="15.0" fill="rgb(215,77,27)" rx="2" ry="2" />
<text x="401.79" y="543.5" ></text>
</g>
<g >
<title>__GI__IO_setb (2 samples, 0.01%)</title><rect x="1008.2" y="725" width="0.1" height="15.0" fill="rgb(250,181,11)" rx="2" ry="2" />
<text x="1011.20" y="735.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="325" width="4.2" height="15.0" fill="rgb(220,99,7)" rx="2" ry="2" />
<text x="333.19" y="335.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="400.0" y="645" width="0.1" height="15.0" fill="rgb(235,165,6)" rx="2" ry="2" />
<text x="403.03" y="655.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (3 samples, 0.01%)</title><rect x="400.1" y="533" width="0.2" height="15.0" fill="rgb(239,24,53)" rx="2" ry="2" />
<text x="403.15" y="543.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="984.7" y="709" width="0.1" height="15.0" fill="rgb(208,108,39)" rx="2" ry="2" />
<text x="987.66" y="719.5" ></text>
</g>
<g >
<title>TLD_append (15 samples, 0.07%)</title><rect x="980.8" y="517" width="0.9" height="15.0" fill="rgb(228,133,54)" rx="2" ry="2" />
<text x="983.77" y="527.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="809.6" y="405" width="0.1" height="15.0" fill="rgb(245,95,37)" rx="2" ry="2" />
<text x="812.59" y="415.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="989.6" y="469" width="0.1" height="15.0" fill="rgb(226,160,20)" rx="2" ry="2" />
<text x="992.56" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="437" width="0.2" height="15.0" fill="rgb(231,37,33)" rx="2" ry="2" />
<text x="987.84" y="447.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (8 samples, 0.04%)</title><rect x="423.4" y="773" width="0.5" height="15.0" fill="rgb(217,187,0)" rx="2" ry="2" />
<text x="426.45" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="594.2" y="309" width="0.4" height="15.0" fill="rgb(225,15,10)" rx="2" ry="2" />
<text x="597.22" y="319.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="574.2" y="405" width="0.1" height="15.0" fill="rgb(205,27,5)" rx="2" ry="2" />
<text x="577.22" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="307.9" y="565" width="0.1" height="15.0" fill="rgb(254,40,13)" rx="2" ry="2" />
<text x="310.89" y="575.5" ></text>
</g>
<g >
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="394.5" y="421" width="0.2" height="15.0" fill="rgb(251,192,3)" rx="2" ry="2" />
<text x="397.54" y="431.5" ></text>
</g>
<g >
<title>heap_trim (2 samples, 0.01%)</title><rect x="366.1" y="469" width="0.1" height="15.0" fill="rgb(216,106,7)" rx="2" ry="2" />
<text x="369.05" y="479.5" ></text>
</g>
<g >
<title>[ftp.so] (8 samples, 0.04%)</title><rect x="598.3" y="501" width="0.5" height="15.0" fill="rgb(250,225,13)" rx="2" ry="2" />
<text x="601.29" y="511.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="334.1" y="181" width="0.2" height="15.0" fill="rgb(225,79,45)" rx="2" ry="2" />
<text x="337.14" y="191.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (452 samples, 2.26%)</title><rect x="339.5" y="549" width="26.7" height="15.0" fill="rgb(213,173,40)" rx="2" ry="2" />
<text x="342.51" y="559.5" >[..</text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="400.1" y="597" width="0.2" height="15.0" fill="rgb(228,34,12)" rx="2" ry="2" />
<text x="403.15" y="607.5" ></text>
</g>
<g >
<title>smtp_entry_fun (6 samples, 0.03%)</title><rect x="576.1" y="501" width="0.3" height="15.0" fill="rgb(220,19,6)" rx="2" ry="2" />
<text x="579.05" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (67 samples, 0.33%)</title><rect x="390.8" y="501" width="3.9" height="15.0" fill="rgb(221,185,22)" rx="2" ry="2" />
<text x="393.77" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="384.2" y="469" width="0.1" height="15.0" fill="rgb(232,148,5)" rx="2" ry="2" />
<text x="387.16" y="479.5" ></text>
</g>
<g >
<title>qmdpi_worker_signature_get_byid (9 samples, 0.04%)</title><rect x="557.4" y="453" width="0.5" height="15.0" fill="rgb(227,101,48)" rx="2" ry="2" />
<text x="560.41" y="463.5" ></text>
</g>
<g >
<title>lrustream (3 samples, 0.01%)</title><rect x="987.3" y="741" width="0.2" height="15.0" fill="rgb(220,175,15)" rx="2" ry="2" />
<text x="990.32" y="751.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (2 samples, 0.01%)</title><rect x="611.9" y="453" width="0.1" height="15.0" fill="rgb(217,221,28)" rx="2" ry="2" />
<text x="614.92" y="463.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (7 samples, 0.03%)</title><rect x="374.4" y="501" width="0.4" height="15.0" fill="rgb(220,42,35)" rx="2" ry="2" />
<text x="377.37" y="511.5" ></text>
</g>
<g >
<title>qmdpi_hit_path_list (42 samples, 0.21%)</title><rect x="308.6" y="517" width="2.5" height="15.0" fill="rgb(248,15,34)" rx="2" ry="2" />
<text x="311.60" y="527.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (7 samples, 0.03%)</title><rect x="338.5" y="517" width="0.4" height="15.0" fill="rgb(229,0,14)" rx="2" ry="2" />
<text x="341.51" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (2 samples, 0.01%)</title><rect x="1005.5" y="757" width="0.1" height="15.0" fill="rgb(252,128,31)" rx="2" ry="2" />
<text x="1008.48" y="767.5" ></text>
</g>
<g >
<title>__sprintf (3 samples, 0.01%)</title><rect x="402.2" y="581" width="0.2" height="15.0" fill="rgb(251,162,23)" rx="2" ry="2" />
<text x="405.21" y="591.5" ></text>
</g>
<g >
<title>http_doWithHost (3 samples, 0.01%)</title><rect x="986.4" y="597" width="0.2" height="15.0" fill="rgb(213,200,25)" rx="2" ry="2" />
<text x="989.43" y="607.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (124 samples, 0.62%)</title><rect x="311.1" y="469" width="7.3" height="15.0" fill="rgb(230,68,32)" rx="2" ry="2" />
<text x="314.08" y="479.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (61 samples, 0.30%)</title><rect x="200.9" y="757" width="3.6" height="15.0" fill="rgb(216,130,12)" rx="2" ry="2" />
<text x="203.94" y="767.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (27 samples, 0.13%)</title><rect x="141.4" y="645" width="1.6" height="15.0" fill="rgb(223,109,42)" rx="2" ry="2" />
<text x="144.37" y="655.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="594.6" y="341" width="0.2" height="15.0" fill="rgb(209,13,21)" rx="2" ry="2" />
<text x="597.63" y="351.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="326.4" y="357" width="0.6" height="15.0" fill="rgb(241,196,17)" rx="2" ry="2" />
<text x="329.35" y="367.5" ></text>
</g>
<g >
<title>Maat_rule_get_ex_data (4 samples, 0.02%)</title><rect x="396.4" y="565" width="0.3" height="15.0" fill="rgb(218,124,18)" rx="2" ry="2" />
<text x="399.43" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="381.7" y="389" width="0.2" height="15.0" fill="rgb(225,43,28)" rx="2" ry="2" />
<text x="384.68" y="399.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (5 samples, 0.02%)</title><rect x="304.1" y="517" width="0.3" height="15.0" fill="rgb(211,28,5)" rx="2" ry="2" />
<text x="307.06" y="527.5" ></text>
</g>
<g >
<title>eth_entry (62 samples, 0.31%)</title><rect x="973.2" y="757" width="3.6" height="15.0" fill="rgb(247,23,43)" rx="2" ry="2" />
<text x="976.16" y="767.5" ></text>
</g>
<g >
<title>ASN1_STRING_set (5 samples, 0.02%)</title><rect x="333.4" y="245" width="0.3" height="15.0" fill="rgb(205,207,6)" rx="2" ry="2" />
<text x="336.43" y="255.5" ></text>
</g>
<g >
<title>ASN1_template_new (2 samples, 0.01%)</title><rect x="587.0" y="341" width="0.1" height="15.0" fill="rgb(246,156,17)" rx="2" ry="2" />
<text x="590.02" y="351.5" ></text>
</g>
<g >
<title>tsg_send_log (8 samples, 0.04%)</title><rect x="399.5" y="565" width="0.5" height="15.0" fill="rgb(241,181,7)" rx="2" ry="2" />
<text x="402.50" y="575.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="983.4" y="581" width="0.1" height="15.0" fill="rgb(223,51,24)" rx="2" ry="2" />
<text x="986.42" y="591.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="575.2" y="501" width="0.1" height="15.0" fill="rgb(245,56,43)" rx="2" ry="2" />
<text x="578.22" y="511.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (102 samples, 0.51%)</title><rect x="855.3" y="517" width="6.0" height="15.0" fill="rgb(244,199,11)" rx="2" ry="2" />
<text x="858.30" y="527.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="330.5" y="165" width="0.5" height="15.0" fill="rgb(224,141,31)" rx="2" ry="2" />
<text x="333.54" y="175.5" ></text>
</g>
<g >
<title>PROT_PROCESS (19 samples, 0.09%)</title><rect x="329.1" y="469" width="1.1" height="15.0" fill="rgb(252,202,16)" rx="2" ry="2" />
<text x="332.07" y="479.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="611.6" y="485" width="0.1" height="15.0" fill="rgb(211,69,10)" rx="2" ry="2" />
<text x="614.62" y="495.5" ></text>
</g>
<g >
<title>http_callPlugin (5 samples, 0.02%)</title><rect x="568.8" y="453" width="0.3" height="15.0" fill="rgb(243,90,30)" rx="2" ry="2" />
<text x="571.80" y="463.5" ></text>
</g>
<g >
<title>FS_operate (5 samples, 0.02%)</title><rect x="639.4" y="469" width="0.3" height="15.0" fill="rgb(216,187,19)" rx="2" ry="2" />
<text x="642.40" y="479.5" ></text>
</g>
<g >
<title>__GI__IO_vfscanf (3 samples, 0.01%)</title><rect x="571.4" y="389" width="0.2" height="15.0" fill="rgb(208,33,53)" rx="2" ry="2" />
<text x="574.39" y="399.5" ></text>
</g>
<g >
<title>MESA_net_jump_to_layer (4 samples, 0.02%)</title><rect x="762.2" y="517" width="0.3" height="15.0" fill="rgb(240,3,0)" rx="2" ry="2" />
<text x="765.22" y="527.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (6 samples, 0.03%)</title><rect x="842.7" y="501" width="0.3" height="15.0" fill="rgb(212,79,21)" rx="2" ry="2" />
<text x="845.68" y="511.5" ></text>
</g>
<g >
<title>eth_entry (1,553 samples, 7.76%)</title><rect x="308.4" y="693" width="91.6" height="15.0" fill="rgb(205,123,43)" rx="2" ry="2" />
<text x="311.42" y="703.5" >eth_entry</text>
</g>
<g >
<title>plugin_call_streamentry (70 samples, 0.35%)</title><rect x="490.5" y="581" width="4.1" height="15.0" fill="rgb(210,10,40)" rx="2" ry="2" />
<text x="493.52" y="591.5" ></text>
</g>
<g >
<title>_IO_old_init (3 samples, 0.01%)</title><rect x="637.2" y="421" width="0.2" height="15.0" fill="rgb(243,215,47)" rx="2" ry="2" />
<text x="640.22" y="431.5" ></text>
</g>
<g >
<title>__snprintf (6 samples, 0.03%)</title><rect x="800.9" y="469" width="0.4" height="15.0" fill="rgb(221,222,12)" rx="2" ry="2" />
<text x="803.91" y="479.5" ></text>
</g>
<g >
<title>streamleavlist (3 samples, 0.01%)</title><rect x="803.5" y="581" width="0.2" height="15.0" fill="rgb(230,131,25)" rx="2" ry="2" />
<text x="806.51" y="591.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (5 samples, 0.02%)</title><rect x="303.2" y="549" width="0.3" height="15.0" fill="rgb(217,119,30)" rx="2" ry="2" />
<text x="306.23" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (19 samples, 0.09%)</title><rect x="329.1" y="485" width="1.1" height="15.0" fill="rgb(205,29,25)" rx="2" ry="2" />
<text x="332.07" y="495.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (2 samples, 0.01%)</title><rect x="421.1" y="725" width="0.1" height="15.0" fill="rgb(220,31,16)" rx="2" ry="2" />
<text x="424.09" y="735.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="589.7" y="309" width="0.1" height="15.0" fill="rgb(217,156,33)" rx="2" ry="2" />
<text x="592.68" y="319.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (6 samples, 0.03%)</title><rect x="850.6" y="469" width="0.4" height="15.0" fill="rgb(235,184,15)" rx="2" ry="2" />
<text x="853.64" y="479.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="608.1" y="453" width="0.1" height="15.0" fill="rgb(209,67,11)" rx="2" ry="2" />
<text x="611.08" y="463.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (9 samples, 0.04%)</title><rect x="422.1" y="677" width="0.5" height="15.0" fill="rgb(209,112,27)" rx="2" ry="2" />
<text x="425.09" y="687.5" ></text>
</g>
<g >
<title>fw_ssl_entry (19 samples, 0.09%)</title><rect x="329.1" y="421" width="1.1" height="15.0" fill="rgb(209,176,0)" rx="2" ry="2" />
<text x="332.07" y="431.5" ></text>
</g>
<g >
<title>project_req_get_struct (5 samples, 0.02%)</title><rect x="830.4" y="533" width="0.3" height="15.0" fill="rgb(251,172,48)" rx="2" ry="2" />
<text x="833.41" y="543.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (14 samples, 0.07%)</title><rect x="985.1" y="645" width="0.9" height="15.0" fill="rgb(212,58,27)" rx="2" ry="2" />
<text x="988.13" y="655.5" ></text>
</g>
<g >
<title>eth_entry (172 samples, 0.86%)</title><rect x="297.9" y="741" width="10.1" height="15.0" fill="rgb(211,187,44)" rx="2" ry="2" />
<text x="300.86" y="751.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (5 samples, 0.02%)</title><rect x="338.6" y="485" width="0.3" height="15.0" fill="rgb(209,51,23)" rx="2" ry="2" />
<text x="341.62" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="609.6" y="485" width="0.1" height="15.0" fill="rgb(229,216,43)" rx="2" ry="2" />
<text x="612.62" y="495.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (6 samples, 0.03%)</title><rect x="567.4" y="469" width="0.3" height="15.0" fill="rgb(246,111,48)" rx="2" ry="2" />
<text x="570.38" y="479.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (9 samples, 0.04%)</title><rect x="935.7" y="677" width="0.5" height="15.0" fill="rgb(231,81,51)" rx="2" ry="2" />
<text x="938.70" y="687.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="997.9" y="677" width="0.4" height="15.0" fill="rgb(218,218,21)" rx="2" ry="2" />
<text x="1000.93" y="687.5" ></text>
</g>
<g >
<title>malloc_consolidate (11 samples, 0.05%)</title><rect x="302.2" y="469" width="0.7" height="15.0" fill="rgb(214,175,54)" rx="2" ry="2" />
<text x="305.23" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="987.3" y="661" width="0.1" height="15.0" fill="rgb(240,194,47)" rx="2" ry="2" />
<text x="990.32" y="671.5" ></text>
</g>
<g >
<title>hash_func (61 samples, 0.30%)</title><rect x="697.2" y="533" width="3.6" height="15.0" fill="rgb(246,23,18)" rx="2" ry="2" />
<text x="700.21" y="543.5" ></text>
</g>
<g >
<title>free_heap_stream_info (2 samples, 0.01%)</title><rect x="489.6" y="613" width="0.2" height="15.0" fill="rgb(239,170,1)" rx="2" ry="2" />
<text x="492.63" y="623.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="987.0" y="581" width="0.3" height="15.0" fill="rgb(245,74,41)" rx="2" ry="2" />
<text x="989.96" y="591.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (11 samples, 0.05%)</title><rect x="336.3" y="405" width="0.7" height="15.0" fill="rgb(226,119,21)" rx="2" ry="2" />
<text x="339.32" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="1006.7" y="757" width="0.1" height="15.0" fill="rgb(227,75,39)" rx="2" ry="2" />
<text x="1009.72" y="767.5" ></text>
</g>
<g >
<title>[sapp] (6 samples, 0.03%)</title><rect x="990.0" y="693" width="0.3" height="15.0" fill="rgb(251,166,37)" rx="2" ry="2" />
<text x="992.97" y="703.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (10 samples, 0.05%)</title><rect x="336.3" y="389" width="0.6" height="15.0" fill="rgb(216,152,14)" rx="2" ry="2" />
<text x="339.32" y="399.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.03%)</title><rect x="925.1" y="677" width="0.3" height="15.0" fill="rgb(219,18,24)" rx="2" ry="2" />
<text x="928.08" y="687.5" ></text>
</g>
<g >
<title>TLD_append (3 samples, 0.01%)</title><rect x="374.8" y="485" width="0.2" height="15.0" fill="rgb(238,110,44)" rx="2" ry="2" />
<text x="377.84" y="495.5" ></text>
</g>
<g >
<title>[sapp] (38 samples, 0.19%)</title><rect x="987.6" y="677" width="2.2" height="15.0" fill="rgb(243,86,19)" rx="2" ry="2" />
<text x="990.55" y="687.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="400.7" y="613" width="0.2" height="15.0" fill="rgb(207,2,40)" rx="2" ry="2" />
<text x="403.74" y="623.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="533" width="0.1" height="15.0" fill="rgb(215,72,8)" rx="2" ry="2" />
<text x="404.56" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="986.6" y="533" width="0.3" height="15.0" fill="rgb(249,186,18)" rx="2" ry="2" />
<text x="989.61" y="543.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (2 samples, 0.01%)</title><rect x="809.4" y="485" width="0.1" height="15.0" fill="rgb(236,35,6)" rx="2" ry="2" />
<text x="812.41" y="495.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (24 samples, 0.12%)</title><rect x="980.7" y="581" width="1.4" height="15.0" fill="rgb(222,166,8)" rx="2" ry="2" />
<text x="983.65" y="591.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="1017.0" y="549" width="0.3" height="15.0" fill="rgb(252,55,11)" rx="2" ry="2" />
<text x="1020.05" y="559.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="420.6" y="581" width="0.4" height="15.0" fill="rgb(209,33,42)" rx="2" ry="2" />
<text x="423.62" y="591.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1000.2" y="661" width="0.2" height="15.0" fill="rgb(241,103,52)" rx="2" ry="2" />
<text x="1003.23" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="977.6" y="645" width="0.2" height="15.0" fill="rgb(245,201,23)" rx="2" ry="2" />
<text x="980.64" y="655.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="339.0" y="469" width="0.4" height="15.0" fill="rgb(211,157,9)" rx="2" ry="2" />
<text x="342.04" y="479.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="1016.0" y="645" width="0.6" height="15.0" fill="rgb(243,131,33)" rx="2" ry="2" />
<text x="1018.98" y="655.5" ></text>
</g>
<g >
<title>BIO_snprintf (3 samples, 0.01%)</title><rect x="590.1" y="405" width="0.2" height="15.0" fill="rgb(254,214,19)" rx="2" ry="2" />
<text x="593.15" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (23 samples, 0.11%)</title><rect x="338.2" y="565" width="1.3" height="15.0" fill="rgb(243,132,4)" rx="2" ry="2" />
<text x="341.15" y="575.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="989.2" y="469" width="0.1" height="15.0" fill="rgb(244,46,17)" rx="2" ry="2" />
<text x="992.20" y="479.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="923.8" y="661" width="0.2" height="15.0" fill="rgb(230,36,10)" rx="2" ry="2" />
<text x="926.85" y="671.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="305.0" y="453" width="2.5" height="15.0" fill="rgb(206,192,54)" rx="2" ry="2" />
<text x="308.00" y="463.5" ></text>
</g>
<g >
<title>ipv4_entry (42 samples, 0.21%)</title><rect x="1016.0" y="757" width="2.5" height="15.0" fill="rgb(208,89,52)" rx="2" ry="2" />
<text x="1018.98" y="767.5" ></text>
</g>
<g >
<title>FS_operate (20 samples, 0.10%)</title><rect x="341.0" y="501" width="1.2" height="15.0" fill="rgb(245,169,52)" rx="2" ry="2" />
<text x="344.04" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="560.7" y="325" width="0.1" height="15.0" fill="rgb(231,105,30)" rx="2" ry="2" />
<text x="563.71" y="335.5" ></text>
</g>
<g >
<title>dictator_malloc@plt (2 samples, 0.01%)</title><rect x="646.6" y="485" width="0.1" height="15.0" fill="rgb(210,209,52)" rx="2" ry="2" />
<text x="649.60" y="495.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_new (202 samples, 1.01%)</title><rect x="238.2" y="757" width="11.9" height="15.0" fill="rgb(216,165,7)" rx="2" ry="2" />
<text x="241.17" y="767.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (523 samples, 2.61%)</title><rect x="127.4" y="677" width="30.8" height="15.0" fill="rgb(216,186,41)" rx="2" ry="2" />
<text x="130.39" y="687.5" >ms..</text>
</g>
<g >
<title>ssl_analyseHandShake (2 samples, 0.01%)</title><rect x="535.8" y="453" width="0.1" height="15.0" fill="rgb(226,86,31)" rx="2" ry="2" />
<text x="538.82" y="463.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.03%)</title><rect x="676.9" y="533" width="0.4" height="15.0" fill="rgb(205,212,53)" rx="2" ry="2" />
<text x="679.92" y="543.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="984.7" y="565" width="0.1" height="15.0" fill="rgb(212,10,53)" rx="2" ry="2" />
<text x="987.66" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="279.3" y="757" width="0.5" height="15.0" fill="rgb(226,57,18)" rx="2" ry="2" />
<text x="282.34" y="767.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="589.5" y="325" width="0.1" height="15.0" fill="rgb(215,133,34)" rx="2" ry="2" />
<text x="592.50" y="335.5" ></text>
</g>
<g >
<title>tsg_get_umts_user_info (2 samples, 0.01%)</title><rect x="843.0" y="501" width="0.1" height="15.0" fill="rgb(229,211,36)" rx="2" ry="2" />
<text x="846.03" y="511.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="977.1" y="485" width="0.3" height="15.0" fill="rgb(229,142,16)" rx="2" ry="2" />
<text x="980.11" y="495.5" ></text>
</g>
<g >
<title>__fget (2 samples, 0.01%)</title><rect x="948.1" y="549" width="0.2" height="15.0" fill="rgb(223,50,19)" rx="2" ry="2" />
<text x="951.15" y="559.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (103 samples, 0.51%)</title><rect x="388.7" y="581" width="6.1" height="15.0" fill="rgb(209,64,44)" rx="2" ry="2" />
<text x="391.70" y="591.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_id2name (2 samples, 0.01%)</title><rect x="853.1" y="501" width="0.1" height="15.0" fill="rgb(238,33,44)" rx="2" ry="2" />
<text x="856.06" y="511.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="840.6" y="501" width="0.1" height="15.0" fill="rgb(229,185,24)" rx="2" ry="2" />
<text x="843.55" y="511.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (14 samples, 0.07%)</title><rect x="570.6" y="421" width="0.8" height="15.0" fill="rgb(231,144,10)" rx="2" ry="2" />
<text x="573.56" y="431.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (90 samples, 0.45%)</title><rect x="312.7" y="389" width="5.3" height="15.0" fill="rgb(205,30,38)" rx="2" ry="2" />
<text x="315.67" y="399.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="592.6" y="325" width="0.1" height="15.0" fill="rgb(218,32,36)" rx="2" ry="2" />
<text x="595.57" y="335.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (7 samples, 0.03%)</title><rect x="842.3" y="485" width="0.4" height="15.0" fill="rgb(251,191,52)" rx="2" ry="2" />
<text x="845.26" y="495.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (31 samples, 0.15%)</title><rect x="327.2" y="549" width="1.8" height="15.0" fill="rgb(222,25,18)" rx="2" ry="2" />
<text x="330.18" y="559.5" ></text>
</g>
<g >
<title>dealipv4udppkt (14 samples, 0.07%)</title><rect x="976.0" y="725" width="0.8" height="15.0" fill="rgb(245,188,31)" rx="2" ry="2" />
<text x="978.99" y="735.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="307.7" y="437" width="0.1" height="15.0" fill="rgb(222,188,38)" rx="2" ry="2" />
<text x="310.65" y="447.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (7 samples, 0.03%)</title><rect x="400.4" y="661" width="0.5" height="15.0" fill="rgb(242,125,29)" rx="2" ry="2" />
<text x="403.44" y="671.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (4 samples, 0.02%)</title><rect x="985.7" y="501" width="0.3" height="15.0" fill="rgb(220,147,32)" rx="2" ry="2" />
<text x="988.72" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (52 samples, 0.26%)</title><rect x="864.8" y="533" width="3.1" height="15.0" fill="rgb(243,97,22)" rx="2" ry="2" />
<text x="867.80" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="683.9" y="389" width="0.2" height="15.0" fill="rgb(243,143,42)" rx="2" ry="2" />
<text x="686.94" y="399.5" ></text>
</g>
<g >
<title>app_engine_stat_report_add (2 samples, 0.01%)</title><rect x="556.9" y="453" width="0.2" height="15.0" fill="rgb(226,172,23)" rx="2" ry="2" />
<text x="559.94" y="463.5" ></text>
</g>
<g >
<title>rulescan_computeresult (233 samples, 1.16%)</title><rect x="175.1" y="741" width="13.8" height="15.0" fill="rgb(243,179,2)" rx="2" ry="2" />
<text x="178.11" y="751.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="569.6" y="325" width="0.1" height="15.0" fill="rgb(239,126,8)" rx="2" ry="2" />
<text x="572.56" y="335.5" ></text>
</g>
<g >
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="679.6" y="517" width="0.2" height="15.0" fill="rgb(217,82,18)" rx="2" ry="2" />
<text x="682.63" y="527.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="396.1" y="549" width="0.2" height="15.0" fill="rgb(222,89,24)" rx="2" ry="2" />
<text x="399.14" y="559.5" ></text>
</g>
<g >
<title>app_proto_worke_process (2 samples, 0.01%)</title><rect x="984.8" y="645" width="0.2" height="15.0" fill="rgb(247,14,0)" rx="2" ry="2" />
<text x="987.84" y="655.5" ></text>
</g>
<g >
<title>__memset_sse2 (3 samples, 0.01%)</title><rect x="841.1" y="453" width="0.2" height="15.0" fill="rgb(214,210,14)" rx="2" ry="2" />
<text x="844.08" y="463.5" ></text>
</g>
<g >
<title>tsg_get_fqdn_category_id (3 samples, 0.01%)</title><rect x="611.9" y="501" width="0.1" height="15.0" fill="rgb(218,15,15)" rx="2" ry="2" />
<text x="614.86" y="511.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_v4 (401 samples, 2.00%)</title><rect x="700.8" y="565" width="23.7" height="15.0" fill="rgb(212,129,18)" rx="2" ry="2" />
<text x="703.81" y="575.5" >s..</text>
</g>
<g >
<title>fw_ssl_entry (29 samples, 0.14%)</title><rect x="336.0" y="421" width="1.7" height="15.0" fill="rgb(231,112,14)" rx="2" ry="2" />
<text x="338.97" y="431.5" ></text>
</g>
<g >
<title>stream_process_tcp (25 samples, 0.12%)</title><rect x="400.0" y="757" width="1.5" height="15.0" fill="rgb(240,146,25)" rx="2" ry="2" />
<text x="403.03" y="767.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (25 samples, 0.12%)</title><rect x="587.1" y="341" width="1.5" height="15.0" fill="rgb(243,189,42)" rx="2" ry="2" />
<text x="590.14" y="351.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (2 samples, 0.01%)</title><rect x="873.5" y="565" width="0.1" height="15.0" fill="rgb(218,77,16)" rx="2" ry="2" />
<text x="876.53" y="575.5" ></text>
</g>
<g >
<title>http_findLineEnd (2 samples, 0.01%)</title><rect x="574.7" y="437" width="0.1" height="15.0" fill="rgb(252,123,21)" rx="2" ry="2" />
<text x="577.69" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="993.5" y="661" width="0.1" height="15.0" fill="rgb(251,162,54)" rx="2" ry="2" />
<text x="996.45" y="671.5" ></text>
</g>
<g >
<title>cJSON_CreateNumber (2 samples, 0.01%)</title><rect x="997.3" y="645" width="0.2" height="15.0" fill="rgb(236,167,37)" rx="2" ry="2" />
<text x="1000.34" y="655.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="577.9" y="469" width="0.1" height="15.0" fill="rgb(247,49,52)" rx="2" ry="2" />
<text x="580.88" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="795.8" y="517" width="0.2" height="15.0" fill="rgb(246,68,51)" rx="2" ry="2" />
<text x="798.84" y="527.5" ></text>
</g>
<g >
<title>http_judgeContentEncoding (5 samples, 0.02%)</title><rect x="977.1" y="581" width="0.3" height="15.0" fill="rgb(250,218,16)" rx="2" ry="2" />
<text x="980.11" y="591.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (2 samples, 0.01%)</title><rect x="204.5" y="757" width="0.2" height="15.0" fill="rgb(227,95,19)" rx="2" ry="2" />
<text x="207.54" y="767.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (5 samples, 0.02%)</title><rect x="551.1" y="453" width="0.3" height="15.0" fill="rgb(206,109,26)" rx="2" ry="2" />
<text x="554.10" y="463.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="990.5" y="549" width="0.1" height="15.0" fill="rgb(236,123,11)" rx="2" ry="2" />
<text x="993.50" y="559.5" ></text>
</g>
<g >
<title>wg_linkinfo_stack_to_heap (9 samples, 0.04%)</title><rect x="614.2" y="501" width="0.5" height="15.0" fill="rgb(210,168,22)" rx="2" ry="2" />
<text x="617.16" y="511.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (44 samples, 0.22%)</title><rect x="297.9" y="533" width="2.6" height="15.0" fill="rgb(249,168,29)" rx="2" ry="2" />
<text x="300.86" y="543.5" ></text>
</g>
<g >
<title>qmdpi_flow_info_get@plt (2 samples, 0.01%)</title><rect x="563.1" y="437" width="0.1" height="15.0" fill="rgb(206,12,2)" rx="2" ry="2" />
<text x="566.07" y="447.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (15 samples, 0.07%)</title><rect x="161.2" y="741" width="0.9" height="15.0" fill="rgb(218,166,22)" rx="2" ry="2" />
<text x="164.25" y="751.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="572.5" y="325" width="0.2" height="15.0" fill="rgb(233,61,30)" rx="2" ry="2" />
<text x="575.51" y="335.5" ></text>
</g>
<g >
<title>TLD_append (11 samples, 0.05%)</title><rect x="595.1" y="357" width="0.7" height="15.0" fill="rgb(252,101,3)" rx="2" ry="2" />
<text x="598.10" y="367.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="1017.6" y="565" width="0.2" height="15.0" fill="rgb(233,96,51)" rx="2" ry="2" />
<text x="1020.64" y="575.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="568.8" y="421" width="0.3" height="15.0" fill="rgb(237,81,53)" rx="2" ry="2" />
<text x="571.80" y="431.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (13 samples, 0.06%)</title><rect x="612.2" y="501" width="0.7" height="15.0" fill="rgb(251,2,43)" rx="2" ry="2" />
<text x="615.15" y="511.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="987.3" y="581" width="0.1" height="15.0" fill="rgb(242,40,35)" rx="2" ry="2" />
<text x="990.32" y="591.5" ></text>
</g>
<g >
<title>sapp_mem_free (8 samples, 0.04%)</title><rect x="678.5" y="517" width="0.4" height="15.0" fill="rgb(253,212,6)" rx="2" ry="2" />
<text x="681.45" y="527.5" ></text>
</g>
<g >
<title>http_releaseHttpStream (2 samples, 0.01%)</title><rect x="683.5" y="469" width="0.1" height="15.0" fill="rgb(221,223,9)" rx="2" ry="2" />
<text x="686.47" y="479.5" ></text>
</g>
<g >
<title>[tsg_master.so] (17 samples, 0.08%)</title><rect x="302.2" y="549" width="1.0" height="15.0" fill="rgb(206,127,48)" rx="2" ry="2" />
<text x="305.23" y="559.5" ></text>
</g>
<g >
<title>[libwangw.so] (9 samples, 0.04%)</title><rect x="1017.8" y="645" width="0.5" height="15.0" fill="rgb(252,44,43)" rx="2" ry="2" />
<text x="1020.75" y="655.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (7 samples, 0.03%)</title><rect x="872.3" y="565" width="0.5" height="15.0" fill="rgb(211,128,12)" rx="2" ry="2" />
<text x="875.35" y="575.5" ></text>
</g>
<g >
<title>del_stream_by_time (8 samples, 0.04%)</title><rect x="388.2" y="629" width="0.5" height="15.0" fill="rgb(253,15,9)" rx="2" ry="2" />
<text x="391.23" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="345.2" y="437" width="0.2" height="15.0" fill="rgb(236,90,32)" rx="2" ry="2" />
<text x="348.23" y="447.5" ></text>
</g>
<g >
<title>tsg_scan_ip_location (14 samples, 0.07%)</title><rect x="398.6" y="549" width="0.8" height="15.0" fill="rgb(243,13,12)" rx="2" ry="2" />
<text x="401.61" y="559.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (31 samples, 0.15%)</title><rect x="1003.1" y="757" width="1.9" height="15.0" fill="rgb(251,88,17)" rx="2" ry="2" />
<text x="1006.13" y="767.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="742.1" y="501" width="0.8" height="15.0" fill="rgb(208,92,9)" rx="2" ry="2" />
<text x="745.10" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="809.4" y="421" width="0.1" height="15.0" fill="rgb(224,151,53)" rx="2" ry="2" />
<text x="812.41" y="431.5" ></text>
</g>
<g >
<title>http_callPlugin (18 samples, 0.09%)</title><rect x="571.8" y="421" width="1.1" height="15.0" fill="rgb(221,87,21)" rx="2" ry="2" />
<text x="574.80" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (71 samples, 0.35%)</title><rect x="330.2" y="453" width="4.2" height="15.0" fill="rgb(222,223,47)" rx="2" ry="2" />
<text x="333.19" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="108.6" y="709" width="0.1" height="15.0" fill="rgb(240,78,33)" rx="2" ry="2" />
<text x="111.63" y="719.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (10 samples, 0.05%)</title><rect x="1016.0" y="629" width="0.6" height="15.0" fill="rgb(250,223,34)" rx="2" ry="2" />
<text x="1018.98" y="639.5" ></text>
</g>
<g >
<title>SSL_ENTRY (2 samples, 0.01%)</title><rect x="973.5" y="629" width="0.1" height="15.0" fill="rgb(230,33,24)" rx="2" ry="2" />
<text x="976.45" y="639.5" ></text>
</g>
<g >
<title>__IO_vsprintf (5 samples, 0.02%)</title><rect x="1009.8" y="453" width="0.3" height="15.0" fill="rgb(229,174,18)" rx="2" ry="2" />
<text x="1012.79" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (7 samples, 0.03%)</title><rect x="590.3" y="389" width="0.4" height="15.0" fill="rgb(247,228,3)" rx="2" ry="2" />
<text x="593.33" y="399.5" ></text>
</g>
<g >
<title>stream_bridge_create_per_stream (7 samples, 0.03%)</title><rect x="472.1" y="645" width="0.4" height="15.0" fill="rgb(219,11,11)" rx="2" ry="2" />
<text x="475.05" y="655.5" ></text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="596.2" y="453" width="0.3" height="15.0" fill="rgb(209,138,52)" rx="2" ry="2" />
<text x="599.22" y="463.5" ></text>
</g>
<g >
<title>Maat_clean_status (7 samples, 0.03%)</title><rect x="628.0" y="485" width="0.4" height="15.0" fill="rgb(230,144,33)" rx="2" ry="2" />
<text x="630.96" y="495.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="800.9" y="437" width="0.1" height="15.0" fill="rgb(236,148,33)" rx="2" ry="2" />
<text x="803.91" y="447.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (74 samples, 0.37%)</title><rect x="857.0" y="501" width="4.3" height="15.0" fill="rgb(218,164,12)" rx="2" ry="2" />
<text x="859.95" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="570.9" y="325" width="0.5" height="15.0" fill="rgb(242,214,46)" rx="2" ry="2" />
<text x="573.92" y="335.5" ></text>
</g>
<g >
<title>[tsg_master.so] (135 samples, 0.67%)</title><rect x="605.1" y="517" width="7.9" height="15.0" fill="rgb(246,104,37)" rx="2" ry="2" />
<text x="608.07" y="527.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (5 samples, 0.02%)</title><rect x="979.4" y="613" width="0.2" height="15.0" fill="rgb(223,8,35)" rx="2" ry="2" />
<text x="982.35" y="623.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (4 samples, 0.02%)</title><rect x="280.2" y="741" width="0.2" height="15.0" fill="rgb(238,16,54)" rx="2" ry="2" />
<text x="283.17" y="751.5" ></text>
</g>
<g >
<title>ASN1_STRING_to_UTF8 (7 samples, 0.03%)</title><rect x="331.2" y="293" width="0.5" height="15.0" fill="rgb(224,4,52)" rx="2" ry="2" />
<text x="334.25" y="303.5" ></text>
</g>
<g >
<title>expiry_dablooms_add (400 samples, 2.00%)</title><rect x="700.9" y="549" width="23.6" height="15.0" fill="rgb(212,190,23)" rx="2" ry="2" />
<text x="703.87" y="559.5" >e..</text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="584.4" y="357" width="0.1" height="15.0" fill="rgb(215,198,31)" rx="2" ry="2" />
<text x="587.37" y="367.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="327.4" y="389" width="0.1" height="15.0" fill="rgb(214,30,40)" rx="2" ry="2" />
<text x="330.42" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="575.2" y="453" width="0.1" height="15.0" fill="rgb(236,19,3)" rx="2" ry="2" />
<text x="578.22" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (9 samples, 0.04%)</title><rect x="367.2" y="533" width="0.6" height="15.0" fill="rgb(242,14,14)" rx="2" ry="2" />
<text x="370.23" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="47.6" y="741" width="0.1" height="15.0" fill="rgb(205,49,25)" rx="2" ry="2" />
<text x="50.58" y="751.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="304.5" y="501" width="0.4" height="15.0" fill="rgb(212,221,11)" rx="2" ry="2" />
<text x="307.47" y="511.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="986.3" y="581" width="0.1" height="15.0" fill="rgb(215,67,16)" rx="2" ry="2" />
<text x="989.31" y="591.5" ></text>
</g>
<g >
<title>[tsg_master.so] (19 samples, 0.09%)</title><rect x="680.9" y="517" width="1.1" height="15.0" fill="rgb(213,125,13)" rx="2" ry="2" />
<text x="683.87" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (8 samples, 0.04%)</title><rect x="537.4" y="453" width="0.4" height="15.0" fill="rgb(211,202,35)" rx="2" ry="2" />
<text x="540.35" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (24 samples, 0.12%)</title><rect x="980.7" y="565" width="1.4" height="15.0" fill="rgb(229,126,25)" rx="2" ry="2" />
<text x="983.65" y="575.5" ></text>
</g>
<g >
<title>__sprintf (3 samples, 0.01%)</title><rect x="302.1" y="501" width="0.1" height="15.0" fill="rgb(231,197,37)" rx="2" ry="2" />
<text x="305.05" y="511.5" ></text>
</g>
<g >
<title>TLD_append (6 samples, 0.03%)</title><rect x="569.8" y="325" width="0.4" height="15.0" fill="rgb(247,102,22)" rx="2" ry="2" />
<text x="572.80" y="335.5" ></text>
</g>
<g >
<title>FS_operate (5 samples, 0.02%)</title><rect x="832.4" y="533" width="0.2" height="15.0" fill="rgb(218,83,2)" rx="2" ry="2" />
<text x="835.35" y="543.5" ></text>
</g>
<g >
<title>__strchrnul (4 samples, 0.02%)</title><rect x="979.1" y="565" width="0.3" height="15.0" fill="rgb(246,15,21)" rx="2" ry="2" />
<text x="982.12" y="575.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_read_user_data (2 samples, 0.01%)</title><rect x="396.4" y="549" width="0.1" height="15.0" fill="rgb(241,139,8)" rx="2" ry="2" />
<text x="399.43" y="559.5" ></text>
</g>
<g >
<title>stream_process (53 samples, 0.26%)</title><rect x="1009.8" y="565" width="3.1" height="15.0" fill="rgb(230,109,26)" rx="2" ry="2" />
<text x="1012.79" y="575.5" ></text>
</g>
<g >
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="828.8" y="517" width="0.1" height="15.0" fill="rgb(241,190,29)" rx="2" ry="2" />
<text x="831.82" y="527.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (4 samples, 0.02%)</title><rect x="842.0" y="485" width="0.3" height="15.0" fill="rgb(222,51,51)" rx="2" ry="2" />
<text x="845.03" y="495.5" ></text>
</g>
<g >
<title>printaddr_r (15 samples, 0.07%)</title><rect x="1012.9" y="517" width="0.9" height="15.0" fill="rgb(236,126,47)" rx="2" ry="2" />
<text x="1015.92" y="527.5" ></text>
</g>
<g >
<title>TLD_append (4 samples, 0.02%)</title><rect x="342.2" y="501" width="0.3" height="15.0" fill="rgb(252,197,1)" rx="2" ry="2" />
<text x="345.22" y="511.5" ></text>
</g>
<g >
<title>ASN1_template_free (8 samples, 0.04%)</title><rect x="588.9" y="325" width="0.5" height="15.0" fill="rgb(252,160,53)" rx="2" ry="2" />
<text x="591.91" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (21 samples, 0.10%)</title><rect x="420.0" y="741" width="1.2" height="15.0" fill="rgb(205,217,18)" rx="2" ry="2" />
<text x="422.97" y="751.5" ></text>
</g>
<g >
<title>_make_outer_status (2 samples, 0.01%)</title><rect x="47.7" y="757" width="0.1" height="15.0" fill="rgb(251,209,48)" rx="2" ry="2" />
<text x="50.69" y="767.5" ></text>
</g>
<g >
<title>[dns.so] (3 samples, 0.01%)</title><rect x="997.2" y="661" width="0.1" height="15.0" fill="rgb(244,75,39)" rx="2" ry="2" />
<text x="1000.17" y="671.5" ></text>
</g>
<g >
<title>bitmap_increment (312 samples, 1.56%)</title><rect x="703.2" y="501" width="18.4" height="15.0" fill="rgb(238,168,13)" rx="2" ry="2" />
<text x="706.23" y="511.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (6 samples, 0.03%)</title><rect x="990.0" y="581" width="0.3" height="15.0" fill="rgb(219,211,51)" rx="2" ry="2" />
<text x="992.97" y="591.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (215 samples, 1.07%)</title><rect x="550.8" y="501" width="12.7" height="15.0" fill="rgb(246,56,4)" rx="2" ry="2" />
<text x="553.80" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (131 samples, 0.65%)</title><rect x="239.8" y="741" width="7.7" height="15.0" fill="rgb(210,3,12)" rx="2" ry="2" />
<text x="242.76" y="751.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="596.8" y="469" width="0.1" height="15.0" fill="rgb(237,71,8)" rx="2" ry="2" />
<text x="599.81" y="479.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (2 samples, 0.01%)</title><rect x="792.4" y="533" width="0.1" height="15.0" fill="rgb(245,162,26)" rx="2" ry="2" />
<text x="795.36" y="543.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="856.8" y="469" width="0.2" height="15.0" fill="rgb(243,64,38)" rx="2" ry="2" />
<text x="859.83" y="479.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (24 samples, 0.12%)</title><rect x="126.0" y="677" width="1.4" height="15.0" fill="rgb(247,18,50)" rx="2" ry="2" />
<text x="128.97" y="687.5" ></text>
</g>
<g >
<title>ssl_releaseSslStream (2 samples, 0.01%)</title><rect x="684.1" y="469" width="0.1" height="15.0" fill="rgb(220,85,9)" rx="2" ry="2" />
<text x="687.06" y="479.5" ></text>
</g>
<g >
<title>PROT_PROCESS (3 samples, 0.01%)</title><rect x="420.2" y="613" width="0.2" height="15.0" fill="rgb(245,102,3)" rx="2" ry="2" />
<text x="423.20" y="623.5" ></text>
</g>
<g >
<title>PROT_PROCESS (29 samples, 0.14%)</title><rect x="336.0" y="469" width="1.7" height="15.0" fill="rgb(236,211,52)" rx="2" ry="2" />
<text x="338.97" y="479.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (5 samples, 0.02%)</title><rect x="399.1" y="501" width="0.3" height="15.0" fill="rgb(215,135,22)" rx="2" ry="2" />
<text x="402.09" y="511.5" ></text>
</g>
<g >
<title>[wire_graft_plug.so] (47 samples, 0.23%)</title><rect x="613.0" y="517" width="2.8" height="15.0" fill="rgb(231,180,8)" rx="2" ry="2" />
<text x="616.04" y="527.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="373.2" y="485" width="0.1" height="15.0" fill="rgb(245,144,47)" rx="2" ry="2" />
<text x="376.19" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (24 samples, 0.12%)</title><rect x="588.6" y="405" width="1.4" height="15.0" fill="rgb(250,207,48)" rx="2" ry="2" />
<text x="591.62" y="415.5" ></text>
</g>
<g >
<title>stream_process (10 samples, 0.05%)</title><rect x="973.2" y="661" width="0.5" height="15.0" fill="rgb(233,74,43)" rx="2" ry="2" />
<text x="976.16" y="671.5" ></text>
</g>
<g >
<title>plugin_process_close (31 samples, 0.15%)</title><rect x="327.2" y="485" width="1.8" height="15.0" fill="rgb(227,165,26)" rx="2" ry="2" />
<text x="330.18" y="495.5" ></text>
</g>
<g >
<title>[libwangw.so] (3 samples, 0.01%)</title><rect x="976.6" y="661" width="0.2" height="15.0" fill="rgb(209,124,18)" rx="2" ry="2" />
<text x="979.64" y="671.5" ></text>
</g>
<g >
<title>stream_process (3 samples, 0.01%)</title><rect x="1009.6" y="613" width="0.2" height="15.0" fill="rgb(246,82,16)" rx="2" ry="2" />
<text x="1012.61" y="623.5" ></text>
</g>
<g >
<title>[sapp] (8 samples, 0.04%)</title><rect x="867.4" y="501" width="0.5" height="15.0" fill="rgb(213,130,16)" rx="2" ry="2" />
<text x="870.39" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="401.6" y="549" width="0.1" height="15.0" fill="rgb(250,106,31)" rx="2" ry="2" />
<text x="404.56" y="559.5" ></text>
</g>
<g >
<title>[sapp] (67 samples, 0.33%)</title><rect x="659.0" y="549" width="3.9" height="15.0" fill="rgb(224,10,39)" rx="2" ry="2" />
<text x="661.99" y="559.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="984.7" y="725" width="0.1" height="15.0" fill="rgb(237,11,3)" rx="2" ry="2" />
<text x="987.66" y="735.5" ></text>
</g>
<g >
<title>plugin_process_data (20 samples, 0.10%)</title><rect x="334.8" y="437" width="1.2" height="15.0" fill="rgb(219,48,15)" rx="2" ry="2" />
<text x="337.79" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="357" width="4.2" height="15.0" fill="rgb(231,37,8)" rx="2" ry="2" />
<text x="333.19" y="367.5" ></text>
</g>
<g >
<title>findstreamindex (425 samples, 2.12%)</title><rect x="650.9" y="581" width="25.1" height="15.0" fill="rgb(219,210,26)" rx="2" ry="2" />
<text x="653.91" y="591.5" >f..</text>
</g>
<g >
<title>_IO_vfprintf_internal (7 samples, 0.03%)</title><rect x="1011.0" y="453" width="0.4" height="15.0" fill="rgb(228,56,3)" rx="2" ry="2" />
<text x="1013.97" y="463.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (25 samples, 0.12%)</title><rect x="855.5" y="485" width="1.5" height="15.0" fill="rgb(209,81,0)" rx="2" ry="2" />
<text x="858.48" y="495.5" ></text>
</g>
<g >
<title>TLD_create (4 samples, 0.02%)</title><rect x="336.1" y="405" width="0.2" height="15.0" fill="rgb(209,174,5)" rx="2" ry="2" />
<text x="339.09" y="415.5" ></text>
</g>
<g >
<title>all (20,004 samples, 100%)</title><rect x="10.0" y="821" width="1180.0" height="15.0" fill="rgb(249,206,11)" rx="2" ry="2" />
<text x="13.00" y="831.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (7 samples, 0.03%)</title><rect x="991.7" y="693" width="0.4" height="15.0" fill="rgb(220,70,3)" rx="2" ry="2" />
<text x="994.68" y="703.5" ></text>
</g>
<g >
<title>asn1_ex_i2c (3 samples, 0.01%)</title><rect x="333.0" y="181" width="0.1" height="15.0" fill="rgb(240,166,0)" rx="2" ry="2" />
<text x="335.96" y="191.5" ></text>
</g>
<g >
<title>PROT_PROCESS (4 samples, 0.02%)</title><rect x="337.7" y="469" width="0.2" height="15.0" fill="rgb(252,227,39)" rx="2" ry="2" />
<text x="340.68" y="479.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="421.2" y="693" width="0.1" height="15.0" fill="rgb(254,98,12)" rx="2" ry="2" />
<text x="424.21" y="703.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="334.1" y="165" width="0.2" height="15.0" fill="rgb(248,111,40)" rx="2" ry="2" />
<text x="337.14" y="175.5" ></text>
</g>
<g >
<title>expiry_dablooms_search (16 samples, 0.08%)</title><rect x="686.8" y="565" width="0.9" height="15.0" fill="rgb(219,71,12)" rx="2" ry="2" />
<text x="689.77" y="575.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (3 samples, 0.01%)</title><rect x="973.6" y="629" width="0.1" height="15.0" fill="rgb(235,36,52)" rx="2" ry="2" />
<text x="976.57" y="639.5" ></text>
</g>
<g >
<title>PROT_PROCESS (5 samples, 0.02%)</title><rect x="400.4" y="613" width="0.3" height="15.0" fill="rgb(235,102,14)" rx="2" ry="2" />
<text x="403.44" y="623.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="987.0" y="549" width="0.3" height="15.0" fill="rgb(220,63,45)" rx="2" ry="2" />
<text x="989.96" y="559.5" ></text>
</g>
<g >
<title>project_requirement_create (9 samples, 0.04%)</title><rect x="793.2" y="581" width="0.6" height="15.0" fill="rgb(235,63,19)" rx="2" ry="2" />
<text x="796.25" y="591.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="973.2" y="597" width="0.1" height="15.0" fill="rgb(211,226,2)" rx="2" ry="2" />
<text x="976.16" y="607.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (36 samples, 0.18%)</title><rect x="973.7" y="677" width="2.2" height="15.0" fill="rgb(253,88,14)" rx="2" ry="2" />
<text x="976.75" y="687.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (3 samples, 0.01%)</title><rect x="334.1" y="213" width="0.2" height="15.0" fill="rgb(252,192,33)" rx="2" ry="2" />
<text x="337.14" y="223.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (3 samples, 0.01%)</title><rect x="592.6" y="405" width="0.1" height="15.0" fill="rgb(252,229,24)" rx="2" ry="2" />
<text x="595.57" y="415.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (8 samples, 0.04%)</title><rect x="569.7" y="341" width="0.5" height="15.0" fill="rgb(223,42,14)" rx="2" ry="2" />
<text x="572.74" y="351.5" ></text>
</g>
<g >
<title>MESA_net_jump_to_layer (2 samples, 0.01%)</title><rect x="739.0" y="517" width="0.1" height="15.0" fill="rgb(237,149,6)" rx="2" ry="2" />
<text x="741.98" y="527.5" ></text>
</g>
<g >
<title>[sapp] (39 samples, 0.19%)</title><rect x="1016.0" y="709" width="2.3" height="15.0" fill="rgb(226,23,14)" rx="2" ry="2" />
<text x="1018.98" y="719.5" ></text>
</g>
<g >
<title>__calloc (4 samples, 0.02%)</title><rect x="841.1" y="469" width="0.2" height="15.0" fill="rgb(213,220,43)" rx="2" ry="2" />
<text x="844.08" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (23 samples, 0.11%)</title><rect x="801.7" y="405" width="1.3" height="15.0" fill="rgb(223,34,14)" rx="2" ry="2" />
<text x="804.68" y="415.5" ></text>
</g>
<g >
<title>[sapp] (7 samples, 0.03%)</title><rect x="304.5" y="629" width="0.4" height="15.0" fill="rgb(249,91,14)" rx="2" ry="2" />
<text x="307.47" y="639.5" ></text>
</g>
<g >
<title>lrustream (2 samples, 0.01%)</title><rect x="975.9" y="693" width="0.1" height="15.0" fill="rgb(219,196,44)" rx="2" ry="2" />
<text x="978.87" y="703.5" ></text>
</g>
<g >
<title>sapp_get_platform_opt (5 samples, 0.02%)</title><rect x="867.9" y="533" width="0.3" height="15.0" fill="rgb(231,223,48)" rx="2" ry="2" />
<text x="870.87" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (71 samples, 0.35%)</title><rect x="992.7" y="677" width="4.2" height="15.0" fill="rgb(225,108,19)" rx="2" ry="2" />
<text x="995.74" y="687.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="983.0" y="453" width="0.1" height="15.0" fill="rgb(254,70,3)" rx="2" ry="2" />
<text x="985.95" y="463.5" ></text>
</g>
<g >
<title>qmdpi_flow_destroy (4 samples, 0.02%)</title><rect x="563.3" y="485" width="0.2" height="15.0" fill="rgb(247,80,10)" rx="2" ry="2" />
<text x="566.25" y="495.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="1015.6" y="485" width="0.1" height="15.0" fill="rgb(254,187,25)" rx="2" ry="2" />
<text x="1018.57" y="495.5" ></text>
</g>
<g >
<title>dealipv4udppkt (11 samples, 0.05%)</title><rect x="401.5" y="741" width="0.7" height="15.0" fill="rgb(236,113,30)" rx="2" ry="2" />
<text x="404.50" y="751.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.03%)</title><rect x="626.0" y="501" width="0.3" height="15.0" fill="rgb(235,188,19)" rx="2" ry="2" />
<text x="628.95" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (11 samples, 0.05%)</title><rect x="400.9" y="677" width="0.6" height="15.0" fill="rgb(225,69,39)" rx="2" ry="2" />
<text x="403.86" y="687.5" ></text>
</g>
<g >
<title>ssl_doWithApplicationData (57 samples, 0.28%)</title><rect x="581.1" y="453" width="3.4" height="15.0" fill="rgb(221,118,11)" rx="2" ry="2" />
<text x="584.12" y="463.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="560.5" y="341" width="0.6" height="15.0" fill="rgb(210,103,23)" rx="2" ry="2" />
<text x="563.54" y="351.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="573.7" y="437" width="0.2" height="15.0" fill="rgb(207,60,3)" rx="2" ry="2" />
<text x="576.69" y="447.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (1,532 samples, 7.66%)</title><rect x="188.9" y="789" width="90.3" height="15.0" fill="rgb(217,222,49)" rx="2" ry="2" />
<text x="191.85" y="799.5" >Maat_scan_..</text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="591.0" y="389" width="0.2" height="15.0" fill="rgb(243,186,37)" rx="2" ry="2" />
<text x="594.03" y="399.5" ></text>
</g>
<g >
<title>scaling_bloom_add (57 samples, 0.28%)</title><rect x="687.8" y="533" width="3.4" height="15.0" fill="rgb(220,165,13)" rx="2" ry="2" />
<text x="690.83" y="543.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (8 samples, 0.04%)</title><rect x="975.0" y="517" width="0.5" height="15.0" fill="rgb(226,143,39)" rx="2" ry="2" />
<text x="977.99" y="527.5" ></text>
</g>
<g >
<title>parse_dns_protocol (2 samples, 0.01%)</title><rect x="832.9" y="533" width="0.2" height="15.0" fill="rgb(206,77,13)" rx="2" ry="2" />
<text x="835.94" y="543.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="396.7" y="533" width="0.2" height="15.0" fill="rgb(239,76,14)" rx="2" ry="2" />
<text x="399.73" y="543.5" ></text>
</g>
<g >
<title>tsg_scan_addr (5 samples, 0.02%)</title><rect x="373.5" y="533" width="0.3" height="15.0" fill="rgb(215,162,32)" rx="2" ry="2" />
<text x="376.49" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (60 samples, 0.30%)</title><rect x="314.2" y="373" width="3.5" height="15.0" fill="rgb(252,56,1)" rx="2" ry="2" />
<text x="317.20" y="383.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (17 samples, 0.08%)</title><rect x="852.5" y="533" width="1.0" height="15.0" fill="rgb(242,131,49)" rx="2" ry="2" />
<text x="855.53" y="543.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (7 samples, 0.03%)</title><rect x="821.3" y="437" width="0.4" height="15.0" fill="rgb(223,48,41)" rx="2" ry="2" />
<text x="824.26" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (20 samples, 0.10%)</title><rect x="1011.4" y="469" width="1.2" height="15.0" fill="rgb(218,57,12)" rx="2" ry="2" />
<text x="1014.38" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="332.8" y="197" width="0.3" height="15.0" fill="rgb(247,123,40)" rx="2" ry="2" />
<text x="335.78" y="207.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (6 samples, 0.03%)</title><rect x="935.8" y="661" width="0.3" height="15.0" fill="rgb(225,34,42)" rx="2" ry="2" />
<text x="938.76" y="671.5" ></text>
</g>
<g >
<title>[libqmengine.so] (2 samples, 0.01%)</title><rect x="552.3" y="453" width="0.1" height="15.0" fill="rgb(205,125,46)" rx="2" ry="2" />
<text x="555.28" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (2 samples, 0.01%)</title><rect x="984.7" y="645" width="0.1" height="15.0" fill="rgb(230,30,51)" rx="2" ry="2" />
<text x="987.66" y="655.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="421.6" y="645" width="0.1" height="15.0" fill="rgb(249,107,38)" rx="2" ry="2" />
<text x="424.56" y="655.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (5 samples, 0.02%)</title><rect x="304.1" y="565" width="0.3" height="15.0" fill="rgb(223,132,13)" rx="2" ry="2" />
<text x="307.06" y="575.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (4 samples, 0.02%)</title><rect x="986.0" y="645" width="0.2" height="15.0" fill="rgb(230,77,19)" rx="2" ry="2" />
<text x="988.96" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="362.7" y="421" width="0.2" height="15.0" fill="rgb(211,138,52)" rx="2" ry="2" />
<text x="365.69" y="431.5" ></text>
</g>
<g >
<title>system_capture_packet_entry (26 samples, 0.13%)</title><rect x="830.7" y="533" width="1.5" height="15.0" fill="rgb(220,145,5)" rx="2" ry="2" />
<text x="833.70" y="543.5" ></text>
</g>
<g >
<title>fn_pGetSSLInfo (18 samples, 0.09%)</title><rect x="300.5" y="469" width="1.0" height="15.0" fill="rgb(230,2,23)" rx="2" ry="2" />
<text x="303.46" y="479.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (2 samples, 0.01%)</title><rect x="987.3" y="645" width="0.1" height="15.0" fill="rgb(205,227,28)" rx="2" ry="2" />
<text x="990.32" y="655.5" ></text>
</g>
<g >
<title>PROT_PROCESS (30 samples, 0.15%)</title><rect x="593.0" y="421" width="1.8" height="15.0" fill="rgb(240,40,5)" rx="2" ry="2" />
<text x="596.04" y="431.5" ></text>
</g>
<g >
<title>__stpcpy_sse2_unaligned (4 samples, 0.02%)</title><rect x="637.9" y="485" width="0.2" height="15.0" fill="rgb(208,183,26)" rx="2" ry="2" />
<text x="640.87" y="495.5" ></text>
</g>
<g >
<title>ipv4_entry (172 samples, 0.86%)</title><rect x="297.9" y="661" width="10.1" height="15.0" fill="rgb(234,100,28)" rx="2" ry="2" />
<text x="300.86" y="671.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (16 samples, 0.08%)</title><rect x="326.2" y="437" width="1.0" height="15.0" fill="rgb(219,101,46)" rx="2" ry="2" />
<text x="329.24" y="447.5" ></text>
</g>
<g >
<title>Maat_table_runtime_get (10 samples, 0.05%)</title><rect x="192.4" y="773" width="0.6" height="15.0" fill="rgb(236,106,35)" rx="2" ry="2" />
<text x="195.39" y="783.5" ></text>
</g>
<g >
<title>stream_process (139 samples, 0.69%)</title><rect x="366.2" y="597" width="8.2" height="15.0" fill="rgb(219,210,32)" rx="2" ry="2" />
<text x="369.17" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="382.5" y="421" width="0.5" height="15.0" fill="rgb(211,51,23)" rx="2" ry="2" />
<text x="385.45" y="431.5" ></text>
</g>
<g >
<title>TLD_append (15 samples, 0.07%)</title><rect x="339.5" y="517" width="0.9" height="15.0" fill="rgb(243,13,33)" rx="2" ry="2" />
<text x="342.51" y="527.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="924.5" y="629" width="0.2" height="15.0" fill="rgb(216,60,50)" rx="2" ry="2" />
<text x="927.49" y="639.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="341" width="4.2" height="15.0" fill="rgb(235,69,49)" rx="2" ry="2" />
<text x="333.19" y="351.5" ></text>
</g>
<g >
<title>MV_Sketch_update (11 samples, 0.05%)</title><rect x="763.8" y="469" width="0.7" height="15.0" fill="rgb(215,173,53)" rx="2" ry="2" />
<text x="766.81" y="479.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (68 samples, 0.34%)</title><rect x="1009.8" y="629" width="4.0" height="15.0" fill="rgb(211,222,40)" rx="2" ry="2" />
<text x="1012.79" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="387.9" y="501" width="0.3" height="15.0" fill="rgb(253,0,24)" rx="2" ry="2" />
<text x="390.88" y="511.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="563.3" y="469" width="0.1" height="15.0" fill="rgb(231,64,18)" rx="2" ry="2" />
<text x="566.25" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (10 samples, 0.05%)</title><rect x="316.0" y="309" width="0.6" height="15.0" fill="rgb(238,17,43)" rx="2" ry="2" />
<text x="318.97" y="319.5" ></text>
</g>
<g >
<title>FW_QUIC_PLUG_ENTRY (7 samples, 0.03%)</title><rect x="834.7" y="469" width="0.4" height="15.0" fill="rgb(232,222,2)" rx="2" ry="2" />
<text x="837.66" y="479.5" ></text>
</g>
<g >
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="400.9" y="597" width="0.3" height="15.0" fill="rgb(212,97,37)" rx="2" ry="2" />
<text x="403.91" y="607.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="327.5" y="389" width="0.2" height="15.0" fill="rgb(230,36,5)" rx="2" ry="2" />
<text x="330.53" y="399.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (4 samples, 0.02%)</title><rect x="983.6" y="517" width="0.2" height="15.0" fill="rgb(218,192,22)" rx="2" ry="2" />
<text x="986.60" y="527.5" ></text>
</g>
<g >
<title>MESA_htable_search (8 samples, 0.04%)</title><rect x="614.2" y="485" width="0.5" height="15.0" fill="rgb(247,201,31)" rx="2" ry="2" />
<text x="617.22" y="495.5" ></text>
</g>
<g >
<title>plugin_process_close (34 samples, 0.17%)</title><rect x="320.6" y="469" width="2.0" height="15.0" fill="rgb(206,10,30)" rx="2" ry="2" />
<text x="323.57" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="985.5" y="453" width="0.2" height="15.0" fill="rgb(213,212,43)" rx="2" ry="2" />
<text x="988.49" y="463.5" ></text>
</g>
<g >
<title>tcp_dump_sig (21 samples, 0.10%)</title><rect x="318.9" y="533" width="1.3" height="15.0" fill="rgb(222,108,17)" rx="2" ry="2" />
<text x="321.92" y="543.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (5 samples, 0.02%)</title><rect x="393.8" y="357" width="0.3" height="15.0" fill="rgb(238,93,21)" rx="2" ry="2" />
<text x="396.84" y="367.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="1009.6" y="549" width="0.2" height="15.0" fill="rgb(253,120,45)" rx="2" ry="2" />
<text x="1012.61" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="684.4" y="501" width="0.2" height="15.0" fill="rgb(250,64,10)" rx="2" ry="2" />
<text x="687.41" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (46 samples, 0.23%)</title><rect x="322.9" y="373" width="2.7" height="15.0" fill="rgb(216,32,11)" rx="2" ry="2" />
<text x="325.93" y="383.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="552.9" y="421" width="0.3" height="15.0" fill="rgb(237,75,7)" rx="2" ry="2" />
<text x="555.93" y="431.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="557.6" y="437" width="0.3" height="15.0" fill="rgb(208,133,32)" rx="2" ry="2" />
<text x="560.59" y="447.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (2 samples, 0.01%)</title><rect x="310.8" y="437" width="0.2" height="15.0" fill="rgb(248,161,33)" rx="2" ry="2" />
<text x="313.84" y="447.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="303.5" y="501" width="0.6" height="15.0" fill="rgb(222,169,51)" rx="2" ry="2" />
<text x="306.53" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (7 samples, 0.03%)</title><rect x="800.0" y="421" width="0.4" height="15.0" fill="rgb(241,36,15)" rx="2" ry="2" />
<text x="803.03" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (22 samples, 0.11%)</title><rect x="649.4" y="517" width="1.3" height="15.0" fill="rgb(226,22,20)" rx="2" ry="2" />
<text x="652.43" y="527.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (3 samples, 0.01%)</title><rect x="984.2" y="597" width="0.2" height="15.0" fill="rgb(234,146,43)" rx="2" ry="2" />
<text x="987.25" y="607.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (66 samples, 0.33%)</title><rect x="979.6" y="693" width="3.9" height="15.0" fill="rgb(239,201,3)" rx="2" ry="2" />
<text x="982.65" y="703.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="683.5" y="405" width="0.1" height="15.0" fill="rgb(251,83,31)" rx="2" ry="2" />
<text x="686.47" y="415.5" ></text>
</g>
<g >
<title>streamaddlist (137 samples, 0.68%)</title><rect x="795.4" y="581" width="8.1" height="15.0" fill="rgb(243,197,30)" rx="2" ry="2" />
<text x="798.43" y="591.5" ></text>
</g>
<g >
<title>dealipv4udppkt (2 samples, 0.01%)</title><rect x="1018.3" y="741" width="0.2" height="15.0" fill="rgb(246,219,14)" rx="2" ry="2" />
<text x="1021.34" y="751.5" ></text>
</g>
<g >
<title>stream_process (937 samples, 4.68%)</title><rect x="813.3" y="581" width="55.3" height="15.0" fill="rgb(234,214,38)" rx="2" ry="2" />
<text x="816.30" y="591.5" >strea..</text>
</g>
<g >
<title>tsg_record_dns_entry (56 samples, 0.28%)</title><rect x="999.8" y="709" width="3.3" height="15.0" fill="rgb(234,85,1)" rx="2" ry="2" />
<text x="1002.76" y="719.5" ></text>
</g>
<g >
<title>eth_entry (42 samples, 0.21%)</title><rect x="1016.0" y="773" width="2.5" height="15.0" fill="rgb(244,225,35)" rx="2" ry="2" />
<text x="1018.98" y="783.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="401.6" y="629" width="0.6" height="15.0" fill="rgb(217,22,41)" rx="2" ry="2" />
<text x="404.56" y="639.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (7 samples, 0.03%)</title><rect x="320.2" y="501" width="0.4" height="15.0" fill="rgb(210,40,12)" rx="2" ry="2" />
<text x="323.16" y="511.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (413 samples, 2.06%)</title><rect x="133.9" y="661" width="24.3" height="15.0" fill="rgb(216,154,17)" rx="2" ry="2" />
<text x="136.88" y="671.5" >m..</text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="990.0" y="613" width="0.3" height="15.0" fill="rgb(251,196,38)" rx="2" ry="2" />
<text x="992.97" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="335.2" y="357" width="0.4" height="15.0" fill="rgb(221,51,49)" rx="2" ry="2" />
<text x="338.20" y="367.5" ></text>
</g>
<g >
<title>ssl_callPlugins (8 samples, 0.04%)</title><rect x="596.0" y="485" width="0.5" height="15.0" fill="rgb(231,227,24)" rx="2" ry="2" />
<text x="598.99" y="495.5" ></text>
</g>
<g >
<title>__sprintf (8 samples, 0.04%)</title><rect x="339.0" y="501" width="0.4" height="15.0" fill="rgb(208,140,19)" rx="2" ry="2" />
<text x="341.98" y="511.5" ></text>
</g>
<g >
<title>Maat_table_runtime_perf_stat (4 samples, 0.02%)</title><rect x="372.1" y="501" width="0.2" height="15.0" fill="rgb(250,32,48)" rx="2" ry="2" />
<text x="375.07" y="511.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (294 samples, 1.47%)</title><rect x="402.6" y="757" width="17.4" height="15.0" fill="rgb(212,157,20)" rx="2" ry="2" />
<text x="405.63" y="767.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count (36 samples, 0.18%)</title><rect x="220.2" y="725" width="2.1" height="15.0" fill="rgb(248,70,37)" rx="2" ry="2" />
<text x="223.17" y="735.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new00 (4 samples, 0.02%)</title><rect x="996.0" y="613" width="0.2" height="15.0" fill="rgb(248,0,6)" rx="2" ry="2" />
<text x="998.99" y="623.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (8 samples, 0.04%)</title><rect x="1016.0" y="613" width="0.5" height="15.0" fill="rgb(225,79,14)" rx="2" ry="2" />
<text x="1019.04" y="623.5" ></text>
</g>
<g >
<title>CPortIndex::Find (25 samples, 0.12%)</title><rect x="295.0" y="757" width="1.5" height="15.0" fill="rgb(216,164,9)" rx="2" ry="2" />
<text x="298.03" y="767.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (15 samples, 0.07%)</title><rect x="300.5" y="309" width="0.8" height="15.0" fill="rgb(236,206,7)" rx="2" ry="2" />
<text x="303.46" y="319.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (14 samples, 0.07%)</title><rect x="927.1" y="629" width="0.9" height="15.0" fill="rgb(217,203,6)" rx="2" ry="2" />
<text x="930.15" y="639.5" ></text>
</g>
<g >
<title>BtoL2BytesNum (2 samples, 0.01%)</title><rect x="584.7" y="453" width="0.1" height="15.0" fill="rgb(223,219,40)" rx="2" ry="2" />
<text x="587.66" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="405" width="0.1" height="15.0" fill="rgb(234,76,30)" rx="2" ry="2" />
<text x="337.38" y="415.5" ></text>
</g>
<g >
<title>grab_mid (3 samples, 0.01%)</title><rect x="988.9" y="565" width="0.1" height="15.0" fill="rgb(242,124,13)" rx="2" ry="2" />
<text x="991.85" y="575.5" ></text>
</g>
<g >
<title>lock_hrtimer_base (4 samples, 0.02%)</title><rect x="932.1" y="613" width="0.2" height="15.0" fill="rgb(233,217,0)" rx="2" ry="2" />
<text x="935.10" y="623.5" ></text>
</g>
<g >
<title>project_req_get_struct (3 samples, 0.01%)</title><rect x="567.7" y="501" width="0.2" height="15.0" fill="rgb(230,26,12)" rx="2" ry="2" />
<text x="570.73" y="511.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="975.9" y="629" width="0.1" height="15.0" fill="rgb(236,168,41)" rx="2" ry="2" />
<text x="978.87" y="639.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="541.7" y="469" width="0.1" height="15.0" fill="rgb(237,116,46)" rx="2" ry="2" />
<text x="544.72" y="479.5" ></text>
</g>
<g >
<title>finish_task_switch (48 samples, 0.24%)</title><rect x="932.6" y="597" width="2.8" height="15.0" fill="rgb(227,53,50)" rx="2" ry="2" />
<text x="935.58" y="607.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="837.0" y="469" width="0.1" height="15.0" fill="rgb(217,28,38)" rx="2" ry="2" />
<text x="840.01" y="479.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (5 samples, 0.02%)</title><rect x="535.8" y="517" width="0.3" height="15.0" fill="rgb(235,185,50)" rx="2" ry="2" />
<text x="538.82" y="527.5" ></text>
</g>
<g >
<title>plugin_call_appentry (34 samples, 0.17%)</title><rect x="320.6" y="453" width="2.0" height="15.0" fill="rgb(229,186,10)" rx="2" ry="2" />
<text x="323.57" y="463.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="607.4" y="501" width="0.2" height="15.0" fill="rgb(229,88,22)" rx="2" ry="2" />
<text x="610.37" y="511.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="552.9" y="437" width="0.3" height="15.0" fill="rgb(206,194,10)" rx="2" ry="2" />
<text x="555.93" y="447.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (15 samples, 0.07%)</title><rect x="332.3" y="277" width="0.9" height="15.0" fill="rgb(205,43,42)" rx="2" ry="2" />
<text x="335.31" y="287.5" ></text>
</g>
<g >
<title>Maat_table_get_type_by_id (5 samples, 0.02%)</title><rect x="192.0" y="773" width="0.3" height="15.0" fill="rgb(226,130,35)" rx="2" ry="2" />
<text x="195.04" y="783.5" ></text>
</g>
<g >
<title>stream_process_udp (5 samples, 0.02%)</title><rect x="979.4" y="741" width="0.2" height="15.0" fill="rgb(210,124,37)" rx="2" ry="2" />
<text x="982.35" y="751.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (3 samples, 0.01%)</title><rect x="546.6" y="549" width="0.1" height="15.0" fill="rgb(214,2,45)" rx="2" ry="2" />
<text x="549.56" y="559.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (2 samples, 0.01%)</title><rect x="999.0" y="661" width="0.1" height="15.0" fill="rgb(213,23,44)" rx="2" ry="2" />
<text x="1002.00" y="671.5" ></text>
</g>
<g >
<title>wangw_ingress_stream_is_wannat_session (9 samples, 0.04%)</title><rect x="1017.8" y="629" width="0.5" height="15.0" fill="rgb(232,88,1)" rx="2" ry="2" />
<text x="1020.75" y="639.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (29 samples, 0.14%)</title><rect x="841.8" y="517" width="1.7" height="15.0" fill="rgb(245,213,7)" rx="2" ry="2" />
<text x="844.79" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="331.9" y="197" width="0.4" height="15.0" fill="rgb(227,77,31)" rx="2" ry="2" />
<text x="334.90" y="207.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap (8 samples, 0.04%)</title><rect x="792.4" y="565" width="0.4" height="15.0" fill="rgb(240,6,5)" rx="2" ry="2" />
<text x="795.36" y="575.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (14 samples, 0.07%)</title><rect x="537.9" y="501" width="0.8" height="15.0" fill="rgb(223,225,12)" rx="2" ry="2" />
<text x="540.89" y="511.5" ></text>
</g>
<g >
<title>tsg_ddos_sketch_tcpall_entry (14 samples, 0.07%)</title><rect x="763.6" y="533" width="0.9" height="15.0" fill="rgb(218,96,2)" rx="2" ry="2" />
<text x="766.63" y="543.5" ></text>
</g>
<g >
<title>__schedule (48 samples, 0.24%)</title><rect x="932.6" y="613" width="2.8" height="15.0" fill="rgb(215,158,43)" rx="2" ry="2" />
<text x="935.58" y="623.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="683.5" y="341" width="0.1" height="15.0" fill="rgb(228,148,16)" rx="2" ry="2" />
<text x="686.47" y="351.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="310.4" y="453" width="0.1" height="15.0" fill="rgb(229,137,48)" rx="2" ry="2" />
<text x="313.37" y="463.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="983.6" y="469" width="0.2" height="15.0" fill="rgb(237,51,12)" rx="2" ry="2" />
<text x="986.60" y="479.5" ></text>
</g>
<g >
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="307.5" y="501" width="0.4" height="15.0" fill="rgb(246,72,24)" rx="2" ry="2" />
<text x="310.54" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="648.7" y="469" width="0.1" height="15.0" fill="rgb(217,198,29)" rx="2" ry="2" />
<text x="651.67" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="549" width="0.2" height="15.0" fill="rgb(211,180,47)" rx="2" ry="2" />
<text x="987.84" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="551.7" y="469" width="0.4" height="15.0" fill="rgb(231,27,46)" rx="2" ry="2" />
<text x="554.75" y="479.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (5 samples, 0.02%)</title><rect x="615.5" y="485" width="0.3" height="15.0" fill="rgb(221,66,2)" rx="2" ry="2" />
<text x="618.51" y="495.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (6 samples, 0.03%)</title><rect x="841.9" y="501" width="0.4" height="15.0" fill="rgb(246,133,15)" rx="2" ry="2" />
<text x="844.91" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new (2 samples, 0.01%)</title><rect x="387.8" y="533" width="0.1" height="15.0" fill="rgb(229,224,30)" rx="2" ry="2" />
<text x="390.76" y="543.5" ></text>
</g>
<g >
<title>[libqmengine.so] (6 samples, 0.03%)</title><rect x="1010.1" y="469" width="0.3" height="15.0" fill="rgb(230,210,36)" rx="2" ry="2" />
<text x="1013.09" y="479.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (2 samples, 0.01%)</title><rect x="304.9" y="533" width="0.1" height="15.0" fill="rgb(215,210,33)" rx="2" ry="2" />
<text x="307.88" y="543.5" ></text>
</g>
<g >
<title>APP_SKETCH_SSL_PLUG_ENTRY (5 samples, 0.02%)</title><rect x="400.4" y="565" width="0.3" height="15.0" fill="rgb(206,18,48)" rx="2" ry="2" />
<text x="403.44" y="575.5" ></text>
</g>
<g >
<title>CStringMatch::search_rule (3 samples, 0.01%)</title><rect x="57.0" y="741" width="0.1" height="15.0" fill="rgb(241,149,11)" rx="2" ry="2" />
<text x="59.95" y="751.5" ></text>
</g>
<g >
<title>eth_entry (6,230 samples, 31.14%)</title><rect x="506.6" y="645" width="367.5" height="15.0" fill="rgb(226,133,27)" rx="2" ry="2" />
<text x="509.62" y="655.5" >eth_entry</text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (54 samples, 0.27%)</title><rect x="391.3" y="421" width="3.2" height="15.0" fill="rgb(234,134,12)" rx="2" ry="2" />
<text x="394.30" y="431.5" ></text>
</g>
<g >
<title>SSH_ENTRY (14 samples, 0.07%)</title><rect x="577.3" y="517" width="0.8" height="15.0" fill="rgb(248,14,4)" rx="2" ry="2" />
<text x="580.29" y="527.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (181 samples, 0.90%)</title><rect x="897.5" y="709" width="10.7" height="15.0" fill="rgb(226,11,21)" rx="2" ry="2" />
<text x="900.54" y="719.5" ></text>
</g>
<g >
<title>[tsg_ddos_sketch.so] (14 samples, 0.07%)</title><rect x="763.6" y="517" width="0.9" height="15.0" fill="rgb(216,137,23)" rx="2" ry="2" />
<text x="766.63" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (7 samples, 0.03%)</title><rect x="377.1" y="421" width="0.5" height="15.0" fill="rgb(240,66,22)" rx="2" ry="2" />
<text x="380.14" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_ex_i2d (11 samples, 0.05%)</title><rect x="332.5" y="245" width="0.7" height="15.0" fill="rgb(235,181,44)" rx="2" ry="2" />
<text x="335.55" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="795.1" y="549" width="0.2" height="15.0" fill="rgb(243,133,27)" rx="2" ry="2" />
<text x="798.13" y="559.5" ></text>
</g>
<g >
<title>schedule_idle (100 samples, 0.50%)</title><rect x="1183.7" y="725" width="5.9" height="15.0" fill="rgb(224,150,53)" rx="2" ry="2" />
<text x="1186.75" y="735.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1012.6" y="501" width="0.1" height="15.0" fill="rgb(209,126,31)" rx="2" ry="2" />
<text x="1015.56" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="387.9" y="469" width="0.2" height="15.0" fill="rgb(251,182,49)" rx="2" ry="2" />
<text x="390.88" y="479.5" ></text>
</g>
<g >
<title>tsg_record_ssl_entry (13 samples, 0.06%)</title><rect x="594.0" y="373" width="0.8" height="15.0" fill="rgb(252,142,37)" rx="2" ry="2" />
<text x="597.04" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (66 samples, 0.33%)</title><rect x="377.6" y="421" width="3.8" height="15.0" fill="rgb(227,206,21)" rx="2" ry="2" />
<text x="380.56" y="431.5" ></text>
</g>
<g >
<title>qm_malloc_default (2 samples, 0.01%)</title><rect x="317.3" y="341" width="0.1" height="15.0" fill="rgb(214,32,37)" rx="2" ry="2" />
<text x="320.27" y="351.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="333.3" y="261" width="0.1" height="15.0" fill="rgb(205,66,36)" rx="2" ry="2" />
<text x="336.26" y="271.5" ></text>
</g>
<g >
<title>vxlan_entry (42 samples, 0.21%)</title><rect x="1016.0" y="789" width="2.5" height="15.0" fill="rgb(248,204,28)" rx="2" ry="2" />
<text x="1018.98" y="799.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (2 samples, 0.01%)</title><rect x="977.4" y="613" width="0.1" height="15.0" fill="rgb(250,167,2)" rx="2" ry="2" />
<text x="980.41" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (115 samples, 0.57%)</title><rect x="929.7" y="709" width="6.8" height="15.0" fill="rgb(215,166,22)" rx="2" ry="2" />
<text x="932.74" y="719.5" ></text>
</g>
<g >
<title>TLD_cancel (7 samples, 0.03%)</title><rect x="329.8" y="389" width="0.4" height="15.0" fill="rgb(218,6,44)" rx="2" ry="2" />
<text x="332.78" y="399.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="976.9" y="549" width="0.1" height="15.0" fill="rgb(224,98,0)" rx="2" ry="2" />
<text x="979.88" y="559.5" ></text>
</g>
<g >
<title>plugin_call_appentry (24 samples, 0.12%)</title><rect x="593.4" y="389" width="1.4" height="15.0" fill="rgb(250,70,6)" rx="2" ry="2" />
<text x="596.39" y="399.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (52 samples, 0.26%)</title><rect x="363.1" y="501" width="3.1" height="15.0" fill="rgb(242,53,43)" rx="2" ry="2" />
<text x="366.10" y="511.5" ></text>
</g>
<g >
<title>FS_operate (8 samples, 0.04%)</title><rect x="375.3" y="469" width="0.5" height="15.0" fill="rgb(228,37,10)" rx="2" ry="2" />
<text x="378.31" y="479.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (11 samples, 0.05%)</title><rect x="996.3" y="645" width="0.6" height="15.0" fill="rgb(206,137,42)" rx="2" ry="2" />
<text x="999.28" y="655.5" ></text>
</g>
<g >
<title>CNaiveIntervalIndex::Find (4 samples, 0.02%)</title><rect x="842.3" y="421" width="0.3" height="15.0" fill="rgb(211,194,49)" rx="2" ry="2" />
<text x="845.32" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="320.3" y="325" width="0.2" height="15.0" fill="rgb(253,172,31)" rx="2" ry="2" />
<text x="323.28" y="335.5" ></text>
</g>
<g >
<title>std::_Rb_tree_increment (13 samples, 0.06%)</title><rect x="851.5" y="501" width="0.7" height="15.0" fill="rgb(238,47,36)" rx="2" ry="2" />
<text x="854.47" y="511.5" ></text>
</g>
<g >
<title>__calloc (9 samples, 0.04%)</title><rect x="279.3" y="773" width="0.5" height="15.0" fill="rgb(208,206,25)" rx="2" ry="2" />
<text x="282.28" y="783.5" ></text>
</g>
<g >
<title>plugin_call_appentry (5 samples, 0.02%)</title><rect x="1016.8" y="533" width="0.2" height="15.0" fill="rgb(247,53,17)" rx="2" ry="2" />
<text x="1019.75" y="543.5" ></text>
</g>
<g >
<title>__st_pkt_proc_context_check_timeout (49 samples, 0.24%)</title><rect x="948.3" y="725" width="2.9" height="15.0" fill="rgb(232,179,7)" rx="2" ry="2" />
<text x="951.33" y="735.5" ></text>
</g>
<g >
<title>__snprintf (5 samples, 0.02%)</title><rect x="334.5" y="469" width="0.3" height="15.0" fill="rgb(206,33,1)" rx="2" ry="2" />
<text x="337.49" y="479.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="925.6" y="677" width="0.2" height="15.0" fill="rgb(222,11,22)" rx="2" ry="2" />
<text x="928.61" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="843.6" y="533" width="0.1" height="15.0" fill="rgb(223,106,44)" rx="2" ry="2" />
<text x="846.56" y="543.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_detach (2 samples, 0.01%)</title><rect x="546.7" y="549" width="0.2" height="15.0" fill="rgb(250,43,36)" rx="2" ry="2" />
<text x="549.73" y="559.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_detach (3 samples, 0.01%)</title><rect x="813.1" y="581" width="0.2" height="15.0" fill="rgb(242,137,31)" rx="2" ry="2" />
<text x="816.12" y="591.5" ></text>
</g>
<g >
<title>APP_STAT_LATEENCY (2 samples, 0.01%)</title><rect x="818.2" y="517" width="0.1" height="15.0" fill="rgb(242,182,13)" rx="2" ry="2" />
<text x="821.20" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="1017.0" y="501" width="0.3" height="15.0" fill="rgb(217,224,8)" rx="2" ry="2" />
<text x="1020.05" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="569.0" y="357" width="0.1" height="15.0" fill="rgb(230,158,23)" rx="2" ry="2" />
<text x="571.97" y="367.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (340 samples, 1.70%)</title><rect x="257.8" y="757" width="20.1" height="15.0" fill="rgb(237,102,19)" rx="2" ry="2" />
<text x="260.81" y="767.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="1010.1" y="421" width="0.3" height="15.0" fill="rgb(237,161,46)" rx="2" ry="2" />
<text x="1013.09" y="431.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="683.9" y="357" width="0.2" height="15.0" fill="rgb(226,193,24)" rx="2" ry="2" />
<text x="686.94" y="367.5" ></text>
</g>
<g >
<title>[tsg_master.so] (11 samples, 0.05%)</title><rect x="302.2" y="517" width="0.7" height="15.0" fill="rgb(231,224,33)" rx="2" ry="2" />
<text x="305.23" y="527.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (3 samples, 0.01%)</title><rect x="400.1" y="549" width="0.2" height="15.0" fill="rgb(243,209,50)" rx="2" ry="2" />
<text x="403.15" y="559.5" ></text>
</g>
<g >
<title>[app_proto_engine.so] (11 samples, 0.05%)</title><rect x="1009.8" y="517" width="0.6" height="15.0" fill="rgb(218,163,45)" rx="2" ry="2" />
<text x="1012.79" y="527.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (87 samples, 0.43%)</title><rect x="620.8" y="501" width="5.1" height="15.0" fill="rgb(236,53,50)" rx="2" ry="2" />
<text x="623.76" y="511.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (33 samples, 0.16%)</title><rect x="571.7" y="453" width="2.0" height="15.0" fill="rgb(226,39,32)" rx="2" ry="2" />
<text x="574.74" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseAppData (64 samples, 0.32%)</title><rect x="580.7" y="469" width="3.8" height="15.0" fill="rgb(242,206,48)" rx="2" ry="2" />
<text x="583.71" y="479.5" ></text>
</g>
<g >
<title>plugin_process_data (102 samples, 0.51%)</title><rect x="991.5" y="741" width="6.0" height="15.0" fill="rgb(241,222,17)" rx="2" ry="2" />
<text x="994.50" y="751.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="301.9" y="373" width="0.2" height="15.0" fill="rgb(214,21,22)" rx="2" ry="2" />
<text x="304.93" y="383.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="566.1" y="469" width="0.1" height="15.0" fill="rgb(206,47,23)" rx="2" ry="2" />
<text x="569.08" y="479.5" ></text>
</g>
<g >
<title>[sapp] (105 samples, 0.52%)</title><rect x="1009.6" y="773" width="6.2" height="15.0" fill="rgb(208,76,11)" rx="2" ry="2" />
<text x="1012.61" y="783.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="304.1" y="549" width="0.3" height="15.0" fill="rgb(221,165,4)" rx="2" ry="2" />
<text x="307.06" y="559.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (3 samples, 0.01%)</title><rect x="991.3" y="773" width="0.1" height="15.0" fill="rgb(253,223,25)" rx="2" ry="2" />
<text x="994.27" y="783.5" ></text>
</g>
<g >
<title>set_session_attributes (2 samples, 0.01%)</title><rect x="983.1" y="485" width="0.1" height="15.0" fill="rgb(244,186,20)" rx="2" ry="2" />
<text x="986.07" y="495.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (8 samples, 0.04%)</title><rect x="990.3" y="661" width="0.5" height="15.0" fill="rgb(220,61,49)" rx="2" ry="2" />
<text x="993.32" y="671.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (27 samples, 0.13%)</title><rect x="388.7" y="501" width="1.6" height="15.0" fill="rgb(247,67,20)" rx="2" ry="2" />
<text x="391.70" y="511.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (9 samples, 0.04%)</title><rect x="1010.4" y="469" width="0.6" height="15.0" fill="rgb(233,144,16)" rx="2" ry="2" />
<text x="1013.44" y="479.5" ></text>
</g>
<g >
<title>__calloc (2 samples, 0.01%)</title><rect x="336.1" y="389" width="0.1" height="15.0" fill="rgb(212,7,12)" rx="2" ry="2" />
<text x="339.09" y="399.5" ></text>
</g>
<g >
<title>app_proto_destroy_stream (3 samples, 0.01%)</title><rect x="799.6" y="453" width="0.1" height="15.0" fill="rgb(230,114,29)" rx="2" ry="2" />
<text x="802.56" y="463.5" ></text>
</g>
<g >
<title>tsg_app_id2name (5 samples, 0.02%)</title><rect x="989.4" y="517" width="0.3" height="15.0" fill="rgb(226,128,35)" rx="2" ry="2" />
<text x="992.44" y="527.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="1005.5" y="693" width="0.1" height="15.0" fill="rgb(248,39,23)" rx="2" ry="2" />
<text x="1008.48" y="703.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.01%)</title><rect x="49.3" y="741" width="0.2" height="15.0" fill="rgb(219,159,34)" rx="2" ry="2" />
<text x="52.35" y="751.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="563.3" y="405" width="0.1" height="15.0" fill="rgb(230,11,14)" rx="2" ry="2" />
<text x="566.31" y="415.5" ></text>
</g>
<g >
<title>[fw_dns_plug.so] (3 samples, 0.01%)</title><rect x="997.8" y="693" width="0.1" height="15.0" fill="rgb(226,181,45)" rx="2" ry="2" />
<text x="1000.76" y="703.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (6 samples, 0.03%)</title><rect x="792.0" y="565" width="0.4" height="15.0" fill="rgb(238,165,36)" rx="2" ry="2" />
<text x="795.01" y="575.5" ></text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="975.9" y="677" width="0.1" height="15.0" fill="rgb(242,94,0)" rx="2" ry="2" />
<text x="978.87" y="687.5" ></text>
</g>
<g >
<title>__snprintf (5 samples, 0.02%)</title><rect x="987.0" y="485" width="0.3" height="15.0" fill="rgb(232,213,26)" rx="2" ry="2" />
<text x="989.96" y="495.5" ></text>
</g>
<g >
<title>__memset_sse2 (17 samples, 0.08%)</title><rect x="1006.8" y="773" width="1.0" height="15.0" fill="rgb(228,106,36)" rx="2" ry="2" />
<text x="1009.84" y="783.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (26 samples, 0.13%)</title><rect x="977.8" y="597" width="1.6" height="15.0" fill="rgb(226,61,7)" rx="2" ry="2" />
<text x="980.82" y="607.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (5 samples, 0.02%)</title><rect x="979.4" y="693" width="0.2" height="15.0" fill="rgb(209,51,36)" rx="2" ry="2" />
<text x="982.35" y="703.5" ></text>
</g>
<g >
<title>PROT_PROCESS (7 samples, 0.03%)</title><rect x="301.5" y="437" width="0.4" height="15.0" fill="rgb(230,142,29)" rx="2" ry="2" />
<text x="304.52" y="447.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (13 samples, 0.06%)</title><rect x="1012.9" y="501" width="0.8" height="15.0" fill="rgb(240,34,29)" rx="2" ry="2" />
<text x="1015.92" y="511.5" ></text>
</g>
<g >
<title>stream_process (21 samples, 0.10%)</title><rect x="982.1" y="597" width="1.3" height="15.0" fill="rgb(244,142,45)" rx="2" ry="2" />
<text x="985.13" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="367.9" y="533" width="0.4" height="15.0" fill="rgb(240,16,43)" rx="2" ry="2" />
<text x="370.94" y="543.5" ></text>
</g>
<g >
<title>MurmurHash3_x64_128 (12 samples, 0.06%)</title><rect x="723.8" y="485" width="0.7" height="15.0" fill="rgb(238,199,21)" rx="2" ry="2" />
<text x="726.76" y="495.5" ></text>
</g>
<g >
<title>record_link_info_entry_raw (3 samples, 0.01%)</title><rect x="854.9" y="549" width="0.2" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" />
<text x="857.95" y="559.5" ></text>
</g>
<g >
<title>ASN1_item_d2i (2 samples, 0.01%)</title><rect x="334.4" y="453" width="0.1" height="15.0" fill="rgb(216,146,39)" rx="2" ry="2" />
<text x="337.38" y="463.5" ></text>
</g>
<g >
<title>ASN1_item_free (2 samples, 0.01%)</title><rect x="301.2" y="245" width="0.1" height="15.0" fill="rgb(206,127,17)" rx="2" ry="2" />
<text x="304.22" y="255.5" ></text>
</g>
<g >
<title>STRATUM_ENTRY (7 samples, 0.03%)</title><rect x="1011.0" y="533" width="0.4" height="15.0" fill="rgb(226,213,16)" rx="2" ry="2" />
<text x="1013.97" y="543.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="586.1" y="453" width="0.2" height="15.0" fill="rgb(232,15,46)" rx="2" ry="2" />
<text x="589.14" y="463.5" ></text>
</g>
<g >
<title>del_stream_by_time (171 samples, 0.85%)</title><rect x="374.4" y="613" width="10.1" height="15.0" fill="rgb(230,112,10)" rx="2" ry="2" />
<text x="377.37" y="623.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (2 samples, 0.01%)</title><rect x="566.8" y="437" width="0.2" height="15.0" fill="rgb(211,7,4)" rx="2" ry="2" />
<text x="569.85" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="587.4" y="245" width="0.2" height="15.0" fill="rgb(239,205,6)" rx="2" ry="2" />
<text x="590.38" y="255.5" ></text>
</g>
<g >
<title>dealipv4udppkt (60 samples, 0.30%)</title><rect x="304.5" y="645" width="3.5" height="15.0" fill="rgb(208,129,6)" rx="2" ry="2" />
<text x="307.47" y="655.5" ></text>
</g>
<g >
<title>stream_process_tcp (21 samples, 0.10%)</title><rect x="982.1" y="613" width="1.3" height="15.0" fill="rgb(232,177,30)" rx="2" ry="2" />
<text x="985.13" y="623.5" ></text>
</g>
<g >
<title>http_analyseACompleteRegion (15 samples, 0.07%)</title><rect x="573.9" y="469" width="0.9" height="15.0" fill="rgb(253,71,43)" rx="2" ry="2" />
<text x="576.93" y="479.5" ></text>
</g>
<g >
<title>HTTP_ENTRY (25 samples, 0.12%)</title><rect x="985.1" y="677" width="1.5" height="15.0" fill="rgb(221,14,51)" rx="2" ry="2" />
<text x="988.13" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.03%)</title><rect x="869.0" y="565" width="0.4" height="15.0" fill="rgb(216,183,22)" rx="2" ry="2" />
<text x="871.99" y="575.5" ></text>
</g>
<g >
<title>grab_mid (2 samples, 0.01%)</title><rect x="984.3" y="581" width="0.1" height="15.0" fill="rgb(220,35,19)" rx="2" ry="2" />
<text x="987.31" y="591.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (3 samples, 0.01%)</title><rect x="857.1" y="453" width="0.2" height="15.0" fill="rgb(248,227,48)" rx="2" ry="2" />
<text x="860.13" y="463.5" ></text>
</g>
<g >
<title>Maat_stream_scan_string_detail (16 samples, 0.08%)</title><rect x="279.2" y="789" width="1.0" height="15.0" fill="rgb(205,140,13)" rx="2" ry="2" />
<text x="282.22" y="799.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (178 samples, 0.89%)</title><rect x="817.6" y="549" width="10.5" height="15.0" fill="rgb(254,184,52)" rx="2" ry="2" />
<text x="820.61" y="559.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="335.3" y="309" width="0.1" height="15.0" fill="rgb(214,57,34)" rx="2" ry="2" />
<text x="338.26" y="319.5" ></text>
</g>
<g >
<title>checkstreamorder (210 samples, 1.05%)</title><rect x="662.9" y="549" width="12.4" height="15.0" fill="rgb(249,38,16)" rx="2" ry="2" />
<text x="665.94" y="559.5" ></text>
</g>
<g >
<title>project_requirement_destroy (6 samples, 0.03%)</title><rect x="541.2" y="533" width="0.4" height="15.0" fill="rgb(213,127,2)" rx="2" ry="2" />
<text x="544.25" y="543.5" ></text>
</g>
<g >
<title>Maat_table_runtime_ip_plugin_get_N_ex_data (6 samples, 0.03%)</title><rect x="842.3" y="469" width="0.3" height="15.0" fill="rgb(209,59,17)" rx="2" ry="2" />
<text x="845.26" y="479.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="331.3" y="245" width="0.4" height="15.0" fill="rgb(236,84,41)" rx="2" ry="2" />
<text x="334.31" y="255.5" ></text>
</g>
<g >
<title>tsg_get_ip_asn (2 samples, 0.01%)</title><rect x="998.5" y="677" width="0.1" height="15.0" fill="rgb(244,172,13)" rx="2" ry="2" />
<text x="1001.47" y="687.5" ></text>
</g>
<g >
<title>dealipv4udppkt (88 samples, 0.44%)</title><rect x="979.4" y="757" width="5.1" height="15.0" fill="rgb(251,125,46)" rx="2" ry="2" />
<text x="982.35" y="767.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="1005.4" y="741" width="0.1" height="15.0" fill="rgb(241,42,35)" rx="2" ry="2" />
<text x="1008.37" y="751.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="986.0" y="549" width="0.1" height="15.0" fill="rgb(249,179,53)" rx="2" ry="2" />
<text x="988.96" y="559.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (6 samples, 0.03%)</title><rect x="308.0" y="549" width="0.4" height="15.0" fill="rgb(216,78,1)" rx="2" ry="2" />
<text x="311.01" y="559.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (23 samples, 0.11%)</title><rect x="1003.6" y="709" width="1.4" height="15.0" fill="rgb(233,225,26)" rx="2" ry="2" />
<text x="1006.60" y="719.5" ></text>
</g>
<g >
<title>[tsg_master.so] (10 samples, 0.05%)</title><rect x="336.3" y="373" width="0.6" height="15.0" fill="rgb(237,168,25)" rx="2" ry="2" />
<text x="339.32" y="383.5" ></text>
</g>
<g >
<title>app_proto_worke_process (175 samples, 0.87%)</title><rect x="308.6" y="533" width="10.3" height="15.0" fill="rgb(252,227,11)" rx="2" ry="2" />
<text x="311.60" y="543.5" ></text>
</g>
<g >
<title>Maat_hierarchy_region_compile (22 samples, 0.11%)</title><rect x="277.9" y="757" width="1.3" height="15.0" fill="rgb(225,121,20)" rx="2" ry="2" />
<text x="280.87" y="767.5" ></text>
</g>
<g >
<title>Maat_set_scan_status (2 samples, 0.01%)</title><rect x="400.0" y="661" width="0.1" height="15.0" fill="rgb(205,164,5)" rx="2" ry="2" />
<text x="403.03" y="671.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="569.9" y="309" width="0.3" height="15.0" fill="rgb(208,153,12)" rx="2" ry="2" />
<text x="572.92" y="319.5" ></text>
</g>
<g >
<title>[libqmengine.so] (5 samples, 0.02%)</title><rect x="826.7" y="453" width="0.3" height="15.0" fill="rgb(230,26,36)" rx="2" ry="2" />
<text x="829.69" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="387.9" y="485" width="0.2" height="15.0" fill="rgb(223,154,40)" rx="2" ry="2" />
<text x="390.88" y="495.5" ></text>
</g>
<g >
<title>ssl_AnalyseCertificate (98 samples, 0.49%)</title><rect x="330.2" y="501" width="5.8" height="15.0" fill="rgb(231,122,50)" rx="2" ry="2" />
<text x="333.19" y="511.5" ></text>
</g>
<g >
<title>plugin_call_appentry (2 samples, 0.01%)</title><rect x="986.3" y="517" width="0.1" height="15.0" fill="rgb(229,9,2)" rx="2" ry="2" />
<text x="989.31" y="527.5" ></text>
</g>
<g >
<title>APP_SKETCH_TCP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="400.0" y="709" width="0.1" height="15.0" fill="rgb(206,34,35)" rx="2" ry="2" />
<text x="403.03" y="719.5" ></text>
</g>
<g >
<title>[sapp] (3 samples, 0.01%)</title><rect x="444.2" y="709" width="0.2" height="15.0" fill="rgb(251,78,52)" rx="2" ry="2" />
<text x="447.21" y="719.5" ></text>
</g>
<g >
<title>bool_matcher_match (152 samples, 0.76%)</title><rect x="162.6" y="741" width="9.0" height="15.0" fill="rgb(245,159,17)" rx="2" ry="2" />
<text x="165.60" y="751.5" ></text>
</g>
<g >
<title>kni_tcpall_entry (15 samples, 0.07%)</title><rect x="1012.9" y="533" width="0.9" height="15.0" fill="rgb(234,129,25)" rx="2" ry="2" />
<text x="1015.92" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="1009.6" y="469" width="0.2" height="15.0" fill="rgb(233,136,48)" rx="2" ry="2" />
<text x="1012.61" y="479.5" ></text>
</g>
<g >
<title>[sapp] (43 samples, 0.21%)</title><rect x="976.8" y="725" width="2.6" height="15.0" fill="rgb(219,9,4)" rx="2" ry="2" />
<text x="979.82" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="614.0" y="501" width="0.2" height="15.0" fill="rgb(227,11,13)" rx="2" ry="2" />
<text x="617.04" y="511.5" ></text>
</g>
<g >
<title>http_callPluginField (62 samples, 0.31%)</title><rect x="322.6" y="485" width="3.6" height="15.0" fill="rgb(217,8,21)" rx="2" ry="2" />
<text x="325.58" y="495.5" ></text>
</g>
<g >
<title>CBoolExprMatch::find_matched_result (275 samples, 1.37%)</title><rect x="68.5" y="709" width="16.2" height="15.0" fill="rgb(218,6,29)" rx="2" ry="2" />
<text x="71.52" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_init (5 samples, 0.02%)</title><rect x="935.4" y="629" width="0.3" height="15.0" fill="rgb(227,69,15)" rx="2" ry="2" />
<text x="938.41" y="639.5" ></text>
</g>
<g >
<title>vxlan_entry (1,553 samples, 7.76%)</title><rect x="308.4" y="709" width="91.6" height="15.0" fill="rgb(218,151,13)" rx="2" ry="2" />
<text x="311.42" y="719.5" >vxlan_entry</text>
</g>
<g >
<title>Maat_plugin_get_EX_data (5 samples, 0.02%)</title><rect x="989.4" y="501" width="0.3" height="15.0" fill="rgb(240,146,31)" rx="2" ry="2" />
<text x="992.44" y="511.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="541.5" y="469" width="0.1" height="15.0" fill="rgb(254,146,27)" rx="2" ry="2" />
<text x="544.48" y="479.5" ></text>
</g>
<g >
<title>project_requirement_destroy (6 samples, 0.03%)</title><rect x="786.3" y="565" width="0.3" height="15.0" fill="rgb(236,67,34)" rx="2" ry="2" />
<text x="789.28" y="575.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="975.9" y="645" width="0.1" height="15.0" fill="rgb(231,185,31)" rx="2" ry="2" />
<text x="978.87" y="655.5" ></text>
</g>
<g >
<title>[libkni.so] (5 samples, 0.02%)</title><rect x="685.1" y="469" width="0.3" height="15.0" fill="rgb(237,41,26)" rx="2" ry="2" />
<text x="688.12" y="479.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="539.8" y="533" width="0.1" height="15.0" fill="rgb(214,126,20)" rx="2" ry="2" />
<text x="542.77" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (33 samples, 0.16%)</title><rect x="1013.9" y="581" width="1.9" height="15.0" fill="rgb(231,102,5)" rx="2" ry="2" />
<text x="1016.86" y="591.5" ></text>
</g>
<g >
<title>MESA_htable_add (2 samples, 0.01%)</title><rect x="516.1" y="613" width="0.1" height="15.0" fill="rgb(236,174,46)" rx="2" ry="2" />
<text x="519.06" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (49 samples, 0.24%)</title><rect x="363.2" y="485" width="2.9" height="15.0" fill="rgb(223,90,51)" rx="2" ry="2" />
<text x="366.16" y="495.5" ></text>
</g>
<g >
<title>Maat_clean_status (3 samples, 0.01%)</title><rect x="683.3" y="469" width="0.2" height="15.0" fill="rgb(210,99,42)" rx="2" ry="2" />
<text x="686.29" y="479.5" ></text>
</g>
<g >
<title>stream_process (51 samples, 0.25%)</title><rect x="305.0" y="613" width="3.0" height="15.0" fill="rgb(223,118,28)" rx="2" ry="2" />
<text x="308.00" y="623.5" ></text>
</g>
<g >
<title>[quic.so] (7 samples, 0.03%)</title><rect x="836.2" y="469" width="0.5" height="15.0" fill="rgb(245,124,47)" rx="2" ry="2" />
<text x="839.25" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (11 samples, 0.05%)</title><rect x="545.0" y="533" width="0.7" height="15.0" fill="rgb(242,42,45)" rx="2" ry="2" />
<text x="548.02" y="543.5" ></text>
</g>
<g >
<title>__calloc (3 samples, 0.01%)</title><rect x="598.0" y="453" width="0.2" height="15.0" fill="rgb(252,185,20)" rx="2" ry="2" />
<text x="600.99" y="463.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="302.1" y="469" width="0.1" height="15.0" fill="rgb(212,43,9)" rx="2" ry="2" />
<text x="305.05" y="479.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (2 samples, 0.01%)</title><rect x="683.4" y="453" width="0.1" height="15.0" fill="rgb(248,58,53)" rx="2" ry="2" />
<text x="686.35" y="463.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="494.5" y="485" width="0.1" height="15.0" fill="rgb(246,120,25)" rx="2" ry="2" />
<text x="497.47" y="495.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (11 samples, 0.05%)</title><rect x="992.1" y="629" width="0.6" height="15.0" fill="rgb(237,98,41)" rx="2" ry="2" />
<text x="995.09" y="639.5" ></text>
</g>
<g >
<title>del_stream_by_time (3 samples, 0.01%)</title><rect x="989.8" y="661" width="0.2" height="15.0" fill="rgb(207,143,30)" rx="2" ry="2" />
<text x="992.79" y="671.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="304.9" y="517" width="0.1" height="15.0" fill="rgb(223,88,21)" rx="2" ry="2" />
<text x="307.88" y="527.5" ></text>
</g>
<g >
<title>start_secondary (2,908 samples, 14.54%)</title><rect x="1018.5" y="773" width="171.5" height="15.0" fill="rgb(244,177,23)" rx="2" ry="2" />
<text x="1021.46" y="783.5" >start_secondary</text>
</g>
<g >
<title>qmdpi_flow_create (14 samples, 0.07%)</title><rect x="818.7" y="501" width="0.8" height="15.0" fill="rgb(221,125,4)" rx="2" ry="2" />
<text x="821.67" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (73 samples, 0.36%)</title><rect x="631.7" y="485" width="4.3" height="15.0" fill="rgb(222,224,4)" rx="2" ry="2" />
<text x="634.74" y="495.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="996.8" y="629" width="0.1" height="15.0" fill="rgb(228,39,27)" rx="2" ry="2" />
<text x="999.81" y="639.5" ></text>
</g>
<g >
<title>plugin_process_close (5 samples, 0.02%)</title><rect x="1017.0" y="565" width="0.3" height="15.0" fill="rgb(237,15,52)" rx="2" ry="2" />
<text x="1020.05" y="575.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (2 samples, 0.01%)</title><rect x="384.3" y="453" width="0.2" height="15.0" fill="rgb(236,44,31)" rx="2" ry="2" />
<text x="387.34" y="463.5" ></text>
</g>
<g >
<title>__IO_vsprintf (3 samples, 0.01%)</title><rect x="637.7" y="469" width="0.2" height="15.0" fill="rgb(226,157,9)" rx="2" ry="2" />
<text x="640.69" y="479.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (7 samples, 0.03%)</title><rect x="1017.3" y="597" width="0.5" height="15.0" fill="rgb(243,18,46)" rx="2" ry="2" />
<text x="1020.34" y="607.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (44 samples, 0.22%)</title><rect x="426.6" y="741" width="2.6" height="15.0" fill="rgb(243,8,25)" rx="2" ry="2" />
<text x="429.57" y="751.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (697 samples, 3.48%)</title><rect x="194.8" y="773" width="41.1" height="15.0" fill="rgb(231,132,44)" rx="2" ry="2" />
<text x="197.75" y="783.5" >[li..</text>
</g>
<g >
<title>sapp_mem_malloc (27 samples, 0.13%)</title><rect x="649.3" y="533" width="1.5" height="15.0" fill="rgb(240,169,10)" rx="2" ry="2" />
<text x="652.26" y="543.5" ></text>
</g>
<g >
<title>stream_process_udp (10 samples, 0.05%)</title><rect x="401.6" y="661" width="0.6" height="15.0" fill="rgb(221,161,29)" rx="2" ry="2" />
<text x="404.56" y="671.5" ></text>
</g>
<g >
<title>sapp_mem_free (2 samples, 0.01%)</title><rect x="796.8" y="517" width="0.2" height="15.0" fill="rgb(206,4,35)" rx="2" ry="2" />
<text x="799.84" y="527.5" ></text>
</g>
<g >
<title>tcp_free_stream (25 samples, 0.12%)</title><rect x="785.8" y="581" width="1.4" height="15.0" fill="rgb(245,125,38)" rx="2" ry="2" />
<text x="788.75" y="591.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="574.5" y="357" width="0.2" height="15.0" fill="rgb(212,6,15)" rx="2" ry="2" />
<text x="577.52" y="367.5" ></text>
</g>
<g >
<title>PROT_PROCESS (35 samples, 0.17%)</title><rect x="833.9" y="517" width="2.1" height="15.0" fill="rgb(233,93,12)" rx="2" ry="2" />
<text x="836.95" y="527.5" ></text>
</g>
<g >
<title>tsg_record_tcpall_entry (5 samples, 0.02%)</title><rect x="786.9" y="517" width="0.3" height="15.0" fill="rgb(247,22,3)" rx="2" ry="2" />
<text x="789.93" y="527.5" ></text>
</g>
<g >
<title>stream_process (41 samples, 0.20%)</title><rect x="979.6" y="629" width="2.5" height="15.0" fill="rgb(224,94,47)" rx="2" ry="2" />
<text x="982.65" y="639.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (16 samples, 0.08%)</title><rect x="300.5" y="437" width="0.9" height="15.0" fill="rgb(251,15,35)" rx="2" ry="2" />
<text x="303.46" y="447.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (12 samples, 0.06%)</title><rect x="330.3" y="197" width="0.7" height="15.0" fill="rgb(239,78,23)" rx="2" ry="2" />
<text x="333.31" y="207.5" ></text>
</g>
<g >
<title>TLD_append (2 samples, 0.01%)</title><rect x="927.4" y="597" width="0.2" height="15.0" fill="rgb(240,11,28)" rx="2" ry="2" />
<text x="930.44" y="607.5" ></text>
</g>
<g >
<title>plugin_call_appentry (25 samples, 0.12%)</title><rect x="801.6" y="437" width="1.4" height="15.0" fill="rgb(236,156,4)" rx="2" ry="2" />
<text x="804.56" y="447.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (3 samples, 0.01%)</title><rect x="158.1" y="613" width="0.1" height="15.0" fill="rgb(242,124,15)" rx="2" ry="2" />
<text x="161.06" y="623.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="320.9" y="341" width="0.1" height="15.0" fill="rgb(243,215,40)" rx="2" ry="2" />
<text x="323.87" y="351.5" ></text>
</g>
<g >
<title>CZipFormat::AddOneSection (3 samples, 0.01%)</title><rect x="570.7" y="357" width="0.2" height="15.0" fill="rgb(222,92,30)" rx="2" ry="2" />
<text x="573.74" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="381.6" y="405" width="0.3" height="15.0" fill="rgb(251,208,9)" rx="2" ry="2" />
<text x="384.63" y="415.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1012.6" y="437" width="0.1" height="15.0" fill="rgb(205,149,34)" rx="2" ry="2" />
<text x="1015.56" y="447.5" ></text>
</g>
<g >
<title>dealipv4udppkt (63 samples, 0.31%)</title><rect x="973.1" y="789" width="3.7" height="15.0" fill="rgb(254,175,39)" rx="2" ry="2" />
<text x="976.10" y="799.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="563.3" y="453" width="0.1" height="15.0" fill="rgb(211,52,29)" rx="2" ry="2" />
<text x="566.25" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (4 samples, 0.02%)</title><rect x="923.8" y="677" width="0.2" height="15.0" fill="rgb(238,61,20)" rx="2" ry="2" />
<text x="926.79" y="687.5" ></text>
</g>
<g >
<title>http_callPluginField (3 samples, 0.01%)</title><rect x="986.4" y="565" width="0.2" height="15.0" fill="rgb(237,161,16)" rx="2" ry="2" />
<text x="989.43" y="575.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (7 samples, 0.03%)</title><rect x="472.1" y="629" width="0.4" height="15.0" fill="rgb(218,48,44)" rx="2" ry="2" />
<text x="475.05" y="639.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (1,293 samples, 6.46%)</title><rect x="549.6" y="533" width="76.3" height="15.0" fill="rgb(217,107,44)" rx="2" ry="2" />
<text x="552.62" y="543.5" >plugin_c..</text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_UDP_ENTRY (5 samples, 0.02%)</title><rect x="983.5" y="629" width="0.3" height="15.0" fill="rgb(240,3,51)" rx="2" ry="2" />
<text x="986.54" y="639.5" ></text>
</g>
<g >
<title>stream_process_udp (7 samples, 0.03%)</title><rect x="304.5" y="565" width="0.4" height="15.0" fill="rgb(236,133,14)" rx="2" ry="2" />
<text x="307.47" y="575.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="686.0" y="437" width="0.1" height="15.0" fill="rgb(247,119,10)" rx="2" ry="2" />
<text x="689.00" y="447.5" ></text>
</g>
<g >
<title>qm_malloc_default (3 samples, 0.01%)</title><rect x="819.3" y="485" width="0.2" height="15.0" fill="rgb(210,181,12)" rx="2" ry="2" />
<text x="822.32" y="495.5" ></text>
</g>
<g >
<title>stream_process (2 samples, 0.01%)</title><rect x="304.4" y="597" width="0.1" height="15.0" fill="rgb(238,81,17)" rx="2" ry="2" />
<text x="307.35" y="607.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (2 samples, 0.01%)</title><rect x="50.6" y="661" width="0.1" height="15.0" fill="rgb(248,226,12)" rx="2" ry="2" />
<text x="53.58" y="671.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (4 samples, 0.02%)</title><rect x="983.6" y="485" width="0.2" height="15.0" fill="rgb(234,15,10)" rx="2" ry="2" />
<text x="986.60" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="573.3" y="293" width="0.2" height="15.0" fill="rgb(215,137,4)" rx="2" ry="2" />
<text x="576.28" y="303.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (7 samples, 0.03%)</title><rect x="308.0" y="629" width="0.4" height="15.0" fill="rgb(228,45,22)" rx="2" ry="2" />
<text x="311.01" y="639.5" ></text>
</g>
<g >
<title>__snprintf (12 samples, 0.06%)</title><rect x="979.9" y="549" width="0.8" height="15.0" fill="rgb(207,92,11)" rx="2" ry="2" />
<text x="982.94" y="559.5" ></text>
</g>
<g >
<title>stream_process_udp (944 samples, 4.72%)</title><rect x="812.9" y="597" width="55.7" height="15.0" fill="rgb(213,14,5)" rx="2" ry="2" />
<text x="815.89" y="607.5" >strea..</text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="327.8" y="341" width="0.1" height="15.0" fill="rgb(246,102,13)" rx="2" ry="2" />
<text x="330.77" y="351.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="493.6" y="453" width="0.1" height="15.0" fill="rgb(225,15,44)" rx="2" ry="2" />
<text x="496.59" y="463.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (71 samples, 0.35%)</title><rect x="330.2" y="389" width="4.2" height="15.0" fill="rgb(246,44,54)" rx="2" ry="2" />
<text x="333.19" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.03%)</title><rect x="792.0" y="549" width="0.4" height="15.0" fill="rgb(220,53,3)" rx="2" ry="2" />
<text x="795.01" y="559.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="340.0" y="501" width="0.2" height="15.0" fill="rgb(209,178,47)" rx="2" ry="2" />
<text x="342.98" y="511.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_unlock (3 samples, 0.01%)</title><rect x="367.6" y="517" width="0.2" height="15.0" fill="rgb(229,85,49)" rx="2" ry="2" />
<text x="370.59" y="527.5" ></text>
</g>
<g >
<title>project_req_get_struct (2 samples, 0.01%)</title><rect x="683.9" y="373" width="0.2" height="15.0" fill="rgb(243,118,46)" rx="2" ry="2" />
<text x="686.94" y="383.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (7 samples, 0.03%)</title><rect x="304.5" y="517" width="0.4" height="15.0" fill="rgb(227,80,47)" rx="2" ry="2" />
<text x="307.47" y="527.5" ></text>
</g>
<g >
<title>http_analyseHttpConnection (119 samples, 0.59%)</title><rect x="320.2" y="549" width="7.0" height="15.0" fill="rgb(250,3,44)" rx="2" ry="2" />
<text x="323.16" y="559.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="637.8" y="453" width="0.1" height="15.0" fill="rgb(226,175,10)" rx="2" ry="2" />
<text x="640.75" y="463.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (11 samples, 0.05%)</title><rect x="986.6" y="629" width="0.7" height="15.0" fill="rgb(252,223,4)" rx="2" ry="2" />
<text x="989.61" y="639.5" ></text>
</g>
<g >
<title>__GI_inet_ntop (16 samples, 0.08%)</title><rect x="397.6" y="533" width="1.0" height="15.0" fill="rgb(234,91,43)" rx="2" ry="2" />
<text x="400.61" y="543.5" ></text>
</g>
<g >
<title>_IO_no_init (2 samples, 0.01%)</title><rect x="399.0" y="501" width="0.1" height="15.0" fill="rgb(222,214,51)" rx="2" ry="2" />
<text x="401.97" y="511.5" ></text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (10 samples, 0.05%)</title><rect x="991.5" y="709" width="0.6" height="15.0" fill="rgb(250,122,12)" rx="2" ry="2" />
<text x="994.50" y="719.5" ></text>
</g>
<g >
<title>http_analyseRegion (2 samples, 0.01%)</title><rect x="574.0" y="437" width="0.1" height="15.0" fill="rgb(211,134,27)" rx="2" ry="2" />
<text x="576.99" y="447.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (2 samples, 0.01%)</title><rect x="174.7" y="741" width="0.1" height="15.0" fill="rgb(223,187,3)" rx="2" ry="2" />
<text x="177.70" y="751.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="976.9" y="597" width="0.1" height="15.0" fill="rgb(231,209,45)" rx="2" ry="2" />
<text x="979.88" y="607.5" ></text>
</g>
<g >
<title>CRefCountManager::inc_reference_count@plt (2 samples, 0.01%)</title><rect x="222.3" y="725" width="0.1" height="15.0" fill="rgb(254,143,16)" rx="2" ry="2" />
<text x="225.30" y="735.5" ></text>
</g>
<g >
<title>_IO_old_init (2 samples, 0.01%)</title><rect x="822.6" y="437" width="0.1" height="15.0" fill="rgb(210,68,49)" rx="2" ry="2" />
<text x="825.62" y="447.5" ></text>
</g>
<g >
<title>[quic.so] (2 samples, 0.01%)</title><rect x="841.0" y="469" width="0.1" height="15.0" fill="rgb(235,194,22)" rx="2" ry="2" />
<text x="843.97" y="479.5" ></text>
</g>
<g >
<title>[sapp] (12 samples, 0.06%)</title><rect x="724.9" y="565" width="0.7" height="15.0" fill="rgb(224,136,20)" rx="2" ry="2" />
<text x="727.88" y="575.5" ></text>
</g>
<g >
<title>operator new (2 samples, 0.01%)</title><rect x="494.1" y="453" width="0.1" height="15.0" fill="rgb(244,122,46)" rx="2" ry="2" />
<text x="497.12" y="463.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (6 samples, 0.03%)</title><rect x="277.0" y="741" width="0.4" height="15.0" fill="rgb(247,207,35)" rx="2" ry="2" />
<text x="280.04" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.01%)</title><rect x="589.0" y="277" width="0.1" height="15.0" fill="rgb(239,217,23)" rx="2" ry="2" />
<text x="592.03" y="287.5" ></text>
</g>
<g >
<title>sapp_marsio_10 (17,096 samples, 85.46%)</title><rect x="10.0" y="805" width="1008.5" height="15.0" fill="rgb(231,63,1)" rx="2" ry="2" />
<text x="13.00" y="815.5" >sapp_marsio_10</text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="683.5" y="357" width="0.1" height="15.0" fill="rgb(208,26,19)" rx="2" ry="2" />
<text x="686.47" y="367.5" ></text>
</g>
<g >
<title>Maat_clean_status (2 samples, 0.01%)</title><rect x="1018.2" y="597" width="0.1" height="15.0" fill="rgb(210,62,14)" rx="2" ry="2" />
<text x="1021.17" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (77 samples, 0.38%)</title><rect x="377.0" y="453" width="4.5" height="15.0" fill="rgb(220,24,1)" rx="2" ry="2" />
<text x="379.97" y="463.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (5 samples, 0.02%)</title><rect x="322.2" y="373" width="0.3" height="15.0" fill="rgb(218,4,42)" rx="2" ry="2" />
<text x="325.22" y="383.5" ></text>
</g>
<g >
<title>stream_process_udp (14 samples, 0.07%)</title><rect x="976.0" y="709" width="0.8" height="15.0" fill="rgb(210,164,40)" rx="2" ry="2" />
<text x="978.99" y="719.5" ></text>
</g>
<g >
<title>layer_addr_ntop_r (3 samples, 0.01%)</title><rect x="402.4" y="597" width="0.2" height="15.0" fill="rgb(233,125,15)" rx="2" ry="2" />
<text x="405.39" y="607.5" ></text>
</g>
<g >
<title>ASN1_primitive_new (6 samples, 0.03%)</title><rect x="331.9" y="245" width="0.4" height="15.0" fill="rgb(212,128,3)" rx="2" ry="2" />
<text x="334.90" y="255.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (11 samples, 0.05%)</title><rect x="976.0" y="645" width="0.6" height="15.0" fill="rgb(209,168,52)" rx="2" ry="2" />
<text x="978.99" y="655.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="304.1" y="501" width="0.3" height="15.0" fill="rgb(254,216,31)" rx="2" ry="2" />
<text x="307.06" y="511.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (13 samples, 0.06%)</title><rect x="1012.9" y="453" width="0.8" height="15.0" fill="rgb(235,161,36)" rx="2" ry="2" />
<text x="1015.92" y="463.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (4 samples, 0.02%)</title><rect x="512.0" y="629" width="0.2" height="15.0" fill="rgb(211,135,15)" rx="2" ry="2" />
<text x="514.99" y="639.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="576.6" y="469" width="0.2" height="15.0" fill="rgb(242,17,43)" rx="2" ry="2" />
<text x="579.64" y="479.5" ></text>
</g>
<g >
<title>ssl_analyseStream (8 samples, 0.04%)</title><rect x="420.6" y="709" width="0.5" height="15.0" fill="rgb(243,62,15)" rx="2" ry="2" />
<text x="423.62" y="719.5" ></text>
</g>
<g >
<title>Maat_table_get_scan_by_id (5 samples, 0.02%)</title><rect x="93.2" y="773" width="0.3" height="15.0" fill="rgb(247,223,11)" rx="2" ry="2" />
<text x="96.23" y="783.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="599.2" y="501" width="0.1" height="15.0" fill="rgb(226,167,48)" rx="2" ry="2" />
<text x="602.17" y="511.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (18 samples, 0.09%)</title><rect x="49.6" y="725" width="1.1" height="15.0" fill="rgb(212,9,40)" rx="2" ry="2" />
<text x="52.64" y="735.5" ></text>
</g>
<g >
<title>raw_ip_frag_list_stream_attach (2 samples, 0.01%)</title><rect x="813.0" y="581" width="0.1" height="15.0" fill="rgb(244,178,52)" rx="2" ry="2" />
<text x="816.01" y="591.5" ></text>
</g>
<g >
<title>[librulescan.so.2.2] (5 samples, 0.02%)</title><rect x="32.2" y="741" width="0.3" height="15.0" fill="rgb(209,25,2)" rx="2" ry="2" />
<text x="35.18" y="751.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="304.1" y="485" width="0.3" height="15.0" fill="rgb(226,205,2)" rx="2" ry="2" />
<text x="307.06" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="948.0" y="661" width="0.3" height="15.0" fill="rgb(233,72,28)" rx="2" ry="2" />
<text x="951.03" y="671.5" ></text>
</g>
<g >
<title>TLD_create (4 samples, 0.02%)</title><rect x="686.0" y="453" width="0.2" height="15.0" fill="rgb(220,113,25)" rx="2" ry="2" />
<text x="689.00" y="463.5" ></text>
</g>
<g >
<title>udp_free_stream (8 samples, 0.04%)</title><rect x="388.2" y="613" width="0.5" height="15.0" fill="rgb(206,87,38)" rx="2" ry="2" />
<text x="391.23" y="623.5" ></text>
</g>
<g >
<title>app_proto_worke_process (44 samples, 0.22%)</title><rect x="297.9" y="517" width="2.6" height="15.0" fill="rgb(233,165,28)" rx="2" ry="2" />
<text x="300.86" y="527.5" ></text>
</g>
<g >
<title>http_readChunkedLength (6 samples, 0.03%)</title><rect x="571.4" y="437" width="0.3" height="15.0" fill="rgb(216,62,3)" rx="2" ry="2" />
<text x="574.39" y="447.5" ></text>
</g>
<g >
<title>__sprintf (5 samples, 0.02%)</title><rect x="822.5" y="485" width="0.3" height="15.0" fill="rgb(218,204,25)" rx="2" ry="2" />
<text x="825.50" y="495.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (12 samples, 0.06%)</title><rect x="979.9" y="581" width="0.8" height="15.0" fill="rgb(218,185,9)" rx="2" ry="2" />
<text x="982.94" y="591.5" ></text>
</g>
<g >
<title>qmdpi_worker_process (49 samples, 0.24%)</title><rect x="305.0" y="533" width="2.9" height="15.0" fill="rgb(214,72,1)" rx="2" ry="2" />
<text x="308.00" y="543.5" ></text>
</g>
<g >
<title>Maat_scan_proto_addr (3 samples, 0.01%)</title><rect x="832.1" y="517" width="0.1" height="15.0" fill="rgb(233,3,33)" rx="2" ry="2" />
<text x="835.06" y="527.5" ></text>
</g>
<g >
<title>[libmarsio.so.4.4] (18 samples, 0.09%)</title><rect x="909.5" y="709" width="1.1" height="15.0" fill="rgb(240,32,33)" rx="2" ry="2" />
<text x="912.51" y="719.5" ></text>
</g>
<g >
<title>update_polling_inject_context (22 samples, 0.11%)</title><rect x="787.3" y="581" width="1.3" height="15.0" fill="rgb(253,166,16)" rx="2" ry="2" />
<text x="790.29" y="591.5" ></text>
</g>
<g >
<title>stream_process_udp (17 samples, 0.08%)</title><rect x="983.5" y="677" width="1.0" height="15.0" fill="rgb(210,106,34)" rx="2" ry="2" />
<text x="986.54" y="687.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="389" width="0.1" height="15.0" fill="rgb(232,181,37)" rx="2" ry="2" />
<text x="404.56" y="399.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_free (13 samples, 0.06%)</title><rect x="563.8" y="485" width="0.7" height="15.0" fill="rgb(207,127,35)" rx="2" ry="2" />
<text x="566.78" y="495.5" ></text>
</g>
<g >
<title>pthread_spin_lock (12 samples, 0.06%)</title><rect x="422.7" y="773" width="0.7" height="15.0" fill="rgb(221,80,41)" rx="2" ry="2" />
<text x="425.74" y="783.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="977.1" y="549" width="0.3" height="15.0" fill="rgb(221,114,53)" rx="2" ry="2" />
<text x="980.11" y="559.5" ></text>
</g>
<g >
<title>tcp_handshake_pkt_process (4 samples, 0.02%)</title><rect x="638.6" y="501" width="0.3" height="15.0" fill="rgb(214,91,42)" rx="2" ry="2" />
<text x="641.64" y="511.5" ></text>
</g>
<g >
<title>ssl_doWithServerHello (2 samples, 0.01%)</title><rect x="1017.6" y="581" width="0.2" height="15.0" fill="rgb(245,56,1)" rx="2" ry="2" />
<text x="1020.64" y="591.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="335.9" y="325" width="0.1" height="15.0" fill="rgb(206,92,36)" rx="2" ry="2" />
<text x="338.85" y="335.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (51 samples, 0.25%)</title><rect x="558.7" y="421" width="3.0" height="15.0" fill="rgb(234,6,34)" rx="2" ry="2" />
<text x="561.71" y="431.5" ></text>
</g>
<g >
<title>http_findAndDoWithEntity (62 samples, 0.31%)</title><rect x="570.3" y="485" width="3.6" height="15.0" fill="rgb(241,143,35)" rx="2" ry="2" />
<text x="573.27" y="495.5" ></text>
</g>
<g >
<title>stream_process_udp (33 samples, 0.16%)</title><rect x="1013.9" y="613" width="1.9" height="15.0" fill="rgb(226,192,53)" rx="2" ry="2" />
<text x="1016.86" y="623.5" ></text>
</g>
<g >
<title>stream_process (21 samples, 0.10%)</title><rect x="420.0" y="757" width="1.2" height="15.0" fill="rgb(234,116,12)" rx="2" ry="2" />
<text x="422.97" y="767.5" ></text>
</g>
<g >
<title>__sprintf (7 samples, 0.03%)</title><rect x="421.3" y="693" width="0.4" height="15.0" fill="rgb(210,39,41)" rx="2" ry="2" />
<text x="424.32" y="703.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="989.2" y="549" width="0.1" height="15.0" fill="rgb(237,172,33)" rx="2" ry="2" />
<text x="992.20" y="559.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (2 samples, 0.01%)</title><rect x="975.9" y="533" width="0.1" height="15.0" fill="rgb(205,212,47)" rx="2" ry="2" />
<text x="978.87" y="543.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (5 samples, 0.02%)</title><rect x="874.6" y="677" width="0.3" height="15.0" fill="rgb(210,43,12)" rx="2" ry="2" />
<text x="877.59" y="687.5" ></text>
</g>
<g >
<title>[fw_ssl_plug.so] (7 samples, 0.03%)</title><rect x="335.1" y="389" width="0.5" height="15.0" fill="rgb(252,29,36)" rx="2" ry="2" />
<text x="338.14" y="399.5" ></text>
</g>
<g >
<title>fn_vMemCpy (2 samples, 0.01%)</title><rect x="579.8" y="485" width="0.1" height="15.0" fill="rgb(234,198,33)" rx="2" ry="2" />
<text x="582.77" y="495.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="1013.7" y="453" width="0.1" height="15.0" fill="rgb(251,19,54)" rx="2" ry="2" />
<text x="1016.68" y="463.5" ></text>
</g>
<g >
<title>http_analyseHttpReqResHeader (27 samples, 0.13%)</title><rect x="568.7" y="485" width="1.6" height="15.0" fill="rgb(223,35,52)" rx="2" ry="2" />
<text x="571.68" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (35 samples, 0.17%)</title><rect x="586.6" y="389" width="2.0" height="15.0" fill="rgb(250,217,50)" rx="2" ry="2" />
<text x="589.55" y="399.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (2 samples, 0.01%)</title><rect x="575.2" y="485" width="0.1" height="15.0" fill="rgb(214,166,17)" rx="2" ry="2" />
<text x="578.22" y="495.5" ></text>
</g>
<g >
<title>lpi_update_dpkt (5 samples, 0.02%)</title><rect x="852.2" y="533" width="0.3" height="15.0" fill="rgb(249,146,3)" rx="2" ry="2" />
<text x="855.23" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (7 samples, 0.03%)</title><rect x="374.4" y="389" width="0.4" height="15.0" fill="rgb(220,131,30)" rx="2" ry="2" />
<text x="377.37" y="399.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="1012.6" y="485" width="0.1" height="15.0" fill="rgb(230,21,41)" rx="2" ry="2" />
<text x="1015.56" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (12 samples, 0.06%)</title><rect x="326.3" y="373" width="0.7" height="15.0" fill="rgb(234,18,19)" rx="2" ry="2" />
<text x="329.29" y="383.5" ></text>
</g>
<g >
<title>MV_Sketch_update (5 samples, 0.02%)</title><rect x="645.4" y="453" width="0.3" height="15.0" fill="rgb(254,27,35)" rx="2" ry="2" />
<text x="648.36" y="463.5" ></text>
</g>
<g >
<title>CBoolExprMatch::get_mapped_id (128 samples, 0.64%)</title><rect x="84.7" y="709" width="7.6" height="15.0" fill="rgb(209,0,46)" rx="2" ry="2" />
<text x="87.74" y="719.5" ></text>
</g>
<g >
<title>__calloc (3 samples, 0.01%)</title><rect x="610.4" y="485" width="0.2" height="15.0" fill="rgb(224,125,21)" rx="2" ry="2" />
<text x="613.44" y="495.5" ></text>
</g>
<g >
<title>plugin_call_appentry (3 samples, 0.01%)</title><rect x="400.1" y="565" width="0.2" height="15.0" fill="rgb(251,194,32)" rx="2" ry="2" />
<text x="403.15" y="575.5" ></text>
</g>
<g >
<title>__sprintf (27 samples, 0.13%)</title><rect x="308.6" y="501" width="1.6" height="15.0" fill="rgb(227,112,11)" rx="2" ry="2" />
<text x="311.60" y="511.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="975.9" y="581" width="0.1" height="15.0" fill="rgb(228,219,15)" rx="2" ry="2" />
<text x="978.87" y="591.5" ></text>
</g>
<g >
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="362.9" y="469" width="0.1" height="15.0" fill="rgb(210,146,6)" rx="2" ry="2" />
<text x="365.93" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="47.6" y="725" width="0.1" height="15.0" fill="rgb(238,7,23)" rx="2" ry="2" />
<text x="50.58" y="735.5" ></text>
</g>
<g >
<title>ssl_analyseStream (27 samples, 0.13%)</title><rect x="300.5" y="533" width="1.6" height="15.0" fill="rgb(231,160,15)" rx="2" ry="2" />
<text x="303.46" y="543.5" ></text>
</g>
<g >
<title>tcp_free_stream (14 samples, 0.07%)</title><rect x="303.5" y="581" width="0.9" height="15.0" fill="rgb(209,45,36)" rx="2" ry="2" />
<text x="306.53" y="591.5" ></text>
</g>
<g >
<title>project_requirement_destroy (8 samples, 0.04%)</title><rect x="793.8" y="581" width="0.4" height="15.0" fill="rgb(240,58,41)" rx="2" ry="2" />
<text x="796.78" y="591.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (5 samples, 0.02%)</title><rect x="1016.8" y="597" width="0.2" height="15.0" fill="rgb(250,2,42)" rx="2" ry="2" />
<text x="1019.75" y="607.5" ></text>
</g>
<g >
<title>sapp_jhash_4words (2 samples, 0.01%)</title><rect x="675.9" y="549" width="0.1" height="15.0" fill="rgb(211,22,52)" rx="2" ry="2" />
<text x="678.86" y="559.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (2 samples, 0.01%)</title><rect x="420.7" y="517" width="0.2" height="15.0" fill="rgb(245,131,24)" rx="2" ry="2" />
<text x="423.73" y="527.5" ></text>
</g>
<g >
<title>MESA_get_stream_opt (2 samples, 0.01%)</title><rect x="373.4" y="517" width="0.1" height="15.0" fill="rgb(213,178,10)" rx="2" ry="2" />
<text x="376.37" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_app_properties_policy (3 samples, 0.01%)</title><rect x="979.6" y="485" width="0.2" height="15.0" fill="rgb(208,135,46)" rx="2" ry="2" />
<text x="982.65" y="495.5" ></text>
</g>
<g >
<title>ASN1_item_new (10 samples, 0.05%)</title><rect x="331.7" y="293" width="0.6" height="15.0" fill="rgb(210,121,31)" rx="2" ry="2" />
<text x="334.66" y="303.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (92 samples, 0.46%)</title><rect x="152.8" y="629" width="5.4" height="15.0" fill="rgb(211,178,39)" rx="2" ry="2" />
<text x="155.81" y="639.5" ></text>
</g>
<g >
<title>plugin_call_appentry (20 samples, 0.10%)</title><rect x="334.8" y="421" width="1.2" height="15.0" fill="rgb(247,69,31)" rx="2" ry="2" />
<text x="337.79" y="431.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (3 samples, 0.01%)</title><rect x="50.4" y="661" width="0.2" height="15.0" fill="rgb(237,157,38)" rx="2" ry="2" />
<text x="53.41" y="671.5" ></text>
</g>
<g >
<title>vxlan_entry (11 samples, 0.05%)</title><rect x="401.5" y="725" width="0.7" height="15.0" fill="rgb(238,131,47)" rx="2" ry="2" />
<text x="404.50" y="735.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (8 samples, 0.04%)</title><rect x="1016.0" y="597" width="0.5" height="15.0" fill="rgb(223,178,48)" rx="2" ry="2" />
<text x="1019.04" y="607.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (5 samples, 0.02%)</title><rect x="993.8" y="645" width="0.3" height="15.0" fill="rgb(222,109,22)" rx="2" ry="2" />
<text x="996.81" y="655.5" ></text>
</g>
<g >
<title>swapper (2,908 samples, 14.54%)</title><rect x="1018.5" y="805" width="171.5" height="15.0" fill="rgb(214,227,40)" rx="2" ry="2" />
<text x="1021.46" y="815.5" >swapper</text>
</g>
<g >
<title>http_judgeHttpProtocol (3 samples, 0.01%)</title><rect x="575.0" y="485" width="0.2" height="15.0" fill="rgb(213,129,22)" rx="2" ry="2" />
<text x="577.99" y="495.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="977.6" y="629" width="0.2" height="15.0" fill="rgb(217,201,45)" rx="2" ry="2" />
<text x="980.64" y="639.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (31 samples, 0.15%)</title><rect x="305.6" y="421" width="1.9" height="15.0" fill="rgb(250,147,38)" rx="2" ry="2" />
<text x="308.65" y="431.5" ></text>
</g>
<g >
<title>tcp_free_stream (168 samples, 0.84%)</title><rect x="676.7" y="549" width="9.9" height="15.0" fill="rgb(207,97,0)" rx="2" ry="2" />
<text x="679.68" y="559.5" ></text>
</g>
<g >
<title>CRYPTO_malloc (2 samples, 0.01%)</title><rect x="300.5" y="293" width="0.1" height="15.0" fill="rgb(224,8,19)" rx="2" ry="2" />
<text x="303.52" y="303.5" ></text>
</g>
<g >
<title>[libqmengine.so] (3 samples, 0.01%)</title><rect x="307.1" y="389" width="0.2" height="15.0" fill="rgb(230,118,17)" rx="2" ry="2" />
<text x="310.12" y="399.5" ></text>
</g>
<g >
<title>cpuidle_enter (2,795 samples, 13.97%)</title><rect x="1018.9" y="709" width="164.8" height="15.0" fill="rgb(207,4,37)" rx="2" ry="2" />
<text x="1021.88" y="719.5" >cpuidle_enter</text>
</g>
<g >
<title>FW_DNS_PLUG_ENTRY (38 samples, 0.19%)</title><rect x="997.5" y="709" width="2.3" height="15.0" fill="rgb(252,157,45)" rx="2" ry="2" />
<text x="1000.52" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="985.3" y="485" width="0.1" height="15.0" fill="rgb(216,11,47)" rx="2" ry="2" />
<text x="988.31" y="495.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (3 samples, 0.01%)</title><rect x="592.6" y="357" width="0.1" height="15.0" fill="rgb(245,89,38)" rx="2" ry="2" />
<text x="595.57" y="367.5" ></text>
</g>
<g >
<title>ASN1_primitive_free (2 samples, 0.01%)</title><rect x="589.7" y="261" width="0.1" height="15.0" fill="rgb(237,4,53)" rx="2" ry="2" />
<text x="592.68" y="271.5" ></text>
</g>
<g >
<title>http_releaseHttpLinkNode (31 samples, 0.15%)</title><rect x="327.2" y="533" width="1.8" height="15.0" fill="rgb(214,103,12)" rx="2" ry="2" />
<text x="330.18" y="543.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (162 samples, 0.81%)</title><rect x="374.4" y="549" width="9.5" height="15.0" fill="rgb(248,13,51)" rx="2" ry="2" />
<text x="377.37" y="559.5" ></text>
</g>
<g >
<title>FS_operate (2 samples, 0.01%)</title><rect x="645.2" y="453" width="0.2" height="15.0" fill="rgb(233,90,38)" rx="2" ry="2" />
<text x="648.24" y="463.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (11 samples, 0.05%)</title><rect x="1009.8" y="533" width="0.6" height="15.0" fill="rgb(225,191,2)" rx="2" ry="2" />
<text x="1012.79" y="543.5" ></text>
</g>
<g >
<title>__snprintf (8 samples, 0.04%)</title><rect x="399.0" y="533" width="0.4" height="15.0" fill="rgb(232,68,54)" rx="2" ry="2" />
<text x="401.97" y="543.5" ></text>
</g>
<g >
<title>app_proto_worke_process (11 samples, 0.05%)</title><rect x="1009.8" y="501" width="0.6" height="15.0" fill="rgb(216,227,3)" rx="2" ry="2" />
<text x="1012.79" y="511.5" ></text>
</g>
<g >
<title>NewDocumentAnalyzer (3 samples, 0.01%)</title><rect x="573.5" y="389" width="0.2" height="15.0" fill="rgb(225,16,14)" rx="2" ry="2" />
<text x="576.51" y="399.5" ></text>
</g>
<g >
<title>BKDR_hash_algo (3 samples, 0.01%)</title><rect x="614.2" y="469" width="0.2" height="15.0" fill="rgb(213,104,5)" rx="2" ry="2" />
<text x="617.22" y="479.5" ></text>
</g>
<g >
<title>printaddr_r (30 samples, 0.15%)</title><rect x="636.7" y="501" width="1.8" height="15.0" fill="rgb(243,50,32)" rx="2" ry="2" />
<text x="639.69" y="511.5" ></text>
</g>
<g >
<title>wangw_ingress_rule_scan (5 samples, 0.02%)</title><rect x="1018.0" y="613" width="0.3" height="15.0" fill="rgb(217,43,1)" rx="2" ry="2" />
<text x="1020.99" y="623.5" ></text>
</g>
<g >
<title>wire_graft_tunnel_recvfrom (7 samples, 0.03%)</title><rect x="947.9" y="693" width="0.4" height="15.0" fill="rgb(242,94,49)" rx="2" ry="2" />
<text x="950.91" y="703.5" ></text>
</g>
<g >
<title>plugin_call_appentry (29 samples, 0.14%)</title><rect x="336.0" y="437" width="1.7" height="15.0" fill="rgb(214,84,43)" rx="2" ry="2" />
<text x="338.97" y="447.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="1000.2" y="645" width="0.2" height="15.0" fill="rgb(233,92,24)" rx="2" ry="2" />
<text x="1003.23" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="373" width="0.1" height="15.0" fill="rgb(237,131,37)" rx="2" ry="2" />
<text x="337.38" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (31 samples, 0.15%)</title><rect x="363.9" y="437" width="1.9" height="15.0" fill="rgb(241,175,13)" rx="2" ry="2" />
<text x="366.93" y="447.5" ></text>
</g>
<g >
<title>record_link_info_entry_raw (4 samples, 0.02%)</title><rect x="615.9" y="517" width="0.3" height="15.0" fill="rgb(236,224,41)" rx="2" ry="2" />
<text x="618.93" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="325.9" y="325" width="0.3" height="15.0" fill="rgb(216,18,25)" rx="2" ry="2" />
<text x="328.94" y="335.5" ></text>
</g>
<g >
<title>app_proto_worke_process (146 samples, 0.73%)</title><rect x="819.5" y="517" width="8.6" height="15.0" fill="rgb(238,164,9)" rx="2" ry="2" />
<text x="822.50" y="527.5" ></text>
</g>
<g >
<title>operator new (4 samples, 0.02%)</title><rect x="365.8" y="453" width="0.2" height="15.0" fill="rgb(206,186,2)" rx="2" ry="2" />
<text x="368.76" y="463.5" ></text>
</g>
<g >
<title>tsg_send_log (59 samples, 0.29%)</title><rect x="322.8" y="389" width="3.4" height="15.0" fill="rgb(220,176,44)" rx="2" ry="2" />
<text x="325.76" y="399.5" ></text>
</g>
<g >
<title>[sapp] (42 samples, 0.21%)</title><rect x="984.8" y="741" width="2.5" height="15.0" fill="rgb(213,120,49)" rx="2" ry="2" />
<text x="987.84" y="751.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="989.8" y="565" width="0.2" height="15.0" fill="rgb(237,40,43)" rx="2" ry="2" />
<text x="992.79" y="575.5" ></text>
</g>
<g >
<title>stream_process_udp (2 samples, 0.01%)</title><rect x="304.9" y="581" width="0.1" height="15.0" fill="rgb(253,104,53)" rx="2" ry="2" />
<text x="307.88" y="591.5" ></text>
</g>
<g >
<title>strncasecmp@plt (2 samples, 0.01%)</title><rect x="598.2" y="485" width="0.1" height="15.0" fill="rgb(225,65,32)" rx="2" ry="2" />
<text x="601.17" y="495.5" ></text>
</g>
<g >
<title>stream_bridge_destroy_per_stream (4 samples, 0.02%)</title><rect x="798.4" y="533" width="0.2" height="15.0" fill="rgb(210,126,45)" rx="2" ry="2" />
<text x="801.38" y="543.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (2,795 samples, 13.97%)</title><rect x="1018.9" y="693" width="164.8" height="15.0" fill="rgb(232,115,52)" rx="2" ry="2" />
<text x="1021.88" y="703.5" >cpuidle_enter_state</text>
</g>
<g >
<title>asn1_ex_c2i (5 samples, 0.02%)</title><rect x="330.7" y="117" width="0.3" height="15.0" fill="rgb(213,209,11)" rx="2" ry="2" />
<text x="333.72" y="127.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (22 samples, 0.11%)</title><rect x="132.6" y="661" width="1.3" height="15.0" fill="rgb(217,76,52)" rx="2" ry="2" />
<text x="135.58" y="671.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (4 samples, 0.02%)</title><rect x="857.1" y="469" width="0.2" height="15.0" fill="rgb(229,10,10)" rx="2" ry="2" />
<text x="860.07" y="479.5" ></text>
</g>
<g >
<title>qmdpi_flow_5tuple_get (2 samples, 0.01%)</title><rect x="827.8" y="453" width="0.1" height="15.0" fill="rgb(219,65,40)" rx="2" ry="2" />
<text x="830.81" y="463.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (34 samples, 0.17%)</title><rect x="320.6" y="405" width="2.0" height="15.0" fill="rgb(206,0,7)" rx="2" ry="2" />
<text x="323.57" y="415.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="501" width="0.2" height="15.0" fill="rgb(253,21,54)" rx="2" ry="2" />
<text x="987.84" y="511.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (3 samples, 0.01%)</title><rect x="644.6" y="437" width="0.2" height="15.0" fill="rgb(215,43,39)" rx="2" ry="2" />
<text x="647.60" y="447.5" ></text>
</g>
<g >
<title>FW_HTTP_PLUG_ENTRY (4 samples, 0.02%)</title><rect x="1005.4" y="773" width="0.2" height="15.0" fill="rgb(209,115,18)" rx="2" ry="2" />
<text x="1008.37" y="783.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (11 samples, 0.05%)</title><rect x="983.8" y="629" width="0.7" height="15.0" fill="rgb(254,151,5)" rx="2" ry="2" />
<text x="986.84" y="639.5" ></text>
</g>
<g >
<title>wangw_ingress_stream_is_wannat_session (3 samples, 0.01%)</title><rect x="976.6" y="645" width="0.2" height="15.0" fill="rgb(205,102,48)" rx="2" ry="2" />
<text x="979.64" y="655.5" ></text>
</g>
<g >
<title>__memset_sse2 (2 samples, 0.01%)</title><rect x="579.6" y="485" width="0.2" height="15.0" fill="rgb(248,103,1)" rx="2" ry="2" />
<text x="582.65" y="495.5" ></text>
</g>
<g >
<title>BN_CTX_free (2 samples, 0.01%)</title><rect x="591.6" y="325" width="0.1" height="15.0" fill="rgb(218,190,13)" rx="2" ry="2" />
<text x="594.62" y="335.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (3 samples, 0.01%)</title><rect x="973.6" y="613" width="0.1" height="15.0" fill="rgb(209,89,22)" rx="2" ry="2" />
<text x="976.57" y="623.5" ></text>
</g>
<g >
<title>tcp_free_stream (109 samples, 0.54%)</title><rect x="921.6" y="709" width="6.4" height="15.0" fill="rgb(236,22,13)" rx="2" ry="2" />
<text x="924.60" y="719.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (2 samples, 0.01%)</title><rect x="334.4" y="325" width="0.1" height="15.0" fill="rgb(212,116,47)" rx="2" ry="2" />
<text x="337.38" y="335.5" ></text>
</g>
<g >
<title>[sapp] (13 samples, 0.06%)</title><rect x="421.3" y="725" width="0.8" height="15.0" fill="rgb(226,107,1)" rx="2" ry="2" />
<text x="424.32" y="735.5" ></text>
</g>
<g >
<title>APP_SKETCH_UDP_PLUG_ENTRY (2 samples, 0.01%)</title><rect x="1018.3" y="613" width="0.2" height="15.0" fill="rgb(206,227,0)" rx="2" ry="2" />
<text x="1021.34" y="623.5" ></text>
</g>
<g >
<title>_IO_no_init (5 samples, 0.02%)</title><rect x="566.6" y="437" width="0.2" height="15.0" fill="rgb(242,61,54)" rx="2" ry="2" />
<text x="569.55" y="447.5" ></text>
</g>
<g >
<title>dealipv4tcppkt (43 samples, 0.21%)</title><rect x="976.8" y="757" width="2.6" height="15.0" fill="rgb(254,227,49)" rx="2" ry="2" />
<text x="979.82" y="767.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (12 samples, 0.06%)</title><rect x="979.9" y="533" width="0.8" height="15.0" fill="rgb(207,214,45)" rx="2" ry="2" />
<text x="982.94" y="543.5" ></text>
</g>
<g >
<title>APP_PROTO_ENGINE_MAIN_TCP_ENTRY (222 samples, 1.11%)</title><rect x="550.4" y="517" width="13.1" height="15.0" fill="rgb(219,222,3)" rx="2" ry="2" />
<text x="553.39" y="527.5" ></text>
</g>
<g >
<title>http_callPluginField (5 samples, 0.02%)</title><rect x="1017.0" y="581" width="0.3" height="15.0" fill="rgb(246,50,39)" rx="2" ry="2" />
<text x="1020.05" y="591.5" ></text>
</g>
<g >
<title>__GI___qsort_r (3 samples, 0.01%)</title><rect x="171.3" y="725" width="0.2" height="15.0" fill="rgb(217,19,47)" rx="2" ry="2" />
<text x="174.33" y="735.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_new (2 samples, 0.01%)</title><rect x="47.6" y="757" width="0.1" height="15.0" fill="rgb(253,196,13)" rx="2" ry="2" />
<text x="50.58" y="767.5" ></text>
</g>
<g >
<title>ssl_analyseHandShake (191 samples, 0.95%)</title><rect x="584.5" y="469" width="11.3" height="15.0" fill="rgb(232,100,49)" rx="2" ry="2" />
<text x="587.49" y="479.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="794.5" y="565" width="0.1" height="15.0" fill="rgb(231,139,1)" rx="2" ry="2" />
<text x="797.48" y="575.5" ></text>
</g>
<g >
<title>[tsg_master.so] (5 samples, 0.02%)</title><rect x="983.5" y="533" width="0.3" height="15.0" fill="rgb(226,166,32)" rx="2" ry="2" />
<text x="986.54" y="543.5" ></text>
</g>
<g >
<title>tsg_send_log (427 samples, 2.13%)</title><rect x="341.0" y="517" width="25.2" height="15.0" fill="rgb(245,84,52)" rx="2" ry="2" />
<text x="343.98" y="527.5" >t..</text>
</g>
<g >
<title>HTTP_ENTRY (13 samples, 0.06%)</title><rect x="976.8" y="661" width="0.8" height="15.0" fill="rgb(245,198,15)" rx="2" ry="2" />
<text x="979.82" y="671.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="855.4" y="485" width="0.1" height="15.0" fill="rgb(243,60,44)" rx="2" ry="2" />
<text x="858.36" y="495.5" ></text>
</g>
<g >
<title>_int_free (21 samples, 0.10%)</title><rect x="757.3" y="485" width="1.2" height="15.0" fill="rgb(238,165,4)" rx="2" ry="2" />
<text x="760.26" y="495.5" ></text>
</g>
<g >
<title>rulescan_searchstream (440 samples, 2.20%)</title><rect x="209.9" y="741" width="26.0" height="15.0" fill="rgb(250,186,47)" rx="2" ry="2" />
<text x="212.91" y="751.5" >r..</text>
</g>
<g >
<title>plugin_call_appentry (4 samples, 0.02%)</title><rect x="835.8" y="485" width="0.2" height="15.0" fill="rgb(253,125,25)" rx="2" ry="2" />
<text x="838.78" y="495.5" ></text>
</g>
<g >
<title>tsg_record_tcp_entry (7 samples, 0.03%)</title><rect x="989.4" y="613" width="0.4" height="15.0" fill="rgb(254,118,15)" rx="2" ry="2" />
<text x="992.38" y="623.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (622 samples, 3.11%)</title><rect x="121.5" y="693" width="36.7" height="15.0" fill="rgb(221,169,30)" rx="2" ry="2" />
<text x="124.55" y="703.5" >mso..</text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (16 samples, 0.08%)</title><rect x="538.7" y="533" width="1.0" height="15.0" fill="rgb(223,52,26)" rx="2" ry="2" />
<text x="541.71" y="543.5" ></text>
</g>
<g >
<title>tcp_free_stream (22 samples, 0.11%)</title><rect x="982.1" y="629" width="1.3" height="15.0" fill="rgb(236,48,40)" rx="2" ry="2" />
<text x="985.13" y="639.5" ></text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="809.6" y="469" width="0.1" height="15.0" fill="rgb(224,61,49)" rx="2" ry="2" />
<text x="812.59" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="993.2" y="613" width="0.3" height="15.0" fill="rgb(235,70,52)" rx="2" ry="2" />
<text x="996.16" y="623.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="334.8" y="389" width="0.3" height="15.0" fill="rgb(214,147,16)" rx="2" ry="2" />
<text x="337.85" y="399.5" ></text>
</g>
<g >
<title>http_callPluginField (7 samples, 0.03%)</title><rect x="374.4" y="469" width="0.4" height="15.0" fill="rgb(212,172,53)" rx="2" ry="2" />
<text x="377.37" y="479.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (43 samples, 0.21%)</title><rect x="305.0" y="501" width="2.5" height="15.0" fill="rgb(206,144,7)" rx="2" ry="2" />
<text x="308.00" y="511.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="366.1" y="485" width="0.1" height="15.0" fill="rgb(250,73,49)" rx="2" ry="2" />
<text x="369.05" y="495.5" ></text>
</g>
<g >
<title>http_readChunkedData (2 samples, 0.01%)</title><rect x="977.0" y="581" width="0.1" height="15.0" fill="rgb(206,163,28)" rx="2" ry="2" />
<text x="979.99" y="591.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (52 samples, 0.26%)</title><rect x="1000.0" y="693" width="3.1" height="15.0" fill="rgb(221,8,41)" rx="2" ry="2" />
<text x="1003.00" y="703.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (14 samples, 0.07%)</title><rect x="450.2" y="693" width="0.8" height="15.0" fill="rgb(206,192,13)" rx="2" ry="2" />
<text x="453.17" y="703.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (132 samples, 0.66%)</title><rect x="881.0" y="725" width="7.7" height="15.0" fill="rgb(231,1,31)" rx="2" ry="2" />
<text x="883.96" y="735.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (7 samples, 0.03%)</title><rect x="420.6" y="565" width="0.4" height="15.0" fill="rgb(253,203,7)" rx="2" ry="2" />
<text x="423.62" y="575.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (12 samples, 0.06%)</title><rect x="979.9" y="517" width="0.8" height="15.0" fill="rgb(248,15,0)" rx="2" ry="2" />
<text x="982.94" y="527.5" ></text>
</g>
<g >
<title>tsg_scan_addr (2 samples, 0.01%)</title><rect x="843.3" y="501" width="0.1" height="15.0" fill="rgb(253,199,0)" rx="2" ry="2" />
<text x="846.33" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="762.7" y="533" width="0.2" height="15.0" fill="rgb(252,229,42)" rx="2" ry="2" />
<text x="765.75" y="543.5" ></text>
</g>
<g >
<title>ipv4_entry (102 samples, 0.51%)</title><rect x="1009.8" y="645" width="6.0" height="15.0" fill="rgb(205,9,3)" rx="2" ry="2" />
<text x="1012.79" y="655.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (9 samples, 0.04%)</title><rect x="160.7" y="741" width="0.5" height="15.0" fill="rgb(224,212,32)" rx="2" ry="2" />
<text x="163.71" y="751.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (4 samples, 0.02%)</title><rect x="936.3" y="661" width="0.2" height="15.0" fill="rgb(237,54,5)" rx="2" ry="2" />
<text x="939.29" y="671.5" ></text>
</g>
<g >
<title>TSG_MASTER_UDP_ENTRY (2 samples, 0.01%)</title><rect x="307.9" y="581" width="0.1" height="15.0" fill="rgb(246,80,32)" rx="2" ry="2" />
<text x="310.89" y="591.5" ></text>
</g>
<g >
<title>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="644.8" y="437" width="0.1" height="15.0" fill="rgb(235,142,54)" rx="2" ry="2" />
<text x="647.77" y="447.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="842.9" y="453" width="0.1" height="15.0" fill="rgb(246,185,12)" rx="2" ry="2" />
<text x="845.85" y="463.5" ></text>
</g>
<g >
<title>__isoc99_sscanf (3 samples, 0.01%)</title><rect x="571.4" y="421" width="0.2" height="15.0" fill="rgb(238,229,31)" rx="2" ry="2" />
<text x="574.39" y="431.5" ></text>
</g>
<g >
<title>cJSON_AddNumberToObject (2 samples, 0.01%)</title><rect x="997.3" y="661" width="0.2" height="15.0" fill="rgb(234,137,7)" rx="2" ry="2" />
<text x="1000.34" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="491.2" y="485" width="0.1" height="15.0" fill="rgb(224,187,38)" rx="2" ry="2" />
<text x="494.17" y="495.5" ></text>
</g>
<g >
<title>OBJ_dup (2 samples, 0.01%)</title><rect x="300.9" y="277" width="0.1" height="15.0" fill="rgb(234,89,12)" rx="2" ry="2" />
<text x="303.87" y="287.5" ></text>
</g>
<g >
<title>[sapp] (4,602 samples, 23.01%)</title><rect x="517.1" y="597" width="271.5" height="15.0" fill="rgb(254,125,27)" rx="2" ry="2" />
<text x="520.12" y="607.5" >[sapp]</text>
</g>
<g >
<title>del_stream_by_time (2 samples, 0.01%)</title><rect x="304.9" y="613" width="0.1" height="15.0" fill="rgb(239,210,29)" rx="2" ry="2" />
<text x="307.88" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="329.4" y="357" width="0.2" height="15.0" fill="rgb(243,61,54)" rx="2" ry="2" />
<text x="332.42" y="367.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (10 samples, 0.05%)</title><rect x="973.2" y="645" width="0.5" height="15.0" fill="rgb(218,201,3)" rx="2" ry="2" />
<text x="976.16" y="655.5" ></text>
</g>
<g >
<title>tsg_scan_shared_policy (2 samples, 0.01%)</title><rect x="612.9" y="501" width="0.1" height="15.0" fill="rgb(240,163,1)" rx="2" ry="2" />
<text x="615.92" y="511.5" ></text>
</g>
<g >
<title>http_readChunkedData (14 samples, 0.07%)</title><rect x="570.6" y="437" width="0.8" height="15.0" fill="rgb(241,111,23)" rx="2" ry="2" />
<text x="573.56" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="327.0" y="357" width="0.2" height="15.0" fill="rgb(215,41,44)" rx="2" ry="2" />
<text x="330.00" y="367.5" ></text>
</g>
<g >
<title>http_host_parser (19 samples, 0.09%)</title><rect x="610.3" y="501" width="1.1" height="15.0" fill="rgb(229,224,26)" rx="2" ry="2" />
<text x="613.32" y="511.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (4 samples, 0.02%)</title><rect x="1004.3" y="693" width="0.2" height="15.0" fill="rgb(239,16,44)" rx="2" ry="2" />
<text x="1007.31" y="703.5" ></text>
</g>
<g >
<title>Maat_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="840.4" y="501" width="0.1" height="15.0" fill="rgb(251,121,18)" rx="2" ry="2" />
<text x="843.38" y="511.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="645.2" y="437" width="0.2" height="15.0" fill="rgb(228,141,2)" rx="2" ry="2" />
<text x="648.24" y="447.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (3 samples, 0.01%)</title><rect x="1009.6" y="517" width="0.2" height="15.0" fill="rgb(217,184,29)" rx="2" ry="2" />
<text x="1012.61" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (10 samples, 0.05%)</title><rect x="383.0" y="421" width="0.6" height="15.0" fill="rgb(222,228,53)" rx="2" ry="2" />
<text x="386.04" y="431.5" ></text>
</g>
<g >
<title>sapp_is_overlay_layer (15 samples, 0.07%)</title><rect x="877.2" y="693" width="0.9" height="15.0" fill="rgb(215,216,5)" rx="2" ry="2" />
<text x="880.19" y="703.5" ></text>
</g>
<g >
<title>PROT_PROCESS (2 samples, 0.01%)</title><rect x="301.9" y="453" width="0.2" height="15.0" fill="rgb(223,105,7)" rx="2" ry="2" />
<text x="304.93" y="463.5" ></text>
</g>
<g >
<title>qmdpi_worker_engine_get (2 samples, 0.01%)</title><rect x="823.2" y="485" width="0.1" height="15.0" fill="rgb(225,105,12)" rx="2" ry="2" />
<text x="826.15" y="495.5" ></text>
</g>
<g >
<title>CRYPTO_free (2 samples, 0.01%)</title><rect x="589.4" y="325" width="0.1" height="15.0" fill="rgb(247,37,40)" rx="2" ry="2" />
<text x="592.38" y="335.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (17 samples, 0.08%)</title><rect x="591.4" y="389" width="1.0" height="15.0" fill="rgb(237,35,50)" rx="2" ry="2" />
<text x="594.45" y="399.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (3 samples, 0.01%)</title><rect x="997.2" y="613" width="0.1" height="15.0" fill="rgb(217,81,4)" rx="2" ry="2" />
<text x="1000.17" y="623.5" ></text>
</g>
<g >
<title>get_rr_str2json (6 samples, 0.03%)</title><rect x="997.2" y="677" width="0.3" height="15.0" fill="rgb(222,139,7)" rx="2" ry="2" />
<text x="1000.17" y="687.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (21 samples, 0.10%)</title><rect x="140.1" y="645" width="1.3" height="15.0" fill="rgb(241,79,14)" rx="2" ry="2" />
<text x="143.13" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (17 samples, 0.08%)</title><rect x="327.9" y="357" width="1.0" height="15.0" fill="rgb(208,149,44)" rx="2" ry="2" />
<text x="330.95" y="367.5" ></text>
</g>
<g >
<title>process_pkt_return (9 samples, 0.04%)</title><rect x="880.4" y="709" width="0.6" height="15.0" fill="rgb(235,195,35)" rx="2" ry="2" />
<text x="883.43" y="719.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="543.0" y="517" width="0.3" height="15.0" fill="rgb(242,68,34)" rx="2" ry="2" />
<text x="545.96" y="527.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (15 samples, 0.07%)</title><rect x="1012.9" y="549" width="0.9" height="15.0" fill="rgb(226,200,18)" rx="2" ry="2" />
<text x="1015.92" y="559.5" ></text>
</g>
<g >
<title>sapp_jhash_4words (5 samples, 0.02%)</title><rect x="488.2" y="629" width="0.3" height="15.0" fill="rgb(218,11,14)" rx="2" ry="2" />
<text x="491.16" y="639.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="363.5" y="437" width="0.2" height="15.0" fill="rgb(244,181,1)" rx="2" ry="2" />
<text x="366.46" y="447.5" ></text>
</g>
<g >
<title>cpu_startup_entry (2,908 samples, 14.54%)</title><rect x="1018.5" y="757" width="171.5" height="15.0" fill="rgb(212,226,42)" rx="2" ry="2" />
<text x="1021.46" y="767.5" >cpu_startup_entry</text>
</g>
<g >
<title>plugin_process_close (2 samples, 0.01%)</title><rect x="575.2" y="437" width="0.1" height="15.0" fill="rgb(230,197,45)" rx="2" ry="2" />
<text x="578.22" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="374.4" y="309" width="0.3" height="15.0" fill="rgb(251,39,22)" rx="2" ry="2" />
<text x="377.43" y="319.5" ></text>
</g>
<g >
<title>CRefCountManager::dec_reference_count (2 samples, 0.01%)</title><rect x="220.1" y="725" width="0.1" height="15.0" fill="rgb(253,227,26)" rx="2" ry="2" />
<text x="223.06" y="735.5" ></text>
</g>
<g >
<title>asn1_enc_save (5 samples, 0.02%)</title><rect x="588.3" y="325" width="0.3" height="15.0" fill="rgb(250,166,44)" rx="2" ry="2" />
<text x="591.32" y="335.5" ></text>
</g>
<g >
<title>ASN1_template_free (2 samples, 0.01%)</title><rect x="589.9" y="357" width="0.1" height="15.0" fill="rgb(220,94,43)" rx="2" ry="2" />
<text x="592.85" y="367.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (8 samples, 0.04%)</title><rect x="50.2" y="677" width="0.5" height="15.0" fill="rgb(206,53,30)" rx="2" ry="2" />
<text x="53.23" y="687.5" ></text>
</g>
<g >
<title>udp_free_stream (7 samples, 0.03%)</title><rect x="304.5" y="581" width="0.4" height="15.0" fill="rgb(218,221,23)" rx="2" ry="2" />
<text x="307.47" y="591.5" ></text>
</g>
<g >
<title>del_stream_by_time (8 samples, 0.04%)</title><rect x="809.3" y="581" width="0.5" height="15.0" fill="rgb(236,198,26)" rx="2" ry="2" />
<text x="812.29" y="591.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (6 samples, 0.03%)</title><rect x="680.5" y="517" width="0.4" height="15.0" fill="rgb(219,79,46)" rx="2" ry="2" />
<text x="683.52" y="527.5" ></text>
</g>
<g >
<title>plugin_process_pending (15 samples, 0.07%)</title><rect x="569.3" y="389" width="0.9" height="15.0" fill="rgb(232,157,50)" rx="2" ry="2" />
<text x="572.33" y="399.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (8 samples, 0.04%)</title><rect x="636.1" y="485" width="0.5" height="15.0" fill="rgb(242,39,42)" rx="2" ry="2" />
<text x="639.10" y="495.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="596.1" y="453" width="0.1" height="15.0" fill="rgb(219,19,48)" rx="2" ry="2" />
<text x="599.11" y="463.5" ></text>
</g>
<g >
<title>__IO_vsprintf (3 samples, 0.01%)</title><rect x="402.2" y="565" width="0.2" height="15.0" fill="rgb(210,224,28)" rx="2" ry="2" />
<text x="405.21" y="575.5" ></text>
</g>
<g >
<title>__IO_vsprintf (7 samples, 0.03%)</title><rect x="421.3" y="677" width="0.4" height="15.0" fill="rgb(253,199,17)" rx="2" ry="2" />
<text x="424.32" y="687.5" ></text>
</g>
<g >
<title>__strchrnul (2 samples, 0.01%)</title><rect x="422.5" y="661" width="0.1" height="15.0" fill="rgb(209,149,18)" rx="2" ry="2" />
<text x="425.50" y="671.5" ></text>
</g>
<g >
<title>tsg_send_log (7 samples, 0.03%)</title><rect x="374.4" y="373" width="0.4" height="15.0" fill="rgb(236,109,36)" rx="2" ry="2" />
<text x="377.37" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.04%)</title><rect x="536.4" y="533" width="0.4" height="15.0" fill="rgb(228,189,43)" rx="2" ry="2" />
<text x="539.35" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="611.9" y="485" width="0.1" height="15.0" fill="rgb(221,53,5)" rx="2" ry="2" />
<text x="614.92" y="495.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (4 samples, 0.02%)</title><rect x="552.9" y="405" width="0.3" height="15.0" fill="rgb(219,228,17)" rx="2" ry="2" />
<text x="555.93" y="415.5" ></text>
</g>
<g >
<title>[quic.so] (8 samples, 0.04%)</title><rect x="840.9" y="501" width="0.5" height="15.0" fill="rgb(250,26,32)" rx="2" ry="2" />
<text x="843.91" y="511.5" ></text>
</g>
<g >
<title>vxlan_entry (55 samples, 0.27%)</title><rect x="987.6" y="757" width="3.2" height="15.0" fill="rgb(248,110,29)" rx="2" ry="2" />
<text x="990.55" y="767.5" ></text>
</g>
<g >
<title>callback_dns_business_plug (3 samples, 0.01%)</title><rect x="928.5" y="629" width="0.2" height="15.0" fill="rgb(208,201,39)" rx="2" ry="2" />
<text x="931.51" y="639.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="299.9" y="453" width="0.6" height="15.0" fill="rgb(224,54,3)" rx="2" ry="2" />
<text x="302.93" y="463.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (2 samples, 0.01%)</title><rect x="402.0" y="501" width="0.1" height="15.0" fill="rgb(247,73,14)" rx="2" ry="2" />
<text x="404.98" y="511.5" ></text>
</g>
<g >
<title>[tsg_master.so] (4 samples, 0.02%)</title><rect x="388.3" y="485" width="0.2" height="15.0" fill="rgb(245,217,15)" rx="2" ry="2" />
<text x="391.29" y="495.5" ></text>
</g>
<g >
<title>FS_operate (4 samples, 0.02%)</title><rect x="1001.0" y="645" width="0.2" height="15.0" fill="rgb(213,74,14)" rx="2" ry="2" />
<text x="1004.00" y="655.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="1016.6" y="581" width="0.1" height="15.0" fill="rgb(251,68,22)" rx="2" ry="2" />
<text x="1019.57" y="591.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (2 samples, 0.01%)</title><rect x="338.4" y="517" width="0.1" height="15.0" fill="rgb(238,150,11)" rx="2" ry="2" />
<text x="341.39" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (16 samples, 0.08%)</title><rect x="801.9" y="357" width="1.0" height="15.0" fill="rgb(246,194,29)" rx="2" ry="2" />
<text x="804.92" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="835.9" y="421" width="0.1" height="15.0" fill="rgb(206,189,16)" rx="2" ry="2" />
<text x="838.89" y="431.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (9 samples, 0.04%)</title><rect x="383.9" y="549" width="0.6" height="15.0" fill="rgb(212,164,11)" rx="2" ry="2" />
<text x="386.93" y="559.5" ></text>
</g>
<g >
<title>dealipv4udppkt (1,560 samples, 7.80%)</title><rect x="308.0" y="725" width="92.0" height="15.0" fill="rgb(216,50,22)" rx="2" ry="2" />
<text x="311.01" y="735.5" >dealipv4ud..</text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="627.0" y="501" width="0.2" height="15.0" fill="rgb(221,173,18)" rx="2" ry="2" />
<text x="629.96" y="511.5" ></text>
</g>
<g >
<title>__IO_vsprintf (4 samples, 0.02%)</title><rect x="1005.0" y="741" width="0.2" height="15.0" fill="rgb(209,207,36)" rx="2" ry="2" />
<text x="1007.95" y="751.5" ></text>
</g>
<g >
<title>_int_malloc (16 samples, 0.08%)</title><rect x="801.9" y="341" width="1.0" height="15.0" fill="rgb(220,15,4)" rx="2" ry="2" />
<text x="804.92" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.01%)</title><rect x="843.6" y="517" width="0.1" height="15.0" fill="rgb(238,37,21)" rx="2" ry="2" />
<text x="846.56" y="527.5" ></text>
</g>
<g >
<title>[libqmengine.so] (4 samples, 0.02%)</title><rect x="316.7" y="341" width="0.2" height="15.0" fill="rgb(249,183,18)" rx="2" ry="2" />
<text x="319.68" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (17 samples, 0.08%)</title><rect x="327.9" y="341" width="1.0" height="15.0" fill="rgb(242,212,41)" rx="2" ry="2" />
<text x="330.95" y="351.5" ></text>
</g>
<g >
<title>__clone (9,307 samples, 46.53%)</title><rect x="424.0" y="789" width="549.0" height="15.0" fill="rgb(226,83,12)" rx="2" ry="2" />
<text x="426.98" y="799.5" >__clone</text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="405" width="0.2" height="15.0" fill="rgb(237,137,3)" rx="2" ry="2" />
<text x="987.84" y="415.5" ></text>
</g>
<g >
<title>[sapp] (2 samples, 0.01%)</title><rect x="998.3" y="661" width="0.2" height="15.0" fill="rgb(250,199,22)" rx="2" ry="2" />
<text x="1001.35" y="671.5" ></text>
</g>
<g >
<title>tsg_record_http_entry (62 samples, 0.31%)</title><rect x="322.6" y="437" width="3.6" height="15.0" fill="rgb(240,102,53)" rx="2" ry="2" />
<text x="325.58" y="447.5" ></text>
</g>
<g >
<title>http_callPlugin (7 samples, 0.03%)</title><rect x="374.4" y="485" width="0.4" height="15.0" fill="rgb(239,229,6)" rx="2" ry="2" />
<text x="377.37" y="495.5" ></text>
</g>
<g >
<title>SSL_ENTRY (7 samples, 0.03%)</title><rect x="400.4" y="709" width="0.5" height="15.0" fill="rgb(205,198,32)" rx="2" ry="2" />
<text x="403.44" y="719.5" ></text>
</g>
<g >
<title>ssl_callPlugins (57 samples, 0.28%)</title><rect x="581.1" y="437" width="3.4" height="15.0" fill="rgb(208,195,39)" rx="2" ry="2" />
<text x="584.12" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (21 samples, 0.10%)</title><rect x="106.4" y="709" width="1.3" height="15.0" fill="rgb(236,24,23)" rx="2" ry="2" />
<text x="109.45" y="719.5" ></text>
</g>
<g >
<title>__strcmp_sse42 (19 samples, 0.09%)</title><rect x="555.1" y="421" width="1.1" height="15.0" fill="rgb(206,228,14)" rx="2" ry="2" />
<text x="558.11" y="431.5" ></text>
</g>
<g >
<title>__IO_vsprintf (5 samples, 0.02%)</title><rect x="992.4" y="581" width="0.3" height="15.0" fill="rgb(244,120,6)" rx="2" ry="2" />
<text x="995.39" y="591.5" ></text>
</g>
<g >
<title>stream_bridge_sync_data_put (15 samples, 0.07%)</title><rect x="310.2" y="501" width="0.9" height="15.0" fill="rgb(211,56,37)" rx="2" ry="2" />
<text x="313.19" y="511.5" ></text>
</g>
<g >
<title>Maat_table_runtime_fqdn_plugin_get_N_ex_data (2 samples, 0.01%)</title><rect x="1012.6" y="469" width="0.1" height="15.0" fill="rgb(237,108,0)" rx="2" ry="2" />
<text x="1015.56" y="479.5" ></text>
</g>
<g >
<title>plugin_call_appentry (7 samples, 0.03%)</title><rect x="374.4" y="437" width="0.4" height="15.0" fill="rgb(252,54,40)" rx="2" ry="2" />
<text x="377.37" y="447.5" ></text>
</g>
<g >
<title>tsg_get_subscribe_id (8 samples, 0.04%)</title><rect x="339.0" y="533" width="0.4" height="15.0" fill="rgb(252,187,9)" rx="2" ry="2" />
<text x="341.98" y="543.5" ></text>
</g>
<g >
<title>ssl_analyseSsl (9 samples, 0.04%)</title><rect x="1010.4" y="501" width="0.6" height="15.0" fill="rgb(230,153,42)" rx="2" ry="2" />
<text x="1013.44" y="511.5" ></text>
</g>
<g >
<title>rd_kafka_toppar_broker (2 samples, 0.01%)</title><rect x="381.9" y="405" width="0.1" height="15.0" fill="rgb(234,200,12)" rx="2" ry="2" />
<text x="384.86" y="415.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (27 samples, 0.13%)</title><rect x="308.6" y="469" width="1.6" height="15.0" fill="rgb(245,201,35)" rx="2" ry="2" />
<text x="311.60" y="479.5" ></text>
</g>
<g >
<title>OBJ_obj2nid (2 samples, 0.01%)</title><rect x="586.8" y="341" width="0.2" height="15.0" fill="rgb(249,173,49)" rx="2" ry="2" />
<text x="589.85" y="351.5" ></text>
</g>
<g >
<title>ssl_get_ja3_fingerprint (62 samples, 0.31%)</title><rect x="1006.0" y="789" width="3.6" height="15.0" fill="rgb(225,9,46)" rx="2" ry="2" />
<text x="1008.96" y="799.5" ></text>
</g>
<g >
<title>rd_kafka_msg_sticky_partition (2 samples, 0.01%)</title><rect x="381.9" y="437" width="0.1" height="15.0" fill="rgb(222,94,53)" rx="2" ry="2" />
<text x="384.86" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="831.7" y="501" width="0.2" height="15.0" fill="rgb(222,180,30)" rx="2" ry="2" />
<text x="834.71" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="590.4" y="277" width="0.2" height="15.0" fill="rgb(249,109,54)" rx="2" ry="2" />
<text x="593.44" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (13 samples, 0.06%)</title><rect x="538.9" y="501" width="0.8" height="15.0" fill="rgb(248,73,8)" rx="2" ry="2" />
<text x="541.89" y="511.5" ></text>
</g>
<g >
<title>[libcjson.so.1.7.8] (2 samples, 0.01%)</title><rect x="997.3" y="629" width="0.2" height="15.0" fill="rgb(254,36,51)" rx="2" ry="2" />
<text x="1000.34" y="639.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (11 samples, 0.05%)</title><rect x="545.0" y="549" width="0.7" height="15.0" fill="rgb(215,146,16)" rx="2" ry="2" />
<text x="548.02" y="559.5" ></text>
</g>
<g >
<title>TCP_ENTRY (8 samples, 0.04%)</title><rect x="598.3" y="517" width="0.5" height="15.0" fill="rgb(251,38,25)" rx="2" ry="2" />
<text x="601.29" y="527.5" ></text>
</g>
<g >
<title>[tsg_master.so] (17 samples, 0.08%)</title><rect x="797.2" y="517" width="1.0" height="15.0" fill="rgb(246,98,37)" rx="2" ry="2" />
<text x="800.20" y="527.5" ></text>
</g>
<g >
<title>set_nat_linkinfo (5 samples, 0.02%)</title><rect x="387.9" y="533" width="0.3" height="15.0" fill="rgb(229,152,45)" rx="2" ry="2" />
<text x="390.88" y="543.5" ></text>
</g>
<g >
<title>DNS_TCP_ENTRY (2 samples, 0.01%)</title><rect x="567.9" y="517" width="0.1" height="15.0" fill="rgb(213,149,6)" rx="2" ry="2" />
<text x="570.91" y="527.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (9 samples, 0.04%)</title><rect x="318.4" y="437" width="0.5" height="15.0" fill="rgb(224,95,25)" rx="2" ry="2" />
<text x="321.39" y="447.5" ></text>
</g>
<g >
<title>[tsg_master.so] (6 samples, 0.03%)</title><rect x="399.6" y="533" width="0.3" height="15.0" fill="rgb(205,202,17)" rx="2" ry="2" />
<text x="402.56" y="543.5" ></text>
</g>
<g >
<title>packet_io_under_ddos_should_bypass (3 samples, 0.01%)</title><rect x="542.2" y="549" width="0.2" height="15.0" fill="rgb(215,57,42)" rx="2" ry="2" />
<text x="545.19" y="559.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (5 samples, 0.02%)</title><rect x="335.7" y="389" width="0.3" height="15.0" fill="rgb(213,144,53)" rx="2" ry="2" />
<text x="338.67" y="399.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (5 samples, 0.02%)</title><rect x="276.5" y="725" width="0.3" height="15.0" fill="rgb(254,49,23)" rx="2" ry="2" />
<text x="279.51" y="735.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (3 samples, 0.01%)</title><rect x="986.7" y="501" width="0.1" height="15.0" fill="rgb(229,20,13)" rx="2" ry="2" />
<text x="989.67" y="511.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="335.7" y="341" width="0.3" height="15.0" fill="rgb(205,144,1)" rx="2" ry="2" />
<text x="338.73" y="351.5" ></text>
</g>
<g >
<title>rulescan_computeresult (598 samples, 2.99%)</title><rect x="57.1" y="741" width="35.3" height="15.0" fill="rgb(217,218,42)" rx="2" ry="2" />
<text x="60.13" y="751.5" >ru..</text>
</g>
<g >
<title>checkstreamorder (289 samples, 1.44%)</title><rect x="658.3" y="565" width="17.0" height="15.0" fill="rgb(222,196,8)" rx="2" ry="2" />
<text x="661.28" y="575.5" ></text>
</g>
<g >
<title>stream_process (38 samples, 0.19%)</title><rect x="925.8" y="677" width="2.2" height="15.0" fill="rgb(215,113,25)" rx="2" ry="2" />
<text x="928.79" y="687.5" ></text>
</g>
<g >
<title>malloc_consolidate (3 samples, 0.01%)</title><rect x="829.3" y="485" width="0.2" height="15.0" fill="rgb(254,102,6)" rx="2" ry="2" />
<text x="832.29" y="495.5" ></text>
</g>
<g >
<title>[tsg_master.so] (46 samples, 0.23%)</title><rect x="363.3" y="469" width="2.7" height="15.0" fill="rgb(243,113,32)" rx="2" ry="2" />
<text x="366.28" y="479.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="786.3" y="533" width="0.1" height="15.0" fill="rgb(252,0,48)" rx="2" ry="2" />
<text x="789.28" y="543.5" ></text>
</g>
<g >
<title>__GI__IO_setb (3 samples, 0.01%)</title><rect x="399.2" y="485" width="0.2" height="15.0" fill="rgb(222,209,9)" rx="2" ry="2" />
<text x="402.20" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="587.4" y="261" width="0.2" height="15.0" fill="rgb(209,50,24)" rx="2" ry="2" />
<text x="590.38" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="385.6" y="517" width="0.2" height="15.0" fill="rgb(250,131,12)" rx="2" ry="2" />
<text x="388.58" y="527.5" ></text>
</g>
<g >
<title>stream_process (6 samples, 0.03%)</title><rect x="496.8" y="645" width="0.3" height="15.0" fill="rgb(244,83,39)" rx="2" ry="2" />
<text x="499.77" y="655.5" ></text>
</g>
<g >
<title>get_stream_carry_tunnel_type (2 samples, 0.01%)</title><rect x="541.9" y="565" width="0.1" height="15.0" fill="rgb(237,113,45)" rx="2" ry="2" />
<text x="544.90" y="575.5" ></text>
</g>
<g >
<title>tsg_record_dns_entry (92 samples, 0.46%)</title><rect x="992.1" y="709" width="5.4" height="15.0" fill="rgb(225,97,33)" rx="2" ry="2" />
<text x="995.09" y="719.5" ></text>
</g>
<g >
<title>free_polling_inject_context (2 samples, 0.01%)</title><rect x="489.8" y="613" width="0.1" height="15.0" fill="rgb(232,140,27)" rx="2" ry="2" />
<text x="492.75" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (7 samples, 0.03%)</title><rect x="536.4" y="517" width="0.4" height="15.0" fill="rgb(227,97,47)" rx="2" ry="2" />
<text x="539.41" y="527.5" ></text>
</g>
<g >
<title>copy_stream_info_to_heap_single_layer (20 samples, 0.10%)</title><rect x="539.7" y="549" width="1.1" height="15.0" fill="rgb(206,144,36)" rx="2" ry="2" />
<text x="542.66" y="559.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (2 samples, 0.01%)</title><rect x="973.6" y="501" width="0.1" height="15.0" fill="rgb(250,206,21)" rx="2" ry="2" />
<text x="976.57" y="511.5" ></text>
</g>
<g >
<title>docanalyze_parsestream (11 samples, 0.05%)</title><rect x="572.9" y="405" width="0.6" height="15.0" fill="rgb(236,13,11)" rx="2" ry="2" />
<text x="575.87" y="415.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (3 samples, 0.01%)</title><rect x="987.7" y="389" width="0.1" height="15.0" fill="rgb(216,200,9)" rx="2" ry="2" />
<text x="990.67" y="399.5" ></text>
</g>
<g >
<title>vxlan_entry (83 samples, 0.41%)</title><rect x="979.6" y="741" width="4.9" height="15.0" fill="rgb(246,56,49)" rx="2" ry="2" />
<text x="982.65" y="751.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="300.5" y="357" width="0.9" height="15.0" fill="rgb(230,171,43)" rx="2" ry="2" />
<text x="303.46" y="367.5" ></text>
</g>
<g >
<title>stream_process_tcp_allpkt (9 samples, 0.04%)</title><rect x="1017.8" y="693" width="0.5" height="15.0" fill="rgb(207,87,1)" rx="2" ry="2" />
<text x="1020.75" y="703.5" ></text>
</g>
<g >
<title>stream_process_udp (191 samples, 0.95%)</title><rect x="388.7" y="645" width="11.3" height="15.0" fill="rgb(248,113,40)" rx="2" ry="2" />
<text x="391.70" y="655.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="990.5" y="629" width="0.1" height="15.0" fill="rgb(249,114,17)" rx="2" ry="2" />
<text x="993.50" y="639.5" ></text>
</g>
<g >
<title>stream_process_tcp (2 samples, 0.01%)</title><rect x="1015.8" y="789" width="0.1" height="15.0" fill="rgb(236,214,50)" rx="2" ry="2" />
<text x="1018.81" y="799.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="330.9" y="69" width="0.1" height="15.0" fill="rgb(244,194,33)" rx="2" ry="2" />
<text x="333.90" y="79.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="551.3" y="437" width="0.1" height="15.0" fill="rgb(234,109,12)" rx="2" ry="2" />
<text x="554.28" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.02%)</title><rect x="331.7" y="229" width="0.2" height="15.0" fill="rgb(252,60,42)" rx="2" ry="2" />
<text x="334.66" y="239.5" ></text>
</g>
<g >
<title>http_judgeRequestEntityPresent (3 samples, 0.01%)</title><rect x="573.7" y="469" width="0.2" height="15.0" fill="rgb(222,149,18)" rx="2" ry="2" />
<text x="576.69" y="479.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (31 samples, 0.15%)</title><rect x="327.2" y="437" width="1.8" height="15.0" fill="rgb(235,53,44)" rx="2" ry="2" />
<text x="330.18" y="447.5" ></text>
</g>
<g >
<title>http_callPlugin (2 samples, 0.01%)</title><rect x="683.5" y="437" width="0.1" height="15.0" fill="rgb(231,139,29)" rx="2" ry="2" />
<text x="686.47" y="447.5" ></text>
</g>
<g >
<title>stream_process (5 samples, 0.02%)</title><rect x="535.8" y="533" width="0.3" height="15.0" fill="rgb(237,151,37)" rx="2" ry="2" />
<text x="538.82" y="543.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="541.4" y="517" width="0.2" height="15.0" fill="rgb(251,84,32)" rx="2" ry="2" />
<text x="544.42" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.03%)</title><rect x="869.0" y="581" width="0.4" height="15.0" fill="rgb(231,177,52)" rx="2" ry="2" />
<text x="871.99" y="591.5" ></text>
</g>
<g >
<title>[libwangw.so] (3 samples, 0.01%)</title><rect x="990.6" y="645" width="0.2" height="15.0" fill="rgb(207,220,12)" rx="2" ry="2" />
<text x="993.62" y="655.5" ></text>
</g>
<g >
<title>rd_kafka_msg_partitioner (3 samples, 0.01%)</title><rect x="362.9" y="485" width="0.1" height="15.0" fill="rgb(215,157,47)" rx="2" ry="2" />
<text x="365.87" y="495.5" ></text>
</g>
<g >
<title>_IO_vsnprintf (4 samples, 0.02%)</title><rect x="829.6" y="517" width="0.3" height="15.0" fill="rgb(247,209,0)" rx="2" ry="2" />
<text x="832.64" y="527.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (718 samples, 3.59%)</title><rect x="115.9" y="709" width="42.3" height="15.0" fill="rgb(252,70,33)" rx="2" ry="2" />
<text x="118.88" y="719.5" >mso..</text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="401.6" y="405" width="0.1" height="15.0" fill="rgb(222,152,40)" rx="2" ry="2" />
<text x="404.56" y="415.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (6 samples, 0.03%)</title><rect x="235.9" y="773" width="0.3" height="15.0" fill="rgb(205,151,26)" rx="2" ry="2" />
<text x="238.87" y="783.5" ></text>
</g>
<g >
<title>Maat_fqdn_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="991.6" y="661" width="0.1" height="15.0" fill="rgb(208,20,14)" rx="2" ry="2" />
<text x="994.56" y="671.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (2 samples, 0.01%)</title><rect x="948.1" y="597" width="0.2" height="15.0" fill="rgb(253,84,41)" rx="2" ry="2" />
<text x="951.15" y="607.5" ></text>
</g>
<g >
<title>sapp_dup_pkt_mark_tcp (401 samples, 2.00%)</title><rect x="700.8" y="581" width="23.7" height="15.0" fill="rgb(237,12,25)" rx="2" ry="2" />
<text x="703.81" y="591.5" >s..</text>
</g>
<g >
<title>_IO_vsnprintf (21 samples, 0.10%)</title><rect x="318.9" y="501" width="1.3" height="15.0" fill="rgb(242,117,39)" rx="2" ry="2" />
<text x="321.92" y="511.5" ></text>
</g>
<g >
<title>[sapp] (40 samples, 0.20%)</title><rect x="1016.0" y="725" width="2.3" height="15.0" fill="rgb(254,71,32)" rx="2" ry="2" />
<text x="1018.98" y="735.5" ></text>
</g>
<g >
<title>SSL_ENTRY (10 samples, 0.05%)</title><rect x="683.6" y="485" width="0.6" height="15.0" fill="rgb(222,188,52)" rx="2" ry="2" />
<text x="686.59" y="495.5" ></text>
</g>
<g >
<title>__sprintf (27 samples, 0.13%)</title><rect x="388.7" y="533" width="1.6" height="15.0" fill="rgb(233,99,30)" rx="2" ry="2" />
<text x="391.70" y="543.5" ></text>
</g>
<g >
<title>[libMV_sketch.so.2.1] (3 samples, 0.01%)</title><rect x="861.0" y="453" width="0.1" height="15.0" fill="rgb(247,150,9)" rx="2" ry="2" />
<text x="863.96" y="463.5" ></text>
</g>
<g >
<title>__snprintf (5 samples, 0.02%)</title><rect x="979.4" y="629" width="0.2" height="15.0" fill="rgb(220,57,30)" rx="2" ry="2" />
<text x="982.35" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="924.9" y="677" width="0.2" height="15.0" fill="rgb(236,19,15)" rx="2" ry="2" />
<text x="927.91" y="687.5" ></text>
</g>
<g >
<title>TLD_append (5 samples, 0.02%)</title><rect x="303.7" y="469" width="0.3" height="15.0" fill="rgb(241,128,46)" rx="2" ry="2" />
<text x="306.70" y="479.5" ></text>
</g>
<g >
<title>tsg_record_udp_entry (8 samples, 0.04%)</title><rect x="388.2" y="549" width="0.5" height="15.0" fill="rgb(248,4,22)" rx="2" ry="2" />
<text x="391.23" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="569.3" y="373" width="0.1" height="15.0" fill="rgb(253,53,32)" rx="2" ry="2" />
<text x="572.33" y="383.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="581" width="0.2" height="15.0" fill="rgb(207,224,17)" rx="2" ry="2" />
<text x="987.84" y="591.5" ></text>
</g>
<g >
<title>Maat_clean_status (7 samples, 0.03%)</title><rect x="831.6" y="517" width="0.5" height="15.0" fill="rgb(238,90,43)" rx="2" ry="2" />
<text x="834.65" y="527.5" ></text>
</g>
<g >
<title>sapp_mem_malloc (5 samples, 0.02%)</title><rect x="543.0" y="549" width="0.3" height="15.0" fill="rgb(209,216,50)" rx="2" ry="2" />
<text x="545.96" y="559.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="984.8" y="597" width="0.2" height="15.0" fill="rgb(212,123,50)" rx="2" ry="2" />
<text x="987.84" y="607.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (2 samples, 0.01%)</title><rect x="367.5" y="517" width="0.1" height="15.0" fill="rgb(247,35,18)" rx="2" ry="2" />
<text x="370.47" y="527.5" ></text>
</g>
<g >
<title>rd_kafka_msg_new0 (4 samples, 0.02%)</title><rect x="996.0" y="629" width="0.2" height="15.0" fill="rgb(217,32,8)" rx="2" ry="2" />
<text x="998.99" y="639.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="799.6" y="437" width="0.1" height="15.0" fill="rgb(236,93,21)" rx="2" ry="2" />
<text x="802.62" y="447.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (6 samples, 0.03%)</title><rect x="307.5" y="469" width="0.4" height="15.0" fill="rgb(244,175,26)" rx="2" ry="2" />
<text x="310.54" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.02%)</title><rect x="593.2" y="389" width="0.2" height="15.0" fill="rgb(214,73,11)" rx="2" ry="2" />
<text x="596.16" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="792.4" y="485" width="0.1" height="15.0" fill="rgb(240,89,39)" rx="2" ry="2" />
<text x="795.36" y="495.5" ></text>
</g>
<g >
<title>MESA_handle_runtime_log (5 samples, 0.02%)</title><rect x="400.4" y="533" width="0.3" height="15.0" fill="rgb(228,28,45)" rx="2" ry="2" />
<text x="403.44" y="543.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (9 samples, 0.04%)</title><rect x="399.4" y="581" width="0.6" height="15.0" fill="rgb(239,146,9)" rx="2" ry="2" />
<text x="402.44" y="591.5" ></text>
</g>
<g >
<title>[libqmbundle.so.tmp.A5gYAQ] (2 samples, 0.01%)</title><rect x="1015.6" y="453" width="0.1" height="15.0" fill="rgb(225,69,9)" rx="2" ry="2" />
<text x="1018.57" y="463.5" ></text>
</g>
<g >
<title>TLD_append_streaminfo (3 samples, 0.01%)</title><rect x="973.6" y="565" width="0.1" height="15.0" fill="rgb(214,133,40)" rx="2" ry="2" />
<text x="976.57" y="575.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (8 samples, 0.04%)</title><rect x="1010.4" y="373" width="0.5" height="15.0" fill="rgb(251,71,14)" rx="2" ry="2" />
<text x="1013.44" y="383.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (6 samples, 0.03%)</title><rect x="590.4" y="309" width="0.3" height="15.0" fill="rgb(225,198,47)" rx="2" ry="2" />
<text x="593.38" y="319.5" ></text>
</g>
<g >
<title>tsg_l7_protocol_name2id (3 samples, 0.01%)</title><rect x="991.7" y="677" width="0.2" height="15.0" fill="rgb(253,63,17)" rx="2" ry="2" />
<text x="994.68" y="687.5" ></text>
</g>
<g >
<title>Maat_ip_plugin_get_EX_data (2 samples, 0.01%)</title><rect x="998.5" y="661" width="0.1" height="15.0" fill="rgb(243,227,4)" rx="2" ry="2" />
<text x="1001.47" y="671.5" ></text>
</g>
<g >
<title>http_doWithDefaultRegion (2 samples, 0.01%)</title><rect x="420.4" y="645" width="0.2" height="15.0" fill="rgb(245,156,12)" rx="2" ry="2" />
<text x="423.44" y="655.5" ></text>
</g>
<g >
<title>http_callPlugin (3 samples, 0.01%)</title><rect x="420.2" y="645" width="0.2" height="15.0" fill="rgb(216,205,35)" rx="2" ry="2" />
<text x="423.20" y="655.5" ></text>
</g>
<g >
<title>http_callPluginField (2 samples, 0.01%)</title><rect x="984.7" y="741" width="0.1" height="15.0" fill="rgb(209,28,27)" rx="2" ry="2" />
<text x="987.66" y="751.5" ></text>
</g>
<g >
<title>http_doWithDefaultData (5 samples, 0.02%)</title><rect x="977.1" y="597" width="0.3" height="15.0" fill="rgb(247,125,9)" rx="2" ry="2" />
<text x="980.11" y="607.5" ></text>
</g>
<g >
<title>[libmaatframe.so.3.6] (3 samples, 0.01%)</title><rect x="976.5" y="597" width="0.1" height="15.0" fill="rgb(234,200,23)" rx="2" ry="2" />
<text x="979.46" y="607.5" ></text>
</g>
<g >
<title>[tsg_master.so] (2 samples, 0.01%)</title><rect x="1002.4" y="645" width="0.1" height="15.0" fill="rgb(234,57,2)" rx="2" ry="2" />
<text x="1005.42" y="655.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (7 samples, 0.03%)</title><rect x="1010.4" y="309" width="0.5" height="15.0" fill="rgb(237,120,29)" rx="2" ry="2" />
<text x="1013.44" y="319.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2 samples, 0.01%)</title><rect x="990.5" y="533" width="0.1" height="15.0" fill="rgb(239,47,41)" rx="2" ry="2" />
<text x="993.50" y="543.5" ></text>
</g>
<g >
<title>operator new (3 samples, 0.01%)</title><rect x="573.3" y="325" width="0.2" height="15.0" fill="rgb(221,163,50)" rx="2" ry="2" />
<text x="576.28" y="335.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (36 samples, 0.18%)</title><rect x="397.3" y="565" width="2.1" height="15.0" fill="rgb(254,1,54)" rx="2" ry="2" />
<text x="400.32" y="575.5" ></text>
</g>
<g >
<title>tsg_scan_nesting_addr (110 samples, 0.55%)</title><rect x="367.9" y="549" width="6.5" height="15.0" fill="rgb(250,82,15)" rx="2" ry="2" />
<text x="370.88" y="559.5" ></text>
</g>
<g >
<title>[tsg_master.so] (3 samples, 0.01%)</title><rect x="386.0" y="485" width="0.2" height="15.0" fill="rgb(230,116,52)" rx="2" ry="2" />
<text x="389.05" y="495.5" ></text>
</g>
<g >
<title>malloc_consolidate (2 samples, 0.01%)</title><rect x="335.0" y="325" width="0.1" height="15.0" fill="rgb(238,218,21)" rx="2" ry="2" />
<text x="337.97" y="335.5" ></text>
</g>
<g >
<title>plugin_call_streamentry (24 samples, 0.12%)</title><rect x="926.6" y="661" width="1.4" height="15.0" fill="rgb(253,215,24)" rx="2" ry="2" />
<text x="929.56" y="671.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="589.1" y="277" width="0.2" height="15.0" fill="rgb(253,147,43)" rx="2" ry="2" />
<text x="592.15" y="287.5" ></text>
</g>
<g >
<title>Maat_hierarchy_compile_mid_udpate (48 samples, 0.24%)</title><rect x="48.0" y="757" width="2.8" height="15.0" fill="rgb(220,121,51)" rx="2" ry="2" />
<text x="50.99" y="767.5" ></text>
</g>
<g >
<title>TLD_create (4 samples, 0.02%)</title><rect x="999.8" y="693" width="0.2" height="15.0" fill="rgb(253,186,30)" rx="2" ry="2" />
<text x="1002.76" y="703.5" ></text>
</g>
<g >
<title>[libcrypto.so.1.0.2k] (16 samples, 0.08%)</title><rect x="330.2" y="245" width="0.9" height="15.0" fill="rgb(231,132,47)" rx="2" ry="2" />
<text x="333.19" y="255.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="926.4" y="661" width="0.2" height="15.0" fill="rgb(223,159,22)" rx="2" ry="2" />
<text x="929.44" y="671.5" ></text>
</g>
<g >
<title>region_compile (378 samples, 1.89%)</title><rect x="256.9" y="773" width="22.3" height="15.0" fill="rgb(211,132,19)" rx="2" ry="2" />
<text x="259.92" y="783.5" >r..</text>
</g>
<g >
<title>stream_process (7 samples, 0.03%)</title><rect x="402.2" y="709" width="0.4" height="15.0" fill="rgb(206,161,39)" rx="2" ry="2" />
<text x="405.15" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.02%)</title><rect x="301.6" y="357" width="0.3" height="15.0" fill="rgb(252,162,9)" rx="2" ry="2" />
<text x="304.64" y="367.5" ></text>
</g>
<g >
<title>ASN1_mbstring_ncopy (7 samples, 0.03%)</title><rect x="331.2" y="261" width="0.5" height="15.0" fill="rgb(254,81,18)" rx="2" ry="2" />
<text x="334.25" y="271.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.01%)</title><rect x="763.4" y="501" width="0.1" height="15.0" fill="rgb(216,157,23)" rx="2" ry="2" />
<text x="766.40" y="511.5" ></text>
</g>
<g >
<title>[libMESA_field_stat2.so] (2 samples, 0.01%)</title><rect x="818.2" y="485" width="0.1" height="15.0" fill="rgb(244,33,43)" rx="2" ry="2" />
<text x="821.20" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.01%)</title><rect x="336.2" y="373" width="0.1" height="15.0" fill="rgb(224,67,17)" rx="2" ry="2" />
<text x="339.20" y="383.5" ></text>
</g>
<g >
<title>[tsg_conn_sketch.so] (2 samples, 0.01%)</title><rect x="1016.6" y="485" width="0.1" height="15.0" fill="rgb(246,76,54)" rx="2" ry="2" />
<text x="1019.57" y="495.5" ></text>
</g>
<g >
<title>__IO_vsprintf (2 samples, 0.01%)</title><rect x="1017.6" y="421" width="0.2" height="15.0" fill="rgb(208,51,40)" rx="2" ry="2" />
<text x="1020.64" y="431.5" ></text>
</g>
<g >
<title>ASN1_item_ex_d2i (5 samples, 0.02%)</title><rect x="591.2" y="373" width="0.2" height="15.0" fill="rgb(229,9,24)" rx="2" ry="2" />
<text x="594.15" y="383.5" ></text>
</g>
<g >
<title>[app_sketch_local.so] (5 samples, 0.02%)</title><rect x="400.4" y="549" width="0.3" height="15.0" fill="rgb(233,66,7)" rx="2" ry="2" />
<text x="403.44" y="559.5" ></text>
</g>
<g >
<title>ssl_callPlugins (2 samples, 0.01%)</title><rect x="400.7" y="629" width="0.2" height="15.0" fill="rgb(229,95,21)" rx="2" ry="2" />
<text x="403.74" y="639.5" ></text>
</g>
<g >
<title>lrustream (8 samples, 0.04%)</title><rect x="809.3" y="597" width="0.5" height="15.0" fill="rgb(205,89,51)" rx="2" ry="2" />
<text x="812.29" y="607.5" ></text>
</g>
</g>
</svg>