Page MenuHomePhabricator
Authored By
matmarex
Jan 27 2024, 2:33 AM
Size
323 KB
Referenced Files
None
Subscribers
None

pprof-flamegraph.svg

This file is larger than 256 KB, so syntax highlighting was skipped.
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1462" onload="init(evt)" viewBox="0 0 1200 1462" 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="1462.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1445" > </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="1445" > </text>
<g id="frames">
<g >
<title>JobQueue::push (1,560 samples, 0.04%)</title><rect x="357.0" y="1045" width="0.4" height="15.0" fill="rgb(227,3,41)" rx="2" ry="2" />
<text x="360.01" y="1055.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (448 samples, 0.01%)</title><rect x="626.3" y="565" width="0.1" height="15.0" fill="rgb(242,1,44)" rx="2" ry="2" />
<text x="629.27" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::load (376 samples, 0.01%)</title><rect x="684.6" y="709" width="0.1" height="15.0" fill="rgb(207,102,13)" rx="2" ry="2" />
<text x="687.55" y="719.5" ></text>
</g>
<g >
<title>Message::text (3,656 samples, 0.09%)</title><rect x="637.3" y="741" width="1.0" height="15.0" fill="rgb(246,210,45)" rx="2" ry="2" />
<text x="640.27" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getInterpreter (214,093 samples, 5.06%)</title><rect x="689.0" y="805" width="59.8" height="15.0" fill="rgb(244,117,31)" rx="2" ry="2" />
<text x="692.03" y="815.5" >MediaW..</text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::fetchBlobs (12,896 samples, 0.30%)</title><rect x="749.3" y="661" width="3.6" height="15.0" fill="rgb(243,187,16)" rx="2" ry="2" />
<text x="752.32" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::newModule (6,184 samples, 0.15%)</title><rect x="978.8" y="277" width="1.7" height="15.0" fill="rgb(235,178,42)" rx="2" ry="2" />
<text x="981.80" y="287.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="823.9" y="133" width="0.1" height="15.0" fill="rgb(218,225,9)" rx="2" ry="2" />
<text x="826.87" y="143.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (12,896 samples, 0.30%)</title><rect x="749.3" y="613" width="3.6" height="15.0" fill="rgb(236,200,22)" rx="2" ry="2" />
<text x="752.32" y="623.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoContentHandler::__construct (376 samples, 0.01%)</title><rect x="980.6" y="101" width="0.1" height="15.0" fill="rgb(213,153,32)" rx="2" ry="2" />
<text x="983.56" y="111.5" ></text>
</g>
<g >
<title>MediaWiki\PoolCounter\PoolWorkArticleViewCurrent::doWork (4,138,581 samples, 97.86%)</title><rect x="19.5" y="1333" width="1154.8" height="15.0" fill="rgb(212,179,35)" rx="2" ry="2" />
<text x="22.48" y="1343.5" >MediaWiki\PoolCounter\PoolWorkArticleViewCurrent::doWork</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (5,048 samples, 0.12%)</title><rect x="808.3" y="165" width="1.4" height="15.0" fill="rgb(243,24,32)" rx="2" ry="2" />
<text x="811.29" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (12,896 samples, 0.30%)</title><rect x="749.3" y="757" width="3.6" height="15.0" fill="rgb(244,10,47)" rx="2" ry="2" />
<text x="752.32" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (1,040 samples, 0.02%)</title><rect x="356.7" y="1077" width="0.3" height="15.0" fill="rgb(224,174,30)" rx="2" ry="2" />
<text x="359.72" y="1087.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="615.8" y="533" width="0.1" height="15.0" fill="rgb(223,71,21)" rx="2" ry="2" />
<text x="618.80" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (3,480 samples, 0.08%)</title><rect x="489.8" y="549" width="1.0" height="15.0" fill="rgb(209,12,16)" rx="2" ry="2" />
<text x="492.80" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (816 samples, 0.02%)</title><rect x="981.1" y="645" width="0.2" height="15.0" fill="rgb(252,229,51)" rx="2" ry="2" />
<text x="984.08" y="655.5" ></text>
</g>
<g >
<title>JobQueueDB::{closure} (376 samples, 0.01%)</title><rect x="357.0" y="949" width="0.1" height="15.0" fill="rgb(252,67,10)" rx="2" ry="2" />
<text x="360.01" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (816 samples, 0.02%)</title><rect x="981.1" y="629" width="0.2" height="15.0" fill="rgb(251,146,46)" rx="2" ry="2" />
<text x="984.08" y="639.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (7,208 samples, 0.17%)</title><rect x="624.2" y="581" width="2.0" height="15.0" fill="rgb(234,227,52)" rx="2" ry="2" />
<text x="627.24" y="591.5" ></text>
</g>
<g >
<title>SectionProfiler::updateEntry (408 samples, 0.01%)</title><rect x="684.2" y="789" width="0.1" height="15.0" fill="rgb(250,152,53)" rx="2" ry="2" />
<text x="687.23" y="799.5" ></text>
</g>
<g >
<title>PPFrame_Hash::__construct (432 samples, 0.01%)</title><rect x="1070.4" y="933" width="0.1" height="15.0" fill="rgb(250,83,12)" rx="2" ry="2" />
<text x="1073.37" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Poem\PoemProcessor::wtPostprocess (65,536 samples, 1.55%)</title><rect x="1115.8" y="1029" width="18.3" height="15.0" fill="rgb(205,120,54)" rx="2" ry="2" />
<text x="1118.81" y="1039.5" ></text>
</g>
<g >
<title>spl_autoload_call (13,592 samples, 0.32%)</title><rect x="1141.4" y="885" width="3.8" height="15.0" fill="rgb(237,169,45)" rx="2" ry="2" />
<text x="1144.37" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageFactory::getLanguage (400 samples, 0.01%)</title><rect x="19.2" y="1285" width="0.1" height="15.0" fill="rgb(253,88,51)" rx="2" ry="2" />
<text x="22.23" y="1295.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::patternToRegex (512 samples, 0.01%)</title><rect x="1113.3" y="501" width="0.2" height="15.0" fill="rgb(209,33,34)" rx="2" ry="2" />
<text x="1116.32" y="511.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getBaseRegex (1,095 samples, 0.03%)</title><rect x="409.7" y="645" width="0.3" height="15.0" fill="rgb(229,87,53)" rx="2" ry="2" />
<text x="412.65" y="655.5" ></text>
</g>
<g >
<title>Parser::stripSectionName (496 samples, 0.01%)</title><rect x="980.8" y="709" width="0.1" height="15.0" fill="rgb(249,173,7)" rx="2" ry="2" />
<text x="983.77" y="719.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,076 samples, 14.95%)</title><rect x="804.3" y="389" width="176.4" height="15.0" fill="rgb(234,203,3)" rx="2" ry="2" />
<text x="807.30" y="399.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::getOldestReply (384 samples, 0.01%)</title><rect x="12.2" y="1333" width="0.1" height="15.0" fill="rgb(246,209,17)" rx="2" ry="2" />
<text x="15.20" y="1343.5" ></text>
</g>
<g >
<title>ContextSource::getSkin (6,376 samples, 0.15%)</title><rect x="635.5" y="757" width="1.8" height="15.0" fill="rgb(206,228,15)" rx="2" ry="2" />
<text x="638.49" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::newAutodetectEngine (608 samples, 0.01%)</title><rect x="748.8" y="821" width="0.2" height="15.0" fill="rgb(253,226,23)" rx="2" ry="2" />
<text x="751.79" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesContentHandler::sanitize (772,120 samples, 18.26%)</title><rect x="410.8" y="613" width="215.4" height="15.0" fill="rgb(205,42,40)" rx="2" ry="2" />
<text x="413.80" y="623.5" >MediaWiki\Extension\Template..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (3,128 samples, 0.07%)</title><rect x="363.4" y="917" width="0.9" height="15.0" fill="rgb(247,66,30)" rx="2" ry="2" />
<text x="366.42" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssPosition3 (2,584 samples, 0.06%)</title><rect x="564.1" y="581" width="0.7" height="15.0" fill="rgb(230,4,47)" rx="2" ry="2" />
<text x="567.11" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::ustringGsub (2,160 samples, 0.05%)</title><rect x="402.9" y="597" width="0.6" height="15.0" fill="rgb(220,23,44)" rx="2" ry="2" />
<text x="405.91" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::executeInternal (65,536 samples, 1.55%)</title><rect x="364.3" y="885" width="18.3" height="15.0" fill="rgb(214,152,34)" rx="2" ry="2" />
<text x="367.30" y="895.5" ></text>
</g>
<g >
<title>ParserCache::makeParserOutputKey (472 samples, 0.01%)</title><rect x="19.2" y="1333" width="0.1" height="15.0" fill="rgb(218,137,0)" rx="2" ry="2" />
<text x="22.21" y="1343.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (472 samples, 0.01%)</title><rect x="670.5" y="773" width="0.1" height="15.0" fill="rgb(249,125,29)" rx="2" ry="2" />
<text x="673.51" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (2,560 samples, 0.06%)</title><rect x="988.8" y="645" width="0.7" height="15.0" fill="rgb(231,133,1)" rx="2" ry="2" />
<text x="991.83" y="655.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (154,136 samples, 3.64%)</title><rect x="1070.7" y="677" width="43.1" height="15.0" fill="rgb(246,45,25)" rx="2" ry="2" />
<text x="1073.74" y="687.5" >PPFr..</text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::onTransactionPreCommitOrIdle (1,560 samples, 0.04%)</title><rect x="357.0" y="965" width="0.4" height="15.0" fill="rgb(214,182,2)" rx="2" ry="2" />
<text x="360.01" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getInterpreter (583,036 samples, 13.79%)</title><rect x="804.3" y="261" width="162.7" height="15.0" fill="rgb(253,35,33)" rx="2" ry="2" />
<text x="807.31" y="271.5" >MediaWiki\Extension\..</text>
</g>
<g >
<title>PPTemplateFrame_Hash::cachedExpand (16,584 samples, 0.39%)</title><rect x="981.3" y="533" width="4.7" height="15.0" fill="rgb(220,193,4)" rx="2" ry="2" />
<text x="984.32" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContent (10,080 samples, 0.24%)</title><rect x="685.2" y="677" width="2.8" height="15.0" fill="rgb(233,87,39)" rx="2" ry="2" />
<text x="688.19" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::ifeq (840 samples, 0.02%)</title><rect x="980.7" y="805" width="0.2" height="15.0" fill="rgb(248,57,48)" rx="2" ry="2" />
<text x="983.67" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::getObjectFromSpec (448 samples, 0.01%)</title><rect x="980.5" y="117" width="0.2" height="15.0" fill="rgb(249,170,13)" rx="2" ry="2" />
<text x="983.54" y="127.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Hooks::MediaWiki\Extension\QuickInstantCommons\{closure} (13,184 samples, 0.31%)</title><rect x="19.5" y="1125" width="3.7" height="15.0" fill="rgb(214,204,1)" rx="2" ry="2" />
<text x="22.55" y="1135.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (3,128 samples, 0.07%)</title><rect x="363.4" y="885" width="0.9" height="15.0" fill="rgb(234,189,7)" rx="2" ry="2" />
<text x="366.42" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::secureAndSplit (360 samples, 0.01%)</title><rect x="664.8" y="837" width="0.1" height="15.0" fill="rgb(213,42,0)" rx="2" ry="2" />
<text x="667.85" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\CLDR\LanguageNames::loadLanguage (110,376 samples, 2.61%)</title><rect x="1082.2" y="373" width="30.8" height="15.0" fill="rgb(212,104,2)" rx="2" ry="2" />
<text x="1085.19" y="383.5" >Me..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\ExtensionHandler::onTag (798,970 samples, 18.89%)</title><rect x="403.7" y="757" width="222.9" height="15.0" fill="rgb(205,70,0)" rx="2" ry="2" />
<text x="406.65" y="767.5" >Wikimedia\Parsoid\Wt2Html\TT\..</text>
</g>
<g >
<title>AutoLoader::autoload (76,852 samples, 1.82%)</title><rect x="945.0" y="181" width="21.4" height="15.0" fill="rgb(229,195,49)" rx="2" ry="2" />
<text x="947.96" y="191.5" >A..</text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getHash (2,280 samples, 0.05%)</title><rect x="988.2" y="725" width="0.6" height="15.0" fill="rgb(218,88,24)" rx="2" ry="2" />
<text x="991.16" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::getObjectFromSpec (448 samples, 0.01%)</title><rect x="626.3" y="485" width="0.1" height="15.0" fill="rgb(215,167,42)" rx="2" ry="2" />
<text x="629.27" y="495.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="809.6" y="149" width="0.1" height="15.0" fill="rgb(225,63,53)" rx="2" ry="2" />
<text x="812.58" y="159.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::begin (808 samples, 0.02%)</title><rect x="357.1" y="933" width="0.2" height="15.0" fill="rgb(240,18,46)" rx="2" ry="2" />
<text x="360.12" y="943.5" ></text>
</g>
<g >
<title>fread (8,192 samples, 0.19%)</title><rect x="745.9" y="693" width="2.2" height="15.0" fill="rgb(224,219,23)" rx="2" ry="2" />
<text x="748.86" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicPropertyFallback (376 samples, 0.01%)</title><rect x="352.1" y="997" width="0.1" height="15.0" fill="rgb(241,194,24)" rx="2" ry="2" />
<text x="355.06" y="1007.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicProperty (2,256 samples, 0.05%)</title><rect x="664.1" y="821" width="0.6" height="15.0" fill="rgb(221,12,26)" rx="2" ry="2" />
<text x="667.11" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\Hooks::handleTag (773,000 samples, 18.28%)</title><rect x="410.8" y="629" width="215.7" height="15.0" fill="rgb(231,217,7)" rx="2" ry="2" />
<text x="413.78" y="639.5" >MediaWiki\Extension\Template..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Cite\RefProcessor::wtPostprocess (7,360 samples, 0.17%)</title><rect x="1113.8" y="1029" width="2.0" height="15.0" fill="rgb(249,47,3)" rx="2" ry="2" />
<text x="1116.75" y="1039.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\CommentFormatter::addDiscussionToolsInternal (4,496 samples, 0.11%)</title><rect x="404.4" y="613" width="1.3" height="15.0" fill="rgb(215,43,40)" rx="2" ry="2" />
<text x="407.42" y="623.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,076 samples, 14.95%)</title><rect x="804.3" y="325" width="176.4" height="15.0" fill="rgb(215,21,13)" rx="2" ry="2" />
<text x="807.30" y="335.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>Parser::replaceVariables (1,128 samples, 0.03%)</title><rect x="637.3" y="661" width="0.3" height="15.0" fill="rgb(215,26,53)" rx="2" ry="2" />
<text x="640.27" y="671.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="613.1" y="517" width="0.1" height="15.0" fill="rgb(209,198,53)" rx="2" ry="2" />
<text x="616.13" y="527.5" ></text>
</g>
<g >
<title>LocalisationCache::getItem (186,392 samples, 4.41%)</title><rect x="298.5" y="1109" width="52.0" height="15.0" fill="rgb(209,11,13)" rx="2" ry="2" />
<text x="301.48" y="1119.5" >Local..</text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Hooks\ParserHooks::transformHtml (4,496 samples, 0.11%)</title><rect x="404.4" y="645" width="1.3" height="15.0" fill="rgb(212,113,28)" rx="2" ry="2" />
<text x="407.42" y="655.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::tok (736 samples, 0.02%)</title><rect x="405.3" y="517" width="0.2" height="15.0" fill="rgb(247,150,44)" rx="2" ry="2" />
<text x="408.27" y="527.5" ></text>
</g>
<g >
<title>unserialize (376 samples, 0.01%)</title><rect x="684.6" y="645" width="0.1" height="15.0" fill="rgb(227,222,32)" rx="2" ry="2" />
<text x="687.55" y="655.5" ></text>
</g>
<g >
<title>ParserOptions::initialiseFromUser (512 samples, 0.01%)</title><rect x="1174.5" y="1349" width="0.1" height="15.0" fill="rgb(206,5,8)" rx="2" ry="2" />
<text x="1177.50" y="1359.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (816 samples, 0.02%)</title><rect x="981.1" y="757" width="0.2" height="15.0" fill="rgb(222,186,20)" rx="2" ry="2" />
<text x="984.08" y="767.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,140 samples, 14.95%)</title><rect x="804.3" y="549" width="176.4" height="15.0" fill="rgb(233,158,12)" rx="2" ry="2" />
<text x="807.28" y="559.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TemplateHandler::onTag (154,136 samples, 3.64%)</title><rect x="1070.7" y="757" width="43.1" height="15.0" fill="rgb(208,139,15)" rx="2" ry="2" />
<text x="1073.74" y="767.5" >Wiki..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (5,584 samples, 0.13%)</title><rect x="560.2" y="549" width="1.5" height="15.0" fill="rgb(208,210,48)" rx="2" ry="2" />
<text x="563.18" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="519.4" y="565" width="0.1" height="15.0" fill="rgb(214,31,41)" rx="2" ry="2" />
<text x="522.40" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (143,536 samples, 3.39%)</title><rect x="701.0" y="709" width="40.0" height="15.0" fill="rgb(224,116,7)" rx="2" ry="2" />
<text x="703.99" y="719.5" >Med..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (3,384 samples, 0.08%)</title><rect x="688.1" y="789" width="0.9" height="15.0" fill="rgb(246,6,12)" rx="2" ry="2" />
<text x="691.09" y="799.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (6,816 samples, 0.16%)</title><rect x="661.2" y="613" width="1.9" height="15.0" fill="rgb(247,103,52)" rx="2" ry="2" />
<text x="664.17" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parseblock (1,088 samples, 0.03%)</title><rect x="363.1" y="981" width="0.3" height="15.0" fill="rgb(213,121,1)" rx="2" ry="2" />
<text x="366.11" y="991.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (5,960 samples, 0.14%)</title><rect x="484.3" y="565" width="1.7" height="15.0" fill="rgb(246,72,42)" rx="2" ry="2" />
<text x="487.30" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\PipelineUtils::processContentInPipeline (154,136 samples, 3.64%)</title><rect x="1070.7" y="837" width="43.1" height="15.0" fill="rgb(241,160,36)" rx="2" ry="2" />
<text x="1073.74" y="847.5" >Wiki..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="610.8" y="517" width="0.2" height="15.0" fill="rgb(219,93,17)" rx="2" ry="2" />
<text x="613.76" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (472 samples, 0.01%)</title><rect x="670.5" y="805" width="0.1" height="15.0" fill="rgb(254,211,20)" rx="2" ry="2" />
<text x="673.51" y="815.5" ></text>
</g>
<g >
<title>SectionProfileCallback::__destruct (408 samples, 0.01%)</title><rect x="684.2" y="821" width="0.1" height="15.0" fill="rgb(246,200,54)" rx="2" ry="2" />
<text x="687.23" y="831.5" ></text>
</g>
<g >
<title>spl_autoload_call (38,528 samples, 0.91%)</title><rect x="1134.4" y="933" width="10.8" height="15.0" fill="rgb(230,193,41)" rx="2" ry="2" />
<text x="1137.41" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="493.1" y="517" width="0.2" height="15.0" fill="rgb(231,3,11)" rx="2" ry="2" />
<text x="496.14" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (6,768 samples, 0.16%)</title><rect x="573.3" y="565" width="1.9" height="15.0" fill="rgb(210,82,5)" rx="2" ry="2" />
<text x="576.30" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::capture (592 samples, 0.01%)</title><rect x="609.0" y="549" width="0.2" height="15.0" fill="rgb(221,51,6)" rx="2" ry="2" />
<text x="611.99" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::getPrefixedDBkey (440 samples, 0.01%)</title><rect x="665.2" y="901" width="0.1" height="15.0" fill="rgb(215,77,34)" rx="2" ry="2" />
<text x="668.21" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="598.7" y="549" width="1.8" height="15.0" fill="rgb(206,180,6)" rx="2" ry="2" />
<text x="601.74" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotRecords (1,040 samples, 0.02%)</title><rect x="356.7" y="1061" width="0.3" height="15.0" fill="rgb(231,206,36)" rx="2" ry="2" />
<text x="359.72" y="1071.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (920 samples, 0.02%)</title><rect x="943.0" y="165" width="0.2" height="15.0" fill="rgb(250,47,49)" rx="2" ry="2" />
<text x="945.97" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1125" width="0.1" height="15.0" fill="rgb(235,67,2)" rx="2" ry="2" />
<text x="15.20" y="1135.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="613.0" y="517" width="0.1" height="15.0" fill="rgb(231,27,43)" rx="2" ry="2" />
<text x="616.03" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="554.9" y="565" width="0.1" height="15.0" fill="rgb(221,146,0)" rx="2" ry="2" />
<text x="557.86" y="575.5" ></text>
</g>
<g >
<title>strtr (400 samples, 0.01%)</title><rect x="818.3" y="181" width="0.1" height="15.0" fill="rgb(250,225,1)" rx="2" ry="2" />
<text x="821.27" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LanguageLibrary::register (15,008 samples, 0.35%)</title><rect x="691.3" y="741" width="4.2" height="15.0" fill="rgb(246,100,54)" rx="2" ry="2" />
<text x="694.31" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UriLibrary::register (1,904 samples, 0.05%)</title><rect x="699.9" y="741" width="0.5" height="15.0" fill="rgb(226,192,9)" rx="2" ry="2" />
<text x="702.90" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setPageTitleInternal (3,656 samples, 0.09%)</title><rect x="637.3" y="773" width="1.0" height="15.0" fill="rgb(213,14,30)" rx="2" ry="2" />
<text x="640.27" y="783.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (72,176 samples, 1.71%)</title><rect x="784.1" y="709" width="20.2" height="15.0" fill="rgb(222,103,53)" rx="2" ry="2" />
<text x="787.13" y="719.5" ></text>
</g>
<g >
<title>Parser::fetchTemplateAndTitle (13,648 samples, 0.32%)</title><rect x="749.1" y="821" width="3.8" height="15.0" fill="rgb(214,189,30)" rx="2" ry="2" />
<text x="752.11" y="831.5" ></text>
</g>
<g >
<title>SectionProfiler::scopedProfileIn (752 samples, 0.02%)</title><rect x="1067.9" y="901" width="0.2" height="15.0" fill="rgb(235,66,27)" rx="2" ry="2" />
<text x="1070.93" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (15,456 samples, 0.37%)</title><rect x="741.3" y="741" width="4.3" height="15.0" fill="rgb(225,173,2)" rx="2" ry="2" />
<text x="744.28" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (154,104 samples, 3.64%)</title><rect x="1070.7" y="549" width="43.0" height="15.0" fill="rgb(254,105,5)" rx="2" ry="2" />
<text x="1073.74" y="559.5" >Medi..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (154,136 samples, 3.64%)</title><rect x="1070.7" y="805" width="43.1" height="15.0" fill="rgb(207,39,16)" rx="2" ry="2" />
<text x="1073.74" y="815.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (10,592 samples, 0.25%)</title><rect x="360.1" y="917" width="2.9" height="15.0" fill="rgb(238,184,0)" rx="2" ry="2" />
<text x="363.09" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::__construct (2,632 samples, 0.06%)</title><rect x="1175.1" y="1301" width="0.7" height="15.0" fill="rgb(244,96,9)" rx="2" ry="2" />
<text x="1178.11" y="1311.5" ></text>
</g>
<g >
<title>mysqli::query (28,928 samples, 0.68%)</title><rect x="1181.8" y="1269" width="8.1" height="15.0" fill="rgb(228,140,43)" rx="2" ry="2" />
<text x="1184.84" y="1279.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (154,136 samples, 3.64%)</title><rect x="1070.7" y="773" width="43.1" height="15.0" fill="rgb(209,46,11)" rx="2" ry="2" />
<text x="1073.74" y="783.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (1,504 samples, 0.04%)</title><rect x="695.1" y="725" width="0.4" height="15.0" fill="rgb(208,102,48)" rx="2" ry="2" />
<text x="698.08" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::isAlwaysKnown (9,592 samples, 0.23%)</title><rect x="1157.0" y="981" width="2.7" height="15.0" fill="rgb(236,133,23)" rx="2" ry="2" />
<text x="1160.03" y="991.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::capture (592 samples, 0.01%)</title><rect x="435.1" y="581" width="0.1" height="15.0" fill="rgb(226,17,33)" rx="2" ry="2" />
<text x="438.06" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\Dispatcher::doctype (440 samples, 0.01%)</title><rect x="1174.6" y="1301" width="0.2" height="15.0" fill="rgb(227,17,24)" rx="2" ry="2" />
<text x="1177.65" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="600.0" y="533" width="0.3" height="15.0" fill="rgb(231,163,19)" rx="2" ry="2" />
<text x="602.96" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Page\ParserOutputAccess::newPoolWorkArticleView (448 samples, 0.01%)</title><rect x="19.4" y="1349" width="0.1" height="15.0" fill="rgb(207,175,49)" rx="2" ry="2" />
<text x="22.35" y="1359.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchStartToEnd (1,688 samples, 0.04%)</title><rect x="989.6" y="869" width="0.4" height="15.0" fill="rgb(209,50,28)" rx="2" ry="2" />
<text x="992.57" y="879.5" ></text>
</g>
<g >
<title>ObjectCache::newFromId (760 samples, 0.02%)</title><rect x="943.2" y="181" width="0.2" height="15.0" fill="rgb(208,4,50)" rx="2" ry="2" />
<text x="946.23" y="191.5" ></text>
</g>
<g >
<title>require /var/www/html/w/extensions/Scribunto/includes/Engines/LuaSandbox/LuaSandboxInterpreter.php (4,528 samples, 0.11%)</title><rect x="977.5" y="229" width="1.3" height="15.0" fill="rgb(205,41,50)" rx="2" ry="2" />
<text x="980.54" y="239.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (143,360 samples, 3.39%)</title><rect x="701.0" y="693" width="40.0" height="15.0" fill="rgb(245,9,37)" rx="2" ry="2" />
<text x="704.04" y="703.5" >Med..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::newRevisionFromRowAndSlots (7,568 samples, 0.18%)</title><rect x="350.7" y="1077" width="2.1" height="15.0" fill="rgb(238,92,54)" rx="2" ry="2" />
<text x="353.73" y="1087.5" ></text>
</g>
<g >
<title>MediaWiki\Page\PageProps::getProperties (5,520 samples, 0.13%)</title><rect x="10.5" y="1365" width="1.5" height="15.0" fill="rgb(219,215,49)" rx="2" ry="2" />
<text x="13.49" y="1375.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="830.3" y="149" width="0.2" height="15.0" fill="rgb(217,146,48)" rx="2" ry="2" />
<text x="833.34" y="159.5" ></text>
</g>
<g >
<title>Parser::setFunctionHook (2,968 samples, 0.07%)</title><rect x="646.6" y="581" width="0.8" height="15.0" fill="rgb(232,140,11)" rx="2" ry="2" />
<text x="649.56" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Config\SiteConfig::bswPagePropRegexp (19,952 samples, 0.47%)</title><rect x="357.5" y="981" width="5.6" height="15.0" fill="rgb(242,150,35)" rx="2" ry="2" />
<text x="360.54" y="991.5" ></text>
</g>
<g >
<title>Parser::clearState (920 samples, 0.02%)</title><rect x="1069.9" y="917" width="0.3" height="15.0" fill="rgb(239,117,53)" rx="2" ry="2" />
<text x="1072.95" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__wakeup (2,560 samples, 0.06%)</title><rect x="829.3" y="85" width="0.7" height="15.0" fill="rgb(227,184,42)" rx="2" ry="2" />
<text x="832.26" y="95.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (6,184 samples, 0.15%)</title><rect x="978.8" y="245" width="1.7" height="15.0" fill="rgb(238,53,30)" rx="2" ry="2" />
<text x="981.80" y="255.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (2,688 samples, 0.06%)</title><rect x="829.2" y="149" width="0.8" height="15.0" fill="rgb(242,201,45)" rx="2" ry="2" />
<text x="832.23" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Title\TitleFactory::newFromPageIdentity (3,168 samples, 0.07%)</title><rect x="351.3" y="1061" width="0.9" height="15.0" fill="rgb(226,138,45)" rx="2" ry="2" />
<text x="354.29" y="1071.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,880 samples, 0.04%)</title><rect x="568.1" y="549" width="0.5" height="15.0" fill="rgb(205,105,30)" rx="2" ry="2" />
<text x="571.08" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssBorderBackground3 (27,120 samples, 0.64%)</title><rect x="514.3" y="581" width="7.6" height="15.0" fill="rgb(243,162,54)" rx="2" ry="2" />
<text x="517.29" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onContentGetParserOutput (13,184 samples, 0.31%)</title><rect x="19.5" y="1189" width="3.7" height="15.0" fill="rgb(208,76,33)" rx="2" ry="2" />
<text x="22.55" y="1199.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (24,472 samples, 0.58%)</title><rect x="981.3" y="789" width="6.9" height="15.0" fill="rgb(252,186,17)" rx="2" ry="2" />
<text x="984.32" y="799.5" ></text>
</g>
<g >
<title>SectionProfiler::updateEntry (408 samples, 0.01%)</title><rect x="784.0" y="821" width="0.1" height="15.0" fill="rgb(246,148,51)" rx="2" ry="2" />
<text x="787.01" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (2,560 samples, 0.06%)</title><rect x="988.8" y="709" width="0.7" height="15.0" fill="rgb(225,150,2)" rx="2" ry="2" />
<text x="991.83" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (3,072 samples, 0.07%)</title><rect x="402.7" y="629" width="0.9" height="15.0" fill="rgb(231,45,7)" rx="2" ry="2" />
<text x="405.70" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\DOMPostProcessor::Wikimedia\Parsoid\Wt2Html\{closure} (164,868 samples, 3.90%)</title><rect x="1113.8" y="1045" width="46.0" height="15.0" fill="rgb(228,96,13)" rx="2" ry="2" />
<text x="1116.75" y="1055.5" >Wiki..</text>
</g>
<g >
<title>Parser::fetchTemplateAndTitle (480 samples, 0.01%)</title><rect x="980.5" y="277" width="0.2" height="15.0" fill="rgb(240,66,18)" rx="2" ry="2" />
<text x="983.53" y="287.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Hooks\ParserHooks::onParserAfterTidy (4,496 samples, 0.11%)</title><rect x="404.4" y="661" width="1.3" height="15.0" fill="rgb(213,57,0)" rx="2" ry="2" />
<text x="407.42" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (12,896 samples, 0.30%)</title><rect x="749.3" y="741" width="3.6" height="15.0" fill="rgb(224,136,39)" rx="2" ry="2" />
<text x="752.32" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssTextDecor3 (16,864 samples, 0.40%)</title><rect x="581.9" y="581" width="4.7" height="15.0" fill="rgb(230,87,52)" rx="2" ry="2" />
<text x="584.93" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (20,200 samples, 0.48%)</title><rect x="1176.2" y="1365" width="5.6" height="15.0" fill="rgb(211,221,31)" rx="2" ry="2" />
<text x="1179.16" y="1375.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,128 samples, 0.03%)</title><rect x="556.8" y="565" width="0.3" height="15.0" fill="rgb(235,189,39)" rx="2" ry="2" />
<text x="559.80" y="575.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (133,380 samples, 3.15%)</title><rect x="627.8" y="901" width="37.2" height="15.0" fill="rgb(245,182,18)" rx="2" ry="2" />
<text x="630.79" y="911.5" >Par..</text>
</g>
<g >
<title>Wikimedia\Rdbms\SelectQueryBuilder::fetchRow (872 samples, 0.02%)</title><rect x="350.5" y="1077" width="0.2" height="15.0" fill="rgb(211,191,8)" rx="2" ry="2" />
<text x="353.49" y="1087.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (536 samples, 0.01%)</title><rect x="11.9" y="1317" width="0.1" height="15.0" fill="rgb(219,212,30)" rx="2" ry="2" />
<text x="14.86" y="1327.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::getBlob (12,896 samples, 0.30%)</title><rect x="749.3" y="725" width="3.6" height="15.0" fill="rgb(217,152,51)" rx="2" ry="2" />
<text x="752.32" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::extTagToDOM (802,378 samples, 18.97%)</title><rect x="402.7" y="949" width="223.9" height="15.0" fill="rgb(230,100,21)" rx="2" ry="2" />
<text x="405.70" y="959.5" >Wikimedia\Parsoid\Ext\Parsoid..</text>
</g>
<g >
<title>PPFrame_Hash::expand (696 samples, 0.02%)</title><rect x="684.3" y="837" width="0.2" height="15.0" fill="rgb(232,28,31)" rx="2" ry="2" />
<text x="687.34" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Maintenance\PersistRevisionThreadItems::processRow (4,177,565 samples, 98.79%)</title><rect x="10.3" y="1397" width="1165.7" height="15.0" fill="rgb(228,60,54)" rx="2" ry="2" />
<text x="13.30" y="1407.5" >MediaWiki\Extension\DiscussionTools\Maintenance\PersistRevisionThreadItems::processRow</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="507.6" y="533" width="0.2" height="15.0" fill="rgb(209,63,45)" rx="2" ry="2" />
<text x="510.61" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (4,456 samples, 0.11%)</title><rect x="519.5" y="565" width="1.3" height="15.0" fill="rgb(206,16,15)" rx="2" ry="2" />
<text x="522.51" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TreeBuilder\TreeBuilderStage::process (2,256 samples, 0.05%)</title><rect x="626.6" y="773" width="0.6" height="15.0" fill="rgb(224,129,31)" rx="2" ry="2" />
<text x="629.61" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LanguageLibrary::getFallbacksFor (408 samples, 0.01%)</title><rect x="670.5" y="709" width="0.1" height="15.0" fill="rgb(211,5,40)" rx="2" ry="2" />
<text x="673.51" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::registerLibrary (576 samples, 0.01%)</title><rect x="699.7" y="709" width="0.2" height="15.0" fill="rgb(247,20,45)" rx="2" ry="2" />
<text x="702.74" y="719.5" ></text>
</g>
<g >
<title>spl_autoload_call (1,320 samples, 0.03%)</title><rect x="967.0" y="245" width="0.4" height="15.0" fill="rgb(229,155,5)" rx="2" ry="2" />
<text x="970.02" y="255.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (448 samples, 0.01%)</title><rect x="980.5" y="229" width="0.2" height="15.0" fill="rgb(231,103,40)" rx="2" ry="2" />
<text x="983.54" y="239.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::preprocessWikitext (3,128 samples, 0.07%)</title><rect x="363.4" y="837" width="0.9" height="15.0" fill="rgb(246,160,46)" rx="2" ry="2" />
<text x="366.42" y="847.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,140 samples, 14.95%)</title><rect x="804.3" y="469" width="176.4" height="15.0" fill="rgb(241,74,38)" rx="2" ry="2" />
<text x="807.28" y="479.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="603.3" y="565" width="0.2" height="15.0" fill="rgb(207,153,5)" rx="2" ry="2" />
<text x="606.26" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::wikitextToDOM (154,136 samples, 3.64%)</title><rect x="1070.7" y="853" width="43.1" height="15.0" fill="rgb(227,202,41)" rx="2" ry="2" />
<text x="1073.74" y="863.5" >Wiki..</text>
</g>
<g >
<title>Preprocessor_Hash::buildDomTreeArrayFromText (111,258 samples, 2.63%)</title><rect x="753.0" y="821" width="31.0" height="15.0" fill="rgb(212,229,2)" rx="2" ry="2" />
<text x="755.97" y="831.5" >Pr..</text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::select (29,064 samples, 0.69%)</title><rect x="1181.8" y="1381" width="8.1" height="15.0" fill="rgb(210,39,36)" rx="2" ry="2" />
<text x="1184.80" y="1391.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (3,072 samples, 0.07%)</title><rect x="402.7" y="805" width="0.9" height="15.0" fill="rgb(218,176,0)" rx="2" ry="2" />
<text x="405.70" y="815.5" ></text>
</g>
<g >
<title>spl_autoload_call (7,208 samples, 0.17%)</title><rect x="624.2" y="597" width="2.0" height="15.0" fill="rgb(226,117,49)" rx="2" ry="2" />
<text x="627.24" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (2,032 samples, 0.05%)</title><rect x="615.2" y="533" width="0.6" height="15.0" fill="rgb(232,163,4)" rx="2" ry="2" />
<text x="618.24" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::incrementRefCount (143,360 samples, 3.39%)</title><rect x="701.0" y="613" width="40.0" height="15.0" fill="rgb(217,125,15)" rx="2" ry="2" />
<text x="704.04" y="623.5" >Med..</text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\InBody::startTag (65,536 samples, 1.55%)</title><rect x="364.3" y="821" width="18.3" height="15.0" fill="rgb(216,72,52)" rx="2" ry="2" />
<text x="367.30" y="831.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (773,440 samples, 18.29%)</title><rect x="410.7" y="661" width="215.8" height="15.0" fill="rgb(242,83,6)" rx="2" ry="2" />
<text x="413.66" y="671.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>MediaHandlerFactory::getHandler (38,568 samples, 0.91%)</title><rect x="1134.4" y="949" width="10.8" height="15.0" fill="rgb(214,179,0)" rx="2" ry="2" />
<text x="1137.40" y="959.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,076 samples, 14.95%)</title><rect x="804.3" y="357" width="176.4" height="15.0" fill="rgb(243,182,2)" rx="2" ry="2" />
<text x="807.30" y="367.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::find (4,496 samples, 0.11%)</title><rect x="404.4" y="549" width="1.3" height="15.0" fill="rgb(248,76,36)" rx="2" ry="2" />
<text x="407.42" y="559.5" ></text>
</g>
<g >
<title>SectionProfiler::profileOutInternal (408 samples, 0.01%)</title><rect x="670.4" y="773" width="0.1" height="15.0" fill="rgb(226,199,9)" rx="2" ry="2" />
<text x="673.39" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::__construct (1,488 samples, 0.04%)</title><rect x="525.3" y="549" width="0.4" height="15.0" fill="rgb(240,163,15)" rx="2" ry="2" />
<text x="528.25" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::Wikimedia\Zest\{closure} (696 samples, 0.02%)</title><rect x="405.5" y="501" width="0.2" height="15.0" fill="rgb(245,187,6)" rx="2" ry="2" />
<text x="408.48" y="511.5" ></text>
</g>
<g >
<title>FileRepo::newFile (9,056 samples, 0.21%)</title><rect x="1157.2" y="917" width="2.5" height="15.0" fill="rgb(250,23,52)" rx="2" ry="2" />
<text x="1160.18" y="927.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::preprocessToObj (48,672 samples, 1.15%)</title><rect x="670.6" y="805" width="13.6" height="15.0" fill="rgb(219,224,26)" rx="2" ry="2" />
<text x="673.65" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::customIdent (1,176 samples, 0.03%)</title><rect x="446.2" y="581" width="0.3" height="15.0" fill="rgb(230,189,25)" rx="2" ry="2" />
<text x="449.20" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="507.3" y="533" width="0.3" height="15.0" fill="rgb(230,103,18)" rx="2" ry="2" />
<text x="510.30" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,880 samples, 0.04%)</title><rect x="605.8" y="565" width="0.5" height="15.0" fill="rgb(241,169,33)" rx="2" ry="2" />
<text x="608.81" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageNameUtils::getLanguageNamesUncached (152,144 samples, 3.60%)</title><rect x="1070.7" y="437" width="42.5" height="15.0" fill="rgb(236,194,24)" rx="2" ry="2" />
<text x="1073.74" y="447.5" >Med..</text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::MediaWiki\Extension\TemplateStyles\{closure} (20,640 samples, 0.49%)</title><rect x="473.6" y="309" width="5.8" height="15.0" fill="rgb(246,40,4)" rx="2" ry="2" />
<text x="476.63" y="319.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::ustringFind (928 samples, 0.02%)</title><rect x="1113.3" y="517" width="0.3" height="15.0" fill="rgb(216,13,52)" rx="2" ry="2" />
<text x="1116.32" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (5,632 samples, 0.13%)</title><rect x="697.1" y="725" width="1.5" height="15.0" fill="rgb(251,165,33)" rx="2" ry="2" />
<text x="700.07" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TemplateHandler::onTag (3,128 samples, 0.07%)</title><rect x="363.4" y="853" width="0.9" height="15.0" fill="rgb(253,75,32)" rx="2" ry="2" />
<text x="366.42" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (4,176 samples, 0.10%)</title><rect x="422.0" y="549" width="1.1" height="15.0" fill="rgb(242,227,7)" rx="2" ry="2" />
<text x="424.96" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::basicShapes (11,248 samples, 0.27%)</title><rect x="565.5" y="565" width="3.1" height="15.0" fill="rgb(230,155,38)" rx="2" ry="2" />
<text x="568.46" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (12,896 samples, 0.30%)</title><rect x="749.3" y="773" width="3.6" height="15.0" fill="rgb(230,12,26)" rx="2" ry="2" />
<text x="752.32" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Sanitizer::MediaWiki\Parser\{closure} (41,040 samples, 0.97%)</title><rect x="994.1" y="741" width="11.4" height="15.0" fill="rgb(207,42,11)" rx="2" ry="2" />
<text x="997.08" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::getLuaType (408 samples, 0.01%)</title><rect x="402.9" y="565" width="0.1" height="15.0" fill="rgb(210,228,35)" rx="2" ry="2" />
<text x="405.91" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::patternToRegex (472 samples, 0.01%)</title><rect x="1113.6" y="501" width="0.1" height="15.0" fill="rgb(237,124,13)" rx="2" ry="2" />
<text x="1116.58" y="511.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Replication\ReplicationReporter::resetReplicationLagStatus (808 samples, 0.02%)</title><rect x="357.1" y="917" width="0.2" height="15.0" fill="rgb(241,188,21)" rx="2" ry="2" />
<text x="360.12" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setPageTitleInternal (91,696 samples, 2.17%)</title><rect x="638.3" y="757" width="25.6" height="15.0" fill="rgb(207,129,42)" rx="2" ry="2" />
<text x="641.29" y="767.5" >M..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::getStatus (376 samples, 0.01%)</title><rect x="684.6" y="693" width="0.1" height="15.0" fill="rgb(227,211,43)" rx="2" ry="2" />
<text x="687.55" y="703.5" ></text>
</g>
<g >
<title>File::makeTransformTmpFile (408 samples, 0.01%)</title><rect x="1134.1" y="981" width="0.1" height="15.0" fill="rgb(231,179,41)" rx="2" ry="2" />
<text x="1137.13" y="991.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::attemptQuery (29,064 samples, 0.69%)</title><rect x="1181.8" y="1301" width="8.1" height="15.0" fill="rgb(232,158,24)" rx="2" ry="2" />
<text x="1184.80" y="1311.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (448 samples, 0.01%)</title><rect x="980.5" y="213" width="0.2" height="15.0" fill="rgb(218,162,43)" rx="2" ry="2" />
<text x="983.54" y="223.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (245,789 samples, 5.81%)</title><rect x="684.3" y="869" width="68.6" height="15.0" fill="rgb(226,116,36)" rx="2" ry="2" />
<text x="687.34" y="879.5" >Parser:..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getInterpreter (7,848 samples, 0.19%)</title><rect x="986.0" y="757" width="2.2" height="15.0" fill="rgb(235,86,19)" rx="2" ry="2" />
<text x="988.96" y="767.5" ></text>
</g>
<g >
<title>File::transform (976 samples, 0.02%)</title><rect x="1134.1" y="997" width="0.3" height="15.0" fill="rgb(246,213,41)" rx="2" ry="2" />
<text x="1137.13" y="1007.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="577.4" y="533" width="0.2" height="15.0" fill="rgb(218,127,50)" rx="2" ry="2" />
<text x="580.43" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::instantiatePHPLibrary (470,280 samples, 11.12%)</title><rect x="804.3" y="213" width="131.2" height="15.0" fill="rgb(253,176,5)" rx="2" ry="2" />
<text x="807.31" y="223.5" >MediaWiki\Extens..</text>
</g>
<g >
<title>Parser::__construct (80,872 samples, 1.91%)</title><rect x="638.6" y="645" width="22.6" height="15.0" fill="rgb(237,118,29)" rx="2" ry="2" />
<text x="641.60" y="655.5" >P..</text>
</g>
<g >
<title>MediaWiki\Title\Title::newFromTextThrow (3,432 samples, 0.08%)</title><rect x="664.0" y="853" width="0.9" height="15.0" fill="rgb(210,65,20)" rx="2" ry="2" />
<text x="666.99" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (376 samples, 0.01%)</title><rect x="446.1" y="581" width="0.1" height="15.0" fill="rgb(220,63,40)" rx="2" ry="2" />
<text x="449.09" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::incrementRefCount (5,192 samples, 0.12%)</title><rect x="743.6" y="693" width="1.4" height="15.0" fill="rgb(232,6,53)" rx="2" ry="2" />
<text x="746.57" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1173" width="0.1" height="15.0" fill="rgb(207,85,4)" rx="2" ry="2" />
<text x="15.20" y="1183.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchStartToEnd (6,096 samples, 0.14%)</title><rect x="661.3" y="597" width="1.7" height="15.0" fill="rgb(240,57,47)" rx="2" ry="2" />
<text x="664.30" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipelineFactory::parse (2,875,165 samples, 67.99%)</title><rect x="357.5" y="1125" width="802.3" height="15.0" fill="rgb(239,217,40)" rx="2" ry="2" />
<text x="360.52" y="1135.5" >Wikimedia\Parsoid\Wt2Html\ParserPipelineFactory::parse</text>
</g>
<g >
<title>PPFrame_Hash::expand (3,072 samples, 0.07%)</title><rect x="402.7" y="757" width="0.9" height="15.0" fill="rgb(218,22,54)" rx="2" ry="2" />
<text x="405.70" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::register (7,680 samples, 0.18%)</title><rect x="986.0" y="693" width="2.1" height="15.0" fill="rgb(221,157,43)" rx="2" ry="2" />
<text x="988.96" y="703.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (872 samples, 0.02%)</title><rect x="350.5" y="981" width="0.2" height="15.0" fill="rgb(240,196,52)" rx="2" ry="2" />
<text x="353.49" y="991.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (472 samples, 0.01%)</title><rect x="670.5" y="725" width="0.1" height="15.0" fill="rgb(253,156,44)" rx="2" ry="2" />
<text x="673.51" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::__construct (2,632 samples, 0.06%)</title><rect x="351.4" y="1013" width="0.8" height="15.0" fill="rgb(206,32,22)" rx="2" ry="2" />
<text x="354.44" y="1023.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="619.0" y="517" width="0.2" height="15.0" fill="rgb(226,215,49)" rx="2" ry="2" />
<text x="621.99" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\User\User::loadDefaults (512 samples, 0.01%)</title><rect x="1174.5" y="1237" width="0.1" height="15.0" fill="rgb(215,132,35)" rx="2" ry="2" />
<text x="1177.50" y="1247.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="612.8" y="517" width="0.1" height="15.0" fill="rgb(223,189,50)" rx="2" ry="2" />
<text x="615.76" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (15,568 samples, 0.37%)</title><rect x="824.0" y="181" width="4.3" height="15.0" fill="rgb(235,219,27)" rx="2" ry="2" />
<text x="826.99" y="191.5" ></text>
</g>
<g >
<title>ParserOptions::getMaxIncludeSize (376 samples, 0.01%)</title><rect x="637.5" y="645" width="0.1" height="15.0" fill="rgb(238,4,36)" rx="2" ry="2" />
<text x="640.48" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRenderer::MediaWiki\Revision\{closure} (4,138,325 samples, 97.86%)</title><rect x="19.5" y="1285" width="1154.8" height="15.0" fill="rgb(217,1,12)" rx="2" ry="2" />
<text x="22.55" y="1295.5" >MediaWiki\Revision\RevisionRenderer::MediaWiki\Revision\{closure}</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::resolution (424 samples, 0.01%)</title><rect x="551.8" y="565" width="0.1" height="15.0" fill="rgb(233,157,0)" rx="2" ry="2" />
<text x="554.76" y="575.5" ></text>
</g>
<g >
<title>Parser::resetOutput (1,232 samples, 0.03%)</title><rect x="637.7" y="629" width="0.4" height="15.0" fill="rgb(216,114,0)" rx="2" ry="2" />
<text x="640.74" y="639.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::MediaWiki\Storage\{closure} (12,896 samples, 0.30%)</title><rect x="749.3" y="677" width="3.6" height="15.0" fill="rgb(220,170,52)" rx="2" ry="2" />
<text x="752.32" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::load (583,036 samples, 13.79%)</title><rect x="804.3" y="229" width="162.7" height="15.0" fill="rgb(211,165,26)" rx="2" ry="2" />
<text x="807.31" y="239.5" >MediaWiki\Extension\..</text>
</g>
<g >
<title>PPFrame_Hash::expand (736,236 samples, 17.41%)</title><rect x="784.1" y="885" width="205.5" height="15.0" fill="rgb(220,229,30)" rx="2" ry="2" />
<text x="787.13" y="895.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\TreeBuilder::doctype (440 samples, 0.01%)</title><rect x="1174.6" y="1269" width="0.2" height="15.0" fill="rgb(227,221,25)" rx="2" ry="2" />
<text x="1177.65" y="1279.5" ></text>
</g>
<g >
<title>spl_autoload_call (6,184 samples, 0.15%)</title><rect x="978.8" y="261" width="1.7" height="15.0" fill="rgb(219,122,28)" rx="2" ry="2" />
<text x="981.80" y="271.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\MessageLibrary::register (1,024 samples, 0.02%)</title><rect x="695.5" y="741" width="0.3" height="15.0" fill="rgb(250,173,30)" rx="2" ry="2" />
<text x="698.50" y="751.5" ></text>
</g>
<g >
<title>RepoGroup::findFile (9,056 samples, 0.21%)</title><rect x="1157.2" y="965" width="2.5" height="15.0" fill="rgb(219,43,31)" rx="2" ry="2" />
<text x="1160.18" y="975.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::query (376 samples, 0.01%)</title><rect x="357.0" y="885" width="0.1" height="15.0" fill="rgb(241,17,53)" rx="2" ry="2" />
<text x="360.01" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Logger\LintLogger::logLintOutput (1,832 samples, 0.04%)</title><rect x="357.0" y="1141" width="0.5" height="15.0" fill="rgb(253,43,21)" rx="2" ry="2" />
<text x="360.01" y="1151.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::fetchModuleFromParser (14,184 samples, 0.34%)</title><rect x="749.0" y="837" width="3.9" height="15.0" fill="rgb(240,55,51)" rx="2" ry="2" />
<text x="751.96" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (3,480 samples, 0.08%)</title><rect x="614.3" y="533" width="0.9" height="15.0" fill="rgb(217,70,8)" rx="2" ry="2" />
<text x="617.26" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (7,840 samples, 0.19%)</title><rect x="423.1" y="549" width="2.2" height="15.0" fill="rgb(235,104,44)" rx="2" ry="2" />
<text x="426.13" y="559.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (3,248 samples, 0.08%)</title><rect x="977.9" y="197" width="0.9" height="15.0" fill="rgb(234,131,18)" rx="2" ry="2" />
<text x="980.90" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1317" width="0.1" height="15.0" fill="rgb(218,192,0)" rx="2" ry="2" />
<text x="15.20" y="1327.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (6,152 samples, 0.15%)</title><rect x="404.4" y="677" width="1.7" height="15.0" fill="rgb(218,26,24)" rx="2" ry="2" />
<text x="407.42" y="687.5" ></text>
</g>
<g >
<title>SectionProfiler::profileOutInternal (1,224 samples, 0.03%)</title><rect x="684.8" y="629" width="0.3" height="15.0" fill="rgb(208,93,16)" rx="2" ry="2" />
<text x="687.78" y="639.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::load (214,093 samples, 5.06%)</title><rect x="689.0" y="789" width="59.8" height="15.0" fill="rgb(207,118,33)" rx="2" ry="2" />
<text x="692.03" y="799.5" >MediaW..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::load (583,036 samples, 13.79%)</title><rect x="804.3" y="245" width="162.7" height="15.0" fill="rgb(237,224,53)" rx="2" ry="2" />
<text x="807.31" y="255.5" >MediaWiki\Extension\..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="438.3" y="565" width="0.1" height="15.0" fill="rgb(236,134,49)" rx="2" ry="2" />
<text x="441.28" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssNamespacePrefix (2,416 samples, 0.06%)</title><rect x="610.4" y="533" width="0.7" height="15.0" fill="rgb(218,84,40)" rx="2" ry="2" />
<text x="613.44" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="449.5" y="581" width="0.1" height="15.0" fill="rgb(205,114,28)" rx="2" ry="2" />
<text x="452.49" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::incrementRefCount (7,680 samples, 0.18%)</title><rect x="986.0" y="565" width="2.1" height="15.0" fill="rgb(222,122,11)" rx="2" ry="2" />
<text x="988.96" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\Sanitizer::sanitizeObj (86,272 samples, 2.04%)</title><rect x="455.3" y="549" width="24.1" height="15.0" fill="rgb(208,138,10)" rx="2" ry="2" />
<text x="458.33" y="559.5" >W..</text>
</g>
<g >
<title>MediumSpecificBagOStuff::trackDuplicateKeys (10,240 samples, 0.24%)</title><rect x="12.3" y="1285" width="2.9" height="15.0" fill="rgb(222,88,2)" rx="2" ry="2" />
<text x="15.31" y="1295.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (4,432 samples, 0.10%)</title><rect x="943.5" y="149" width="1.2" height="15.0" fill="rgb(218,55,11)" rx="2" ry="2" />
<text x="946.46" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\User\UserFactory::newAnonymous (816 samples, 0.02%)</title><rect x="1174.3" y="1365" width="0.2" height="15.0" fill="rgb(206,117,27)" rx="2" ry="2" />
<text x="1177.28" y="1375.5" ></text>
</g>
<g >
<title>Parser::getTemplateDom (218,976 samples, 5.18%)</title><rect x="1006.7" y="901" width="61.1" height="15.0" fill="rgb(249,171,48)" rx="2" ry="2" />
<text x="1009.73" y="911.5" >Parser..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssUniversal (1,336 samples, 0.03%)</title><rect x="612.9" y="533" width="0.3" height="15.0" fill="rgb(207,198,14)" rx="2" ry="2" />
<text x="615.87" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\FontFaceAtRuleSanitizer::__construct (26,664 samples, 0.63%)</title><rect x="418.1" y="581" width="7.4" height="15.0" fill="rgb(232,97,2)" rx="2" ry="2" />
<text x="421.08" y="591.5" ></text>
</g>
<g >
<title>ParserOptions::initialiseFromUser (2,616 samples, 0.06%)</title><rect x="663.1" y="645" width="0.7" height="15.0" fill="rgb(251,179,37)" rx="2" ry="2" />
<text x="666.11" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::registerLibrary (1,328 samples, 0.03%)</title><rect x="695.1" y="709" width="0.4" height="15.0" fill="rgb(227,212,36)" rx="2" ry="2" />
<text x="698.13" y="719.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="811.1" y="133" width="0.1" height="15.0" fill="rgb(240,163,28)" rx="2" ry="2" />
<text x="814.12" y="143.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::insert (376 samples, 0.01%)</title><rect x="357.0" y="901" width="0.1" height="15.0" fill="rgb(253,40,52)" rx="2" ry="2" />
<text x="360.01" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\SiteStats\SiteStats::doLoadFromDB (416 samples, 0.01%)</title><rect x="665.0" y="853" width="0.1" height="15.0" fill="rgb(250,227,22)" rx="2" ry="2" />
<text x="668.01" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::tok (3,480 samples, 0.08%)</title><rect x="1114.6" y="933" width="1.0" height="15.0" fill="rgb(237,170,11)" rx="2" ry="2" />
<text x="1117.64" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::incrementRefCount (2,560 samples, 0.06%)</title><rect x="829.3" y="69" width="0.7" height="15.0" fill="rgb(247,38,16)" rx="2" ry="2" />
<text x="832.26" y="79.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ImageMap\ImageMap::onParserFirstCallInit (376 samples, 0.01%)</title><rect x="647.4" y="597" width="0.1" height="15.0" fill="rgb(229,1,8)" rx="2" ry="2" />
<text x="650.39" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (2,689,081 samples, 63.59%)</title><rect x="363.4" y="1013" width="750.4" height="15.0" fill="rgb(210,223,2)" rx="2" ry="2" />
<text x="366.41" y="1023.5" >Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk</text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (3,120 samples, 0.07%)</title><rect x="688.2" y="533" width="0.8" height="15.0" fill="rgb(233,153,46)" rx="2" ry="2" />
<text x="691.15" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (20,200 samples, 0.48%)</title><rect x="1176.2" y="1381" width="5.6" height="15.0" fill="rgb(209,28,26)" rx="2" ry="2" />
<text x="1179.16" y="1391.5" ></text>
</g>
<g >
<title>spl_autoload_call (34,844 samples, 0.82%)</title><rect x="1147.3" y="981" width="9.7" height="15.0" fill="rgb(206,194,6)" rx="2" ry="2" />
<text x="1150.26" y="991.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="610.0" y="533" width="0.2" height="15.0" fill="rgb(246,179,48)" rx="2" ry="2" />
<text x="613.05" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="612.5" y="533" width="0.1" height="15.0" fill="rgb(215,39,50)" rx="2" ry="2" />
<text x="615.49" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::fetchModuleFromParser (10,248 samples, 0.24%)</title><rect x="685.1" y="725" width="2.9" height="15.0" fill="rgb(239,74,41)" rx="2" ry="2" />
<text x="688.14" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::color (36,344 samples, 0.86%)</title><rect x="493.8" y="549" width="10.1" height="15.0" fill="rgb(226,104,11)" rx="2" ry="2" />
<text x="496.78" y="559.5" ></text>
</g>
<g >
<title>WANObjectCache::getWithSetCallback (8,728 samples, 0.21%)</title><rect x="1157.3" y="853" width="2.4" height="15.0" fill="rgb(229,0,26)" rx="2" ry="2" />
<text x="1160.28" y="863.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\ParserOutput::addTemplate (752 samples, 0.02%)</title><rect x="749.1" y="805" width="0.2" height="15.0" fill="rgb(251,187,19)" rx="2" ry="2" />
<text x="752.11" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (7,680 samples, 0.18%)</title><rect x="986.0" y="613" width="2.1" height="15.0" fill="rgb(243,220,1)" rx="2" ry="2" />
<text x="988.96" y="623.5" ></text>
</g>
<g >
<title>Parser::incrementIncludeSize (376 samples, 0.01%)</title><rect x="1067.8" y="901" width="0.1" height="15.0" fill="rgb(236,68,34)" rx="2" ry="2" />
<text x="1070.83" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRenderer::combineSlotOutput (4,138,325 samples, 97.86%)</title><rect x="19.5" y="1269" width="1154.8" height="15.0" fill="rgb(232,29,54)" rx="2" ry="2" />
<text x="22.55" y="1279.5" >MediaWiki\Revision\RevisionRenderer::combineSlotOutput</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\AttributeTransformManager::process (3,128 samples, 0.07%)</title><rect x="363.4" y="949" width="0.9" height="15.0" fill="rgb(211,187,53)" rx="2" ry="2" />
<text x="366.42" y="959.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (3,072 samples, 0.07%)</title><rect x="402.7" y="773" width="0.9" height="15.0" fill="rgb(238,13,7)" rx="2" ry="2" />
<text x="405.70" y="783.5" ></text>
</g>
<g >
<title>BagOStuff::makeKey (14,504 samples, 0.34%)</title><rect x="15.2" y="1285" width="4.0" height="15.0" fill="rgb(229,228,17)" rx="2" ry="2" />
<text x="18.16" y="1295.5" ></text>
</g>
<g >
<title>Parser::preprocessToDom (111,362 samples, 2.63%)</title><rect x="752.9" y="853" width="31.1" height="15.0" fill="rgb(246,43,38)" rx="2" ry="2" />
<text x="755.94" y="863.5" >Pa..</text>
</g>
<g >
<title>Wikimedia\Rdbms\TransactionManager::addToAtomicLevels (376 samples, 0.01%)</title><rect x="1174.9" y="1317" width="0.1" height="15.0" fill="rgb(254,133,14)" rx="2" ry="2" />
<text x="1177.86" y="1327.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\DOMFragmentBuilder::onTag (2,256 samples, 0.05%)</title><rect x="626.6" y="805" width="0.6" height="15.0" fill="rgb(231,132,8)" rx="2" ry="2" />
<text x="629.61" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::getLuaType (408 samples, 0.01%)</title><rect x="402.7" y="565" width="0.1" height="15.0" fill="rgb(215,144,42)" rx="2" ry="2" />
<text x="405.72" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicPropertyFallback (376 samples, 0.01%)</title><rect x="1175.7" y="1285" width="0.1" height="15.0" fill="rgb(218,111,3)" rx="2" ry="2" />
<text x="1178.74" y="1295.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionSlots::getSlots (1,416 samples, 0.03%)</title><rect x="356.6" y="1093" width="0.4" height="15.0" fill="rgb(212,134,51)" rx="2" ry="2" />
<text x="359.62" y="1103.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,128 samples, 0.03%)</title><rect x="622.0" y="581" width="0.3" height="15.0" fill="rgb(219,14,52)" rx="2" ry="2" />
<text x="624.96" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (816 samples, 0.02%)</title><rect x="981.1" y="677" width="0.2" height="15.0" fill="rgb(242,29,29)" rx="2" ry="2" />
<text x="984.08" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::capture (384 samples, 0.01%)</title><rect x="606.9" y="581" width="0.1" height="15.0" fill="rgb(239,63,16)" rx="2" ry="2" />
<text x="609.89" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Scribunto::newEngine (18,736 samples, 0.44%)</title><rect x="967.4" y="261" width="5.2" height="15.0" fill="rgb(233,41,26)" rx="2" ry="2" />
<text x="970.38" y="271.5" ></text>
</g>
<g >
<title>TempFSFile::autocollect (376 samples, 0.01%)</title><rect x="1134.1" y="949" width="0.1" height="15.0" fill="rgb(221,116,20)" rx="2" ry="2" />
<text x="1137.14" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\InputBox\InputBoxHooks::onParserFirstCallInit (376 samples, 0.01%)</title><rect x="647.5" y="597" width="0.1" height="15.0" fill="rgb(229,77,6)" rx="2" ry="2" />
<text x="650.50" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\SyntaxHighlight\SyntaxHighlight::sourceToDom (71,128 samples, 1.68%)</title><rect x="382.6" y="965" width="19.9" height="15.0" fill="rgb(208,65,41)" rx="2" ry="2" />
<text x="385.62" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::httpGet (7,792 samples, 0.18%)</title><rect x="1157.3" y="805" width="2.2" height="15.0" fill="rgb(214,13,15)" rx="2" ry="2" />
<text x="1160.28" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1221" width="0.1" height="15.0" fill="rgb(247,103,34)" rx="2" ry="2" />
<text x="15.20" y="1231.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::switch (1,496 samples, 0.04%)</title><rect x="980.9" y="805" width="0.4" height="15.0" fill="rgb(220,158,37)" rx="2" ry="2" />
<text x="983.91" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::instantiatePHPLibrary (2,560 samples, 0.06%)</title><rect x="988.8" y="741" width="0.7" height="15.0" fill="rgb(232,62,11)" rx="2" ry="2" />
<text x="991.83" y="751.5" ></text>
</g>
<g >
<title>Language::isRTL (186,392 samples, 4.41%)</title><rect x="298.5" y="1125" width="52.0" height="15.0" fill="rgb(214,48,41)" rx="2" ry="2" />
<text x="301.48" y="1135.5" >Langu..</text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\CommentParser::parse (728 samples, 0.02%)</title><rect x="12.1" y="1365" width="0.2" height="15.0" fill="rgb(243,39,2)" rx="2" ry="2" />
<text x="15.10" y="1375.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\PageConfigFactory::create (208,424 samples, 4.93%)</title><rect x="298.4" y="1157" width="58.2" height="15.0" fill="rgb(239,169,39)" rx="2" ry="2" />
<text x="301.43" y="1167.5" >MediaW..</text>
</g>
<g >
<title>PPFrame_Hash::expand (133,380 samples, 3.15%)</title><rect x="627.8" y="885" width="37.2" height="15.0" fill="rgb(232,222,11)" rx="2" ry="2" />
<text x="630.79" y="895.5" >PPF..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContent (3,120 samples, 0.07%)</title><rect x="688.2" y="677" width="0.8" height="15.0" fill="rgb(248,35,13)" rx="2" ry="2" />
<text x="691.15" y="687.5" ></text>
</g>
<g >
<title>SectionProfiler::__construct (376 samples, 0.01%)</title><rect x="638.1" y="629" width="0.1" height="15.0" fill="rgb(208,36,8)" rx="2" ry="2" />
<text x="641.08" y="639.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (752 samples, 0.02%)</title><rect x="637.3" y="629" width="0.2" height="15.0" fill="rgb(227,76,53)" rx="2" ry="2" />
<text x="640.27" y="639.5" ></text>
</g>
<g >
<title>SectionProfiler::profileOutInternal (4,776 samples, 0.11%)</title><rect x="1068.1" y="869" width="1.4" height="15.0" fill="rgb(253,205,54)" rx="2" ry="2" />
<text x="1071.14" y="879.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="509.8" y="533" width="0.3" height="15.0" fill="rgb(217,153,18)" rx="2" ry="2" />
<text x="512.79" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RenderedRevision::getRevisionParserOutput (4,138,325 samples, 97.86%)</title><rect x="19.5" y="1301" width="1154.8" height="15.0" fill="rgb(213,53,35)" rx="2" ry="2" />
<text x="22.55" y="1311.5" >MediaWiki\Revision\RenderedRevision::getRevisionParserOutput</text>
</g>
<g >
<title>Wikimedia\Parsoid\DOM\Document::__construct (440 samples, 0.01%)</title><rect x="1174.6" y="1221" width="0.2" height="15.0" fill="rgb(205,3,12)" rx="2" ry="2" />
<text x="1177.65" y="1231.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::__construct (640 samples, 0.02%)</title><rect x="944.7" y="197" width="0.2" height="15.0" fill="rgb(240,115,4)" rx="2" ry="2" />
<text x="947.71" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="608.4" y="549" width="0.1" height="15.0" fill="rgb(238,90,28)" rx="2" ry="2" />
<text x="611.39" y="559.5" ></text>
</g>
<g >
<title>FileBackendStore::getFileStat (568 samples, 0.01%)</title><rect x="1134.2" y="933" width="0.2" height="15.0" fill="rgb(246,130,35)" rx="2" ry="2" />
<text x="1137.24" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\Timestamp\ConvertibleTimestamp::getTimestamp (512 samples, 0.01%)</title><rect x="1174.5" y="1205" width="0.1" height="15.0" fill="rgb(235,178,13)" rx="2" ry="2" />
<text x="1177.50" y="1215.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="432.6" y="549" width="0.2" height="15.0" fill="rgb(241,66,19)" rx="2" ry="2" />
<text x="435.62" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setHTMLTitle (91,664 samples, 2.17%)</title><rect x="638.3" y="741" width="25.6" height="15.0" fill="rgb(222,76,3)" rx="2" ry="2" />
<text x="641.29" y="751.5" >M..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::load (2,616 samples, 0.06%)</title><rect x="988.8" y="757" width="0.8" height="15.0" fill="rgb(217,130,38)" rx="2" ry="2" />
<text x="991.83" y="767.5" ></text>
</g>
<g >
<title>JobQueueDB::doBatchPush (1,560 samples, 0.04%)</title><rect x="357.0" y="1013" width="0.4" height="15.0" fill="rgb(234,93,53)" rx="2" ry="2" />
<text x="360.01" y="1023.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (3,128 samples, 0.07%)</title><rect x="363.4" y="805" width="0.9" height="15.0" fill="rgb(246,32,42)" rx="2" ry="2" />
<text x="366.42" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\NamespaceAtRuleSanitizer::__construct (4,400 samples, 0.10%)</title><rect x="446.5" y="597" width="1.3" height="15.0" fill="rgb(235,179,21)" rx="2" ry="2" />
<text x="449.53" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,128 samples, 0.03%)</title><rect x="551.4" y="565" width="0.4" height="15.0" fill="rgb(251,82,46)" rx="2" ry="2" />
<text x="554.45" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::doAtomicSection (488 samples, 0.01%)</title><rect x="1174.8" y="1333" width="0.2" height="15.0" fill="rgb(253,26,24)" rx="2" ry="2" />
<text x="1177.83" y="1343.5" ></text>
</g>
<g >
<title>MediaWiki\Language\RawMessage::__construct (376 samples, 0.01%)</title><rect x="351.1" y="1029" width="0.1" height="15.0" fill="rgb(233,61,52)" rx="2" ry="2" />
<text x="354.11" y="1039.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::MediaWiki\Extension\QuickInstantCommons\{closure} (3,568 samples, 0.08%)</title><rect x="1158.5" y="757" width="1.0" height="15.0" fill="rgb(237,4,53)" rx="2" ry="2" />
<text x="1161.46" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::__construct (1,488 samples, 0.04%)</title><rect x="419.0" y="549" width="0.4" height="15.0" fill="rgb(206,224,47)" rx="2" ry="2" />
<text x="421.96" y="559.5" ></text>
</g>
<g >
<title>ParserOptions::newFromContext (2,768 samples, 0.07%)</title><rect x="663.1" y="677" width="0.7" height="15.0" fill="rgb(211,223,50)" rx="2" ry="2" />
<text x="666.07" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::logLinterData (1,832 samples, 0.04%)</title><rect x="357.0" y="1125" width="0.5" height="15.0" fill="rgb(243,21,34)" rx="2" ry="2" />
<text x="360.01" y="1135.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (8,192 samples, 0.19%)</title><rect x="745.9" y="709" width="2.2" height="15.0" fill="rgb(220,78,35)" rx="2" ry="2" />
<text x="748.86" y="719.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,140 samples, 14.95%)</title><rect x="804.3" y="453" width="176.4" height="15.0" fill="rgb(209,63,10)" rx="2" ry="2" />
<text x="807.28" y="463.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssColor3 (376 samples, 0.01%)</title><rect x="521.9" y="581" width="0.1" height="15.0" fill="rgb(223,14,13)" rx="2" ry="2" />
<text x="524.86" y="591.5" ></text>
</g>
<g >
<title>SectionProfiler::profileOutInternal (408 samples, 0.01%)</title><rect x="784.0" y="837" width="0.1" height="15.0" fill="rgb(243,122,0)" rx="2" ry="2" />
<text x="787.01" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\TimedMediaHandler\WebVideoTranscode\WebVideoTranscode::addSourceIfReady (7,304 samples, 0.17%)</title><rect x="1145.2" y="965" width="2.1" height="15.0" fill="rgb(238,179,52)" rx="2" ry="2" />
<text x="1148.23" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1205" width="0.1" height="15.0" fill="rgb(208,166,16)" rx="2" ry="2" />
<text x="15.20" y="1215.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (7,680 samples, 0.18%)</title><rect x="986.0" y="629" width="2.1" height="15.0" fill="rgb(220,20,9)" rx="2" ry="2" />
<text x="988.96" y="639.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="817.7" y="149" width="0.1" height="15.0" fill="rgb(214,140,11)" rx="2" ry="2" />
<text x="820.72" y="159.5" ></text>
</g>
<g >
<title>File::getHandler (38,568 samples, 0.91%)</title><rect x="1134.4" y="965" width="10.8" height="15.0" fill="rgb(226,46,54)" rx="2" ry="2" />
<text x="1137.40" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (16,624 samples, 0.39%)</title><rect x="981.3" y="757" width="4.7" height="15.0" fill="rgb(238,13,23)" rx="2" ry="2" />
<text x="984.32" y="767.5" ></text>
</g>
<g >
<title>SqlBagOStuff::makeKeyInternal (14,504 samples, 0.34%)</title><rect x="15.2" y="1269" width="4.0" height="15.0" fill="rgb(206,149,54)" rx="2" ry="2" />
<text x="18.16" y="1279.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="804.6" y="149" width="0.1" height="15.0" fill="rgb(241,115,19)" rx="2" ry="2" />
<text x="807.56" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeModule (3,384 samples, 0.08%)</title><rect x="688.1" y="821" width="0.9" height="15.0" fill="rgb(231,51,51)" rx="2" ry="2" />
<text x="691.09" y="831.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (536 samples, 0.01%)</title><rect x="11.9" y="1333" width="0.1" height="15.0" fill="rgb(235,217,18)" rx="2" ry="2" />
<text x="14.86" y="1343.5" ></text>
</g>
<g >
<title>MessageCache::get (536 samples, 0.01%)</title><rect x="1157.0" y="917" width="0.2" height="15.0" fill="rgb(242,88,1)" rx="2" ry="2" />
<text x="1160.03" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (752 samples, 0.02%)</title><rect x="610.2" y="533" width="0.2" height="15.0" fill="rgb(221,106,34)" rx="2" ry="2" />
<text x="613.23" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageNameUtils::getLanguageNames (152,576 samples, 3.61%)</title><rect x="1070.7" y="485" width="42.6" height="15.0" fill="rgb(252,74,40)" rx="2" ry="2" />
<text x="1073.74" y="495.5" >Medi..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::getInitChunk (214,165 samples, 5.06%)</title><rect x="689.0" y="821" width="59.8" height="15.0" fill="rgb(222,71,40)" rx="2" ry="2" />
<text x="692.03" y="831.5" >MediaW..</text>
</g>
<g >
<title>MediaWiki\Title\Title::getPageLanguage (376 samples, 0.01%)</title><rect x="352.8" y="1141" width="0.1" height="15.0" fill="rgb(244,15,15)" rx="2" ry="2" />
<text x="355.84" y="1151.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (425,743 samples, 10.07%)</title><rect x="665.3" y="901" width="118.8" height="15.0" fill="rgb(241,197,52)" rx="2" ry="2" />
<text x="668.33" y="911.5" >PPFrame_Hash::..</text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1157" width="0.1" height="15.0" fill="rgb(253,226,17)" rx="2" ry="2" />
<text x="15.20" y="1167.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LanguageLibrary::fetchLanguageName (152,576 samples, 3.61%)</title><rect x="1070.7" y="517" width="42.6" height="15.0" fill="rgb(216,206,42)" rx="2" ry="2" />
<text x="1073.74" y="527.5" >Medi..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\ParagraphWrapper::onAny (20,016 samples, 0.47%)</title><rect x="357.5" y="997" width="5.6" height="15.0" fill="rgb(226,34,52)" rx="2" ry="2" />
<text x="360.52" y="1007.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="499.7" y="485" width="0.2" height="15.0" fill="rgb(224,5,2)" rx="2" ry="2" />
<text x="502.65" y="495.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (1,072 samples, 0.03%)</title><rect x="820.9" y="133" width="0.3" height="15.0" fill="rgb(214,204,28)" rx="2" ry="2" />
<text x="823.95" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (16,624 samples, 0.39%)</title><rect x="981.3" y="773" width="4.7" height="15.0" fill="rgb(247,183,38)" rx="2" ry="2" />
<text x="984.32" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::iferror (632,204 samples, 14.95%)</title><rect x="804.3" y="709" width="176.4" height="15.0" fill="rgb(252,191,5)" rx="2" ry="2" />
<text x="807.27" y="719.5" >MediaWiki\Extension\Pa..</text>
</g>
<g >
<title>MediaWiki\Title\TitleFactory::newFromPageIdentity (3,168 samples, 0.07%)</title><rect x="1175.0" y="1349" width="0.8" height="15.0" fill="rgb(247,142,38)" rx="2" ry="2" />
<text x="1177.96" y="1359.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Cite\Ref::sourceToDom (802,378 samples, 18.97%)</title><rect x="402.7" y="965" width="223.9" height="15.0" fill="rgb(231,112,2)" rx="2" ry="2" />
<text x="405.70" y="975.5" >Wikimedia\Parsoid\Ext\Cite\Re..</text>
</g>
<g >
<title>Parser::callParserFunction (72,176 samples, 1.71%)</title><rect x="784.1" y="693" width="20.2" height="15.0" fill="rgb(234,214,16)" rx="2" ry="2" />
<text x="787.13" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::__construct (454,912 samples, 10.76%)</title><rect x="479.4" y="597" width="126.9" height="15.0" fill="rgb(247,172,10)" rx="2" ry="2" />
<text x="482.40" y="607.5" >Wikimedia\CSS\S..</text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::MediaWiki\Storage\{closure} (51,920 samples, 1.23%)</title><rect x="1159.8" y="1125" width="14.5" height="15.0" fill="rgb(222,229,51)" rx="2" ry="2" />
<text x="1162.79" y="1135.5" ></text>
</g>
<g >
<title>MediaWiki\Config\ServiceOptions::__construct (376 samples, 0.01%)</title><rect x="817.9" y="149" width="0.1" height="15.0" fill="rgb(207,201,33)" rx="2" ry="2" />
<text x="820.94" y="159.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\Zest::find (7,232 samples, 0.17%)</title><rect x="1113.8" y="981" width="2.0" height="15.0" fill="rgb(245,210,8)" rx="2" ry="2" />
<text x="1116.79" y="991.5" ></text>
</g>
<g >
<title>Message::text (91,664 samples, 2.17%)</title><rect x="638.3" y="725" width="25.6" height="15.0" fill="rgb(235,27,14)" rx="2" ry="2" />
<text x="641.29" y="735.5" >M..</text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::Wikimedia\Zest\{closure} (696 samples, 0.02%)</title><rect x="404.6" y="517" width="0.2" height="15.0" fill="rgb(205,112,53)" rx="2" ry="2" />
<text x="407.65" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\HashLibrary::register (1,416 samples, 0.03%)</title><rect x="804.7" y="197" width="0.4" height="15.0" fill="rgb(217,69,4)" rx="2" ry="2" />
<text x="807.68" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (3,480 samples, 0.08%)</title><rect x="440.1" y="565" width="0.9" height="15.0" fill="rgb(220,224,33)" rx="2" ry="2" />
<text x="443.05" y="575.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::preprocessToObj (111,362 samples, 2.63%)</title><rect x="752.9" y="837" width="31.1" height="15.0" fill="rgb(236,63,12)" rx="2" ry="2" />
<text x="755.94" y="847.5" >Pr..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (154,560 samples, 3.65%)</title><rect x="1070.6" y="917" width="43.2" height="15.0" fill="rgb(245,159,49)" rx="2" ry="2" />
<text x="1073.63" y="927.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (10,080 samples, 0.24%)</title><rect x="685.2" y="645" width="2.8" height="15.0" fill="rgb(212,101,4)" rx="2" ry="2" />
<text x="688.19" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::getPageLanguage (400 samples, 0.01%)</title><rect x="19.2" y="1301" width="0.1" height="15.0" fill="rgb(221,193,25)" rx="2" ry="2" />
<text x="22.23" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="433.5" y="581" width="0.1" height="15.0" fill="rgb(218,92,12)" rx="2" ry="2" />
<text x="436.46" y="591.5" ></text>
</g>
<g >
<title>FSFileBackend::trapWarnings (376 samples, 0.01%)</title><rect x="1134.2" y="901" width="0.1" height="15.0" fill="rgb(224,63,37)" rx="2" ry="2" />
<text x="1137.24" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Content\Renderer\ContentRenderer::getParserOutput (4,086,405 samples, 96.63%)</title><rect x="19.5" y="1221" width="1140.3" height="15.0" fill="rgb(222,149,50)" rx="2" ry="2" />
<text x="22.55" y="1231.5" >MediaWiki\Content\Renderer\ContentRenderer::getParserOutput</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::rawTime (840 samples, 0.02%)</title><rect x="600.5" y="549" width="0.3" height="15.0" fill="rgb(228,21,49)" rx="2" ry="2" />
<text x="603.54" y="559.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="805.0" y="133" width="0.1" height="15.0" fill="rgb(234,17,11)" rx="2" ry="2" />
<text x="807.95" y="143.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::createObject (18,900 samples, 0.45%)</title><rect x="630.2" y="757" width="5.3" height="15.0" fill="rgb(211,176,13)" rx="2" ry="2" />
<text x="633.22" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::createContentHandlerFromHandlerSpec (448 samples, 0.01%)</title><rect x="980.5" y="149" width="0.2" height="15.0" fill="rgb(222,89,31)" rx="2" ry="2" />
<text x="983.54" y="159.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (16,520 samples, 0.39%)</title><rect x="981.3" y="485" width="4.7" height="15.0" fill="rgb(209,15,1)" rx="2" ry="2" />
<text x="984.34" y="495.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (10,264 samples, 0.24%)</title><rect x="818.4" y="165" width="2.8" height="15.0" fill="rgb(227,212,44)" rx="2" ry="2" />
<text x="821.38" y="175.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssMediaQueryList (28,352 samples, 0.67%)</title><rect x="425.5" y="597" width="7.9" height="15.0" fill="rgb(210,156,11)" rx="2" ry="2" />
<text x="428.52" y="607.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="1113.2" y="437" width="0.1" height="15.0" fill="rgb(236,226,11)" rx="2" ry="2" />
<text x="1116.20" y="447.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::getBlob (10,080 samples, 0.24%)</title><rect x="685.2" y="613" width="2.8" height="15.0" fill="rgb(245,124,32)" rx="2" ry="2" />
<text x="688.19" y="623.5" ></text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::getOption (10,296 samples, 0.24%)</title><rect x="353.7" y="1093" width="2.9" height="15.0" fill="rgb(245,21,15)" rx="2" ry="2" />
<text x="356.72" y="1103.5" ></text>
</g>
<g >
<title>spl_autoload_call (7,784 samples, 0.18%)</title><rect x="360.9" y="853" width="2.1" height="15.0" fill="rgb(247,197,9)" rx="2" ry="2" />
<text x="363.88" y="863.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (10,080 samples, 0.24%)</title><rect x="685.2" y="485" width="2.8" height="15.0" fill="rgb(212,59,28)" rx="2" ry="2" />
<text x="688.19" y="495.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="432.8" y="549" width="0.2" height="15.0" fill="rgb(241,152,4)" rx="2" ry="2" />
<text x="435.83" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onParserLogLinterData (1,832 samples, 0.04%)</title><rect x="357.0" y="1109" width="0.5" height="15.0" fill="rgb(212,100,39)" rx="2" ry="2" />
<text x="360.01" y="1119.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\RuleSanitizer::sanitizeDeclarationBlock (86,240 samples, 2.04%)</title><rect x="455.3" y="517" width="24.1" height="15.0" fill="rgb(209,21,34)" rx="2" ry="2" />
<text x="458.33" y="527.5" >W..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (8,192 samples, 0.19%)</title><rect x="745.9" y="725" width="2.2" height="15.0" fill="rgb(208,225,27)" rx="2" ry="2" />
<text x="748.86" y="735.5" ></text>
</g>
<g >
<title>Parser::fetchTemplateAndTitle (3,120 samples, 0.07%)</title><rect x="688.2" y="709" width="0.8" height="15.0" fill="rgb(218,120,24)" rx="2" ry="2" />
<text x="691.15" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::executeInternal (440 samples, 0.01%)</title><rect x="1174.6" y="1349" width="0.2" height="15.0" fill="rgb(219,16,21)" rx="2" ry="2" />
<text x="1177.65" y="1359.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssText3 (14,328 samples, 0.34%)</title><rect x="577.9" y="581" width="4.0" height="15.0" fill="rgb(220,216,16)" rx="2" ry="2" />
<text x="580.93" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (14,616 samples, 0.35%)</title><rect x="590.8" y="565" width="4.1" height="15.0" fill="rgb(240,117,49)" rx="2" ry="2" />
<text x="593.78" y="575.5" ></text>
</g>
<g >
<title>FSFileBackend::doGetFileStat (408 samples, 0.01%)</title><rect x="1134.2" y="917" width="0.2" height="15.0" fill="rgb(225,177,39)" rx="2" ry="2" />
<text x="1137.24" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (15,568 samples, 0.37%)</title><rect x="824.0" y="165" width="4.3" height="15.0" fill="rgb(209,152,50)" rx="2" ry="2" />
<text x="826.99" y="175.5" ></text>
</g>
<g >
<title>Parser::statelessFetchTemplate (3,120 samples, 0.07%)</title><rect x="688.2" y="693" width="0.8" height="15.0" fill="rgb(240,19,28)" rx="2" ry="2" />
<text x="691.15" y="703.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (133,380 samples, 3.15%)</title><rect x="627.8" y="869" width="37.2" height="15.0" fill="rgb(242,194,35)" rx="2" ry="2" />
<text x="630.79" y="879.5" >Par..</text>
</g>
<g >
<title>ParserOptions::initialiseFromUser (12,912 samples, 0.31%)</title><rect x="353.0" y="1109" width="3.6" height="15.0" fill="rgb(241,122,14)" rx="2" ry="2" />
<text x="355.99" y="1119.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::number (6,440 samples, 0.15%)</title><rect x="500.3" y="517" width="1.7" height="15.0" fill="rgb(244,151,48)" rx="2" ry="2" />
<text x="503.25" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getHash (2,680 samples, 0.06%)</title><rect x="1005.8" y="853" width="0.7" height="15.0" fill="rgb(226,15,3)" rx="2" ry="2" />
<text x="1008.79" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::onTransactionPreCommitOrIdle (1,560 samples, 0.04%)</title><rect x="357.0" y="997" width="0.4" height="15.0" fill="rgb(232,149,10)" rx="2" ry="2" />
<text x="360.01" y="1007.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (632,076 samples, 14.95%)</title><rect x="804.3" y="309" width="176.4" height="15.0" fill="rgb(253,110,15)" rx="2" ry="2" />
<text x="807.30" y="319.5" >MediaWiki\Extension\Sc..</text>
</g>
<g >
<title>MediaWiki\Languages\LanguageFactory::getRawLanguage (400 samples, 0.01%)</title><rect x="19.2" y="1269" width="0.1" height="15.0" fill="rgb(248,154,43)" rx="2" ry="2" />
<text x="22.23" y="1279.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (3,128 samples, 0.07%)</title><rect x="363.4" y="869" width="0.9" height="15.0" fill="rgb(226,2,42)" rx="2" ry="2" />
<text x="366.42" y="879.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\AnythingMatcher::__construct (1,704 samples, 0.04%)</title><rect x="621.5" y="581" width="0.5" height="15.0" fill="rgb(247,115,35)" rx="2" ry="2" />
<text x="624.48" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::callableToString (576 samples, 0.01%)</title><rect x="985.8" y="437" width="0.2" height="15.0" fill="rgb(219,227,20)" rx="2" ry="2" />
<text x="988.79" y="447.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (1,056 samples, 0.02%)</title><rect x="1147.0" y="869" width="0.3" height="15.0" fill="rgb(209,45,48)" rx="2" ry="2" />
<text x="1149.96" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (6,376 samples, 0.15%)</title><rect x="635.5" y="693" width="1.8" height="15.0" fill="rgb(222,28,3)" rx="2" ry="2" />
<text x="638.49" y="703.5" ></text>
</g>
<g >
<title>Language::sprintfDate (376 samples, 0.01%)</title><rect x="984.8" y="453" width="0.2" height="15.0" fill="rgb(209,68,18)" rx="2" ry="2" />
<text x="987.85" y="463.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (816 samples, 0.02%)</title><rect x="981.1" y="613" width="0.2" height="15.0" fill="rgb(223,37,7)" rx="2" ry="2" />
<text x="984.08" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parseblock_lines (1,088 samples, 0.03%)</title><rect x="363.1" y="965" width="0.3" height="15.0" fill="rgb(238,10,8)" rx="2" ry="2" />
<text x="366.11" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (26,340 samples, 0.62%)</title><rect x="628.1" y="773" width="7.4" height="15.0" fill="rgb(249,159,38)" rx="2" ry="2" />
<text x="631.14" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\Hooks::onParserFirstCallInit (5,296 samples, 0.13%)</title><rect x="649.1" y="597" width="1.5" height="15.0" fill="rgb(247,197,3)" rx="2" ry="2" />
<text x="652.08" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::load (7,848 samples, 0.19%)</title><rect x="986.0" y="725" width="2.2" height="15.0" fill="rgb(219,109,9)" rx="2" ry="2" />
<text x="988.96" y="735.5" ></text>
</g>
<g >
<title>Parser::extensionSubstitution (773,440 samples, 18.29%)</title><rect x="410.7" y="645" width="215.8" height="15.0" fill="rgb(211,184,54)" rx="2" ry="2" />
<text x="413.66" y="655.5" >Parser::extensionSubstitution</text>
</g>
<g >
<title>Parser::braceSubstitution (704,380 samples, 16.66%)</title><rect x="784.1" y="773" width="196.6" height="15.0" fill="rgb(228,120,7)" rx="2" ry="2" />
<text x="787.13" y="783.5" >Parser::braceSubstitution</text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (1,984 samples, 0.05%)</title><rect x="1006.0" y="837" width="0.5" height="15.0" fill="rgb(205,162,7)" rx="2" ry="2" />
<text x="1008.98" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (154,560 samples, 3.65%)</title><rect x="1070.6" y="949" width="43.2" height="15.0" fill="rgb(251,32,40)" rx="2" ry="2" />
<text x="1073.63" y="959.5" >Wiki..</text>
</g>
<g >
<title>SectionProfiler::scopedProfileOut (408 samples, 0.01%)</title><rect x="670.4" y="805" width="0.1" height="15.0" fill="rgb(220,225,15)" rx="2" ry="2" />
<text x="673.39" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parsesol_transparent (728 samples, 0.02%)</title><rect x="363.2" y="949" width="0.2" height="15.0" fill="rgb(238,45,15)" rx="2" ry="2" />
<text x="366.21" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssFlexbox3 (7,384 samples, 0.17%)</title><rect x="527.8" y="581" width="2.1" height="15.0" fill="rgb(215,68,27)" rx="2" ry="2" />
<text x="530.84" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::colorFuncs (25,016 samples, 0.59%)</title><rect x="496.9" y="533" width="7.0" height="15.0" fill="rgb(222,118,26)" rx="2" ry="2" />
<text x="499.94" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::MediaWiki\Storage\{closure} (3,120 samples, 0.07%)</title><rect x="688.2" y="565" width="0.8" height="15.0" fill="rgb(212,133,44)" rx="2" ry="2" />
<text x="691.15" y="575.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (16,584 samples, 0.39%)</title><rect x="981.3" y="597" width="4.7" height="15.0" fill="rgb(223,229,11)" rx="2" ry="2" />
<text x="984.32" y="607.5" ></text>
</g>
<g >
<title>MessageCache::transform (91,664 samples, 2.17%)</title><rect x="638.3" y="693" width="25.6" height="15.0" fill="rgb(222,158,49)" rx="2" ry="2" />
<text x="641.29" y="703.5" >M..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::image (72,104 samples, 1.71%)</title><rect x="486.0" y="565" width="20.1" height="15.0" fill="rgb(221,68,29)" rx="2" ry="2" />
<text x="488.97" y="575.5" ></text>
</g>
<g >
<title>Parser::handleMagicLinks (1,523 samples, 0.04%)</title><rect x="410.2" y="677" width="0.5" height="15.0" fill="rgb(221,227,38)" rx="2" ry="2" />
<text x="413.24" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (376 samples, 0.01%)</title><rect x="480.1" y="565" width="0.1" height="15.0" fill="rgb(207,175,11)" rx="2" ry="2" />
<text x="483.11" y="575.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (425,743 samples, 10.07%)</title><rect x="665.3" y="885" width="118.8" height="15.0" fill="rgb(215,74,30)" rx="2" ry="2" />
<text x="668.33" y="895.5" >Parser::braceS..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UnorderedGroup::someOf (416 samples, 0.01%)</title><rect x="506.0" y="549" width="0.1" height="15.0" fill="rgb(206,142,4)" rx="2" ry="2" />
<text x="508.97" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::constructSlotRecords (728 samples, 0.02%)</title><rect x="356.7" y="1045" width="0.2" height="15.0" fill="rgb(217,110,34)" rx="2" ry="2" />
<text x="359.72" y="1055.5" ></text>
</g>
<g >
<title>WikitextContentHandler::fillParserOutput (3,086,925 samples, 73.00%)</title><rect x="298.4" y="1189" width="861.4" height="15.0" fill="rgb(236,116,1)" rx="2" ry="2" />
<text x="301.43" y="1199.5" >WikitextContentHandler::fillParserOutput</text>
</g>
<g >
<title>Parser::braceSubstitution (68,080 samples, 1.61%)</title><rect x="665.3" y="853" width="19.0" height="15.0" fill="rgb(247,120,49)" rx="2" ry="2" />
<text x="668.35" y="863.5" ></text>
</g>
<g >
<title>Parser::transformMsg (6,848 samples, 0.16%)</title><rect x="661.2" y="677" width="1.9" height="15.0" fill="rgb(248,215,24)" rx="2" ry="2" />
<text x="664.16" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="419.1" y="533" width="0.2" height="15.0" fill="rgb(207,202,6)" rx="2" ry="2" />
<text x="422.13" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (3,384 samples, 0.08%)</title><rect x="688.1" y="773" width="0.9" height="15.0" fill="rgb(242,120,44)" rx="2" ry="2" />
<text x="691.09" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (802,378 samples, 18.97%)</title><rect x="402.7" y="901" width="223.9" height="15.0" fill="rgb(248,99,23)" rx="2" ry="2" />
<text x="405.70" y="911.5" >Wikimedia\Parsoid\Wt2Html\Par..</text>
</g>
<g >
<title>PPFrame_Hash::expand (632,140 samples, 14.95%)</title><rect x="804.3" y="533" width="176.4" height="15.0" fill="rgb(228,152,25)" rx="2" ry="2" />
<text x="807.28" y="543.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Parser::statelessFetchTemplate (10,080 samples, 0.24%)</title><rect x="685.2" y="693" width="2.8" height="15.0" fill="rgb(210,40,54)" rx="2" ry="2" />
<text x="688.19" y="703.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (154,136 samples, 3.64%)</title><rect x="1070.7" y="661" width="43.1" height="15.0" fill="rgb(245,5,9)" rx="2" ry="2" />
<text x="1073.74" y="671.5" >Pars..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContent (448 samples, 0.01%)</title><rect x="626.3" y="613" width="0.1" height="15.0" fill="rgb(221,228,27)" rx="2" ry="2" />
<text x="629.27" y="623.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (880 samples, 0.02%)</title><rect x="981.1" y="789" width="0.2" height="15.0" fill="rgb(215,228,34)" rx="2" ry="2" />
<text x="984.08" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::lock (376 samples, 0.01%)</title><rect x="1159.6" y="709" width="0.1" height="15.0" fill="rgb(231,158,47)" rx="2" ry="2" />
<text x="1162.57" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="499.9" y="485" width="0.2" height="15.0" fill="rgb(246,7,40)" rx="2" ry="2" />
<text x="502.86" y="495.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssCompositing1 (1,792 samples, 0.04%)</title><rect x="522.0" y="581" width="0.5" height="15.0" fill="rgb(230,63,40)" rx="2" ry="2" />
<text x="524.96" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (2,200 samples, 0.05%)</title><rect x="562.1" y="549" width="0.6" height="15.0" fill="rgb(227,103,26)" rx="2" ry="2" />
<text x="565.08" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="437.5" y="565" width="0.1" height="15.0" fill="rgb(243,148,53)" rx="2" ry="2" />
<text x="440.53" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (799,306 samples, 18.90%)</title><rect x="403.6" y="821" width="223.0" height="15.0" fill="rgb(236,13,29)" rx="2" ry="2" />
<text x="406.56" y="831.5" >Wikimedia\Parsoid\Wt2Html\Par..</text>
</g>
<g >
<title>MediaWiki\Specials\SpecialVersion::getVersion (1,528 samples, 0.04%)</title><rect x="817.8" y="181" width="0.5" height="15.0" fill="rgb(241,161,50)" rx="2" ry="2" />
<text x="820.84" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::if (696 samples, 0.02%)</title><rect x="684.3" y="853" width="0.2" height="15.0" fill="rgb(254,56,25)" rx="2" ry="2" />
<text x="687.34" y="863.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::getLuaType (408 samples, 0.01%)</title><rect x="670.5" y="677" width="0.1" height="15.0" fill="rgb(249,17,53)" rx="2" ry="2" />
<text x="673.51" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (3,128 samples, 0.07%)</title><rect x="363.4" y="901" width="0.9" height="15.0" fill="rgb(208,130,53)" rx="2" ry="2" />
<text x="366.42" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssSpeech (33,448 samples, 0.79%)</title><rect x="568.6" y="581" width="9.3" height="15.0" fill="rgb(231,96,23)" rx="2" ry="2" />
<text x="571.60" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (1,280 samples, 0.03%)</title><rect x="627.8" y="773" width="0.3" height="15.0" fill="rgb(239,165,26)" rx="2" ry="2" />
<text x="630.79" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (752 samples, 0.02%)</title><rect x="607.0" y="581" width="0.2" height="15.0" fill="rgb(226,177,12)" rx="2" ry="2" />
<text x="610.00" y="591.5" ></text>
</g>
<g >
<title>ContentHandler::getParserOutput (4,086,405 samples, 96.63%)</title><rect x="19.5" y="1205" width="1140.3" height="15.0" fill="rgb(220,20,52)" rx="2" ry="2" />
<text x="22.55" y="1215.5" >ContentHandler::getParserOutput</text>
</g>
<g >
<title>ParserCache::get (24,744 samples, 0.59%)</title><rect x="12.3" y="1333" width="6.9" height="15.0" fill="rgb(230,86,36)" rx="2" ry="2" />
<text x="15.31" y="1343.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::instantiatePHPLibrary (7,680 samples, 0.18%)</title><rect x="986.0" y="709" width="2.1" height="15.0" fill="rgb(226,229,41)" rx="2" ry="2" />
<text x="988.96" y="719.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (696 samples, 0.02%)</title><rect x="684.3" y="821" width="0.2" height="15.0" fill="rgb(237,94,9)" rx="2" ry="2" />
<text x="687.34" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::hasSourceText (536 samples, 0.01%)</title><rect x="1157.0" y="965" width="0.2" height="15.0" fill="rgb(217,37,23)" rx="2" ry="2" />
<text x="1160.03" y="975.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,204 samples, 14.95%)</title><rect x="804.3" y="725" width="176.4" height="15.0" fill="rgb(220,68,54)" rx="2" ry="2" />
<text x="807.27" y="735.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getExpandedArgument (1,656 samples, 0.04%)</title><rect x="684.7" y="741" width="0.4" height="15.0" fill="rgb(254,84,23)" rx="2" ry="2" />
<text x="687.66" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\SupportsAtRuleSanitizer::__construct (7,976 samples, 0.19%)</title><rect x="620.0" y="597" width="2.3" height="15.0" fill="rgb(238,63,51)" rx="2" ry="2" />
<text x="623.05" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (20,016 samples, 0.47%)</title><rect x="357.5" y="1029" width="5.6" height="15.0" fill="rgb(238,142,23)" rx="2" ry="2" />
<text x="360.52" y="1039.5" ></text>
</g>
<g >
<title>SectionProfileCallback::__destruct (4,776 samples, 0.11%)</title><rect x="1068.1" y="885" width="1.4" height="15.0" fill="rgb(248,33,13)" rx="2" ry="2" />
<text x="1071.14" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::dataState (440 samples, 0.01%)</title><rect x="1174.6" y="1333" width="0.2" height="15.0" fill="rgb(225,0,51)" rx="2" ry="2" />
<text x="1177.65" y="1343.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,140 samples, 14.95%)</title><rect x="804.3" y="517" width="176.4" height="15.0" fill="rgb(238,53,23)" rx="2" ry="2" />
<text x="807.28" y="527.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onSpecialPageAfterExecute (1,280 samples, 0.03%)</title><rect x="627.8" y="805" width="0.3" height="15.0" fill="rgb(237,147,47)" rx="2" ry="2" />
<text x="630.79" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (2,032 samples, 0.05%)</title><rect x="441.0" y="565" width="0.6" height="15.0" fill="rgb(223,89,37)" rx="2" ry="2" />
<text x="444.03" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssTypeSelector (960 samples, 0.02%)</title><rect x="438.4" y="565" width="0.3" height="15.0" fill="rgb(237,36,33)" rx="2" ry="2" />
<text x="441.39" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::expr (72,176 samples, 1.71%)</title><rect x="784.1" y="677" width="20.2" height="15.0" fill="rgb(254,122,34)" rx="2" ry="2" />
<text x="787.13" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1301" width="0.1" height="15.0" fill="rgb(233,62,16)" rx="2" ry="2" />
<text x="15.20" y="1311.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchStartAndRemove (464 samples, 0.01%)</title><rect x="661.2" y="597" width="0.1" height="15.0" fill="rgb(254,130,47)" rx="2" ry="2" />
<text x="664.17" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::getBlob (3,120 samples, 0.07%)</title><rect x="688.2" y="613" width="0.8" height="15.0" fill="rgb(248,87,48)" rx="2" ry="2" />
<text x="691.15" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssPseudo (23,768 samples, 0.56%)</title><rect x="439.0" y="581" width="6.7" height="15.0" fill="rgb(251,39,50)" rx="2" ry="2" />
<text x="442.03" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="436.8" y="549" width="0.2" height="15.0" fill="rgb(245,58,10)" rx="2" ry="2" />
<text x="439.83" y="559.5" ></text>
</g>
<g >
<title>Parser::parseExtensionTagAsTopLevelDoc (65,680 samples, 1.55%)</title><rect x="364.3" y="949" width="18.3" height="15.0" fill="rgb(234,216,39)" rx="2" ry="2" />
<text x="367.29" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="434.4" y="549" width="0.1" height="15.0" fill="rgb(209,136,23)" rx="2" ry="2" />
<text x="437.38" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadPackage (3,384 samples, 0.08%)</title><rect x="688.1" y="741" width="0.9" height="15.0" fill="rgb(243,125,29)" rx="2" ry="2" />
<text x="691.09" y="751.5" ></text>
</g>
<g >
<title>Kartographer\Hooks::onParserFirstCallInit (2,312 samples, 0.05%)</title><rect x="645.8" y="597" width="0.6" height="15.0" fill="rgb(212,75,34)" rx="2" ry="2" />
<text x="648.80" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\PropertySanitizer::doSanitize (86,240 samples, 2.04%)</title><rect x="455.3" y="485" width="24.1" height="15.0" fill="rgb(253,127,7)" rx="2" ry="2" />
<text x="458.33" y="495.5" >W..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\PipelineUtils::processContentInPipeline (802,378 samples, 18.97%)</title><rect x="402.7" y="917" width="223.9" height="15.0" fill="rgb(227,96,11)" rx="2" ry="2" />
<text x="405.70" y="927.5" >Wikimedia\Parsoid\Utils\Pipel..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (12,664 samples, 0.30%)</title><rect x="684.6" y="805" width="3.5" height="15.0" fill="rgb(230,128,32)" rx="2" ry="2" />
<text x="687.55" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TreeBuilder\TreeBuilderStage::processToken (2,256 samples, 0.05%)</title><rect x="626.6" y="741" width="0.6" height="15.0" fill="rgb(229,95,44)" rx="2" ry="2" />
<text x="629.61" y="751.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (816 samples, 0.02%)</title><rect x="981.1" y="725" width="0.2" height="15.0" fill="rgb(252,98,20)" rx="2" ry="2" />
<text x="984.08" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Sanitizer::validateTagAttributes (46,248 samples, 1.09%)</title><rect x="992.6" y="789" width="12.9" height="15.0" fill="rgb(254,9,15)" rx="2" ry="2" />
<text x="995.63" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (1,128 samples, 0.03%)</title><rect x="988.5" y="693" width="0.3" height="15.0" fill="rgb(243,77,29)" rx="2" ry="2" />
<text x="991.48" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\User\ActorCache::add (1,880 samples, 0.04%)</title><rect x="352.3" y="1045" width="0.5" height="15.0" fill="rgb(218,53,39)" rx="2" ry="2" />
<text x="355.32" y="1055.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (34,844 samples, 0.82%)</title><rect x="1147.3" y="965" width="9.7" height="15.0" fill="rgb(239,76,19)" rx="2" ry="2" />
<text x="1150.26" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Page\ParserOutputAccess::getCachedParserOutput (25,248 samples, 0.60%)</title><rect x="12.3" y="1349" width="7.1" height="15.0" fill="rgb(232,228,43)" rx="2" ry="2" />
<text x="15.31" y="1359.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (2,112 samples, 0.05%)</title><rect x="403.7" y="677" width="0.6" height="15.0" fill="rgb(211,29,40)" rx="2" ry="2" />
<text x="406.71" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::time (16,520 samples, 0.39%)</title><rect x="981.3" y="469" width="4.7" height="15.0" fill="rgb(210,173,46)" rx="2" ry="2" />
<text x="984.34" y="479.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,076 samples, 14.95%)</title><rect x="804.3" y="421" width="176.4" height="15.0" fill="rgb(225,75,46)" rx="2" ry="2" />
<text x="807.30" y="431.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Parser::transformMsg (3,656 samples, 0.09%)</title><rect x="637.3" y="693" width="1.0" height="15.0" fill="rgb(233,127,36)" rx="2" ry="2" />
<text x="640.27" y="703.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,140 samples, 14.95%)</title><rect x="804.3" y="597" width="176.4" height="15.0" fill="rgb(236,78,44)" rx="2" ry="2" />
<text x="807.28" y="607.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\FontFaceAtRuleSanitizer::fontMatchData (19,640 samples, 0.46%)</title><rect x="420.0" y="565" width="5.5" height="15.0" fill="rgb(237,24,36)" rx="2" ry="2" />
<text x="423.02" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__wakeup (7,680 samples, 0.18%)</title><rect x="986.0" y="581" width="2.1" height="15.0" fill="rgb(224,56,35)" rx="2" ry="2" />
<text x="988.96" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,880 samples, 0.04%)</title><rect x="429.5" y="565" width="0.5" height="15.0" fill="rgb(247,122,36)" rx="2" ry="2" />
<text x="432.48" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parseextension_annotation_tag (608 samples, 0.01%)</title><rect x="363.2" y="917" width="0.2" height="15.0" fill="rgb(222,213,2)" rx="2" ry="2" />
<text x="366.21" y="927.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (584 samples, 0.01%)</title><rect x="1176.0" y="1349" width="0.2" height="15.0" fill="rgb(251,225,36)" rx="2" ry="2" />
<text x="1179.00" y="1359.5" ></text>
</g>
<g >
<title>Language::getDir (186,392 samples, 4.41%)</title><rect x="298.5" y="1141" width="52.0" height="15.0" fill="rgb(245,156,48)" rx="2" ry="2" />
<text x="301.48" y="1151.5" >Langu..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="503.6" y="485" width="0.2" height="15.0" fill="rgb(242,56,54)" rx="2" ry="2" />
<text x="506.58" y="495.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::wikitextToDOM (802,378 samples, 18.97%)</title><rect x="402.7" y="933" width="223.9" height="15.0" fill="rgb(240,19,45)" rx="2" ry="2" />
<text x="405.70" y="943.5" >Wikimedia\Parsoid\Ext\Parsoid..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::time (7,280 samples, 0.17%)</title><rect x="598.7" y="565" width="2.1" height="15.0" fill="rgb(228,180,41)" rx="2" ry="2" />
<text x="601.74" y="575.5" ></text>
</g>
<g >
<title>CoreParserFunctions::urlencode (2,432 samples, 0.06%)</title><rect x="988.2" y="757" width="0.6" height="15.0" fill="rgb(213,68,50)" rx="2" ry="2" />
<text x="991.15" y="767.5" ></text>
</g>
<g >
<title>JobQueueDB::doBatchPushInternal (376 samples, 0.01%)</title><rect x="357.0" y="933" width="0.1" height="15.0" fill="rgb(214,56,44)" rx="2" ry="2" />
<text x="360.01" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (6,960 samples, 0.16%)</title><rect x="525.7" y="565" width="1.9" height="15.0" fill="rgb(243,107,46)" rx="2" ry="2" />
<text x="528.67" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setPageTitleMsg (91,696 samples, 2.17%)</title><rect x="638.3" y="773" width="25.6" height="15.0" fill="rgb(225,59,11)" rx="2" ry="2" />
<text x="641.29" y="783.5" >M..</text>
</g>
<g >
<title>SqlBagOStuff::doLock (376 samples, 0.01%)</title><rect x="1159.6" y="757" width="0.1" height="15.0" fill="rgb(243,178,50)" rx="2" ry="2" />
<text x="1162.57" y="767.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (3,120 samples, 0.07%)</title><rect x="688.2" y="485" width="0.8" height="15.0" fill="rgb(236,57,13)" rx="2" ry="2" />
<text x="691.15" y="495.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (6,144 samples, 0.15%)</title><rect x="828.4" y="181" width="1.7" height="15.0" fill="rgb(248,119,29)" rx="2" ry="2" />
<text x="831.38" y="191.5" ></text>
</g>
<g >
<title>Parser::getTemplateDom (17,992 samples, 0.43%)</title><rect x="665.4" y="805" width="5.0" height="15.0" fill="rgb(228,182,29)" rx="2" ry="2" />
<text x="668.37" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (2,560 samples, 0.06%)</title><rect x="988.8" y="677" width="0.7" height="15.0" fill="rgb(234,21,24)" rx="2" ry="2" />
<text x="991.83" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Replication\MysqlReplicationReporter::getApproximateLagStatus (808 samples, 0.02%)</title><rect x="357.1" y="901" width="0.2" height="15.0" fill="rgb(225,77,27)" rx="2" ry="2" />
<text x="360.12" y="911.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (154,136 samples, 3.64%)</title><rect x="1070.7" y="645" width="43.1" height="15.0" fill="rgb(254,131,28)" rx="2" ry="2" />
<text x="1073.74" y="655.5" >Pars..</text>
</g>
<g >
<title>Parser::callParserFunction (29,240 samples, 0.69%)</title><rect x="980.7" y="821" width="8.1" height="15.0" fill="rgb(221,124,34)" rx="2" ry="2" />
<text x="983.67" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (472 samples, 0.01%)</title><rect x="670.5" y="741" width="0.1" height="15.0" fill="rgb(209,40,17)" rx="2" ry="2" />
<text x="673.51" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (9,504 samples, 0.22%)</title><rect x="360.4" y="901" width="2.6" height="15.0" fill="rgb(222,162,3)" rx="2" ry="2" />
<text x="363.40" y="911.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (1,072 samples, 0.03%)</title><rect x="820.9" y="149" width="0.3" height="15.0" fill="rgb(250,141,44)" rx="2" ry="2" />
<text x="823.95" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::httpGetCached (9,056 samples, 0.21%)</title><rect x="1157.2" y="869" width="2.5" height="15.0" fill="rgb(234,172,23)" rx="2" ry="2" />
<text x="1160.18" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::patternToRegex (1,592 samples, 0.04%)</title><rect x="403.0" y="581" width="0.5" height="15.0" fill="rgb(212,70,16)" rx="2" ry="2" />
<text x="406.02" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Util::stringify (7,032 samples, 0.17%)</title><rect x="622.3" y="597" width="1.9" height="15.0" fill="rgb(236,161,39)" rx="2" ry="2" />
<text x="625.27" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (3,384 samples, 0.08%)</title><rect x="688.1" y="805" width="0.9" height="15.0" fill="rgb(220,215,42)" rx="2" ry="2" />
<text x="691.09" y="815.5" ></text>
</g>
<g >
<title>require /var/www/html/w/extensions/TemplateStyles/includes/Hooks/HookRunner.php (3,968 samples, 0.09%)</title><rect x="625.1" y="565" width="1.1" height="15.0" fill="rgb(215,205,28)" rx="2" ry="2" />
<text x="628.14" y="575.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (16,584 samples, 0.39%)</title><rect x="981.3" y="565" width="4.7" height="15.0" fill="rgb(224,87,31)" rx="2" ry="2" />
<text x="984.32" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UriLibrary::register (15,664 samples, 0.37%)</title><rect x="824.0" y="197" width="4.4" height="15.0" fill="rgb(208,98,42)" rx="2" ry="2" />
<text x="826.99" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\SiteConfig::bswRegexp (19,176 samples, 0.45%)</title><rect x="357.7" y="965" width="5.4" height="15.0" fill="rgb(229,162,21)" rx="2" ry="2" />
<text x="360.73" y="975.5" ></text>
</g>
<g >
<title>DateTime::format (512 samples, 0.01%)</title><rect x="1174.5" y="1189" width="0.1" height="15.0" fill="rgb(237,210,18)" rx="2" ry="2" />
<text x="1177.50" y="1199.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (24,592 samples, 0.58%)</title><rect x="741.3" y="757" width="6.8" height="15.0" fill="rgb(246,166,18)" rx="2" ry="2" />
<text x="744.28" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parse (496 samples, 0.01%)</title><rect x="1070.5" y="917" width="0.1" height="15.0" fill="rgb(226,164,23)" rx="2" ry="2" />
<text x="1073.49" y="927.5" ></text>
</g>
<g >
<title>Language::getMagic (6,392 samples, 0.15%)</title><rect x="358.3" y="901" width="1.8" height="15.0" fill="rgb(205,130,46)" rx="2" ry="2" />
<text x="361.30" y="911.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::preprocessToObj (17,944 samples, 0.42%)</title><rect x="665.4" y="773" width="5.0" height="15.0" fill="rgb(233,7,8)" rx="2" ry="2" />
<text x="668.38" y="783.5" ></text>
</g>
<g >
<title>unserialize (2,560 samples, 0.06%)</title><rect x="988.8" y="629" width="0.7" height="15.0" fill="rgb(244,127,32)" rx="2" ry="2" />
<text x="991.83" y="639.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onSpecialPageBeforeExecute (32,716 samples, 0.77%)</title><rect x="628.1" y="805" width="9.2" height="15.0" fill="rgb(245,4,3)" rx="2" ry="2" />
<text x="631.14" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::ifeq (16,584 samples, 0.39%)</title><rect x="981.3" y="581" width="4.7" height="15.0" fill="rgb(245,13,43)" rx="2" ry="2" />
<text x="984.32" y="591.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (816 samples, 0.02%)</title><rect x="981.1" y="741" width="0.2" height="15.0" fill="rgb(220,23,33)" rx="2" ry="2" />
<text x="984.08" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (51,920 samples, 1.23%)</title><rect x="1159.8" y="1077" width="14.5" height="15.0" fill="rgb(245,76,38)" rx="2" ry="2" />
<text x="1162.79" y="1087.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (12,896 samples, 0.30%)</title><rect x="749.3" y="645" width="3.6" height="15.0" fill="rgb(223,30,35)" rx="2" ry="2" />
<text x="752.32" y="655.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parsexmlish_tag (608 samples, 0.01%)</title><rect x="363.2" y="901" width="0.2" height="15.0" fill="rgb(249,101,44)" rx="2" ry="2" />
<text x="366.21" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,128 samples, 0.03%)</title><rect x="479.7" y="581" width="0.4" height="15.0" fill="rgb(236,82,44)" rx="2" ry="2" />
<text x="482.75" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::fetchRevisionRowFromConds (872 samples, 0.02%)</title><rect x="350.5" y="1093" width="0.2" height="15.0" fill="rgb(205,220,17)" rx="2" ry="2" />
<text x="353.49" y="1103.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\Sanitizer::sanitizeList (86,240 samples, 2.04%)</title><rect x="455.3" y="501" width="24.1" height="15.0" fill="rgb(241,133,41)" rx="2" ry="2" />
<text x="458.33" y="511.5" >W..</text>
</g>
<g >
<title>Message::transformText (3,656 samples, 0.09%)</title><rect x="637.3" y="725" width="1.0" height="15.0" fill="rgb(237,110,35)" rx="2" ry="2" />
<text x="640.27" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="510.1" y="533" width="0.2" height="15.0" fill="rgb(214,204,19)" rx="2" ry="2" />
<text x="513.11" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="501.8" y="485" width="0.2" height="15.0" fill="rgb(219,83,7)" rx="2" ry="2" />
<text x="504.78" y="495.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (20,200 samples, 0.48%)</title><rect x="1176.2" y="1349" width="5.6" height="15.0" fill="rgb(218,96,13)" rx="2" ry="2" />
<text x="1179.16" y="1359.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::newRevisionFromRow (7,568 samples, 0.18%)</title><rect x="350.7" y="1093" width="2.1" height="15.0" fill="rgb(236,155,38)" rx="2" ry="2" />
<text x="353.73" y="1103.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (1,449,547 samples, 34.28%)</title><rect x="665.0" y="917" width="404.5" height="15.0" fill="rgb(250,83,29)" rx="2" ry="2" />
<text x="668.01" y="927.5" >Parser::braceSubstitution</text>
</g>
<g >
<title>ParserOptions::newFromUser (13,064 samples, 0.31%)</title><rect x="352.9" y="1141" width="3.7" height="15.0" fill="rgb(236,19,49)" rx="2" ry="2" />
<text x="355.95" y="1151.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::percentage (6,440 samples, 0.15%)</title><rect x="502.0" y="517" width="1.8" height="15.0" fill="rgb(221,25,11)" rx="2" ry="2" />
<text x="505.05" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Specials\SpecialPrefixIndex::execute (95,352 samples, 2.25%)</title><rect x="637.3" y="805" width="26.6" height="15.0" fill="rgb(215,160,19)" rx="2" ry="2" />
<text x="640.27" y="815.5" >M..</text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::getBlob (51,920 samples, 1.23%)</title><rect x="1159.8" y="1173" width="14.5" height="15.0" fill="rgb(254,225,44)" rx="2" ry="2" />
<text x="1162.79" y="1183.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::rawLength (1,768 samples, 0.04%)</title><rect x="508.0" y="549" width="0.5" height="15.0" fill="rgb(232,136,25)" rx="2" ry="2" />
<text x="510.96" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\Sanitizer::sanitize (86,272 samples, 2.04%)</title><rect x="455.3" y="597" width="24.1" height="15.0" fill="rgb(252,17,23)" rx="2" ry="2" />
<text x="458.33" y="607.5" >W..</text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::getContentHandler (448 samples, 0.01%)</title><rect x="980.5" y="181" width="0.2" height="15.0" fill="rgb(236,69,33)" rx="2" ry="2" />
<text x="983.54" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::getObjectFromSpec (18,900 samples, 0.45%)</title><rect x="630.2" y="741" width="5.3" height="15.0" fill="rgb(219,183,38)" rx="2" ry="2" />
<text x="633.22" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\TransactionManager::addToAtomicLevels (376 samples, 0.01%)</title><rect x="357.3" y="933" width="0.1" height="15.0" fill="rgb(214,191,37)" rx="2" ry="2" />
<text x="360.34" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onRequestContextCreateSkin (6,376 samples, 0.15%)</title><rect x="635.5" y="725" width="1.8" height="15.0" fill="rgb(252,228,33)" rx="2" ry="2" />
<text x="638.49" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::ifeq (632,140 samples, 14.95%)</title><rect x="804.3" y="485" width="176.4" height="15.0" fill="rgb(205,43,32)" rx="2" ry="2" />
<text x="807.28" y="495.5" >MediaWiki\Extension\Pa..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TitleLibrary::register (9,816 samples, 0.23%)</title><rect x="821.3" y="197" width="2.7" height="15.0" fill="rgb(235,166,21)" rx="2" ry="2" />
<text x="824.25" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssPseudo (23,768 samples, 0.56%)</title><rect x="613.2" y="549" width="6.7" height="15.0" fill="rgb(226,199,8)" rx="2" ry="2" />
<text x="616.24" y="559.5" ></text>
</g>
<g >
<title>ParserOptions::__construct (512 samples, 0.01%)</title><rect x="1174.5" y="1365" width="0.1" height="15.0" fill="rgb(238,167,35)" rx="2" ry="2" />
<text x="1177.50" y="1375.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssTypeSelector (960 samples, 0.02%)</title><rect x="612.6" y="533" width="0.3" height="15.0" fill="rgb(209,64,34)" rx="2" ry="2" />
<text x="615.60" y="543.5" ></text>
</g>
<g >
<title>Parser::incrementIncludeSize (376 samples, 0.01%)</title><rect x="637.4" y="613" width="0.1" height="15.0" fill="rgb(230,12,17)" rx="2" ry="2" />
<text x="640.38" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::customIdent (1,176 samples, 0.03%)</title><rect x="550.6" y="565" width="0.4" height="15.0" fill="rgb(232,153,0)" rx="2" ry="2" />
<text x="553.62" y="575.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="808.2" y="133" width="0.1" height="15.0" fill="rgb(218,199,2)" rx="2" ry="2" />
<text x="811.17" y="143.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,172 samples, 14.95%)</title><rect x="804.3" y="693" width="176.4" height="15.0" fill="rgb(206,141,33)" rx="2" ry="2" />
<text x="807.28" y="703.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Cite\Ref::sourceToDom (154,136 samples, 3.64%)</title><rect x="1070.7" y="885" width="43.1" height="15.0" fill="rgb(205,37,49)" rx="2" ry="2" />
<text x="1073.74" y="895.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (2,560 samples, 0.06%)</title><rect x="988.8" y="661" width="0.7" height="15.0" fill="rgb(234,113,39)" rx="2" ry="2" />
<text x="991.83" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Hooks\ParserHooks::onGetDoubleUnderscoreIDs (1,032 samples, 0.02%)</title><rect x="360.1" y="901" width="0.3" height="15.0" fill="rgb(234,11,31)" rx="2" ry="2" />
<text x="363.11" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\File::newFromTitle (9,056 samples, 0.21%)</title><rect x="1157.2" y="901" width="2.5" height="15.0" fill="rgb(217,24,22)" rx="2" ry="2" />
<text x="1160.18" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicProperty (2,256 samples, 0.05%)</title><rect x="1175.1" y="1285" width="0.6" height="15.0" fill="rgb(246,10,19)" rx="2" ry="2" />
<text x="1178.11" y="1295.5" ></text>
</g>
<g >
<title>Parser::clearState (2,152 samples, 0.05%)</title><rect x="637.6" y="645" width="0.6" height="15.0" fill="rgb(215,56,15)" rx="2" ry="2" />
<text x="640.59" y="655.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::extTagToDOM (154,136 samples, 3.64%)</title><rect x="1070.7" y="869" width="43.1" height="15.0" fill="rgb(206,107,1)" rx="2" ry="2" />
<text x="1073.74" y="879.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (472 samples, 0.01%)</title><rect x="670.5" y="821" width="0.1" height="15.0" fill="rgb(246,199,3)" rx="2" ry="2" />
<text x="673.51" y="831.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssAttrib (6,912 samples, 0.16%)</title><rect x="435.3" y="581" width="2.0" height="15.0" fill="rgb(228,120,36)" rx="2" ry="2" />
<text x="438.33" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="611.7" y="533" width="0.1" height="15.0" fill="rgb(219,191,11)" rx="2" ry="2" />
<text x="614.74" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::__construct (1,488 samples, 0.04%)</title><rect x="572.9" y="549" width="0.4" height="15.0" fill="rgb(215,135,42)" rx="2" ry="2" />
<text x="575.89" y="559.5" ></text>
</g>
<g >
<title>CacheTime::recordOption (376 samples, 0.01%)</title><rect x="1069.5" y="885" width="0.1" height="15.0" fill="rgb(206,91,6)" rx="2" ry="2" />
<text x="1072.50" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\User\User::load (512 samples, 0.01%)</title><rect x="1174.5" y="1253" width="0.1" height="15.0" fill="rgb(216,120,23)" rx="2" ry="2" />
<text x="1177.50" y="1263.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (2,616 samples, 0.06%)</title><rect x="988.8" y="837" width="0.8" height="15.0" fill="rgb(221,159,40)" rx="2" ry="2" />
<text x="991.83" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (154,136 samples, 3.64%)</title><rect x="1070.7" y="629" width="43.1" height="15.0" fill="rgb(218,188,48)" rx="2" ry="2" />
<text x="1073.74" y="639.5" >Medi..</text>
</g>
<g >
<title>spl_autoload_call (4,432 samples, 0.10%)</title><rect x="943.5" y="101" width="1.2" height="15.0" fill="rgb(212,174,9)" rx="2" ry="2" />
<text x="946.46" y="111.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="529.7" y="549" width="0.2" height="15.0" fill="rgb(237,223,9)" rx="2" ry="2" />
<text x="532.69" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::select (29,064 samples, 0.69%)</title><rect x="1181.8" y="1349" width="8.1" height="15.0" fill="rgb(241,101,42)" rx="2" ry="2" />
<text x="1184.80" y="1359.5" ></text>
</g>
<g >
<title>SqlBagOStuff::doAdd (784 samples, 0.02%)</title><rect x="1159.5" y="805" width="0.2" height="15.0" fill="rgb(254,211,28)" rx="2" ry="2" />
<text x="1162.46" y="815.5" ></text>
</g>
<g >
<title>Parser::startExternalParse (1,296 samples, 0.03%)</title><rect x="1069.9" y="949" width="0.4" height="15.0" fill="rgb(245,58,2)" rx="2" ry="2" />
<text x="1072.95" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::css2 (115,120 samples, 2.72%)</title><rect x="480.2" y="581" width="32.2" height="15.0" fill="rgb(227,222,6)" rx="2" ry="2" />
<text x="483.24" y="591.5" >Wi..</text>
</g>
<g >
<title>spl_autoload_call (3,952 samples, 0.09%)</title><rect x="625.1" y="549" width="1.1" height="15.0" fill="rgb(207,118,27)" rx="2" ry="2" />
<text x="628.14" y="559.5" ></text>
</g>
<g >
<title>LocalisationCache::initShallowFallback (504 samples, 0.01%)</title><rect x="1157.0" y="853" width="0.2" height="15.0" fill="rgb(229,84,18)" rx="2" ry="2" />
<text x="1160.04" y="863.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (376 samples, 0.01%)</title><rect x="684.6" y="661" width="0.1" height="15.0" fill="rgb(254,211,53)" rx="2" ry="2" />
<text x="687.55" y="671.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,072 samples, 0.03%)</title><rect x="522.2" y="565" width="0.3" height="15.0" fill="rgb(211,75,18)" rx="2" ry="2" />
<text x="525.16" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="500.3" y="501" width="1.7" height="15.0" fill="rgb(244,207,49)" rx="2" ry="2" />
<text x="503.25" y="511.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (376 samples, 0.01%)</title><rect x="981.0" y="773" width="0.1" height="15.0" fill="rgb(206,91,17)" rx="2" ry="2" />
<text x="983.97" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (11,520 samples, 0.27%)</title><rect x="805.1" y="165" width="3.2" height="15.0" fill="rgb(222,22,35)" rx="2" ry="2" />
<text x="808.07" y="175.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (13,592 samples, 0.32%)</title><rect x="1141.4" y="869" width="3.8" height="15.0" fill="rgb(207,56,47)" rx="2" ry="2" />
<text x="1144.37" y="879.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssAttrib (7,016 samples, 0.17%)</title><rect x="609.3" y="549" width="1.9" height="15.0" fill="rgb(247,5,43)" rx="2" ry="2" />
<text x="612.26" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::preprocessWikitext (3,072 samples, 0.07%)</title><rect x="402.7" y="821" width="0.9" height="15.0" fill="rgb(211,87,0)" rx="2" ry="2" />
<text x="405.70" y="831.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssClass (1,440 samples, 0.03%)</title><rect x="611.2" y="549" width="0.4" height="15.0" fill="rgb(249,58,21)" rx="2" ry="2" />
<text x="614.22" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::load (2,616 samples, 0.06%)</title><rect x="988.8" y="773" width="0.8" height="15.0" fill="rgb(215,183,22)" rx="2" ry="2" />
<text x="991.83" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::doAtomicSection (696 samples, 0.02%)</title><rect x="1174.8" y="1365" width="0.2" height="15.0" fill="rgb(207,164,22)" rx="2" ry="2" />
<text x="1177.77" y="1375.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::preprocessWikitext (154,136 samples, 3.64%)</title><rect x="1070.7" y="741" width="43.1" height="15.0" fill="rgb(207,33,18)" rx="2" ry="2" />
<text x="1073.74" y="751.5" >Medi..</text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (8,432 samples, 0.20%)</title><rect x="357.7" y="933" width="2.4" height="15.0" fill="rgb(246,130,33)" rx="2" ry="2" />
<text x="360.73" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssAnimations (6,904 samples, 0.16%)</title><rect x="512.4" y="581" width="1.9" height="15.0" fill="rgb(254,210,7)" rx="2" ry="2" />
<text x="515.36" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Phonos\Phonos::onParserFirstCallInit (376 samples, 0.01%)</title><rect x="648.9" y="597" width="0.1" height="15.0" fill="rgb(240,27,34)" rx="2" ry="2" />
<text x="651.86" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::__call (696 samples, 0.02%)</title><rect x="1174.8" y="1349" width="0.2" height="15.0" fill="rgb(245,36,46)" rx="2" ry="2" />
<text x="1177.77" y="1359.5" ></text>
</g>
<g >
<title>JobQueueGroup::push (1,832 samples, 0.04%)</title><rect x="357.0" y="1061" width="0.5" height="15.0" fill="rgb(248,119,26)" rx="2" ry="2" />
<text x="360.01" y="1071.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="512.1" y="533" width="0.2" height="15.0" fill="rgb(254,40,44)" rx="2" ry="2" />
<text x="515.06" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (1,416 samples, 0.03%)</title><rect x="804.7" y="181" width="0.4" height="15.0" fill="rgb(225,134,47)" rx="2" ry="2" />
<text x="807.68" y="191.5" ></text>
</g>
<g >
<title>LocalisationCache::readPHPFile (182,600 samples, 4.32%)</title><rect x="299.5" y="1061" width="50.9" height="15.0" fill="rgb(205,155,9)" rx="2" ry="2" />
<text x="302.49" y="1071.5" >Local..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssANplusB (14,200 samples, 0.34%)</title><rect x="441.7" y="565" width="4.0" height="15.0" fill="rgb(209,176,15)" rx="2" ry="2" />
<text x="444.70" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (752 samples, 0.02%)</title><rect x="699.7" y="725" width="0.2" height="15.0" fill="rgb(244,124,7)" rx="2" ry="2" />
<text x="702.69" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Minerva\Hooks::onSpecialPageBeforeExecute (6,376 samples, 0.15%)</title><rect x="635.5" y="773" width="1.8" height="15.0" fill="rgb(209,82,25)" rx="2" ry="2" />
<text x="638.49" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (3,104 samples, 0.07%)</title><rect x="817.0" y="181" width="0.8" height="15.0" fill="rgb(221,46,44)" rx="2" ry="2" />
<text x="819.98" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::createObject (7,840 samples, 0.19%)</title><rect x="360.9" y="885" width="2.1" height="15.0" fill="rgb(205,220,23)" rx="2" ry="2" />
<text x="363.86" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::integer (5,440 samples, 0.13%)</title><rect x="498.7" y="517" width="1.6" height="15.0" fill="rgb(223,151,22)" rx="2" ry="2" />
<text x="501.73" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (10,080 samples, 0.24%)</title><rect x="685.2" y="517" width="2.8" height="15.0" fill="rgb(226,205,30)" rx="2" ry="2" />
<text x="688.19" y="527.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (840 samples, 0.02%)</title><rect x="980.7" y="773" width="0.2" height="15.0" fill="rgb(227,186,36)" rx="2" ry="2" />
<text x="983.67" y="783.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (6,816 samples, 0.16%)</title><rect x="661.2" y="629" width="1.9" height="15.0" fill="rgb(240,155,29)" rx="2" ry="2" />
<text x="664.17" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssTransitions (18,200 samples, 0.43%)</title><rect x="595.7" y="581" width="5.1" height="15.0" fill="rgb(228,117,12)" rx="2" ry="2" />
<text x="598.70" y="591.5" ></text>
</g>
<g >
<title>DOMDocument::registerNodeClass (416 samples, 0.01%)</title><rect x="1174.7" y="1205" width="0.1" height="15.0" fill="rgb(229,79,36)" rx="2" ry="2" />
<text x="1177.65" y="1215.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\ActiveFormattingElements::push (2,256 samples, 0.05%)</title><rect x="626.6" y="677" width="0.6" height="15.0" fill="rgb(214,138,22)" rx="2" ry="2" />
<text x="629.61" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::getLibraries (2,112 samples, 0.05%)</title><rect x="966.4" y="213" width="0.6" height="15.0" fill="rgb(246,220,27)" rx="2" ry="2" />
<text x="969.41" y="223.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::customIdent (1,176 samples, 0.03%)</title><rect x="514.0" y="565" width="0.3" height="15.0" fill="rgb(219,77,54)" rx="2" ry="2" />
<text x="516.96" y="575.5" ></text>
</g>
<g >
<title>CacheTime::recordOption (376 samples, 0.01%)</title><rect x="637.5" y="597" width="0.1" height="15.0" fill="rgb(243,53,46)" rx="2" ry="2" />
<text x="640.48" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (5,536 samples, 0.13%)</title><rect x="809.7" y="165" width="1.5" height="15.0" fill="rgb(234,68,54)" rx="2" ry="2" />
<text x="812.70" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (2,112 samples, 0.05%)</title><rect x="403.7" y="693" width="0.6" height="15.0" fill="rgb(230,5,49)" rx="2" ry="2" />
<text x="406.71" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (16,624 samples, 0.39%)</title><rect x="981.3" y="725" width="4.7" height="15.0" fill="rgb(214,171,3)" rx="2" ry="2" />
<text x="984.32" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\SpecialPage\SpecialPage::setHeaders (91,696 samples, 2.17%)</title><rect x="638.3" y="789" width="25.6" height="15.0" fill="rgb(238,194,16)" rx="2" ry="2" />
<text x="641.29" y="799.5" >M..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssWritingModes3 (2,776 samples, 0.07%)</title><rect x="605.6" y="581" width="0.7" height="15.0" fill="rgb(241,140,48)" rx="2" ry="2" />
<text x="608.56" y="591.5" ></text>
</g>
<g >
<title>spl_autoload_call (1,416 samples, 0.03%)</title><rect x="944.3" y="53" width="0.4" height="15.0" fill="rgb(208,157,51)" rx="2" ry="2" />
<text x="947.30" y="63.5" ></text>
</g>
<g >
<title>CoreParserFunctions::displaytitle (57,232 samples, 1.35%)</title><rect x="989.6" y="885" width="15.9" height="15.0" fill="rgb(209,110,17)" rx="2" ry="2" />
<text x="992.56" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::interpretDoctypeMatches (440 samples, 0.01%)</title><rect x="1174.6" y="1317" width="0.2" height="15.0" fill="rgb(214,136,35)" rx="2" ry="2" />
<text x="1177.65" y="1327.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::__call (29,064 samples, 0.69%)</title><rect x="1181.8" y="1365" width="8.1" height="15.0" fill="rgb(241,169,44)" rx="2" ry="2" />
<text x="1184.80" y="1375.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="437.0" y="549" width="0.1" height="15.0" fill="rgb(246,225,15)" rx="2" ry="2" />
<text x="440.04" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (3,384 samples, 0.08%)</title><rect x="688.1" y="757" width="0.9" height="15.0" fill="rgb(205,64,28)" rx="2" ry="2" />
<text x="691.09" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::execute (440 samples, 0.01%)</title><rect x="1174.6" y="1365" width="0.2" height="15.0" fill="rgb(248,59,17)" rx="2" ry="2" />
<text x="1177.65" y="1375.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="600.3" y="533" width="0.2" height="15.0" fill="rgb(251,44,36)" rx="2" ry="2" />
<text x="603.27" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (816 samples, 0.02%)</title><rect x="981.1" y="709" width="0.2" height="15.0" fill="rgb(236,82,26)" rx="2" ry="2" />
<text x="984.08" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\Timestamp\ConvertibleTimestamp::convert (512 samples, 0.01%)</title><rect x="1174.5" y="1221" width="0.1" height="15.0" fill="rgb(236,29,28)" rx="2" ry="2" />
<text x="1177.50" y="1231.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::executeQuery (29,064 samples, 0.69%)</title><rect x="1181.8" y="1317" width="8.1" height="15.0" fill="rgb(205,2,1)" rx="2" ry="2" />
<text x="1184.80" y="1327.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (18,736 samples, 0.44%)</title><rect x="967.4" y="229" width="5.2" height="15.0" fill="rgb(226,16,8)" rx="2" ry="2" />
<text x="970.38" y="239.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (1,416 samples, 0.03%)</title><rect x="804.7" y="165" width="0.4" height="15.0" fill="rgb(232,71,17)" rx="2" ry="2" />
<text x="807.68" y="175.5" ></text>
</g>
<g >
<title>ParserOptions::optionsHash (472 samples, 0.01%)</title><rect x="19.2" y="1317" width="0.1" height="15.0" fill="rgb(227,229,23)" rx="2" ry="2" />
<text x="22.21" y="1327.5" ></text>
</g>
<g >
<title>Generator::valid (20,640 samples, 0.49%)</title><rect x="473.6" y="437" width="5.8" height="15.0" fill="rgb(240,151,13)" rx="2" ry="2" />
<text x="476.63" y="447.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::doCompile (4,496 samples, 0.11%)</title><rect x="404.4" y="533" width="1.3" height="15.0" fill="rgb(236,53,1)" rx="2" ry="2" />
<text x="407.42" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wikitext\ContentModelHandler::toDOM (2,875,165 samples, 67.99%)</title><rect x="357.5" y="1141" width="802.3" height="15.0" fill="rgb(233,134,20)" rx="2" ry="2" />
<text x="360.52" y="1151.5" >Wikimedia\Parsoid\Wikitext\ContentModelHandler::toDOM</text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onParserAfterParse (2,112 samples, 0.05%)</title><rect x="403.7" y="709" width="0.6" height="15.0" fill="rgb(235,9,40)" rx="2" ry="2" />
<text x="406.71" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (154,104 samples, 3.64%)</title><rect x="1070.7" y="533" width="43.0" height="15.0" fill="rgb(214,102,54)" rx="2" ry="2" />
<text x="1073.74" y="543.5" >Medi..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TextLibrary::textUnstripNoWiki (408 samples, 0.01%)</title><rect x="402.7" y="597" width="0.1" height="15.0" fill="rgb(244,16,54)" rx="2" ry="2" />
<text x="405.72" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="436.1" y="565" width="0.1" height="15.0" fill="rgb(213,88,0)" rx="2" ry="2" />
<text x="439.12" y="575.5" ></text>
</g>
<g >
<title>ParserCache::makeMetadataKey (14,504 samples, 0.34%)</title><rect x="15.2" y="1301" width="4.0" height="15.0" fill="rgb(244,205,43)" rx="2" ry="2" />
<text x="18.16" y="1311.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageNameUtils::MediaWiki\Languages\{closure} (152,144 samples, 3.60%)</title><rect x="1070.7" y="453" width="42.5" height="15.0" fill="rgb(207,0,44)" rx="2" ry="2" />
<text x="1073.74" y="463.5" >Med..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylesheetSanitizer::doSanitize (86,272 samples, 2.04%)</title><rect x="455.3" y="581" width="24.1" height="15.0" fill="rgb(212,136,39)" rx="2" ry="2" />
<text x="458.33" y="591.5" >W..</text>
</g>
<g >
<title>Parser::braceSubstitution (16,584 samples, 0.39%)</title><rect x="981.3" y="613" width="4.7" height="15.0" fill="rgb(206,100,33)" rx="2" ry="2" />
<text x="984.32" y="623.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::normalizeRequests (784 samples, 0.02%)</title><rect x="1157.3" y="773" width="0.2" height="15.0" fill="rgb(216,181,22)" rx="2" ry="2" />
<text x="1160.28" y="783.5" ></text>
</g>
<g >
<title>RelatedArticles\Hooks::onParserFirstCallInit (416 samples, 0.01%)</title><rect x="650.7" y="597" width="0.1" height="15.0" fill="rgb(252,222,53)" rx="2" ry="2" />
<text x="653.67" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::__construct (1,373 samples, 0.03%)</title><rect x="748.2" y="741" width="0.4" height="15.0" fill="rgb(213,182,50)" rx="2" ry="2" />
<text x="751.19" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchStartToEnd (2,280 samples, 0.05%)</title><rect x="988.2" y="741" width="0.6" height="15.0" fill="rgb(210,78,45)" rx="2" ry="2" />
<text x="991.16" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RenderedRevision::getSlotParserOutput (4,138,325 samples, 97.86%)</title><rect x="19.5" y="1253" width="1154.8" height="15.0" fill="rgb(241,209,28)" rx="2" ry="2" />
<text x="22.55" y="1263.5" >MediaWiki\Revision\RenderedRevision::getSlotParserOutput</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::fetchModuleFromParser (6,664 samples, 0.16%)</title><rect x="978.8" y="293" width="1.9" height="15.0" fill="rgb(219,202,10)" rx="2" ry="2" />
<text x="981.80" y="303.5" ></text>
</g>
<g >
<title>unserialize (7,864 samples, 0.19%)</title><rect x="741.4" y="677" width="2.2" height="15.0" fill="rgb(213,57,53)" rx="2" ry="2" />
<text x="744.38" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="438.5" y="549" width="0.2" height="15.0" fill="rgb(229,128,37)" rx="2" ry="2" />
<text x="441.55" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (448 samples, 0.01%)</title><rect x="980.5" y="197" width="0.2" height="15.0" fill="rgb(225,180,18)" rx="2" ry="2" />
<text x="983.54" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TitleLibrary::register (4,512 samples, 0.11%)</title><rect x="698.6" y="741" width="1.3" height="15.0" fill="rgb(212,136,45)" rx="2" ry="2" />
<text x="701.64" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Sanitizer::setupAttributesAllowedInternal (46,248 samples, 1.09%)</title><rect x="992.6" y="757" width="12.9" height="15.0" fill="rgb(237,29,24)" rx="2" ry="2" />
<text x="995.63" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\KeyframesAtRuleSanitizer::__construct (2,840 samples, 0.07%)</title><rect x="445.7" y="597" width="0.8" height="15.0" fill="rgb(235,37,53)" rx="2" ry="2" />
<text x="448.74" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::makeTest (848 samples, 0.02%)</title><rect x="1114.4" y="933" width="0.2" height="15.0" fill="rgb(219,219,21)" rx="2" ry="2" />
<text x="1117.41" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssOverflow3 (1,800 samples, 0.04%)</title><rect x="563.6" y="581" width="0.5" height="15.0" fill="rgb(228,187,12)" rx="2" ry="2" />
<text x="566.60" y="591.5" ></text>
</g>
<g >
<title>Parser::handleHeadings (600 samples, 0.01%)</title><rect x="410.0" y="677" width="0.1" height="15.0" fill="rgb(229,22,17)" rx="2" ry="2" />
<text x="412.96" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssNegation (5,000 samples, 0.12%)</title><rect x="611.8" y="549" width="1.4" height="15.0" fill="rgb(220,80,6)" rx="2" ry="2" />
<text x="614.84" y="559.5" ></text>
</g>
<g >
<title>Parser::internalParse (133,380 samples, 3.15%)</title><rect x="627.8" y="917" width="37.2" height="15.0" fill="rgb(234,67,28)" rx="2" ry="2" />
<text x="630.79" y="927.5" >Par..</text>
</g>
<g >
<title>WANObjectCache::getWithSetCallback (51,920 samples, 1.23%)</title><rect x="1159.8" y="1157" width="14.5" height="15.0" fill="rgb(226,126,5)" rx="2" ry="2" />
<text x="1162.79" y="1167.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (798,970 samples, 18.89%)</title><rect x="403.7" y="789" width="222.9" height="15.0" fill="rgb(209,16,48)" rx="2" ry="2" />
<text x="406.65" y="799.5" >Wikimedia\Parsoid\Wt2Html\Tok..</text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1077" width="0.1" height="15.0" fill="rgb(246,9,53)" rx="2" ry="2" />
<text x="15.20" y="1087.5" ></text>
</g>
<g >
<title>Parser::recursiveTagParse (789,090 samples, 18.66%)</title><rect x="406.4" y="709" width="220.2" height="15.0" fill="rgb(230,186,43)" rx="2" ry="2" />
<text x="409.41" y="719.5" >Parser::recursiveTagParse</text>
</g>
<g >
<title>Wikimedia\RemexHtml\DOM\DOMBuilder::doctype (440 samples, 0.01%)</title><rect x="1174.6" y="1253" width="0.2" height="15.0" fill="rgb(236,227,4)" rx="2" ry="2" />
<text x="1177.65" y="1263.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (584 samples, 0.01%)</title><rect x="1176.0" y="1397" width="0.2" height="15.0" fill="rgb(206,209,33)" rx="2" ry="2" />
<text x="1179.00" y="1407.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchAndRemove (2,255 samples, 0.05%)</title><rect x="409.3" y="661" width="0.7" height="15.0" fill="rgb(247,180,9)" rx="2" ry="2" />
<text x="412.33" y="671.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (1,416 samples, 0.03%)</title><rect x="944.3" y="37" width="0.4" height="15.0" fill="rgb(243,194,35)" rx="2" ry="2" />
<text x="947.30" y="47.5" ></text>
</g>
<g >
<title>spl_autoload_call (18,736 samples, 0.44%)</title><rect x="967.4" y="245" width="5.2" height="15.0" fill="rgb(211,34,41)" rx="2" ry="2" />
<text x="970.38" y="255.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::initRules (2,736 samples, 0.06%)</title><rect x="1114.8" y="917" width="0.8" height="15.0" fill="rgb(254,83,44)" rx="2" ry="2" />
<text x="1117.85" y="927.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::addLiteral (9,832 samples, 0.23%)</title><rect x="781.3" y="805" width="2.7" height="15.0" fill="rgb(224,136,22)" rx="2" ry="2" />
<text x="784.27" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\ParserObserver::notifyParse (986,296 samples, 23.32%)</title><rect x="23.2" y="1189" width="275.2" height="15.0" fill="rgb(247,149,22)" rx="2" ry="2" />
<text x="26.23" y="1199.5" >MediaWiki\Parser\ParserObserver::not..</text>
</g>
<g >
<title>PPFrame_Hash::expand (1,449,547 samples, 34.28%)</title><rect x="665.0" y="933" width="404.5" height="15.0" fill="rgb(237,40,7)" rx="2" ry="2" />
<text x="668.01" y="943.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (448 samples, 0.01%)</title><rect x="626.3" y="597" width="0.1" height="15.0" fill="rgb(206,99,23)" rx="2" ry="2" />
<text x="629.27" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1237" width="0.1" height="15.0" fill="rgb(238,161,4)" rx="2" ry="2" />
<text x="15.20" y="1247.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (6,392 samples, 0.15%)</title><rect x="358.3" y="917" width="1.8" height="15.0" fill="rgb(239,21,18)" rx="2" ry="2" />
<text x="361.30" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="607.9" y="565" width="0.1" height="15.0" fill="rgb(222,46,22)" rx="2" ry="2" />
<text x="610.88" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::dataState (65,536 samples, 1.55%)</title><rect x="364.3" y="869" width="18.3" height="15.0" fill="rgb(235,131,53)" rx="2" ry="2" />
<text x="367.30" y="879.5" ></text>
</g>
<g >
<title>Generator::valid (20,640 samples, 0.49%)</title><rect x="473.6" y="405" width="5.8" height="15.0" fill="rgb(230,145,32)" rx="2" ry="2" />
<text x="476.63" y="415.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::add (784 samples, 0.02%)</title><rect x="1159.5" y="821" width="0.2" height="15.0" fill="rgb(222,95,6)" rx="2" ry="2" />
<text x="1162.46" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::checkUrl (20,640 samples, 0.49%)</title><rect x="473.6" y="293" width="5.8" height="15.0" fill="rgb(211,152,23)" rx="2" ry="2" />
<text x="476.63" y="303.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="830.0" y="133" width="0.1" height="15.0" fill="rgb(226,47,31)" rx="2" ry="2" />
<text x="832.98" y="143.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (2,088 samples, 0.05%)</title><rect x="562.9" y="549" width="0.6" height="15.0" fill="rgb(225,142,21)" rx="2" ry="2" />
<text x="565.92" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (2,088 samples, 0.05%)</title><rect x="597.5" y="549" width="0.6" height="15.0" fill="rgb(249,27,48)" rx="2" ry="2" />
<text x="600.55" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1141" width="0.1" height="15.0" fill="rgb(222,85,53)" rx="2" ry="2" />
<text x="15.20" y="1151.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (154,136 samples, 3.64%)</title><rect x="1070.7" y="565" width="43.1" height="15.0" fill="rgb(250,185,42)" rx="2" ry="2" />
<text x="1073.74" y="575.5" >Medi..</text>
</g>
<g >
<title>PPTemplateFrame_Hash::getNamedArgument (704,380 samples, 16.66%)</title><rect x="784.1" y="805" width="196.6" height="15.0" fill="rgb(250,64,12)" rx="2" ry="2" />
<text x="787.13" y="815.5" >PPTemplateFrame_Hash::get..</text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (3,120 samples, 0.07%)</title><rect x="688.2" y="517" width="0.8" height="15.0" fill="rgb(233,165,8)" rx="2" ry="2" />
<text x="691.15" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (2,112 samples, 0.05%)</title><rect x="966.4" y="181" width="0.6" height="15.0" fill="rgb(222,4,9)" rx="2" ry="2" />
<text x="969.41" y="191.5" ></text>
</g>
<g >
<title>ParserOptions::optionUsed (376 samples, 0.01%)</title><rect x="637.5" y="613" width="0.1" height="15.0" fill="rgb(249,78,14)" rx="2" ry="2" />
<text x="640.48" y="623.5" ></text>
</g>
<g >
<title>LocalFile::getWidth (38,568 samples, 0.91%)</title><rect x="1134.4" y="997" width="10.8" height="15.0" fill="rgb(236,58,1)" rx="2" ry="2" />
<text x="1137.40" y="1007.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getArgument (16,584 samples, 0.39%)</title><rect x="981.3" y="661" width="4.7" height="15.0" fill="rgb(226,37,15)" rx="2" ry="2" />
<text x="984.32" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getInterpreter (376 samples, 0.01%)</title><rect x="684.6" y="725" width="0.1" height="15.0" fill="rgb(217,199,51)" rx="2" ry="2" />
<text x="687.55" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\InsertQueryBuilder::execute (376 samples, 0.01%)</title><rect x="357.0" y="917" width="0.1" height="15.0" fill="rgb(243,101,26)" rx="2" ry="2" />
<text x="360.01" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSingleTimingFunction (4,576 samples, 0.11%)</title><rect x="597.1" y="565" width="1.3" height="15.0" fill="rgb(219,210,12)" rx="2" ry="2" />
<text x="600.14" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::makeSimple (696 samples, 0.02%)</title><rect x="1114.2" y="933" width="0.2" height="15.0" fill="rgb(243,3,4)" rx="2" ry="2" />
<text x="1117.21" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (2,688 samples, 0.06%)</title><rect x="829.2" y="133" width="0.8" height="15.0" fill="rgb(221,196,28)" rx="2" ry="2" />
<text x="832.23" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::getCurlHandle (2,648 samples, 0.06%)</title><rect x="1157.5" y="757" width="0.7" height="15.0" fill="rgb(220,197,17)" rx="2" ry="2" />
<text x="1160.50" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::getSizingAdditions (3,256 samples, 0.08%)</title><rect x="562.7" y="565" width="0.9" height="15.0" fill="rgb(249,121,11)" rx="2" ry="2" />
<text x="565.69" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getInterpreter (2,616 samples, 0.06%)</title><rect x="988.8" y="789" width="0.8" height="15.0" fill="rgb(218,35,30)" rx="2" ry="2" />
<text x="991.83" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::rawInteger (424 samples, 0.01%)</title><rect x="500.1" y="501" width="0.2" height="15.0" fill="rgb(247,122,20)" rx="2" ry="2" />
<text x="503.13" y="511.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::getObjectFromSpec (7,840 samples, 0.19%)</title><rect x="360.9" y="869" width="2.1" height="15.0" fill="rgb(245,72,19)" rx="2" ry="2" />
<text x="363.86" y="879.5" ></text>
</g>
<g >
<title>FileRepo::fileExistsBatch (568 samples, 0.01%)</title><rect x="1134.2" y="965" width="0.2" height="15.0" fill="rgb(223,51,38)" rx="2" ry="2" />
<text x="1137.24" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\User\ActorCache::add (376 samples, 0.01%)</title><rect x="1175.9" y="1333" width="0.1" height="15.0" fill="rgb(253,109,24)" rx="2" ry="2" />
<text x="1178.87" y="1343.5" ></text>
</g>
<g >
<title>SectionProfiler::getErrorEntry (376 samples, 0.01%)</title><rect x="638.1" y="613" width="0.1" height="15.0" fill="rgb(246,208,1)" rx="2" ry="2" />
<text x="641.08" y="623.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (18,448 samples, 0.44%)</title><rect x="665.4" y="837" width="5.1" height="15.0" fill="rgb(251,194,44)" rx="2" ry="2" />
<text x="668.36" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::registerLibrary (5,456 samples, 0.13%)</title><rect x="697.1" y="709" width="1.5" height="15.0" fill="rgb(246,3,14)" rx="2" ry="2" />
<text x="700.12" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesFontFaceAtRuleSanitizer::__construct (28,968 samples, 0.69%)</title><rect x="417.4" y="597" width="8.1" height="15.0" fill="rgb(224,195,48)" rx="2" ry="2" />
<text x="420.43" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="502.0" y="501" width="1.8" height="15.0" fill="rgb(236,120,25)" rx="2" ry="2" />
<text x="505.05" y="511.5" ></text>
</g>
<g >
<title>MediaWiki\Page\ParserOutputAccess::getParserOutput (4,164,277 samples, 98.47%)</title><rect x="12.3" y="1365" width="1162.0" height="15.0" fill="rgb(216,23,2)" rx="2" ry="2" />
<text x="15.31" y="1375.5" >MediaWiki\Page\ParserOutputAccess::getParserOutput</text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::selectRow (872 samples, 0.02%)</title><rect x="350.5" y="1029" width="0.2" height="15.0" fill="rgb(207,9,43)" rx="2" ry="2" />
<text x="353.49" y="1039.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (733,620 samples, 17.35%)</title><rect x="784.1" y="853" width="204.7" height="15.0" fill="rgb(218,143,42)" rx="2" ry="2" />
<text x="787.13" y="863.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (3,120 samples, 0.07%)</title><rect x="688.2" y="501" width="0.8" height="15.0" fill="rgb(207,47,21)" rx="2" ry="2" />
<text x="691.15" y="511.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (1,656 samples, 0.04%)</title><rect x="684.7" y="693" width="0.4" height="15.0" fill="rgb(214,12,52)" rx="2" ry="2" />
<text x="687.66" y="703.5" ></text>
</g>
<g >
<title>SqlBagOStuff::makeKeyInternal (448 samples, 0.01%)</title><rect x="19.4" y="1285" width="0.1" height="15.0" fill="rgb(209,184,1)" rx="2" ry="2" />
<text x="22.35" y="1295.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadPackage (4,432 samples, 0.10%)</title><rect x="943.5" y="133" width="1.2" height="15.0" fill="rgb(250,40,33)" rx="2" ry="2" />
<text x="946.46" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::getPageInfo (9,632 samples, 0.23%)</title><rect x="1157.0" y="1013" width="2.7" height="15.0" fill="rgb(238,161,21)" rx="2" ry="2" />
<text x="1160.03" y="1023.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::getInitChunk (2,616 samples, 0.06%)</title><rect x="988.8" y="805" width="0.8" height="15.0" fill="rgb(215,100,39)" rx="2" ry="2" />
<text x="991.83" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (472 samples, 0.01%)</title><rect x="670.5" y="789" width="0.1" height="15.0" fill="rgb(240,32,5)" rx="2" ry="2" />
<text x="673.51" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\PageAtRuleSanitizer::__construct (27,128 samples, 0.64%)</title><rect x="447.8" y="597" width="7.5" height="15.0" fill="rgb(250,217,52)" rx="2" ry="2" />
<text x="450.76" y="607.5" ></text>
</g>
<g >
<title>CoreParserFunctions::talkpagename (3,128 samples, 0.07%)</title><rect x="363.4" y="773" width="0.9" height="15.0" fill="rgb(238,136,4)" rx="2" ry="2" />
<text x="366.42" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::load (214,093 samples, 5.06%)</title><rect x="689.0" y="773" width="59.8" height="15.0" fill="rgb(237,17,28)" rx="2" ry="2" />
<text x="692.03" y="783.5" >MediaW..</text>
</g>
<g >
<title>SectionProfiler::scopedProfileOut (4,776 samples, 0.11%)</title><rect x="1068.1" y="901" width="1.4" height="15.0" fill="rgb(254,146,35)" rx="2" ry="2" />
<text x="1071.14" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadPackage (10,320 samples, 0.24%)</title><rect x="685.1" y="741" width="2.9" height="15.0" fill="rgb(232,85,40)" rx="2" ry="2" />
<text x="688.12" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="492.8" y="517" width="0.3" height="15.0" fill="rgb(254,21,50)" rx="2" ry="2" />
<text x="495.83" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="605.5" y="549" width="0.1" height="15.0" fill="rgb(215,151,28)" rx="2" ry="2" />
<text x="608.45" y="559.5" ></text>
</g>
<g >
<title>BagOStuff::getWithSetCallback (152,576 samples, 3.61%)</title><rect x="1070.7" y="469" width="42.6" height="15.0" fill="rgb(245,53,46)" rx="2" ry="2" />
<text x="1073.74" y="479.5" >BagO..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\DOMCompat::querySelectorAll (4,496 samples, 0.11%)</title><rect x="404.4" y="581" width="1.3" height="15.0" fill="rgb(236,142,36)" rx="2" ry="2" />
<text x="407.42" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssTransforms1 (32,464 samples, 0.77%)</title><rect x="586.6" y="581" width="9.1" height="15.0" fill="rgb(247,79,12)" rx="2" ry="2" />
<text x="589.64" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Gallery\Gallery::sourceToDom (3,872 samples, 0.09%)</title><rect x="626.6" y="965" width="1.1" height="15.0" fill="rgb(240,119,27)" rx="2" ry="2" />
<text x="629.59" y="975.5" ></text>
</g>
<g >
<title>Parser::setFunctionHook (36,824 samples, 0.87%)</title><rect x="650.9" y="629" width="10.2" height="15.0" fill="rgb(245,40,23)" rx="2" ry="2" />
<text x="653.85" y="639.5" ></text>
</g>
<g >
<title>Parser::preprocess (6,816 samples, 0.16%)</title><rect x="661.2" y="661" width="1.9" height="15.0" fill="rgb(245,131,40)" rx="2" ry="2" />
<text x="664.17" y="671.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="596.9" y="565" width="0.2" height="15.0" fill="rgb(221,215,6)" rx="2" ry="2" />
<text x="599.93" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (12,664 samples, 0.30%)</title><rect x="684.6" y="757" width="3.5" height="15.0" fill="rgb(217,181,52)" rx="2" ry="2" />
<text x="687.55" y="767.5" ></text>
</g>
<g >
<title>SectionProfiler::scopedProfileOut (408 samples, 0.01%)</title><rect x="784.0" y="869" width="0.1" height="15.0" fill="rgb(241,125,42)" rx="2" ry="2" />
<text x="787.01" y="879.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (12,896 samples, 0.30%)</title><rect x="749.3" y="629" width="3.6" height="15.0" fill="rgb(234,60,48)" rx="2" ry="2" />
<text x="752.32" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\Zest::find (4,496 samples, 0.11%)</title><rect x="404.4" y="565" width="1.3" height="15.0" fill="rgb(231,101,28)" rx="2" ry="2" />
<text x="407.42" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (10,264 samples, 0.24%)</title><rect x="818.4" y="181" width="2.8" height="15.0" fill="rgb(209,23,43)" rx="2" ry="2" />
<text x="821.38" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (32,716 samples, 0.77%)</title><rect x="628.1" y="789" width="9.2" height="15.0" fill="rgb(245,74,11)" rx="2" ry="2" />
<text x="631.14" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::url (2,408 samples, 0.06%)</title><rect x="446.8" y="581" width="0.7" height="15.0" fill="rgb(225,5,33)" rx="2" ry="2" />
<text x="449.83" y="591.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="817.7" y="133" width="0.1" height="15.0" fill="rgb(238,73,49)" rx="2" ry="2" />
<text x="820.72" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (816 samples, 0.02%)</title><rect x="981.1" y="661" width="0.2" height="15.0" fill="rgb(238,131,5)" rx="2" ry="2" />
<text x="984.08" y="671.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,140 samples, 14.95%)</title><rect x="804.3" y="629" width="176.4" height="15.0" fill="rgb(212,54,45)" rx="2" ry="2" />
<text x="807.28" y="639.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (5,048 samples, 0.12%)</title><rect x="808.3" y="181" width="1.4" height="15.0" fill="rgb(254,185,29)" rx="2" ry="2" />
<text x="811.29" y="191.5" ></text>
</g>
<g >
<title>Parser::fetchTemplateAndTitle (10,080 samples, 0.24%)</title><rect x="685.2" y="709" width="2.8" height="15.0" fill="rgb(230,145,48)" rx="2" ry="2" />
<text x="688.19" y="719.5" ></text>
</g>
<g >
<title>Parser::getTemplateDom (111,410 samples, 2.63%)</title><rect x="752.9" y="869" width="31.1" height="15.0" fill="rgb(215,205,24)" rx="2" ry="2" />
<text x="755.93" y="879.5" >Pa..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (2,256 samples, 0.05%)</title><rect x="626.6" y="853" width="0.6" height="15.0" fill="rgb(233,154,14)" rx="2" ry="2" />
<text x="629.61" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\Element::getNoahKey (2,256 samples, 0.05%)</title><rect x="626.6" y="661" width="0.6" height="15.0" fill="rgb(218,142,1)" rx="2" ry="2" />
<text x="629.61" y="671.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UnorderedGroup::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="389" width="5.8" height="15.0" fill="rgb(218,135,22)" rx="2" ry="2" />
<text x="476.63" y="399.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::getRevisionById (8,440 samples, 0.20%)</title><rect x="350.5" y="1141" width="2.3" height="15.0" fill="rgb(206,48,51)" rx="2" ry="2" />
<text x="353.49" y="1151.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::get (10,240 samples, 0.24%)</title><rect x="12.3" y="1301" width="2.9" height="15.0" fill="rgb(231,133,18)" rx="2" ry="2" />
<text x="15.31" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (3,008 samples, 0.07%)</title><rect x="490.8" y="549" width="0.8" height="15.0" fill="rgb(248,211,29)" rx="2" ry="2" />
<text x="493.78" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::load (7,848 samples, 0.19%)</title><rect x="986.0" y="741" width="2.2" height="15.0" fill="rgb(232,110,37)" rx="2" ry="2" />
<text x="988.96" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::url (2,408 samples, 0.06%)</title><rect x="572.6" y="565" width="0.7" height="15.0" fill="rgb(233,31,8)" rx="2" ry="2" />
<text x="575.63" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks\HookRunner::onScribuntoExternalLibraries (2,112 samples, 0.05%)</title><rect x="966.4" y="197" width="0.6" height="15.0" fill="rgb(211,166,54)" rx="2" ry="2" />
<text x="969.41" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,504 samples, 0.04%)</title><rect x="528.8" y="565" width="0.5" height="15.0" fill="rgb(227,83,22)" rx="2" ry="2" />
<text x="531.85" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::parseWikitext (65,680 samples, 1.55%)</title><rect x="364.3" y="965" width="18.3" height="15.0" fill="rgb(243,122,9)" rx="2" ry="2" />
<text x="367.29" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::__construct (2,632 samples, 0.06%)</title><rect x="664.1" y="837" width="0.7" height="15.0" fill="rgb(231,94,9)" rx="2" ry="2" />
<text x="667.11" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onParserAfterTidy (6,152 samples, 0.15%)</title><rect x="404.4" y="693" width="1.7" height="15.0" fill="rgb(245,124,25)" rx="2" ry="2" />
<text x="407.42" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::__construct (1,488 samples, 0.04%)</title><rect x="447.1" y="565" width="0.4" height="15.0" fill="rgb(223,4,44)" rx="2" ry="2" />
<text x="450.09" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::angle (7,760 samples, 0.18%)</title><rect x="491.6" y="549" width="2.2" height="15.0" fill="rgb(244,72,47)" rx="2" ry="2" />
<text x="494.62" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (2,688 samples, 0.06%)</title><rect x="829.2" y="117" width="0.8" height="15.0" fill="rgb(247,121,35)" rx="2" ry="2" />
<text x="832.23" y="127.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (872 samples, 0.02%)</title><rect x="350.5" y="997" width="0.2" height="15.0" fill="rgb(231,49,0)" rx="2" ry="2" />
<text x="353.49" y="1007.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::__call (872 samples, 0.02%)</title><rect x="350.5" y="1045" width="0.2" height="15.0" fill="rgb(230,73,52)" rx="2" ry="2" />
<text x="353.49" y="1055.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (4,512 samples, 0.11%)</title><rect x="549.4" y="565" width="1.2" height="15.0" fill="rgb(254,168,27)" rx="2" ry="2" />
<text x="552.36" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\PP\Processors\AddRedLinks::run (9,688 samples, 0.23%)</title><rect x="1157.0" y="1029" width="2.7" height="15.0" fill="rgb(237,37,5)" rx="2" ry="2" />
<text x="1160.02" y="1039.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchKeys (12,392 samples, 0.29%)</title><rect x="19.8" y="1077" width="3.4" height="15.0" fill="rgb(235,154,41)" rx="2" ry="2" />
<text x="22.77" y="1087.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (4,432 samples, 0.10%)</title><rect x="943.5" y="181" width="1.2" height="15.0" fill="rgb(209,130,31)" rx="2" ry="2" />
<text x="946.46" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Quantifier::hash (408 samples, 0.01%)</title><rect x="419.9" y="565" width="0.1" height="15.0" fill="rgb(242,49,1)" rx="2" ry="2" />
<text x="422.87" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\TimedMediaHandler\WebVideoTranscode\WebVideoTranscode::getTranscodeState (7,304 samples, 0.17%)</title><rect x="1145.2" y="933" width="2.1" height="15.0" fill="rgb(221,227,35)" rx="2" ry="2" />
<text x="1148.23" y="943.5" ></text>
</g>
<g >
<title>ParserOptions::__construct (12,912 samples, 0.31%)</title><rect x="353.0" y="1125" width="3.6" height="15.0" fill="rgb(232,112,52)" rx="2" ry="2" />
<text x="355.99" y="1135.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::newFromPageReference (3,168 samples, 0.07%)</title><rect x="351.3" y="1045" width="0.9" height="15.0" fill="rgb(219,229,48)" rx="2" ry="2" />
<text x="354.29" y="1055.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getArgument (1,656 samples, 0.04%)</title><rect x="684.7" y="725" width="0.4" height="15.0" fill="rgb(239,67,49)" rx="2" ry="2" />
<text x="687.66" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (10,080 samples, 0.24%)</title><rect x="685.2" y="501" width="2.8" height="15.0" fill="rgb(245,176,39)" rx="2" ry="2" />
<text x="688.19" y="511.5" ></text>
</g>
<g >
<title>Parser::internalParseHalfParsed (7,568 samples, 0.18%)</title><rect x="404.3" y="709" width="2.1" height="15.0" fill="rgb(249,136,33)" rx="2" ry="2" />
<text x="407.30" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::register (3,584 samples, 0.08%)</title><rect x="985.0" y="453" width="1.0" height="15.0" fill="rgb(240,138,23)" rx="2" ry="2" />
<text x="987.95" y="463.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,076 samples, 14.95%)</title><rect x="804.3" y="405" width="176.4" height="15.0" fill="rgb(248,60,43)" rx="2" ry="2" />
<text x="807.30" y="415.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>Parser::setFunctionHook (4,520 samples, 0.11%)</title><rect x="647.6" y="581" width="1.3" height="15.0" fill="rgb(238,24,52)" rx="2" ry="2" />
<text x="650.60" y="591.5" ></text>
</g>
<g >
<title>FileBackendStore::fileExists (568 samples, 0.01%)</title><rect x="1134.2" y="949" width="0.2" height="15.0" fill="rgb(251,197,13)" rx="2" ry="2" />
<text x="1137.24" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getHash (1,688 samples, 0.04%)</title><rect x="989.6" y="853" width="0.4" height="15.0" fill="rgb(226,120,31)" rx="2" ry="2" />
<text x="992.57" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\DOMPostProcessor::doPostProcess (164,868 samples, 3.90%)</title><rect x="1113.8" y="1061" width="46.0" height="15.0" fill="rgb(223,216,36)" rx="2" ry="2" />
<text x="1116.75" y="1071.5" >Wiki..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::wikitextToDOM (2,288 samples, 0.05%)</title><rect x="626.6" y="901" width="0.6" height="15.0" fill="rgb(224,3,1)" rx="2" ry="2" />
<text x="629.60" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (2,784 samples, 0.07%)</title><rect x="567.3" y="549" width="0.8" height="15.0" fill="rgb(218,100,35)" rx="2" ry="2" />
<text x="570.30" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (154,136 samples, 3.64%)</title><rect x="1070.7" y="597" width="43.1" height="15.0" fill="rgb(254,77,13)" rx="2" ry="2" />
<text x="1073.74" y="607.5" >Medi..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\PipelineUtils::processContentInPipeline (2,256 samples, 0.05%)</title><rect x="626.6" y="885" width="0.6" height="15.0" fill="rgb(214,91,2)" rx="2" ry="2" />
<text x="629.61" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (2,616 samples, 0.06%)</title><rect x="988.8" y="821" width="0.8" height="15.0" fill="rgb(233,184,28)" rx="2" ry="2" />
<text x="991.83" y="831.5" ></text>
</g>
<g >
<title>LocalisationCache::initLanguage (504 samples, 0.01%)</title><rect x="1157.0" y="869" width="0.2" height="15.0" fill="rgb(235,105,30)" rx="2" ry="2" />
<text x="1160.04" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::fetchImageQuery (9,056 samples, 0.21%)</title><rect x="1157.2" y="885" width="2.5" height="15.0" fill="rgb(228,159,11)" rx="2" ry="2" />
<text x="1160.18" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssWideKeywords (536 samples, 0.01%)</title><rect x="480.1" y="581" width="0.1" height="15.0" fill="rgb(219,91,9)" rx="2" ry="2" />
<text x="483.06" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::getInitChunk (583,036 samples, 13.79%)</title><rect x="804.3" y="277" width="162.7" height="15.0" fill="rgb(248,169,18)" rx="2" ry="2" />
<text x="807.31" y="287.5" >MediaWiki\Extension\..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSimpleSelectorSeq (40,040 samples, 0.95%)</title><rect x="434.6" y="597" width="11.1" height="15.0" fill="rgb(236,119,43)" rx="2" ry="2" />
<text x="437.56" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (802,378 samples, 18.97%)</title><rect x="402.7" y="869" width="223.9" height="15.0" fill="rgb(231,100,21)" rx="2" ry="2" />
<text x="405.70" y="879.5" >Wikimedia\Parsoid\Wt2Html\Tok..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (7,680 samples, 0.18%)</title><rect x="986.0" y="645" width="2.1" height="15.0" fill="rgb(237,164,52)" rx="2" ry="2" />
<text x="988.96" y="655.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="573.1" y="533" width="0.2" height="15.0" fill="rgb(219,171,14)" rx="2" ry="2" />
<text x="576.06" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\PoolCounter\PoolCounterWork::execute (4,138,581 samples, 97.86%)</title><rect x="19.5" y="1349" width="1154.8" height="15.0" fill="rgb(207,161,4)" rx="2" ry="2" />
<text x="22.48" y="1359.5" >MediaWiki\PoolCounter\PoolCounterWork::execute</text>
</g>
<g >
<title>SectionProfiler::__construct (376 samples, 0.01%)</title><rect x="1070.1" y="901" width="0.1" height="15.0" fill="rgb(218,198,13)" rx="2" ry="2" />
<text x="1073.10" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parseannotation_tag (608 samples, 0.01%)</title><rect x="363.2" y="933" width="0.2" height="15.0" fill="rgb(228,202,4)" rx="2" ry="2" />
<text x="366.21" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (1,312 samples, 0.03%)</title><rect x="804.3" y="181" width="0.4" height="15.0" fill="rgb(242,62,54)" rx="2" ry="2" />
<text x="807.31" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\AttributeExpander::onAny (3,160 samples, 0.07%)</title><rect x="363.4" y="981" width="0.9" height="15.0" fill="rgb(209,96,5)" rx="2" ry="2" />
<text x="366.41" y="991.5" ></text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::createForModelID (448 samples, 0.01%)</title><rect x="626.3" y="533" width="0.1" height="15.0" fill="rgb(246,1,22)" rx="2" ry="2" />
<text x="629.27" y="543.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getArgument (704,380 samples, 16.66%)</title><rect x="784.1" y="821" width="196.6" height="15.0" fill="rgb(245,82,40)" rx="2" ry="2" />
<text x="787.13" y="831.5" >PPTemplateFrame_Hash::get..</text>
</g>
<g >
<title>Parser::handleInternalLinks2 (376 samples, 0.01%)</title><rect x="410.1" y="661" width="0.1" height="15.0" fill="rgb(218,57,17)" rx="2" ry="2" />
<text x="413.13" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::loadOriginalOptions (10,296 samples, 0.24%)</title><rect x="353.7" y="1061" width="2.9" height="15.0" fill="rgb(241,144,45)" rx="2" ry="2" />
<text x="356.72" y="1071.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageFactory::newFromCode (400 samples, 0.01%)</title><rect x="19.2" y="1221" width="0.1" height="15.0" fill="rgb(218,223,40)" rx="2" ry="2" />
<text x="22.23" y="1231.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (143,800 samples, 3.40%)</title><rect x="701.0" y="725" width="40.1" height="15.0" fill="rgb(227,173,4)" rx="2" ry="2" />
<text x="703.99" y="735.5" >Med..</text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="830.0" y="149" width="0.1" height="15.0" fill="rgb(207,95,12)" rx="2" ry="2" />
<text x="832.98" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1093" width="0.1" height="15.0" fill="rgb(222,32,53)" rx="2" ry="2" />
<text x="15.20" y="1103.5" ></text>
</g>
<g >
<title>Parser::handleDoubleUnderscore (2,327 samples, 0.06%)</title><rect x="409.3" y="677" width="0.7" height="15.0" fill="rgb(241,76,27)" rx="2" ry="2" />
<text x="412.31" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="510.5" y="549" width="1.8" height="15.0" fill="rgb(245,145,47)" rx="2" ry="2" />
<text x="513.54" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="434.3" y="549" width="0.1" height="15.0" fill="rgb(240,113,32)" rx="2" ry="2" />
<text x="437.28" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (24,472 samples, 0.58%)</title><rect x="981.3" y="805" width="6.9" height="15.0" fill="rgb(239,189,10)" rx="2" ry="2" />
<text x="984.32" y="815.5" ></text>
</g>
<g >
<title>Parser::internalParse (789,090 samples, 18.66%)</title><rect x="406.4" y="693" width="220.2" height="15.0" fill="rgb(251,8,27)" rx="2" ry="2" />
<text x="409.41" y="703.5" >Parser::internalParse</text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onGetDoubleUnderscoreIDs (10,592 samples, 0.25%)</title><rect x="360.1" y="933" width="2.9" height="15.0" fill="rgb(229,100,21)" rx="2" ry="2" />
<text x="363.09" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (4,872 samples, 0.12%)</title><rect x="548.0" y="565" width="1.4" height="15.0" fill="rgb(223,211,46)" rx="2" ry="2" />
<text x="551.00" y="575.5" ></text>
</g>
<g >
<title>all (4,228,890 samples, 100%)</title><rect x="10.0" y="1413" width="1180.0" height="15.0" fill="rgb(233,148,34)" rx="2" ry="2" />
<text x="13.00" y="1423.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::selectRow (872 samples, 0.02%)</title><rect x="350.5" y="1061" width="0.2" height="15.0" fill="rgb(219,100,40)" rx="2" ry="2" />
<text x="353.49" y="1071.5" ></text>
</g>
<g >
<title>Parser::recursiveTagParse (133,380 samples, 3.15%)</title><rect x="627.8" y="933" width="37.2" height="15.0" fill="rgb(230,158,40)" rx="2" ry="2" />
<text x="630.79" y="943.5" >Par..</text>
</g>
<g >
<title>PPTemplateFrame_Hash::cachedExpand (736,236 samples, 17.41%)</title><rect x="784.1" y="901" width="205.5" height="15.0" fill="rgb(253,197,0)" rx="2" ry="2" />
<text x="787.13" y="911.5" >PPTemplateFrame_Hash::cache..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Alternative::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="357" width="5.8" height="15.0" fill="rgb(250,98,39)" rx="2" ry="2" />
<text x="476.63" y="367.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::newRevisionFromRow (3,632 samples, 0.09%)</title><rect x="1175.0" y="1381" width="1.0" height="15.0" fill="rgb(226,93,40)" rx="2" ry="2" />
<text x="1177.96" y="1391.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (154,136 samples, 3.64%)</title><rect x="1070.7" y="821" width="43.1" height="15.0" fill="rgb(243,7,10)" rx="2" ry="2" />
<text x="1073.74" y="831.5" >Wiki..</text>
</g>
<g >
<title>SectionProfiler::profileInInternal (752 samples, 0.02%)</title><rect x="1067.9" y="885" width="0.2" height="15.0" fill="rgb(246,101,22)" rx="2" ry="2" />
<text x="1070.93" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="437.4" y="565" width="0.1" height="15.0" fill="rgb(219,68,11)" rx="2" ry="2" />
<text x="440.42" y="575.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="804.6" y="133" width="0.1" height="15.0" fill="rgb(215,216,42)" rx="2" ry="2" />
<text x="807.56" y="143.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (20,016 samples, 0.47%)</title><rect x="357.5" y="1013" width="5.6" height="15.0" fill="rgb(225,157,49)" rx="2" ry="2" />
<text x="360.52" y="1023.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunkily (2,710,185 samples, 64.09%)</title><rect x="357.5" y="1045" width="756.3" height="15.0" fill="rgb(219,85,32)" rx="2" ry="2" />
<text x="360.52" y="1055.5" >Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunkily</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::checkString (408 samples, 0.01%)</title><rect x="402.9" y="581" width="0.1" height="15.0" fill="rgb(222,182,46)" rx="2" ry="2" />
<text x="405.91" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Config\PageConfig::getPageMainContent (1,504 samples, 0.04%)</title><rect x="356.6" y="1157" width="0.4" height="15.0" fill="rgb(250,119,28)" rx="2" ry="2" />
<text x="359.59" y="1167.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::executeQuery (376 samples, 0.01%)</title><rect x="357.0" y="869" width="0.1" height="15.0" fill="rgb(249,96,12)" rx="2" ry="2" />
<text x="360.01" y="879.5" ></text>
</g>
<g >
<title>Parser::setOutputType (376 samples, 0.01%)</title><rect x="1070.2" y="917" width="0.1" height="15.0" fill="rgb(228,78,1)" rx="2" ry="2" />
<text x="1073.20" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (2,256 samples, 0.05%)</title><rect x="626.6" y="789" width="0.6" height="15.0" fill="rgb(232,228,14)" rx="2" ry="2" />
<text x="629.61" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (154,136 samples, 3.64%)</title><rect x="1070.7" y="789" width="43.1" height="15.0" fill="rgb(207,12,48)" rx="2" ry="2" />
<text x="1073.74" y="799.5" >Wiki..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssImages3 (3,336 samples, 0.08%)</title><rect x="551.0" y="581" width="0.9" height="15.0" fill="rgb(229,62,11)" rx="2" ry="2" />
<text x="553.95" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="611.5" y="533" width="0.1" height="15.0" fill="rgb(227,22,41)" rx="2" ry="2" />
<text x="614.49" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (992 samples, 0.02%)</title><rect x="989.8" y="837" width="0.2" height="15.0" fill="rgb(254,214,0)" rx="2" ry="2" />
<text x="992.76" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::rawAngle (1,320 samples, 0.03%)</title><rect x="493.4" y="533" width="0.4" height="15.0" fill="rgb(211,53,45)" rx="2" ry="2" />
<text x="496.41" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::getInitChunk (7,848 samples, 0.19%)</title><rect x="986.0" y="773" width="2.2" height="15.0" fill="rgb(221,39,19)" rx="2" ry="2" />
<text x="988.96" y="783.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (3,072 samples, 0.07%)</title><rect x="402.7" y="725" width="0.9" height="15.0" fill="rgb(243,111,20)" rx="2" ry="2" />
<text x="405.70" y="735.5" ></text>
</g>
<g >
<title>FileRepo::fileExists (568 samples, 0.01%)</title><rect x="1134.2" y="981" width="0.2" height="15.0" fill="rgb(220,155,25)" rx="2" ry="2" />
<text x="1137.24" y="991.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (152,144 samples, 3.60%)</title><rect x="1070.7" y="405" width="42.5" height="15.0" fill="rgb(223,131,46)" rx="2" ry="2" />
<text x="1073.74" y="415.5" >Med..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaSandbox\LuaSandboxInterpreter::checkLuaSandboxVersion (1,320 samples, 0.03%)</title><rect x="967.0" y="261" width="0.4" height="15.0" fill="rgb(251,217,8)" rx="2" ry="2" />
<text x="970.02" y="271.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::getLibraryPaths (4,432 samples, 0.10%)</title><rect x="943.5" y="117" width="1.2" height="15.0" fill="rgb(216,74,36)" rx="2" ry="2" />
<text x="946.46" y="127.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (10,080 samples, 0.24%)</title><rect x="685.2" y="661" width="2.8" height="15.0" fill="rgb(244,134,50)" rx="2" ry="2" />
<text x="688.19" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\RemexRemoveTagHandler::startTag (46,248 samples, 1.09%)</title><rect x="992.6" y="805" width="12.9" height="15.0" fill="rgb(212,180,30)" rx="2" ry="2" />
<text x="995.63" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getBaseRegex (8,432 samples, 0.20%)</title><rect x="357.7" y="949" width="2.4" height="15.0" fill="rgb(248,223,16)" rx="2" ry="2" />
<text x="360.73" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\Initial::doctype (440 samples, 0.01%)</title><rect x="1174.6" y="1285" width="0.2" height="15.0" fill="rgb(250,123,26)" rx="2" ry="2" />
<text x="1177.65" y="1295.5" ></text>
</g>
<g >
<title>ParserOptions::getMaxIncludeSize (376 samples, 0.01%)</title><rect x="1069.5" y="933" width="0.1" height="15.0" fill="rgb(235,209,48)" rx="2" ry="2" />
<text x="1072.50" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::newAutodetectEngine (42,248 samples, 1.00%)</title><rect x="967.0" y="277" width="11.8" height="15.0" fill="rgb(217,86,44)" rx="2" ry="2" />
<text x="970.02" y="287.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::__call (1,560 samples, 0.04%)</title><rect x="357.0" y="981" width="0.4" height="15.0" fill="rgb(218,3,47)" rx="2" ry="2" />
<text x="360.01" y="991.5" ></text>
</g>
<g >
<title>Parser::preprocessToDom (216,272 samples, 5.11%)</title><rect x="1007.5" y="885" width="60.3" height="15.0" fill="rgb(231,88,24)" rx="2" ry="2" />
<text x="1010.48" y="895.5" >Parser..</text>
</g>
<g >
<title>PPFrame_Hash::expand (752 samples, 0.02%)</title><rect x="637.3" y="645" width="0.2" height="15.0" fill="rgb(222,2,18)" rx="2" ry="2" />
<text x="640.27" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (4,432 samples, 0.10%)</title><rect x="943.5" y="165" width="1.2" height="15.0" fill="rgb(231,16,18)" rx="2" ry="2" />
<text x="946.46" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::handleCall (12,664 samples, 0.30%)</title><rect x="684.6" y="773" width="3.5" height="15.0" fill="rgb(220,30,14)" rx="2" ry="2" />
<text x="687.55" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (3,072 samples, 0.07%)</title><rect x="402.7" y="661" width="0.9" height="15.0" fill="rgb(212,38,53)" rx="2" ry="2" />
<text x="405.70" y="671.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssGrid1 (38,048 samples, 0.90%)</title><rect x="540.3" y="581" width="10.7" height="15.0" fill="rgb(234,178,25)" rx="2" ry="2" />
<text x="543.33" y="591.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (3,072 samples, 0.07%)</title><rect x="402.7" y="789" width="0.9" height="15.0" fill="rgb(235,112,6)" rx="2" ry="2" />
<text x="405.70" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::numberPercentage (6,904 samples, 0.16%)</title><rect x="510.4" y="565" width="1.9" height="15.0" fill="rgb(233,176,8)" rx="2" ry="2" />
<text x="513.41" y="575.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (12,896 samples, 0.30%)</title><rect x="749.3" y="597" width="3.6" height="15.0" fill="rgb(209,181,20)" rx="2" ry="2" />
<text x="752.32" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::next (20,200 samples, 0.48%)</title><rect x="1176.2" y="1397" width="5.6" height="15.0" fill="rgb(238,228,39)" rx="2" ry="2" />
<text x="1179.16" y="1407.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onLanguageGetTranslatedLanguageNames (152,144 samples, 3.60%)</title><rect x="1070.7" y="421" width="42.5" height="15.0" fill="rgb(229,120,19)" rx="2" ry="2" />
<text x="1073.74" y="431.5" >Med..</text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\Dispatcher::startTag (2,256 samples, 0.05%)</title><rect x="626.6" y="709" width="0.6" height="15.0" fill="rgb(240,66,54)" rx="2" ry="2" />
<text x="629.61" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (51,920 samples, 1.23%)</title><rect x="1159.8" y="1061" width="14.5" height="15.0" fill="rgb(251,138,39)" rx="2" ry="2" />
<text x="1162.79" y="1071.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,880 samples, 0.04%)</title><rect x="513.4" y="565" width="0.6" height="15.0" fill="rgb(235,3,7)" rx="2" ry="2" />
<text x="516.44" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::tokQname (696 samples, 0.02%)</title><rect x="405.5" y="517" width="0.2" height="15.0" fill="rgb(244,184,31)" rx="2" ry="2" />
<text x="408.48" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::MediaWiki\Extension\QuickInstantCommons\{closure} (7,824 samples, 0.19%)</title><rect x="1157.3" y="821" width="2.2" height="15.0" fill="rgb(237,181,49)" rx="2" ry="2" />
<text x="1160.28" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::MediaWiki\Storage\{closure} (10,080 samples, 0.24%)</title><rect x="685.2" y="565" width="2.8" height="15.0" fill="rgb(212,46,1)" rx="2" ry="2" />
<text x="688.19" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::__construct (1,488 samples, 0.04%)</title><rect x="489.1" y="533" width="0.5" height="15.0" fill="rgb(205,128,47)" rx="2" ry="2" />
<text x="492.14" y="543.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="808.2" y="149" width="0.1" height="15.0" fill="rgb(218,183,1)" rx="2" ry="2" />
<text x="811.17" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::checkType (408 samples, 0.01%)</title><rect x="981.2" y="581" width="0.1" height="15.0" fill="rgb(223,104,48)" rx="2" ry="2" />
<text x="984.19" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\SiteStats\SiteStats::articles (416 samples, 0.01%)</title><rect x="665.0" y="885" width="0.1" height="15.0" fill="rgb(207,215,37)" rx="2" ry="2" />
<text x="668.01" y="895.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (704,380 samples, 16.66%)</title><rect x="784.1" y="741" width="196.6" height="15.0" fill="rgb(205,145,40)" rx="2" ry="2" />
<text x="787.13" y="751.5" >Parser::braceSubstitution</text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::__call (376 samples, 0.01%)</title><rect x="1159.6" y="725" width="0.1" height="15.0" fill="rgb(216,131,37)" rx="2" ry="2" />
<text x="1162.57" y="735.5" ></text>
</g>
<g >
<title>unserialize (143,360 samples, 3.39%)</title><rect x="701.0" y="645" width="40.0" height="15.0" fill="rgb(214,111,22)" rx="2" ry="2" />
<text x="704.04" y="655.5" >uns..</text>
</g>
<g >
<title>ParserOptions::__construct (2,616 samples, 0.06%)</title><rect x="663.1" y="661" width="0.7" height="15.0" fill="rgb(246,174,44)" rx="2" ry="2" />
<text x="666.11" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Tidy\RemexDriver::tidy (992 samples, 0.02%)</title><rect x="406.1" y="693" width="0.3" height="15.0" fill="rgb(228,192,20)" rx="2" ry="2" />
<text x="409.13" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (3,072 samples, 0.07%)</title><rect x="402.7" y="693" width="0.9" height="15.0" fill="rgb(211,121,14)" rx="2" ry="2" />
<text x="405.70" y="703.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::urlstring (912 samples, 0.02%)</title><rect x="489.6" y="549" width="0.2" height="15.0" fill="rgb(224,58,27)" rx="2" ry="2" />
<text x="492.55" y="559.5" ></text>
</g>
<g >
<title>unserialize (7,680 samples, 0.18%)</title><rect x="986.0" y="597" width="2.1" height="15.0" fill="rgb(239,156,26)" rx="2" ry="2" />
<text x="988.96" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\User\ActorStore::newActorFromRowFields (464 samples, 0.01%)</title><rect x="1175.8" y="1349" width="0.2" height="15.0" fill="rgb(225,112,40)" rx="2" ry="2" />
<text x="1178.85" y="1359.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookRunner::onParserFirstCallInit (17,864 samples, 0.42%)</title><rect x="645.8" y="629" width="5.0" height="15.0" fill="rgb(238,51,50)" rx="2" ry="2" />
<text x="648.80" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DBConnRef::lock (376 samples, 0.01%)</title><rect x="1159.6" y="741" width="0.1" height="15.0" fill="rgb(233,82,39)" rx="2" ry="2" />
<text x="1162.57" y="751.5" ></text>
</g>
<g >
<title>CoreParserFunctions::anchorencode (840 samples, 0.02%)</title><rect x="980.7" y="741" width="0.2" height="15.0" fill="rgb(243,197,12)" rx="2" ry="2" />
<text x="983.67" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Babel\Hooks::onParserFirstCallInit (408 samples, 0.01%)</title><rect x="646.4" y="597" width="0.2" height="15.0" fill="rgb(222,77,44)" rx="2" ry="2" />
<text x="649.45" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (32,896 samples, 0.78%)</title><rect x="935.5" y="213" width="9.2" height="15.0" fill="rgb(225,207,33)" rx="2" ry="2" />
<text x="938.54" y="223.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (7,680 samples, 0.18%)</title><rect x="986.0" y="661" width="2.1" height="15.0" fill="rgb(215,115,3)" rx="2" ry="2" />
<text x="988.96" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (496 samples, 0.01%)</title><rect x="980.9" y="789" width="0.2" height="15.0" fill="rgb(209,162,16)" rx="2" ry="2" />
<text x="983.94" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (143,360 samples, 3.39%)</title><rect x="701.0" y="661" width="40.0" height="15.0" fill="rgb(239,97,45)" rx="2" ry="2" />
<text x="704.04" y="671.5" >Med..</text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::makeTest (848 samples, 0.02%)</title><rect x="405.0" y="517" width="0.3" height="15.0" fill="rgb(237,122,47)" rx="2" ry="2" />
<text x="408.03" y="527.5" ></text>
</g>
<g >
<title>Parser::argSubstitution (704,380 samples, 16.66%)</title><rect x="784.1" y="837" width="196.6" height="15.0" fill="rgb(235,198,26)" rx="2" ry="2" />
<text x="787.13" y="847.5" >Parser::argSubstitution</text>
</g>
<g >
<title>Parser::parseExtensionTagAsTopLevelDoc (133,380 samples, 3.15%)</title><rect x="627.8" y="949" width="37.2" height="15.0" fill="rgb(236,109,27)" rx="2" ry="2" />
<text x="630.79" y="959.5" >Par..</text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="828.2" y="133" width="0.1" height="15.0" fill="rgb(237,124,48)" rx="2" ry="2" />
<text x="831.22" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (2,560 samples, 0.06%)</title><rect x="988.8" y="693" width="0.7" height="15.0" fill="rgb(234,31,27)" rx="2" ry="2" />
<text x="991.83" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::makeSimple (696 samples, 0.02%)</title><rect x="404.8" y="517" width="0.2" height="15.0" fill="rgb(254,15,50)" rx="2" ry="2" />
<text x="407.84" y="527.5" ></text>
</g>
<g >
<title>RepoGroup::forEachForeignRepo (13,184 samples, 0.31%)</title><rect x="19.5" y="1141" width="3.7" height="15.0" fill="rgb(243,205,30)" rx="2" ry="2" />
<text x="22.55" y="1151.5" ></text>
</g>
<g >
<title>Language::getFormattedNamespaces (400 samples, 0.01%)</title><rect x="816.9" y="181" width="0.1" height="15.0" fill="rgb(205,100,48)" rx="2" ry="2" />
<text x="819.87" y="191.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (840 samples, 0.02%)</title><rect x="980.7" y="757" width="0.2" height="15.0" fill="rgb(232,24,0)" rx="2" ry="2" />
<text x="983.67" y="767.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchOrRegenerate (12,896 samples, 0.30%)</title><rect x="749.3" y="693" width="3.6" height="15.0" fill="rgb(247,91,38)" rx="2" ry="2" />
<text x="752.32" y="703.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (1,320 samples, 0.03%)</title><rect x="967.0" y="229" width="0.4" height="15.0" fill="rgb(212,169,26)" rx="2" ry="2" />
<text x="970.02" y="239.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (798,970 samples, 18.89%)</title><rect x="403.7" y="773" width="222.9" height="15.0" fill="rgb(234,7,39)" rx="2" ry="2" />
<text x="406.65" y="783.5" >Wikimedia\Parsoid\Wt2Html\TT\..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::newInterpreter (1,557 samples, 0.04%)</title><rect x="748.1" y="757" width="0.5" height="15.0" fill="rgb(218,204,9)" rx="2" ry="2" />
<text x="751.14" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Quantifier::star (408 samples, 0.01%)</title><rect x="433.3" y="565" width="0.1" height="15.0" fill="rgb(207,119,36)" rx="2" ry="2" />
<text x="436.28" y="575.5" ></text>
</g>
<g >
<title>CoreParserFunctions::numberofarticles (416 samples, 0.01%)</title><rect x="665.0" y="901" width="0.1" height="15.0" fill="rgb(233,103,9)" rx="2" ry="2" />
<text x="668.01" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getBaseRegex (464 samples, 0.01%)</title><rect x="661.2" y="581" width="0.1" height="15.0" fill="rgb(205,37,23)" rx="2" ry="2" />
<text x="664.17" y="591.5" ></text>
</g>
<g >
<title>WANObjectCache::getMulti (12,392 samples, 0.29%)</title><rect x="19.8" y="1093" width="3.4" height="15.0" fill="rgb(240,212,23)" rx="2" ry="2" />
<text x="22.77" y="1103.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Quantifier::optional (544 samples, 0.01%)</title><rect x="433.1" y="565" width="0.2" height="15.0" fill="rgb(248,105,19)" rx="2" ry="2" />
<text x="436.13" y="575.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (2,432 samples, 0.06%)</title><rect x="988.2" y="805" width="0.6" height="15.0" fill="rgb(243,44,27)" rx="2" ry="2" />
<text x="991.15" y="815.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Juxtaposition::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="453" width="5.8" height="15.0" fill="rgb(205,222,7)" rx="2" ry="2" />
<text x="476.63" y="463.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSelectorList (4,064 samples, 0.10%)</title><rect x="433.4" y="597" width="1.2" height="15.0" fill="rgb(206,122,54)" rx="2" ry="2" />
<text x="436.43" y="607.5" ></text>
</g>
<g >
<title>Parser::setFunctionHook (408 samples, 0.01%)</title><rect x="649.0" y="581" width="0.1" height="15.0" fill="rgb(224,8,53)" rx="2" ry="2" />
<text x="651.97" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::makeTitle (3,168 samples, 0.07%)</title><rect x="1175.0" y="1317" width="0.8" height="15.0" fill="rgb(213,197,43)" rx="2" ry="2" />
<text x="1177.96" y="1327.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (16,624 samples, 0.39%)</title><rect x="981.3" y="709" width="4.7" height="15.0" fill="rgb(246,127,5)" rx="2" ry="2" />
<text x="984.32" y="719.5" ></text>
</g>
<g >
<title>Parser::startParse (2,528 samples, 0.06%)</title><rect x="637.6" y="661" width="0.7" height="15.0" fill="rgb(211,35,41)" rx="2" ry="2" />
<text x="640.59" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\SpecialPage\SpecialPageFactory::capturePath (129,348 samples, 3.06%)</title><rect x="627.8" y="853" width="36.1" height="15.0" fill="rgb(251,187,16)" rx="2" ry="2" />
<text x="630.79" y="863.5" >Med..</text>
</g>
<g >
<title>SectionProfiler::getErrorEntry (376 samples, 0.01%)</title><rect x="1070.1" y="885" width="0.1" height="15.0" fill="rgb(206,224,50)" rx="2" ry="2" />
<text x="1073.10" y="895.5" ></text>
</g>
<g >
<title>Parser::handleInternalLinks (376 samples, 0.01%)</title><rect x="410.1" y="677" width="0.1" height="15.0" fill="rgb(253,125,17)" rx="2" ry="2" />
<text x="413.13" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\PP\Processors\AddMediaInfo::run (82,028 samples, 1.94%)</title><rect x="1134.1" y="1029" width="22.9" height="15.0" fill="rgb(218,113,31)" rx="2" ry="2" />
<text x="1137.13" y="1039.5" >W..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (7,520 samples, 0.18%)</title><rect x="584.5" y="565" width="2.1" height="15.0" fill="rgb(230,180,6)" rx="2" ry="2" />
<text x="587.54" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="508.6" y="549" width="1.8" height="15.0" fill="rgb(205,225,37)" rx="2" ry="2" />
<text x="511.58" y="559.5" ></text>
</g>
<g >
<title>Parser::statelessFetchTemplate (12,896 samples, 0.30%)</title><rect x="749.3" y="805" width="3.6" height="15.0" fill="rgb(248,3,16)" rx="2" ry="2" />
<text x="752.32" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::createContentHandlerFromHandlerSpec (448 samples, 0.01%)</title><rect x="626.3" y="517" width="0.1" height="15.0" fill="rgb(230,159,30)" rx="2" ry="2" />
<text x="629.27" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (4,176 samples, 0.10%)</title><rect x="535.1" y="565" width="1.2" height="15.0" fill="rgb(226,77,11)" rx="2" ry="2" />
<text x="538.14" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (376 samples, 0.01%)</title><rect x="1006.6" y="853" width="0.1" height="15.0" fill="rgb(240,141,54)" rx="2" ry="2" />
<text x="1009.57" y="863.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (154,136 samples, 3.64%)</title><rect x="1070.7" y="693" width="43.1" height="15.0" fill="rgb(241,103,40)" rx="2" ry="2" />
<text x="1073.74" y="703.5" >Pars..</text>
</g>
<g >
<title>MediaWiki\User\ActorStore::newActorFromRowFields (2,408 samples, 0.06%)</title><rect x="352.2" y="1061" width="0.6" height="15.0" fill="rgb(241,41,33)" rx="2" ry="2" />
<text x="355.17" y="1071.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (13,184 samples, 0.31%)</title><rect x="19.5" y="1173" width="3.7" height="15.0" fill="rgb(222,13,5)" rx="2" ry="2" />
<text x="22.55" y="1183.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::ifexpr (632,140 samples, 14.95%)</title><rect x="804.3" y="645" width="176.4" height="15.0" fill="rgb(248,209,18)" rx="2" ry="2" />
<text x="807.28" y="655.5" >MediaWiki\Extension\Pa..</text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (752 samples, 0.02%)</title><rect x="989.8" y="821" width="0.2" height="15.0" fill="rgb(205,174,40)" rx="2" ry="2" />
<text x="992.83" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\FileBackend\FSFile\TempFSFileFactory::newTempFSFile (408 samples, 0.01%)</title><rect x="1134.1" y="965" width="0.1" height="15.0" fill="rgb(220,158,30)" rx="2" ry="2" />
<text x="1137.13" y="975.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (10,080 samples, 0.24%)</title><rect x="685.2" y="533" width="2.8" height="15.0" fill="rgb(226,2,19)" rx="2" ry="2" />
<text x="688.19" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (154,560 samples, 3.65%)</title><rect x="1070.6" y="933" width="43.2" height="15.0" fill="rgb(205,210,31)" rx="2" ry="2" />
<text x="1073.63" y="943.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (11,520 samples, 0.27%)</title><rect x="805.1" y="181" width="3.2" height="15.0" fill="rgb(231,162,19)" rx="2" ry="2" />
<text x="808.07" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (1,312 samples, 0.03%)</title><rect x="830.1" y="181" width="0.4" height="15.0" fill="rgb(242,188,9)" rx="2" ry="2" />
<text x="833.10" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (1,656 samples, 0.04%)</title><rect x="405.7" y="661" width="0.4" height="15.0" fill="rgb(217,133,18)" rx="2" ry="2" />
<text x="408.67" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Scribunto::getParserEngine (608 samples, 0.01%)</title><rect x="748.8" y="837" width="0.2" height="15.0" fill="rgb(247,133,45)" rx="2" ry="2" />
<text x="751.79" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::getHash (6,096 samples, 0.14%)</title><rect x="661.3" y="581" width="1.7" height="15.0" fill="rgb(214,221,32)" rx="2" ry="2" />
<text x="664.30" y="591.5" ></text>
</g>
<g >
<title>Parser::getTemplateDom (48,712 samples, 1.15%)</title><rect x="670.6" y="837" width="13.6" height="15.0" fill="rgb(247,16,51)" rx="2" ry="2" />
<text x="673.64" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="433.9" y="565" width="0.1" height="15.0" fill="rgb(211,177,40)" rx="2" ry="2" />
<text x="436.88" y="575.5" ></text>
</g>
<g >
<title>Language::getMagic (1,128 samples, 0.03%)</title><rect x="988.5" y="677" width="0.3" height="15.0" fill="rgb(229,222,36)" rx="2" ry="2" />
<text x="991.48" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (154,136 samples, 3.64%)</title><rect x="1070.7" y="613" width="43.1" height="15.0" fill="rgb(217,119,46)" rx="2" ry="2" />
<text x="1073.74" y="623.5" >Medi..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\UrlMatcher::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="325" width="5.8" height="15.0" fill="rgb(225,48,41)" rx="2" ry="2" />
<text x="476.63" y="335.5" ></text>
</g>
<g >
<title>File::isMultipage (38,568 samples, 0.91%)</title><rect x="1134.4" y="981" width="10.8" height="15.0" fill="rgb(215,107,7)" rx="2" ry="2" />
<text x="1137.40" y="991.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (22,192 samples, 0.52%)</title><rect x="972.6" y="245" width="6.2" height="15.0" fill="rgb(233,24,40)" rx="2" ry="2" />
<text x="975.61" y="255.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::lock (752 samples, 0.02%)</title><rect x="1159.5" y="773" width="0.2" height="15.0" fill="rgb(239,155,54)" rx="2" ry="2" />
<text x="1162.47" y="783.5" ></text>
</g>
<g >
<title>Language::getMagic (376 samples, 0.01%)</title><rect x="981.0" y="757" width="0.1" height="15.0" fill="rgb(213,75,39)" rx="2" ry="2" />
<text x="983.97" y="767.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="809.6" y="133" width="0.1" height="15.0" fill="rgb(244,172,21)" rx="2" ry="2" />
<text x="812.58" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Hooks\HookUtils::parseRevisionParsoidHtml (4,166,981 samples, 98.54%)</title><rect x="12.0" y="1381" width="1162.8" height="15.0" fill="rgb(254,183,32)" rx="2" ry="2" />
<text x="15.04" y="1391.5" >MediaWiki\Extension\DiscussionTools\Hooks\HookUtils::parseRevisionParsoidHtml</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (5,016 samples, 0.12%)</title><rect x="431.7" y="565" width="1.4" height="15.0" fill="rgb(227,184,32)" rx="2" ry="2" />
<text x="434.70" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (143,360 samples, 3.39%)</title><rect x="701.0" y="677" width="40.0" height="15.0" fill="rgb(216,155,24)" rx="2" ry="2" />
<text x="704.04" y="687.5" >Med..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\DOMPostProcessor::processChunkily (2,875,053 samples, 67.99%)</title><rect x="357.5" y="1093" width="802.3" height="15.0" fill="rgb(236,160,5)" rx="2" ry="2" />
<text x="360.52" y="1103.5" >Wikimedia\Parsoid\Wt2Html\DOMPostProcessor::processChunkily</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (4,136 samples, 0.10%)</title><rect x="555.0" y="565" width="1.1" height="15.0" fill="rgb(244,65,27)" rx="2" ry="2" />
<text x="557.97" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\MessageLibrary::register (5,536 samples, 0.13%)</title><rect x="809.7" y="197" width="1.5" height="15.0" fill="rgb(253,203,21)" rx="2" ry="2" />
<text x="812.70" y="207.5" ></text>
</g>
<g >
<title>SectionProfileCallback::__destruct (408 samples, 0.01%)</title><rect x="670.4" y="789" width="0.1" height="15.0" fill="rgb(227,218,51)" rx="2" ry="2" />
<text x="673.39" y="799.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchOrRegenerate (3,120 samples, 0.07%)</title><rect x="688.2" y="581" width="0.8" height="15.0" fill="rgb(238,198,48)" rx="2" ry="2" />
<text x="691.15" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::createObject (448 samples, 0.01%)</title><rect x="980.5" y="133" width="0.2" height="15.0" fill="rgb(223,185,28)" rx="2" ry="2" />
<text x="983.54" y="143.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\ParserObserver::getParseId (25,784 samples, 0.61%)</title><rect x="291.2" y="1173" width="7.2" height="15.0" fill="rgb(222,167,0)" rx="2" ry="2" />
<text x="294.24" y="1183.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (51,920 samples, 1.23%)</title><rect x="1159.8" y="1093" width="14.5" height="15.0" fill="rgb(227,140,36)" rx="2" ry="2" />
<text x="1162.79" y="1103.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (16,584 samples, 0.39%)</title><rect x="981.3" y="629" width="4.7" height="15.0" fill="rgb(222,64,54)" rx="2" ry="2" />
<text x="984.32" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\SelectQueryBuilder::fetchResultSet (29,064 samples, 0.69%)</title><rect x="1181.8" y="1397" width="8.1" height="15.0" fill="rgb(231,121,17)" rx="2" ry="2" />
<text x="1184.80" y="1407.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="575.9" y="549" width="1.8" height="15.0" fill="rgb(244,26,6)" rx="2" ry="2" />
<text x="578.90" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunk (2,256 samples, 0.05%)</title><rect x="626.6" y="837" width="0.6" height="15.0" fill="rgb(205,150,31)" rx="2" ry="2" />
<text x="629.61" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\ParsoidExtensionAPI::renderMedia (2,288 samples, 0.05%)</title><rect x="626.6" y="917" width="0.6" height="15.0" fill="rgb(235,191,4)" rx="2" ry="2" />
<text x="629.60" y="927.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getNamedArgument (16,584 samples, 0.39%)</title><rect x="981.3" y="645" width="4.7" height="15.0" fill="rgb(234,127,43)" rx="2" ry="2" />
<text x="984.32" y="655.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,140 samples, 14.95%)</title><rect x="804.3" y="661" width="176.4" height="15.0" fill="rgb(239,167,0)" rx="2" ry="2" />
<text x="807.28" y="671.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::newRevisionFromRowAndSlots (3,632 samples, 0.09%)</title><rect x="1175.0" y="1365" width="1.0" height="15.0" fill="rgb(247,159,32)" rx="2" ry="2" />
<text x="1177.96" y="1375.5" ></text>
</g>
<g >
<title>MediaWiki\SiteStats\SiteStats::loadAndLazyInit (416 samples, 0.01%)</title><rect x="665.0" y="869" width="0.1" height="15.0" fill="rgb(246,164,40)" rx="2" ry="2" />
<text x="668.01" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\SiteLibrary::register (2,352 samples, 0.06%)</title><rect x="695.8" y="741" width="0.6" height="15.0" fill="rgb(240,207,29)" rx="2" ry="2" />
<text x="698.78" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::rawFrequency (840 samples, 0.02%)</title><rect x="577.7" y="549" width="0.2" height="15.0" fill="rgb(207,63,29)" rx="2" ry="2" />
<text x="580.70" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (7,520 samples, 0.18%)</title><rect x="579.8" y="565" width="2.1" height="15.0" fill="rgb(235,23,27)" rx="2" ry="2" />
<text x="582.83" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TreeBuilder\TreeBuilderStage::processChunk (2,256 samples, 0.05%)</title><rect x="626.6" y="757" width="0.6" height="15.0" fill="rgb(209,60,21)" rx="2" ry="2" />
<text x="629.61" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::length (8,488 samples, 0.20%)</title><rect x="506.1" y="565" width="2.4" height="15.0" fill="rgb(243,228,42)" rx="2" ry="2" />
<text x="509.08" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::attemptQuery (376 samples, 0.01%)</title><rect x="357.0" y="853" width="0.1" height="15.0" fill="rgb(246,122,29)" rx="2" ry="2" />
<text x="360.01" y="863.5" ></text>
</g>
<g >
<title>LocalisationCache::getSubitem (504 samples, 0.01%)</title><rect x="1157.0" y="901" width="0.2" height="15.0" fill="rgb(214,105,38)" rx="2" ry="2" />
<text x="1160.04" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::Wikimedia\CSS\Grammar\{closure} (864 samples, 0.02%)</title><rect x="431.5" y="565" width="0.2" height="15.0" fill="rgb(237,12,46)" rx="2" ry="2" />
<text x="434.46" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (802,378 samples, 18.97%)</title><rect x="402.7" y="885" width="223.9" height="15.0" fill="rgb(218,151,51)" rx="2" ry="2" />
<text x="405.70" y="895.5" >Wikimedia\Parsoid\Wt2Html\Tok..</text>
</g>
<g >
<title>MediaWiki\SpecialPage\SpecialPageFactory::executePath (129,348 samples, 3.06%)</title><rect x="627.8" y="837" width="36.1" height="15.0" fill="rgb(245,206,12)" rx="2" ry="2" />
<text x="630.79" y="847.5" >Med..</text>
</g>
<g >
<title>ParserOptions::getOption (376 samples, 0.01%)</title><rect x="1069.5" y="917" width="0.1" height="15.0" fill="rgb(215,209,13)" rx="2" ry="2" />
<text x="1072.50" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::parseWikitext (133,380 samples, 3.15%)</title><rect x="627.8" y="965" width="37.2" height="15.0" fill="rgb(227,165,31)" rx="2" ry="2" />
<text x="630.79" y="975.5" >Med..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,880 samples, 0.04%)</title><rect x="445.0" y="549" width="0.5" height="15.0" fill="rgb(247,143,46)" rx="2" ry="2" />
<text x="447.99" y="559.5" ></text>
</g>
<g >
<title>ParserFactory::create (81,952 samples, 1.94%)</title><rect x="638.3" y="661" width="22.9" height="15.0" fill="rgb(210,137,44)" rx="2" ry="2" />
<text x="641.29" y="671.5" >P..</text>
</g>
<g >
<title>Parser::braceSubstitution (16,584 samples, 0.39%)</title><rect x="981.3" y="501" width="4.7" height="15.0" fill="rgb(243,227,0)" rx="2" ry="2" />
<text x="984.32" y="511.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (9,816 samples, 0.23%)</title><rect x="821.3" y="181" width="2.7" height="15.0" fill="rgb(225,67,23)" rx="2" ry="2" />
<text x="824.25" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (6,752 samples, 0.16%)</title><rect x="603.5" y="565" width="1.8" height="15.0" fill="rgb(226,39,10)" rx="2" ry="2" />
<text x="606.45" y="575.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (16,584 samples, 0.39%)</title><rect x="981.3" y="517" width="4.7" height="15.0" fill="rgb(249,25,43)" rx="2" ry="2" />
<text x="984.32" y="527.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Config\SiteConfig::getExtTagImpl (840 samples, 0.02%)</title><rect x="402.5" y="965" width="0.2" height="15.0" fill="rgb(235,206,19)" rx="2" ry="2" />
<text x="405.47" y="975.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::buildDomTreeArrayFromText (48,568 samples, 1.15%)</title><rect x="670.7" y="789" width="13.5" height="15.0" fill="rgb(252,93,38)" rx="2" ry="2" />
<text x="673.68" y="799.5" ></text>
</g>
<g >
<title>Generator::current (2,710,185 samples, 64.09%)</title><rect x="357.5" y="1077" width="756.3" height="15.0" fill="rgb(212,108,20)" rx="2" ry="2" />
<text x="360.52" y="1087.5" >Generator::current</text>
</g>
<g >
<title>require /var/www/html/w/extensions/TimedMediaHandler/includes/Handlers/WebMHandler/WebMHandler.php (19,032 samples, 0.45%)</title><rect x="1139.9" y="901" width="5.3" height="15.0" fill="rgb(235,53,29)" rx="2" ry="2" />
<text x="1142.85" y="911.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssMediaQuery (28,128 samples, 0.67%)</title><rect x="425.5" y="581" width="7.9" height="15.0" fill="rgb(254,128,40)" rx="2" ry="2" />
<text x="428.54" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (2,840 samples, 0.07%)</title><rect x="523.2" y="565" width="0.8" height="15.0" fill="rgb(225,186,37)" rx="2" ry="2" />
<text x="526.19" y="575.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (3,072 samples, 0.07%)</title><rect x="402.7" y="741" width="0.9" height="15.0" fill="rgb(247,152,4)" rx="2" ry="2" />
<text x="405.70" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (5,192 samples, 0.12%)</title><rect x="430.0" y="565" width="1.5" height="15.0" fill="rgb(227,164,41)" rx="2" ry="2" />
<text x="433.01" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="608.3" y="549" width="0.1" height="15.0" fill="rgb(230,214,27)" rx="2" ry="2" />
<text x="611.28" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__construct (5,192 samples, 0.12%)</title><rect x="743.6" y="709" width="1.4" height="15.0" fill="rgb(252,174,48)" rx="2" ry="2" />
<text x="746.57" y="719.5" ></text>
</g>
<g >
<title>SectionProfiler::updateEntry (408 samples, 0.01%)</title><rect x="670.4" y="757" width="0.1" height="15.0" fill="rgb(246,38,10)" rx="2" ry="2" />
<text x="673.39" y="767.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="438.8" y="549" width="0.1" height="15.0" fill="rgb(241,18,51)" rx="2" ry="2" />
<text x="441.82" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1269" width="0.1" height="15.0" fill="rgb(242,116,21)" rx="2" ry="2" />
<text x="15.20" y="1279.5" ></text>
</g>
<g >
<title>MediaWiki\CommentStore\CommentStoreComment::__construct (1,312 samples, 0.03%)</title><rect x="350.8" y="1045" width="0.4" height="15.0" fill="rgb(224,40,27)" rx="2" ry="2" />
<text x="353.85" y="1055.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::checkType (408 samples, 0.01%)</title><rect x="402.7" y="581" width="0.1" height="15.0" fill="rgb(243,129,36)" rx="2" ry="2" />
<text x="405.72" y="591.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (3,128 samples, 0.07%)</title><rect x="363.4" y="821" width="0.9" height="15.0" fill="rgb(241,151,19)" rx="2" ry="2" />
<text x="366.42" y="831.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (72,176 samples, 1.71%)</title><rect x="784.1" y="725" width="20.2" height="15.0" fill="rgb(222,78,16)" rx="2" ry="2" />
<text x="787.13" y="735.5" ></text>
</g>
<g >
<title>Message::fetchMessage (536 samples, 0.01%)</title><rect x="1157.0" y="933" width="0.2" height="15.0" fill="rgb(243,202,52)" rx="2" ry="2" />
<text x="1160.03" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\PoolCounter\PoolWorkArticleView::renderRevision (4,138,581 samples, 97.86%)</title><rect x="19.5" y="1317" width="1154.8" height="15.0" fill="rgb(236,175,49)" rx="2" ry="2" />
<text x="22.48" y="1327.5" >MediaWiki\PoolCounter\PoolWorkArticleView::renderRevision</text>
</g>
<g >
<title>Parser::setFunctionHook (408 samples, 0.01%)</title><rect x="650.6" y="581" width="0.1" height="15.0" fill="rgb(229,69,2)" rx="2" ry="2" />
<text x="653.56" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSimpleSelectorSeq (41,048 samples, 0.97%)</title><rect x="608.5" y="565" width="11.4" height="15.0" fill="rgb(236,62,19)" rx="2" ry="2" />
<text x="611.49" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (816 samples, 0.02%)</title><rect x="981.1" y="693" width="0.2" height="15.0" fill="rgb(207,184,31)" rx="2" ry="2" />
<text x="984.08" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (824 samples, 0.02%)</title><rect x="527.6" y="565" width="0.2" height="15.0" fill="rgb(251,215,7)" rx="2" ry="2" />
<text x="530.61" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (584 samples, 0.01%)</title><rect x="1176.0" y="1381" width="0.2" height="15.0" fill="rgb(219,204,37)" rx="2" ry="2" />
<text x="1179.00" y="1391.5" ></text>
</g>
<g >
<title>Parser::setFunctionHook (416 samples, 0.01%)</title><rect x="650.7" y="581" width="0.1" height="15.0" fill="rgb(214,188,2)" rx="2" ry="2" />
<text x="653.67" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Scribunto::getParserEngine (42,312 samples, 1.00%)</title><rect x="967.0" y="293" width="11.8" height="15.0" fill="rgb(234,171,46)" rx="2" ry="2" />
<text x="970.00" y="303.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="619.7" y="517" width="0.1" height="15.0" fill="rgb(248,34,10)" rx="2" ry="2" />
<text x="622.73" y="527.5" ></text>
</g>
<g >
<title>MapCacheLRU::getWithSetCallback (400 samples, 0.01%)</title><rect x="19.2" y="1253" width="0.1" height="15.0" fill="rgb(224,202,52)" rx="2" ry="2" />
<text x="22.23" y="1263.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (9,816 samples, 0.23%)</title><rect x="821.3" y="165" width="2.7" height="15.0" fill="rgb(219,59,27)" rx="2" ry="2" />
<text x="824.25" y="175.5" ></text>
</g>
<g >
<title>Parser::setFunctionHook (408 samples, 0.01%)</title><rect x="646.4" y="581" width="0.2" height="15.0" fill="rgb(251,162,41)" rx="2" ry="2" />
<text x="649.45" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::getOption (512 samples, 0.01%)</title><rect x="1174.5" y="1333" width="0.1" height="15.0" fill="rgb(224,140,53)" rx="2" ry="2" />
<text x="1177.50" y="1343.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="503.3" y="485" width="0.3" height="15.0" fill="rgb(243,46,39)" rx="2" ry="2" />
<text x="506.26" y="495.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (7,784 samples, 0.18%)</title><rect x="360.9" y="837" width="2.1" height="15.0" fill="rgb(248,133,19)" rx="2" ry="2" />
<text x="363.88" y="847.5" ></text>
</g>
<g >
<title>ParserOptions::getOption (376 samples, 0.01%)</title><rect x="637.5" y="629" width="0.1" height="15.0" fill="rgb(238,218,16)" rx="2" ry="2" />
<text x="640.48" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::Wikimedia\Zest\{closure} (696 samples, 0.02%)</title><rect x="1115.6" y="917" width="0.2" height="15.0" fill="rgb(215,79,4)" rx="2" ry="2" />
<text x="1118.61" y="927.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (17,864 samples, 0.42%)</title><rect x="645.8" y="613" width="5.0" height="15.0" fill="rgb(230,164,42)" rx="2" ry="2" />
<text x="648.80" y="623.5" ></text>
</g>
<g >
<title>Parser::setOutputType (376 samples, 0.01%)</title><rect x="638.2" y="645" width="0.1" height="15.0" fill="rgb(223,80,16)" rx="2" ry="2" />
<text x="641.19" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::parseWikitext (798,834 samples, 18.89%)</title><rect x="403.7" y="741" width="222.9" height="15.0" fill="rgb(220,10,38)" rx="2" ry="2" />
<text x="406.69" y="751.5" >MediaWiki\Parser\Parsoid\Conf..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\SiteLibrary::register (25,592 samples, 0.61%)</title><rect x="811.2" y="197" width="7.2" height="15.0" fill="rgb(236,60,52)" rx="2" ry="2" />
<text x="814.24" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Replication\ReplicationReporter::getApproximateLagStatus (376 samples, 0.01%)</title><rect x="357.2" y="885" width="0.1" height="15.0" fill="rgb(246,27,0)" rx="2" ry="2" />
<text x="360.24" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::runMultiCurl (2,648 samples, 0.06%)</title><rect x="1157.5" y="773" width="0.7" height="15.0" fill="rgb(254,32,26)" rx="2" ry="2" />
<text x="1160.50" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::url (2,408 samples, 0.06%)</title><rect x="488.9" y="549" width="0.7" height="15.0" fill="rgb(247,202,10)" rx="2" ry="2" />
<text x="491.88" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\Dispatcher::startTag (65,536 samples, 1.55%)</title><rect x="364.3" y="837" width="18.3" height="15.0" fill="rgb(249,16,9)" rx="2" ry="2" />
<text x="367.30" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (1,832 samples, 0.04%)</title><rect x="357.0" y="1093" width="0.5" height="15.0" fill="rgb(207,23,32)" rx="2" ry="2" />
<text x="360.01" y="1103.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (704,380 samples, 16.66%)</title><rect x="784.1" y="757" width="196.6" height="15.0" fill="rgb(253,21,10)" rx="2" ry="2" />
<text x="787.13" y="767.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::startAtomic (1,184 samples, 0.03%)</title><rect x="357.1" y="949" width="0.3" height="15.0" fill="rgb(237,221,21)" rx="2" ry="2" />
<text x="360.12" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TemplateHandler::onTag (1,741,607 samples, 41.18%)</title><rect x="627.8" y="981" width="486.0" height="15.0" fill="rgb(234,198,5)" rx="2" ry="2" />
<text x="630.79" y="991.5" >Wikimedia\Parsoid\Wt2Html\TT\TemplateHandler::onTag</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (2,689,081 samples, 63.59%)</title><rect x="363.4" y="997" width="750.4" height="15.0" fill="rgb(238,222,47)" rx="2" ry="2" />
<text x="366.41" y="1007.5" >Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StyleRuleSanitizer::doSanitize (86,272 samples, 2.04%)</title><rect x="455.3" y="533" width="24.1" height="15.0" fill="rgb(246,58,22)" rx="2" ry="2" />
<text x="458.33" y="543.5" >W..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (5,016 samples, 0.12%)</title><rect x="498.7" y="501" width="1.4" height="15.0" fill="rgb(214,63,35)" rx="2" ry="2" />
<text x="501.73" y="511.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssMasking1 (15,192 samples, 0.36%)</title><rect x="551.9" y="581" width="4.2" height="15.0" fill="rgb(250,60,15)" rx="2" ry="2" />
<text x="554.88" y="591.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (18,448 samples, 0.44%)</title><rect x="665.4" y="821" width="5.1" height="15.0" fill="rgb(247,11,19)" rx="2" ry="2" />
<text x="668.36" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\MassMessage\MassMessageHooks::onParserFirstCallInit (408 samples, 0.01%)</title><rect x="650.6" y="597" width="0.1" height="15.0" fill="rgb(236,17,28)" rx="2" ry="2" />
<text x="653.56" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWord::load (1,504 samples, 0.04%)</title><rect x="1006.1" y="821" width="0.4" height="15.0" fill="rgb(218,213,3)" rx="2" ry="2" />
<text x="1009.12" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (230,213 samples, 5.44%)</title><rect x="684.6" y="837" width="64.2" height="15.0" fill="rgb(212,87,0)" rx="2" ry="2" />
<text x="687.55" y="847.5" >MediaWi..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (3,120 samples, 0.07%)</title><rect x="688.2" y="629" width="0.8" height="15.0" fill="rgb(223,164,44)" rx="2" ry="2" />
<text x="691.15" y="639.5" ></text>
</g>
<g >
<title>SectionProfileCallback::__destruct (1,224 samples, 0.03%)</title><rect x="684.8" y="645" width="0.3" height="15.0" fill="rgb(246,135,21)" rx="2" ry="2" />
<text x="687.78" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::getDoubleUnderscoreArray (10,744 samples, 0.25%)</title><rect x="360.1" y="949" width="3.0" height="15.0" fill="rgb(211,93,0)" rx="2" ry="2" />
<text x="363.08" y="959.5" ></text>
</g>
<g >
<title>spl_autoload_call (3,248 samples, 0.08%)</title><rect x="977.9" y="213" width="0.9" height="15.0" fill="rgb(241,93,26)" rx="2" ry="2" />
<text x="980.90" y="223.5" ></text>
</g>
<g >
<title>MediaWiki\TimedMediaHandler\WebVideoTranscode\WebVideoTranscode::isTranscodeReady (7,304 samples, 0.17%)</title><rect x="1145.2" y="949" width="2.1" height="15.0" fill="rgb(250,91,23)" rx="2" ry="2" />
<text x="1148.23" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\Hooks::onParserFirstCallInit (4,520 samples, 0.11%)</title><rect x="647.6" y="597" width="1.3" height="15.0" fill="rgb(252,178,14)" rx="2" ry="2" />
<text x="650.60" y="607.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="357.1" y="885" width="0.1" height="15.0" fill="rgb(247,208,6)" rx="2" ry="2" />
<text x="360.12" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="438.9" y="549" width="0.1" height="15.0" fill="rgb(212,182,25)" rx="2" ry="2" />
<text x="441.92" y="559.5" ></text>
</g>
<g >
<title>LocalisationCache::loadSubitem (504 samples, 0.01%)</title><rect x="1157.0" y="885" width="0.2" height="15.0" fill="rgb(214,173,7)" rx="2" ry="2" />
<text x="1160.04" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parseblock (496 samples, 0.01%)</title><rect x="1070.5" y="885" width="0.1" height="15.0" fill="rgb(251,72,42)" rx="2" ry="2" />
<text x="1073.49" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\TreeBuilder\InBody::startTag (2,256 samples, 0.05%)</title><rect x="626.6" y="693" width="0.6" height="15.0" fill="rgb(205,85,29)" rx="2" ry="2" />
<text x="629.61" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TemplateHandler::onTag (802,378 samples, 18.97%)</title><rect x="402.7" y="837" width="223.9" height="15.0" fill="rgb(222,155,17)" rx="2" ry="2" />
<text x="405.70" y="847.5" >Wikimedia\Parsoid\Wt2Html\TT\..</text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setHTMLTitle (3,656 samples, 0.09%)</title><rect x="637.3" y="757" width="1.0" height="15.0" fill="rgb(240,113,4)" rx="2" ry="2" />
<text x="640.27" y="767.5" ></text>
</g>
<g >
<title>Message::__construct (376 samples, 0.01%)</title><rect x="351.1" y="1013" width="0.1" height="15.0" fill="rgb(205,8,48)" rx="2" ry="2" />
<text x="354.11" y="1023.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::process (798,970 samples, 18.89%)</title><rect x="403.7" y="805" width="222.9" height="15.0" fill="rgb(221,66,24)" rx="2" ry="2" />
<text x="406.65" y="815.5" >Wikimedia\Parsoid\Wt2Html\Tok..</text>
</g>
<g >
<title>Parser::braceSubstitution (632,076 samples, 14.95%)</title><rect x="804.3" y="341" width="176.4" height="15.0" fill="rgb(230,199,13)" rx="2" ry="2" />
<text x="807.30" y="351.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>SectionProfiler::scopedProfileOut (1,224 samples, 0.03%)</title><rect x="684.8" y="661" width="0.3" height="15.0" fill="rgb(251,194,17)" rx="2" ry="2" />
<text x="687.78" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (154,136 samples, 3.64%)</title><rect x="1070.7" y="581" width="43.1" height="15.0" fill="rgb(244,89,40)" rx="2" ry="2" />
<text x="1073.74" y="591.5" >Medi..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (12,664 samples, 0.30%)</title><rect x="684.6" y="789" width="3.5" height="15.0" fill="rgb(237,117,9)" rx="2" ry="2" />
<text x="687.55" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::frequency (9,840 samples, 0.23%)</title><rect x="575.2" y="565" width="2.7" height="15.0" fill="rgb(236,229,38)" rx="2" ry="2" />
<text x="578.19" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\ObjectFactory\ObjectFactory::createObject (448 samples, 0.01%)</title><rect x="626.3" y="501" width="0.1" height="15.0" fill="rgb(223,26,23)" rx="2" ry="2" />
<text x="629.27" y="511.5" ></text>
</g>
<g >
<title>class@anonymous::createDocument (440 samples, 0.01%)</title><rect x="1174.6" y="1237" width="0.2" height="15.0" fill="rgb(239,98,45)" rx="2" ry="2" />
<text x="1177.65" y="1247.5" ></text>
</g>
<g >
<title>MediaWiki\Utils\GitInfo::__construct (864 samples, 0.02%)</title><rect x="817.9" y="165" width="0.2" height="15.0" fill="rgb(211,26,45)" rx="2" ry="2" />
<text x="820.89" y="175.5" ></text>
</g>
<g >
<title>Language::getMagic (1,504 samples, 0.04%)</title><rect x="1006.1" y="805" width="0.4" height="15.0" fill="rgb(233,52,51)" rx="2" ry="2" />
<text x="1009.12" y="815.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (3,120 samples, 0.07%)</title><rect x="688.2" y="645" width="0.8" height="15.0" fill="rgb(250,8,5)" rx="2" ry="2" />
<text x="691.15" y="655.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (51,920 samples, 1.23%)</title><rect x="1159.8" y="1045" width="14.5" height="15.0" fill="rgb(214,33,12)" rx="2" ry="2" />
<text x="1162.79" y="1055.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\DOMCompat::querySelector (4,496 samples, 0.11%)</title><rect x="404.4" y="597" width="1.3" height="15.0" fill="rgb(234,82,45)" rx="2" ry="2" />
<text x="407.42" y="607.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssCombinator (1,800 samples, 0.04%)</title><rect x="608.0" y="565" width="0.5" height="15.0" fill="rgb(227,59,53)" rx="2" ry="2" />
<text x="610.99" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="563.9" y="565" width="0.2" height="15.0" fill="rgb(225,1,38)" rx="2" ry="2" />
<text x="566.90" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (752 samples, 0.02%)</title><rect x="436.3" y="565" width="0.2" height="15.0" fill="rgb(222,69,3)" rx="2" ry="2" />
<text x="439.30" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (872 samples, 0.02%)</title><rect x="350.5" y="1013" width="0.2" height="15.0" fill="rgb(223,172,4)" rx="2" ry="2" />
<text x="353.49" y="1023.5" ></text>
</g>
<g >
<title>BlockLevelPass::execute (424 samples, 0.01%)</title><rect x="404.3" y="693" width="0.1" height="15.0" fill="rgb(248,139,49)" rx="2" ry="2" />
<text x="407.30" y="703.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="830.3" y="133" width="0.2" height="15.0" fill="rgb(243,165,34)" rx="2" ry="2" />
<text x="833.34" y="143.5" ></text>
</g>
<g >
<title>SqlBagOStuff::doGetMulti (12,392 samples, 0.29%)</title><rect x="19.8" y="1045" width="3.4" height="15.0" fill="rgb(241,220,3)" rx="2" ry="2" />
<text x="22.77" y="1055.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (1,488 samples, 0.04%)</title><rect x="988.4" y="709" width="0.4" height="15.0" fill="rgb(237,47,45)" rx="2" ry="2" />
<text x="991.38" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::receiveMessage (7,864 samples, 0.19%)</title><rect x="741.4" y="693" width="2.2" height="15.0" fill="rgb(210,217,27)" rx="2" ry="2" />
<text x="744.38" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Quantifier::optional (544 samples, 0.01%)</title><rect x="505.8" y="549" width="0.1" height="15.0" fill="rgb(210,208,8)" rx="2" ry="2" />
<text x="508.78" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="525.4" y="533" width="0.2" height="15.0" fill="rgb(226,146,42)" rx="2" ry="2" />
<text x="528.42" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (16,624 samples, 0.39%)</title><rect x="981.3" y="741" width="4.7" height="15.0" fill="rgb(235,220,36)" rx="2" ry="2" />
<text x="984.32" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,720 samples, 0.16%)</title><rect x="506.1" y="549" width="1.9" height="15.0" fill="rgb(233,42,54)" rx="2" ry="2" />
<text x="509.08" y="559.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (6,816 samples, 0.16%)</title><rect x="661.2" y="645" width="1.9" height="15.0" fill="rgb(214,126,30)" rx="2" ry="2" />
<text x="664.17" y="655.5" ></text>
</g>
<g >
<title>SectionProfileCallback::__destruct (408 samples, 0.01%)</title><rect x="784.0" y="853" width="0.1" height="15.0" fill="rgb(214,32,42)" rx="2" ry="2" />
<text x="787.01" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Utils\DOMCompat::querySelectorAll (7,232 samples, 0.17%)</title><rect x="1113.8" y="997" width="2.0" height="15.0" fill="rgb(231,5,25)" rx="2" ry="2" />
<text x="1116.79" y="1007.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (61,520 samples, 1.45%)</title><rect x="989.6" y="901" width="17.1" height="15.0" fill="rgb(214,117,32)" rx="2" ry="2" />
<text x="992.56" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\TimedMediaHandler\TimedMediaTransformOutput::getAPIData (42,212 samples, 1.00%)</title><rect x="1145.2" y="997" width="11.8" height="15.0" fill="rgb(205,71,28)" rx="2" ry="2" />
<text x="1148.21" y="1007.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="535.0" y="565" width="0.1" height="15.0" fill="rgb(253,204,25)" rx="2" ry="2" />
<text x="538.03" y="575.5" ></text>
</g>
<g >
<title>ParserCache::getMetadata (448 samples, 0.01%)</title><rect x="19.4" y="1333" width="0.1" height="15.0" fill="rgb(231,62,5)" rx="2" ry="2" />
<text x="22.35" y="1343.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::fetchBlobs (51,920 samples, 1.23%)</title><rect x="1159.8" y="1109" width="14.5" height="15.0" fill="rgb(230,54,8)" rx="2" ry="2" />
<text x="1162.79" y="1119.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (12,664 samples, 0.30%)</title><rect x="684.6" y="821" width="3.5" height="15.0" fill="rgb(227,202,47)" rx="2" ry="2" />
<text x="687.55" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\SyntaxHighlight\SyntaxHighlight::highlight (71,096 samples, 1.68%)</title><rect x="382.6" y="949" width="19.9" height="15.0" fill="rgb(241,115,25)" rx="2" ry="2" />
<text x="385.63" y="959.5" ></text>
</g>
<g >
<title>LocalisationCache::loadItem (186,392 samples, 4.41%)</title><rect x="298.5" y="1093" width="52.0" height="15.0" fill="rgb(223,73,13)" rx="2" ry="2" />
<text x="301.48" y="1103.5" >Local..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (802,378 samples, 18.97%)</title><rect x="402.7" y="853" width="223.9" height="15.0" fill="rgb(211,173,46)" rx="2" ry="2" />
<text x="405.70" y="863.5" >Wikimedia\Parsoid\Wt2Html\TT\..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssFonts3 (37,400 samples, 0.88%)</title><rect x="529.9" y="581" width="10.4" height="15.0" fill="rgb(234,117,9)" rx="2" ry="2" />
<text x="532.90" y="591.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (840 samples, 0.02%)</title><rect x="980.7" y="789" width="0.2" height="15.0" fill="rgb(247,189,6)" rx="2" ry="2" />
<text x="983.67" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::prefetchImgMetadata (13,184 samples, 0.31%)</title><rect x="19.5" y="1109" width="3.7" height="15.0" fill="rgb(217,75,7)" rx="2" ry="2" />
<text x="22.55" y="1119.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Sanitizer::removeSomeTags (55,392 samples, 1.31%)</title><rect x="990.1" y="869" width="15.4" height="15.0" fill="rgb(232,39,39)" rx="2" ry="2" />
<text x="993.08" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::onParserFirstCallInit (408 samples, 0.01%)</title><rect x="649.0" y="597" width="0.1" height="15.0" fill="rgb(254,139,12)" rx="2" ry="2" />
<text x="651.97" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1189" width="0.1" height="15.0" fill="rgb(243,32,40)" rx="2" ry="2" />
<text x="15.20" y="1199.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssClass (1,336 samples, 0.03%)</title><rect x="437.3" y="581" width="0.3" height="15.0" fill="rgb(242,67,21)" rx="2" ry="2" />
<text x="440.26" y="591.5" ></text>
</g>
<g >
<title>Parser::preprocessToDom (408 samples, 0.01%)</title><rect x="626.5" y="661" width="0.1" height="15.0" fill="rgb(205,117,50)" rx="2" ry="2" />
<text x="629.48" y="671.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchOrRegenerate (8,608 samples, 0.20%)</title><rect x="1157.3" y="837" width="2.4" height="15.0" fill="rgb(249,94,54)" rx="2" ry="2" />
<text x="1160.28" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\User\User::isRegistered (512 samples, 0.01%)</title><rect x="1174.5" y="1285" width="0.1" height="15.0" fill="rgb(210,162,8)" rx="2" ry="2" />
<text x="1177.50" y="1295.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (773,848 samples, 18.30%)</title><rect x="410.7" y="677" width="215.9" height="15.0" fill="rgb(214,36,35)" rx="2" ry="2" />
<text x="413.66" y="687.5" >Parser::replaceVariables</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="564.6" y="565" width="0.2" height="15.0" fill="rgb(210,90,21)" rx="2" ry="2" />
<text x="567.62" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::runMulti (7,792 samples, 0.18%)</title><rect x="1157.3" y="789" width="2.2" height="15.0" fill="rgb(236,218,4)" rx="2" ry="2" />
<text x="1160.28" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (7,864 samples, 0.19%)</title><rect x="741.4" y="725" width="2.2" height="15.0" fill="rgb(254,144,24)" rx="2" ry="2" />
<text x="744.38" y="735.5" ></text>
</g>
<g >
<title>Parser::preprocess (3,656 samples, 0.09%)</title><rect x="637.3" y="677" width="1.0" height="15.0" fill="rgb(220,185,51)" rx="2" ry="2" />
<text x="640.27" y="687.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::preprocessToObj (216,272 samples, 5.11%)</title><rect x="1007.5" y="869" width="60.3" height="15.0" fill="rgb(210,185,34)" rx="2" ry="2" />
<text x="1010.48" y="879.5" >Prepro..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssNamespacePrefix (2,416 samples, 0.06%)</title><rect x="436.5" y="565" width="0.7" height="15.0" fill="rgb(238,136,40)" rx="2" ry="2" />
<text x="439.51" y="575.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchOrRegenerate (51,920 samples, 1.23%)</title><rect x="1159.8" y="1141" width="14.5" height="15.0" fill="rgb(211,145,30)" rx="2" ry="2" />
<text x="1162.79" y="1151.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="565.3" y="565" width="0.2" height="15.0" fill="rgb(210,66,7)" rx="2" ry="2" />
<text x="568.25" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssShapes1 (13,528 samples, 0.32%)</title><rect x="564.8" y="581" width="3.8" height="15.0" fill="rgb(227,63,50)" rx="2" ry="2" />
<text x="567.83" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::loadString (5,192 samples, 0.12%)</title><rect x="743.6" y="725" width="1.4" height="15.0" fill="rgb(215,155,50)" rx="2" ry="2" />
<text x="746.57" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="447.3" y="549" width="0.2" height="15.0" fill="rgb(210,57,32)" rx="2" ry="2" />
<text x="450.26" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::fetchBlobs (3,120 samples, 0.07%)</title><rect x="688.2" y="549" width="0.8" height="15.0" fill="rgb(244,123,16)" rx="2" ry="2" />
<text x="691.15" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,128 samples, 0.03%)</title><rect x="505.3" y="533" width="0.3" height="15.0" fill="rgb(247,150,3)" rx="2" ry="2" />
<text x="508.32" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (2,080 samples, 0.05%)</title><rect x="966.4" y="165" width="0.6" height="15.0" fill="rgb(212,194,35)" rx="2" ry="2" />
<text x="969.42" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Hooks::onContentGetParserOutput (13,184 samples, 0.31%)</title><rect x="19.5" y="1157" width="3.7" height="15.0" fill="rgb(230,95,53)" rx="2" ry="2" />
<text x="22.55" y="1167.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssAlign3 (16,600 samples, 0.39%)</title><rect x="557.1" y="565" width="4.6" height="15.0" fill="rgb(214,0,8)" rx="2" ry="2" />
<text x="560.11" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (1,392 samples, 0.03%)</title><rect x="419.4" y="565" width="0.4" height="15.0" fill="rgb(205,134,15)" rx="2" ry="2" />
<text x="422.37" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (245,037 samples, 5.79%)</title><rect x="684.6" y="853" width="68.3" height="15.0" fill="rgb(236,108,13)" rx="2" ry="2" />
<text x="687.55" y="863.5" >MediaWi..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="435.2" y="581" width="0.1" height="15.0" fill="rgb(251,34,32)" rx="2" ry="2" />
<text x="438.23" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1253" width="0.1" height="15.0" fill="rgb(220,1,27)" rx="2" ry="2" />
<text x="15.20" y="1263.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (154,136 samples, 3.64%)</title><rect x="1070.7" y="725" width="43.1" height="15.0" fill="rgb(205,87,45)" rx="2" ry="2" />
<text x="1073.74" y="735.5" >Pars..</text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::getHandlers (752 samples, 0.02%)</title><rect x="1113.0" y="389" width="0.2" height="15.0" fill="rgb(219,214,45)" rx="2" ry="2" />
<text x="1115.99" y="399.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssUI4 (17,144 samples, 0.41%)</title><rect x="600.8" y="581" width="4.8" height="15.0" fill="rgb(218,101,16)" rx="2" ry="2" />
<text x="603.78" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (51,920 samples, 1.23%)</title><rect x="1159.8" y="1189" width="14.5" height="15.0" fill="rgb(245,55,41)" rx="2" ry="2" />
<text x="1162.79" y="1199.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\PropertySanitizer::addKnownProperties (20,536 samples, 0.49%)</title><rect x="449.6" y="581" width="5.7" height="15.0" fill="rgb(215,162,14)" rx="2" ry="2" />
<text x="452.60" y="591.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,140 samples, 14.95%)</title><rect x="804.3" y="613" width="176.4" height="15.0" fill="rgb(230,223,12)" rx="2" ry="2" />
<text x="807.28" y="623.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssID (800 samples, 0.02%)</title><rect x="605.3" y="565" width="0.3" height="15.0" fill="rgb(242,3,49)" rx="2" ry="2" />
<text x="608.34" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (2,784 samples, 0.07%)</title><rect x="483.5" y="565" width="0.8" height="15.0" fill="rgb(218,99,2)" rx="2" ry="2" />
<text x="486.53" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TitleBlacklist\Scribunto_LuaTitleBlacklistLibrary::register (1,312 samples, 0.03%)</title><rect x="830.1" y="197" width="0.4" height="15.0" fill="rgb(248,81,0)" rx="2" ry="2" />
<text x="833.10" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadRevisionFromConds (8,440 samples, 0.20%)</title><rect x="350.5" y="1109" width="2.3" height="15.0" fill="rgb(249,205,44)" rx="2" ry="2" />
<text x="353.49" y="1119.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssNegation (5,000 samples, 0.12%)</title><rect x="437.6" y="581" width="1.4" height="15.0" fill="rgb(224,209,28)" rx="2" ry="2" />
<text x="440.63" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssUniversal (1,336 samples, 0.03%)</title><rect x="438.7" y="565" width="0.3" height="15.0" fill="rgb(233,61,23)" rx="2" ry="2" />
<text x="441.65" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::streamstart_async (1,088 samples, 0.03%)</title><rect x="363.1" y="1013" width="0.3" height="15.0" fill="rgb(242,6,6)" rx="2" ry="2" />
<text x="366.11" y="1023.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Gallery\Opts::__construct (1,552 samples, 0.04%)</title><rect x="627.2" y="949" width="0.5" height="15.0" fill="rgb(244,172,48)" rx="2" ry="2" />
<text x="630.24" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callFunction (4,432 samples, 0.10%)</title><rect x="943.5" y="197" width="1.2" height="15.0" fill="rgb(246,148,19)" rx="2" ry="2" />
<text x="946.46" y="207.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (2,432 samples, 0.06%)</title><rect x="988.2" y="789" width="0.6" height="15.0" fill="rgb(209,127,18)" rx="2" ry="2" />
<text x="991.15" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__destruct (2,056 samples, 0.05%)</title><rect x="745.0" y="725" width="0.6" height="15.0" fill="rgb(209,177,43)" rx="2" ry="2" />
<text x="748.02" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\HtmlLibrary::register (11,520 samples, 0.27%)</title><rect x="805.1" y="197" width="3.2" height="15.0" fill="rgb(224,75,13)" rx="2" ry="2" />
<text x="808.07" y="207.5" ></text>
</g>
<g >
<title>Parser::internalParseHalfParsed (65,568 samples, 1.55%)</title><rect x="364.3" y="933" width="18.3" height="15.0" fill="rgb(215,66,17)" rx="2" ry="2" />
<text x="367.29" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::url (2,408 samples, 0.06%)</title><rect x="525.0" y="565" width="0.7" height="15.0" fill="rgb(213,103,2)" rx="2" ry="2" />
<text x="527.99" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContent (448 samples, 0.01%)</title><rect x="980.5" y="245" width="0.2" height="15.0" fill="rgb(242,120,25)" rx="2" ry="2" />
<text x="983.54" y="255.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaModule::invoke (583,036 samples, 13.79%)</title><rect x="804.3" y="293" width="162.7" height="15.0" fill="rgb(247,17,50)" rx="2" ry="2" />
<text x="807.31" y="303.5" >MediaWiki\Extension\..</text>
</g>
<g >
<title>Preprocessor_Hash::addLiteral (5,312 samples, 0.13%)</title><rect x="682.7" y="773" width="1.5" height="15.0" fill="rgb(217,3,5)" rx="2" ry="2" />
<text x="685.75" y="783.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicProperty (2,256 samples, 0.05%)</title><rect x="351.4" y="997" width="0.7" height="15.0" fill="rgb(236,56,36)" rx="2" ry="2" />
<text x="354.44" y="1007.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::register (6,144 samples, 0.15%)</title><rect x="828.4" y="197" width="1.7" height="15.0" fill="rgb(205,182,17)" rx="2" ry="2" />
<text x="831.38" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Frame::expand (3,128 samples, 0.07%)</title><rect x="363.4" y="933" width="0.9" height="15.0" fill="rgb(230,85,38)" rx="2" ry="2" />
<text x="366.42" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LanguageLibrary::register (5,048 samples, 0.12%)</title><rect x="808.3" y="197" width="1.4" height="15.0" fill="rgb(226,72,32)" rx="2" ry="2" />
<text x="811.29" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__wakeup (2,560 samples, 0.06%)</title><rect x="988.8" y="613" width="0.7" height="15.0" fill="rgb(209,123,21)" rx="2" ry="2" />
<text x="991.83" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\TransactionManager::updateTrxWriteQueryReport (376 samples, 0.01%)</title><rect x="357.0" y="837" width="0.1" height="15.0" fill="rgb(253,197,0)" rx="2" ry="2" />
<text x="360.01" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1109" width="0.1" height="15.0" fill="rgb(213,187,24)" rx="2" ry="2" />
<text x="15.20" y="1119.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::Wikimedia\Zest\{closure} (696 samples, 0.02%)</title><rect x="1114.0" y="933" width="0.2" height="15.0" fill="rgb(205,99,50)" rx="2" ry="2" />
<text x="1117.02" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\SpecialPage\SpecialPage::run (129,348 samples, 3.06%)</title><rect x="627.8" y="821" width="36.1" height="15.0" fill="rgb(222,14,7)" rx="2" ry="2" />
<text x="630.79" y="831.5" >Med..</text>
</g>
<g >
<title>Message::exists (536 samples, 0.01%)</title><rect x="1157.0" y="949" width="0.2" height="15.0" fill="rgb(229,74,13)" rx="2" ry="2" />
<text x="1160.03" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="445.5" y="549" width="0.1" height="15.0" fill="rgb(225,222,4)" rx="2" ry="2" />
<text x="448.52" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (2,784 samples, 0.07%)</title><rect x="498.0" y="517" width="0.7" height="15.0" fill="rgb(228,167,19)" rx="2" ry="2" />
<text x="500.96" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContentOrThrow (51,920 samples, 1.23%)</title><rect x="1159.8" y="1237" width="14.5" height="15.0" fill="rgb(205,11,24)" rx="2" ry="2" />
<text x="1162.79" y="1247.5" ></text>
</g>
<g >
<title>CoreParserFunctions::pagesincategory (4,288 samples, 0.10%)</title><rect x="1005.5" y="885" width="1.2" height="15.0" fill="rgb(210,167,49)" rx="2" ry="2" />
<text x="1008.53" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItem\ContentThreadItem::MediaWiki\Extension\DiscussionTools\ThreadItem\{closure} (384 samples, 0.01%)</title><rect x="12.2" y="1285" width="0.1" height="15.0" fill="rgb(218,194,41)" rx="2" ry="2" />
<text x="15.20" y="1295.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="1113.2" y="453" width="0.1" height="15.0" fill="rgb(229,60,53)" rx="2" ry="2" />
<text x="1116.20" y="463.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Cite\References::processRefs (7,360 samples, 0.17%)</title><rect x="1113.8" y="1013" width="2.0" height="15.0" fill="rgb(217,159,28)" rx="2" ry="2" />
<text x="1116.75" y="1023.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (752 samples, 0.02%)</title><rect x="444.8" y="549" width="0.2" height="15.0" fill="rgb(209,44,41)" rx="2" ry="2" />
<text x="447.78" y="559.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,140 samples, 14.95%)</title><rect x="804.3" y="501" width="176.4" height="15.0" fill="rgb(250,186,37)" rx="2" ry="2" />
<text x="807.28" y="511.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\TokenHandler::process (2,256 samples, 0.05%)</title><rect x="626.6" y="821" width="0.6" height="15.0" fill="rgb(225,162,10)" rx="2" ry="2" />
<text x="629.61" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\Hooks\HookUtils::isAvailableForTitle (6,256 samples, 0.15%)</title><rect x="10.3" y="1381" width="1.7" height="15.0" fill="rgb(228,148,29)" rx="2" ry="2" />
<text x="13.30" y="1391.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::preprocessWikitext (1,453,171 samples, 34.36%)</title><rect x="665.0" y="965" width="405.5" height="15.0" fill="rgb(225,97,3)" rx="2" ry="2" />
<text x="668.01" y="975.5" >MediaWiki\Parser\Parsoid\Config\DataAccess::preprocessW..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="612.3" y="533" width="0.2" height="15.0" fill="rgb(243,205,26)" rx="2" ry="2" />
<text x="615.30" y="543.5" ></text>
</g>
<g >
<title>Parser::guessSectionNameFromWikiText (496 samples, 0.01%)</title><rect x="980.8" y="725" width="0.1" height="15.0" fill="rgb(229,9,54)" rx="2" ry="2" />
<text x="983.77" y="735.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (3,128 samples, 0.07%)</title><rect x="363.4" y="789" width="0.9" height="15.0" fill="rgb(239,187,49)" rx="2" ry="2" />
<text x="366.42" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssCombinator (1,800 samples, 0.04%)</title><rect x="434.0" y="565" width="0.5" height="15.0" fill="rgb(208,77,12)" rx="2" ry="2" />
<text x="436.98" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::execute (46,248 samples, 1.09%)</title><rect x="992.6" y="853" width="12.9" height="15.0" fill="rgb(209,43,4)" rx="2" ry="2" />
<text x="995.63" y="863.5" ></text>
</g>
<g >
<title>WANObjectCache::getWithSetCallback (12,896 samples, 0.30%)</title><rect x="749.3" y="709" width="3.6" height="15.0" fill="rgb(254,120,7)" rx="2" ry="2" />
<text x="752.32" y="719.5" ></text>
</g>
<g >
<title>Language::getMagic (376 samples, 0.01%)</title><rect x="1006.6" y="837" width="0.1" height="15.0" fill="rgb(232,205,23)" rx="2" ry="2" />
<text x="1009.57" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\ThreadItemStore::insertThreadItems (696 samples, 0.02%)</title><rect x="1174.8" y="1381" width="0.2" height="15.0" fill="rgb(218,4,44)" rx="2" ry="2" />
<text x="1177.77" y="1391.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getAllExpandedArguments (376 samples, 0.01%)</title><rect x="684.6" y="741" width="0.1" height="15.0" fill="rgb(235,24,17)" rx="2" ry="2" />
<text x="687.55" y="751.5" ></text>
</g>
<g >
<title>spl_autoload_call (376,560 samples, 8.90%)</title><rect x="830.5" y="197" width="105.0" height="15.0" fill="rgb(241,10,8)" rx="2" ry="2" />
<text x="833.46" y="207.5" >spl_autoload..</text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssSizing3 (2,264 samples, 0.05%)</title><rect x="529.3" y="565" width="0.6" height="15.0" fill="rgb(228,201,42)" rx="2" ry="2" />
<text x="532.27" y="575.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (1,656 samples, 0.04%)</title><rect x="684.7" y="677" width="0.4" height="15.0" fill="rgb(234,47,11)" rx="2" ry="2" />
<text x="687.66" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (28,320 samples, 0.67%)</title><rect x="935.5" y="197" width="7.9" height="15.0" fill="rgb(253,23,45)" rx="2" ry="2" />
<text x="938.54" y="207.5" ></text>
</g>
<g >
<title>WANObjectCache::fetchOrRegenerate (10,080 samples, 0.24%)</title><rect x="685.2" y="581" width="2.8" height="15.0" fill="rgb(237,225,18)" rx="2" ry="2" />
<text x="688.19" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::customIdent (1,176 samples, 0.03%)</title><rect x="598.4" y="565" width="0.3" height="15.0" fill="rgb(252,25,28)" rx="2" ry="2" />
<text x="601.42" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::current (536 samples, 0.01%)</title><rect x="11.9" y="1349" width="0.1" height="15.0" fill="rgb(233,148,17)" rx="2" ry="2" />
<text x="14.86" y="1359.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssMulticol (26,816 samples, 0.63%)</title><rect x="556.1" y="581" width="7.5" height="15.0" fill="rgb(240,11,44)" rx="2" ry="2" />
<text x="559.12" y="591.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (2,616 samples, 0.06%)</title><rect x="988.8" y="853" width="0.8" height="15.0" fill="rgb(239,85,12)" rx="2" ry="2" />
<text x="991.83" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="501.5" y="485" width="0.3" height="15.0" fill="rgb(245,14,43)" rx="2" ry="2" />
<text x="504.46" y="495.5" ></text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::getContentHandler (448 samples, 0.01%)</title><rect x="626.3" y="549" width="0.1" height="15.0" fill="rgb(212,37,48)" rx="2" ry="2" />
<text x="629.27" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TitleBlacklist\Scribunto_LuaTitleBlacklistLibrary::register (592 samples, 0.01%)</title><rect x="741.1" y="741" width="0.2" height="15.0" fill="rgb(236,196,26)" rx="2" ry="2" />
<text x="744.11" y="751.5" ></text>
</g>
<g >
<title>Message::transformText (91,664 samples, 2.17%)</title><rect x="638.3" y="709" width="25.6" height="15.0" fill="rgb(236,32,11)" rx="2" ry="2" />
<text x="641.29" y="719.5" >M..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parseChunkily (2,875,053 samples, 67.99%)</title><rect x="357.5" y="1109" width="802.3" height="15.0" fill="rgb(241,188,22)" rx="2" ry="2" />
<text x="360.52" y="1119.5" >Wikimedia\Parsoid\Wt2Html\ParserPipeline::parseChunkily</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::hasSlot (1,416 samples, 0.03%)</title><rect x="356.6" y="1125" width="0.4" height="15.0" fill="rgb(238,187,32)" rx="2" ry="2" />
<text x="359.62" y="1135.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Alternative::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="341" width="5.8" height="15.0" fill="rgb(211,215,49)" rx="2" ry="2" />
<text x="476.63" y="351.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::getLuaType (408 samples, 0.01%)</title><rect x="981.2" y="565" width="0.1" height="15.0" fill="rgb(254,6,1)" rx="2" ry="2" />
<text x="984.19" y="575.5" ></text>
</g>
<g >
<title>unserialize (2,688 samples, 0.06%)</title><rect x="829.2" y="101" width="0.8" height="15.0" fill="rgb(241,198,26)" rx="2" ry="2" />
<text x="832.23" y="111.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (7,680 samples, 0.18%)</title><rect x="986.0" y="677" width="2.1" height="15.0" fill="rgb(222,82,47)" rx="2" ry="2" />
<text x="988.96" y="687.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::lengthPercentage (7,008 samples, 0.17%)</title><rect x="508.5" y="565" width="1.9" height="15.0" fill="rgb(235,218,3)" rx="2" ry="2" />
<text x="511.45" y="575.5" ></text>
</g>
<g >
<title>LocalisationCache::loadCoreData (186,392 samples, 4.41%)</title><rect x="298.5" y="1077" width="52.0" height="15.0" fill="rgb(234,130,8)" rx="2" ry="2" />
<text x="301.48" y="1087.5" >Local..</text>
</g>
<g >
<title>MediaWiki\Extension\GeoCrumbs\Hooks::onParserFirstCallInit (2,968 samples, 0.07%)</title><rect x="646.6" y="597" width="0.8" height="15.0" fill="rgb(246,165,30)" rx="2" ry="2" />
<text x="649.56" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Linter\Hooks::onParserLogLinterData (1,832 samples, 0.04%)</title><rect x="357.0" y="1077" width="0.5" height="15.0" fill="rgb(228,149,17)" rx="2" ry="2" />
<text x="360.01" y="1087.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::dataState (46,248 samples, 1.09%)</title><rect x="992.6" y="821" width="12.9" height="15.0" fill="rgb(254,193,45)" rx="2" ry="2" />
<text x="995.63" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::ustringMatch (600 samples, 0.01%)</title><rect x="1113.6" y="517" width="0.1" height="15.0" fill="rgb(222,16,25)" rx="2" ry="2" />
<text x="1116.58" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::isKnown (9,592 samples, 0.23%)</title><rect x="1157.0" y="997" width="2.7" height="15.0" fill="rgb(244,148,15)" rx="2" ry="2" />
<text x="1160.03" y="1007.5" ></text>
</g>
<g >
<title>SectionProfiler::updateEntry (4,368 samples, 0.10%)</title><rect x="1068.3" y="853" width="1.2" height="15.0" fill="rgb(239,5,45)" rx="2" ry="2" />
<text x="1071.26" y="863.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (155,056 samples, 3.67%)</title><rect x="1070.5" y="965" width="43.3" height="15.0" fill="rgb(250,174,22)" rx="2" ry="2" />
<text x="1073.49" y="975.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\User\User::getId (512 samples, 0.01%)</title><rect x="1174.5" y="1269" width="0.1" height="15.0" fill="rgb(223,91,42)" rx="2" ry="2" />
<text x="1177.50" y="1279.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (68,080 samples, 1.61%)</title><rect x="665.3" y="869" width="19.0" height="15.0" fill="rgb(242,54,19)" rx="2" ry="2" />
<text x="668.35" y="879.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::getMulti (12,392 samples, 0.29%)</title><rect x="19.8" y="1061" width="3.4" height="15.0" fill="rgb(243,82,24)" rx="2" ry="2" />
<text x="22.77" y="1071.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (1,312 samples, 0.03%)</title><rect x="830.1" y="165" width="0.4" height="15.0" fill="rgb(220,119,49)" rx="2" ry="2" />
<text x="833.10" y="175.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::doCompile (7,232 samples, 0.17%)</title><rect x="1113.8" y="949" width="2.0" height="15.0" fill="rgb(227,186,42)" rx="2" ry="2" />
<text x="1116.79" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (5,536 samples, 0.13%)</title><rect x="809.7" y="181" width="1.5" height="15.0" fill="rgb(222,205,49)" rx="2" ry="2" />
<text x="812.70" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (376 samples, 0.01%)</title><rect x="684.6" y="677" width="0.1" height="15.0" fill="rgb(230,156,32)" rx="2" ry="2" />
<text x="687.55" y="687.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::addLiteral (2,408 samples, 0.06%)</title><rect x="669.7" y="741" width="0.7" height="15.0" fill="rgb(242,153,34)" rx="2" ry="2" />
<text x="672.72" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\CommentStore\CommentStore::getCommentLegacy (1,416 samples, 0.03%)</title><rect x="350.8" y="1061" width="0.4" height="15.0" fill="rgb(235,212,10)" rx="2" ry="2" />
<text x="353.82" y="1071.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (880 samples, 0.02%)</title><rect x="981.1" y="773" width="0.2" height="15.0" fill="rgb(252,29,20)" rx="2" ry="2" />
<text x="984.08" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (10,336 samples, 0.24%)</title><rect x="494.1" y="533" width="2.8" height="15.0" fill="rgb(221,30,32)" rx="2" ry="2" />
<text x="497.06" y="543.5" ></text>
</g>
<g >
<title>proc_open (640 samples, 0.02%)</title><rect x="944.7" y="181" width="0.2" height="15.0" fill="rgb(221,35,15)" rx="2" ry="2" />
<text x="947.71" y="191.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (7,864 samples, 0.19%)</title><rect x="741.4" y="709" width="2.2" height="15.0" fill="rgb(212,193,45)" rx="2" ry="2" />
<text x="744.38" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (376 samples, 0.01%)</title><rect x="419.8" y="565" width="0.1" height="15.0" fill="rgb(223,15,4)" rx="2" ry="2" />
<text x="422.76" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,664 samples, 0.04%)</title><rect x="449.0" y="581" width="0.5" height="15.0" fill="rgb(243,71,39)" rx="2" ry="2" />
<text x="452.03" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::handleAttribsAndClose (65,536 samples, 1.55%)</title><rect x="364.3" y="853" width="18.3" height="15.0" fill="rgb(253,178,54)" rx="2" ry="2" />
<text x="367.30" y="863.5" ></text>
</g>
<g >
<title>MediaWiki\TimedMediaHandler\WebVideoTranscode\WebVideoTranscode::getLocalSources (7,336 samples, 0.17%)</title><rect x="1145.2" y="981" width="2.1" height="15.0" fill="rgb(216,188,41)" rx="2" ry="2" />
<text x="1148.22" y="991.5" ></text>
</g>
<g >
<title>SqlBagOStuff::unserialize (12,392 samples, 0.29%)</title><rect x="19.8" y="1029" width="3.4" height="15.0" fill="rgb(220,19,10)" rx="2" ry="2" />
<text x="22.77" y="1039.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\ParserFunctions::switch (632,140 samples, 14.95%)</title><rect x="804.3" y="581" width="176.4" height="15.0" fill="rgb(233,7,15)" rx="2" ry="2" />
<text x="807.28" y="591.5" >MediaWiki\Extension\Pa..</text>
</g>
<g >
<title>Parser::preprocessToDom (48,672 samples, 1.15%)</title><rect x="670.6" y="821" width="13.6" height="15.0" fill="rgb(220,181,1)" rx="2" ry="2" />
<text x="673.65" y="831.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (2,432 samples, 0.06%)</title><rect x="988.2" y="773" width="0.6" height="15.0" fill="rgb(246,63,17)" rx="2" ry="2" />
<text x="991.15" y="783.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::buildDomTreeArrayFromText (56,632 samples, 1.34%)</title><rect x="1052.0" y="853" width="15.8" height="15.0" fill="rgb(228,85,31)" rx="2" ry="2" />
<text x="1055.03" y="863.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (736,236 samples, 17.41%)</title><rect x="784.1" y="869" width="205.5" height="15.0" fill="rgb(240,211,15)" rx="2" ry="2" />
<text x="787.13" y="879.5" >Parser::braceSubstitution</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Hooks::invokeHook (3,072 samples, 0.07%)</title><rect x="402.7" y="709" width="0.9" height="15.0" fill="rgb(227,40,24)" rx="2" ry="2" />
<text x="405.70" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::deprecatePublicPropertyFallback (376 samples, 0.01%)</title><rect x="664.7" y="821" width="0.1" height="15.0" fill="rgb(239,215,29)" rx="2" ry="2" />
<text x="667.74" y="831.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::callableToString (464 samples, 0.01%)</title><rect x="630.0" y="757" width="0.1" height="15.0" fill="rgb(218,179,52)" rx="2" ry="2" />
<text x="633.01" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\ParserOutput::addTemplate (1,504 samples, 0.04%)</title><rect x="1007.0" y="869" width="0.4" height="15.0" fill="rgb(217,48,15)" rx="2" ry="2" />
<text x="1010.03" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::urlstring (912 samples, 0.02%)</title><rect x="447.5" y="581" width="0.3" height="15.0" fill="rgb(247,140,8)" rx="2" ry="2" />
<text x="450.50" y="591.5" ></text>
</g>
<g >
<title>WANObjectCache::getWithSetCallback (10,080 samples, 0.24%)</title><rect x="685.2" y="597" width="2.8" height="15.0" fill="rgb(219,159,37)" rx="2" ry="2" />
<text x="688.19" y="607.5" ></text>
</g>
<g >
<title>FileRepo::findFile (9,056 samples, 0.21%)</title><rect x="1157.2" y="949" width="2.5" height="15.0" fill="rgb(246,59,54)" rx="2" ry="2" />
<text x="1160.18" y="959.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (154,136 samples, 3.64%)</title><rect x="1070.7" y="709" width="43.1" height="15.0" fill="rgb(241,92,4)" rx="2" ry="2" />
<text x="1073.74" y="719.5" >PPFr..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (1,312 samples, 0.03%)</title><rect x="804.3" y="165" width="0.4" height="15.0" fill="rgb(231,169,37)" rx="2" ry="2" />
<text x="807.31" y="175.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parsetlb (1,088 samples, 0.03%)</title><rect x="363.1" y="997" width="0.3" height="15.0" fill="rgb(230,114,51)" rx="2" ry="2" />
<text x="366.11" y="1007.5" ></text>
</g>
<g >
<title>Parser::preprocessToDom (17,944 samples, 0.42%)</title><rect x="665.4" y="789" width="5.0" height="15.0" fill="rgb(223,127,6)" rx="2" ry="2" />
<text x="668.38" y="799.5" ></text>
</g>
<g >
<title>JobQueue::batchPush (1,560 samples, 0.04%)</title><rect x="357.0" y="1029" width="0.4" height="15.0" fill="rgb(233,46,50)" rx="2" ry="2" />
<text x="360.01" y="1039.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::zero (424 samples, 0.01%)</title><rect x="508.3" y="533" width="0.2" height="15.0" fill="rgb(239,111,16)" rx="2" ry="2" />
<text x="511.33" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\Database::query (29,064 samples, 0.69%)</title><rect x="1181.8" y="1333" width="8.1" height="15.0" fill="rgb(245,69,48)" rx="2" ry="2" />
<text x="1184.80" y="1343.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::fetchObject (1,056 samples, 0.02%)</title><rect x="1147.0" y="901" width="0.3" height="15.0" fill="rgb(251,6,42)" rx="2" ry="2" />
<text x="1149.96" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesMatcherFactory::url (2,408 samples, 0.06%)</title><rect x="418.7" y="565" width="0.7" height="15.0" fill="rgb(217,8,8)" rx="2" ry="2" />
<text x="421.70" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="609.2" y="549" width="0.1" height="15.0" fill="rgb(226,60,44)" rx="2" ry="2" />
<text x="612.16" y="559.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="823.9" y="149" width="0.1" height="15.0" fill="rgb(248,175,35)" rx="2" ry="2" />
<text x="826.87" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\LuaLibrary::register (592 samples, 0.01%)</title><rect x="690.8" y="741" width="0.2" height="15.0" fill="rgb(208,133,23)" rx="2" ry="2" />
<text x="693.81" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageFactory::MediaWiki\Languages\{closure} (400 samples, 0.01%)</title><rect x="19.2" y="1237" width="0.1" height="15.0" fill="rgb(218,148,43)" rx="2" ry="2" />
<text x="22.23" y="1247.5" ></text>
</g>
<g >
<title>Exception::getTraceAsString (950,272 samples, 22.47%)</title><rect x="26.1" y="1173" width="265.1" height="15.0" fill="rgb(221,32,36)" rx="2" ry="2" />
<text x="29.08" y="1183.5" >Exception::getTraceAsString</text>
</g>
<g >
<title>preg_match (416 samples, 0.01%)</title><rect x="1113.5" y="501" width="0.1" height="15.0" fill="rgb(223,94,47)" rx="2" ry="2" />
<text x="1116.46" y="511.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunkily (2,690,169 samples, 63.61%)</title><rect x="363.1" y="1029" width="750.7" height="15.0" fill="rgb(219,130,44)" rx="2" ry="2" />
<text x="366.11" y="1039.5" >Wikimedia\Parsoid\Wt2Html\TokenTransformManager::processChunkily</text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::find (7,232 samples, 0.17%)</title><rect x="1113.8" y="965" width="2.0" height="15.0" fill="rgb(237,62,26)" rx="2" ry="2" />
<text x="1116.79" y="975.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (920 samples, 0.02%)</title><rect x="943.0" y="181" width="0.2" height="15.0" fill="rgb(210,34,22)" rx="2" ry="2" />
<text x="945.97" y="191.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (376 samples, 0.01%)</title><rect x="563.5" y="549" width="0.1" height="15.0" fill="rgb(242,125,38)" rx="2" ry="2" />
<text x="566.50" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (3,072 samples, 0.07%)</title><rect x="402.7" y="645" width="0.9" height="15.0" fill="rgb(238,44,41)" rx="2" ry="2" />
<text x="405.70" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (448 samples, 0.01%)</title><rect x="626.3" y="581" width="0.1" height="15.0" fill="rgb(216,38,1)" rx="2" ry="2" />
<text x="629.27" y="591.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::preprocessToObj (408 samples, 0.01%)</title><rect x="626.5" y="645" width="0.1" height="15.0" fill="rgb(236,64,35)" rx="2" ry="2" />
<text x="629.48" y="655.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (1,280 samples, 0.03%)</title><rect x="627.8" y="789" width="0.3" height="15.0" fill="rgb(219,189,45)" rx="2" ry="2" />
<text x="630.79" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::newRevisionFromConds (8,440 samples, 0.20%)</title><rect x="350.5" y="1125" width="2.3" height="15.0" fill="rgb(235,225,51)" rx="2" ry="2" />
<text x="353.49" y="1135.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordFactory::get (496 samples, 0.01%)</title><rect x="1006.5" y="869" width="0.2" height="15.0" fill="rgb(243,188,24)" rx="2" ry="2" />
<text x="1009.54" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Tidy\RemexDriver::tidy (65,536 samples, 1.55%)</title><rect x="364.3" y="917" width="18.3" height="15.0" fill="rgb(232,103,19)" rx="2" ry="2" />
<text x="367.30" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::executeInternal (46,248 samples, 1.09%)</title><rect x="992.6" y="837" width="12.9" height="15.0" fill="rgb(248,162,39)" rx="2" ry="2" />
<text x="995.63" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\CommentFormatter::addDiscussionTools (4,496 samples, 0.11%)</title><rect x="404.4" y="629" width="1.3" height="15.0" fill="rgb(224,26,33)" rx="2" ry="2" />
<text x="407.42" y="639.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (3,008 samples, 0.07%)</title><rect x="594.9" y="565" width="0.8" height="15.0" fill="rgb(211,169,11)" rx="2" ry="2" />
<text x="597.86" y="575.5" ></text>
</g>
<g >
<title>Parser::setHook (2,312 samples, 0.05%)</title><rect x="645.8" y="581" width="0.6" height="15.0" fill="rgb(253,160,23)" rx="2" ry="2" />
<text x="648.80" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::dispatch (472 samples, 0.01%)</title><rect x="670.5" y="757" width="0.1" height="15.0" fill="rgb(208,154,33)" rx="2" ry="2" />
<text x="673.51" y="767.5" ></text>
</g>
<g >
<title>ParserOptions::optionUsed (376 samples, 0.01%)</title><rect x="1069.5" y="901" width="0.1" height="15.0" fill="rgb(212,191,36)" rx="2" ry="2" />
<text x="1072.50" y="911.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (18,756 samples, 0.44%)</title><rect x="630.3" y="709" width="5.2" height="15.0" fill="rgb(210,94,38)" rx="2" ry="2" />
<text x="633.26" y="719.5" ></text>
</g>
<g >
<title>HashBagOStuff::doSet (432 samples, 0.01%)</title><rect x="357.1" y="869" width="0.1" height="15.0" fill="rgb(245,71,41)" rx="2" ry="2" />
<text x="360.12" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::getAllExpandedArguments (16,584 samples, 0.39%)</title><rect x="981.3" y="693" width="4.7" height="15.0" fill="rgb(230,93,54)" rx="2" ry="2" />
<text x="984.32" y="703.5" ></text>
</g>
<g >
<title>MessageCache::transform (3,656 samples, 0.09%)</title><rect x="637.3" y="709" width="1.0" height="15.0" fill="rgb(211,37,5)" rx="2" ry="2" />
<text x="640.27" y="719.5" ></text>
</g>
<g >
<title>BagOStuff::makeKey (448 samples, 0.01%)</title><rect x="19.4" y="1301" width="0.1" height="15.0" fill="rgb(246,19,50)" rx="2" ry="2" />
<text x="22.35" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\PegTokenizer::tokenizeSync (496 samples, 0.01%)</title><rect x="1070.5" y="933" width="0.1" height="15.0" fill="rgb(232,5,29)" rx="2" ry="2" />
<text x="1073.49" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\Repo::newFile (9,056 samples, 0.21%)</title><rect x="1157.2" y="933" width="2.5" height="15.0" fill="rgb(252,54,13)" rx="2" ry="2" />
<text x="1160.18" y="943.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Gallery\Gallery::Wikimedia\Parsoid\Ext\Gallery\{closure} (2,320 samples, 0.05%)</title><rect x="626.6" y="949" width="0.6" height="15.0" fill="rgb(210,121,16)" rx="2" ry="2" />
<text x="629.59" y="959.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\TemplateStyles\TemplateStylesContentHandler::__construct (376 samples, 0.01%)</title><rect x="626.3" y="469" width="0.1" height="15.0" fill="rgb(231,185,11)" rx="2" ry="2" />
<text x="629.29" y="479.5" ></text>
</g>
<g >
<title>require /var/www/html/w/extensions/Scribunto/includes/Hooks/HookRunner.php (1,432 samples, 0.03%)</title><rect x="944.3" y="69" width="0.4" height="15.0" fill="rgb(250,223,13)" rx="2" ry="2" />
<text x="947.30" y="79.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\PegTokenizer::process (496 samples, 0.01%)</title><rect x="1070.5" y="949" width="0.1" height="15.0" fill="rgb(229,28,48)" rx="2" ry="2" />
<text x="1073.49" y="959.5" ></text>
</g>
<g >
<title>Parser::parseExtensionTagAsTopLevelDoc (798,770 samples, 18.89%)</title><rect x="403.7" y="725" width="222.9" height="15.0" fill="rgb(241,67,14)" rx="2" ry="2" />
<text x="406.71" y="735.5" >Parser::parseExtensionTagAsTo..</text>
</g>
<g >
<title>MessageCache::getParser (81,952 samples, 1.94%)</title><rect x="638.3" y="677" width="22.9" height="15.0" fill="rgb(248,67,38)" rx="2" ry="2" />
<text x="641.29" y="687.5" >M..</text>
</g>
<g >
<title>Parser::callParserFunction (472 samples, 0.01%)</title><rect x="670.5" y="837" width="0.1" height="15.0" fill="rgb(224,26,11)" rx="2" ry="2" />
<text x="673.51" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\DatabaseMySQL::doSingleStatementQuery (29,064 samples, 0.69%)</title><rect x="1181.8" y="1285" width="8.1" height="15.0" fill="rgb(226,143,10)" rx="2" ry="2" />
<text x="1184.80" y="1295.5" ></text>
</g>
<g >
<title>MediaWiki\Utils\GitInfo::getHeadSHA1 (512 samples, 0.01%)</title><rect x="818.1" y="165" width="0.2" height="15.0" fill="rgb(239,113,26)" rx="2" ry="2" />
<text x="821.13" y="175.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\ParserPipeline::parse (2,256 samples, 0.05%)</title><rect x="626.6" y="869" width="0.6" height="15.0" fill="rgb(208,202,24)" rx="2" ry="2" />
<text x="629.61" y="879.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::MediaWiki\Revision\{closure} (51,920 samples, 1.23%)</title><rect x="1159.8" y="1205" width="14.5" height="15.0" fill="rgb(242,101,1)" rx="2" ry="2" />
<text x="1162.79" y="1215.5" ></text>
</g>
<g >
<title>Parser::replaceVariables (1,449,995 samples, 34.29%)</title><rect x="665.0" y="949" width="404.6" height="15.0" fill="rgb(209,141,19)" rx="2" ry="2" />
<text x="668.01" y="959.5" >Parser::replaceVariables</text>
</g>
<g >
<title>MediaWiki\Parser\Sanitizer::attributesAllowedInternal (46,248 samples, 1.09%)</title><rect x="992.6" y="773" width="12.9" height="15.0" fill="rgb(250,207,12)" rx="2" ry="2" />
<text x="995.63" y="783.5" ></text>
</g>
<g >
<title>Wikimedia\Zest\ZestInst::tokQname (696 samples, 0.02%)</title><rect x="1115.6" y="933" width="0.2" height="15.0" fill="rgb(241,213,32)" rx="2" ry="2" />
<text x="1118.61" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::executeFunctionChunk (3,072 samples, 0.07%)</title><rect x="402.7" y="677" width="0.9" height="15.0" fill="rgb(254,92,13)" rx="2" ry="2" />
<text x="405.70" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::fetchModuleFromParser (3,280 samples, 0.08%)</title><rect x="688.1" y="725" width="0.9" height="15.0" fill="rgb(254,143,40)" rx="2" ry="2" />
<text x="691.11" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\ResultWrapper::next (1,056 samples, 0.02%)</title><rect x="1147.0" y="917" width="0.3" height="15.0" fill="rgb(244,214,1)" rx="2" ry="2" />
<text x="1149.96" y="927.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\AnythingMatcher::__construct (792 samples, 0.02%)</title><rect x="621.7" y="565" width="0.3" height="15.0" fill="rgb(238,216,44)" rx="2" ry="2" />
<text x="624.74" y="575.5" ></text>
</g>
<g >
<title>Parser::startParse (1,296 samples, 0.03%)</title><rect x="1069.9" y="933" width="0.4" height="15.0" fill="rgb(206,186,15)" rx="2" ry="2" />
<text x="1072.95" y="943.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (6,144 samples, 0.15%)</title><rect x="828.4" y="165" width="1.7" height="15.0" fill="rgb(217,112,52)" rx="2" ry="2" />
<text x="831.38" y="175.5" ></text>
</g>
<g >
<title>Wikimedia\RemexHtml\Tokenizer\Tokenizer::execute (65,536 samples, 1.55%)</title><rect x="364.3" y="901" width="18.3" height="15.0" fill="rgb(213,180,53)" rx="2" ry="2" />
<text x="367.30" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\ScribuntoEngineBase::getLibraries (696 samples, 0.02%)</title><rect x="748.6" y="757" width="0.2" height="15.0" fill="rgb(205,100,22)" rx="2" ry="2" />
<text x="751.58" y="767.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\ParserFunctions\LuaLibrary::register (1,312 samples, 0.03%)</title><rect x="804.3" y="197" width="0.4" height="15.0" fill="rgb(212,147,53)" rx="2" ry="2" />
<text x="807.31" y="207.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::callback (3,072 samples, 0.07%)</title><rect x="402.7" y="613" width="0.9" height="15.0" fill="rgb(214,202,2)" rx="2" ry="2" />
<text x="405.70" y="623.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::backgroundTypes (3,960 samples, 0.09%)</title><rect x="520.8" y="565" width="1.1" height="15.0" fill="rgb(248,26,33)" rx="2" ry="2" />
<text x="523.75" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TreeBuilder\TreeBuilderStage::processChunkily (2,710,185 samples, 64.09%)</title><rect x="357.5" y="1061" width="756.3" height="15.0" fill="rgb(237,101,47)" rx="2" ry="2" />
<text x="360.52" y="1071.5" >Wikimedia\Parsoid\Wt2Html\TreeBuilder\TreeBuilderStage::processChunkily</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (400 samples, 0.01%)</title><rect x="700.3" y="725" width="0.1" height="15.0" fill="rgb(229,186,2)" rx="2" ry="2" />
<text x="703.32" y="735.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (51,920 samples, 1.23%)</title><rect x="1159.8" y="1221" width="14.5" height="15.0" fill="rgb(226,187,16)" rx="2" ry="2" />
<text x="1162.79" y="1231.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="441.6" y="565" width="0.1" height="15.0" fill="rgb(237,88,7)" rx="2" ry="2" />
<text x="444.59" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\MagicWordArray::matchStartToEnd (2,680 samples, 0.06%)</title><rect x="1005.8" y="869" width="0.7" height="15.0" fill="rgb(252,199,26)" rx="2" ry="2" />
<text x="1008.79" y="879.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Ext\Gallery\Gallery::pLine (2,320 samples, 0.05%)</title><rect x="626.6" y="933" width="0.6" height="15.0" fill="rgb(209,101,15)" rx="2" ry="2" />
<text x="629.59" y="943.5" ></text>
</g>
<g >
<title>WANObjectCache::getWithSetCallback (3,120 samples, 0.07%)</title><rect x="688.2" y="597" width="0.8" height="15.0" fill="rgb(238,77,42)" rx="2" ry="2" />
<text x="691.15" y="607.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="828.2" y="149" width="0.1" height="15.0" fill="rgb(247,128,11)" rx="2" ry="2" />
<text x="831.22" y="159.5" ></text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::loadUserOptions (10,296 samples, 0.24%)</title><rect x="353.7" y="1077" width="2.9" height="15.0" fill="rgb(236,127,29)" rx="2" ry="2" />
<text x="356.72" y="1087.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\ExtensionHandler::onTag (944,098 samples, 22.32%)</title><rect x="364.3" y="981" width="263.4" height="15.0" fill="rgb(235,166,50)" rx="2" ry="2" />
<text x="367.29" y="991.5" >Wikimedia\Parsoid\Wt2Html\TT\Extens..</text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (1,056 samples, 0.02%)</title><rect x="1147.0" y="885" width="0.3" height="15.0" fill="rgb(243,22,5)" rx="2" ry="2" />
<text x="1149.96" y="895.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::loadLibraryFromFile (3,104 samples, 0.07%)</title><rect x="817.0" y="165" width="0.8" height="15.0" fill="rgb(218,133,10)" rx="2" ry="2" />
<text x="819.98" y="175.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\DiscussionTools\CommentParser::computeIdsAndNames (384 samples, 0.01%)</title><rect x="12.2" y="1349" width="0.1" height="15.0" fill="rgb(252,38,23)" rx="2" ry="2" />
<text x="15.20" y="1359.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getArguments (16,584 samples, 0.39%)</title><rect x="981.3" y="677" width="4.7" height="15.0" fill="rgb(246,157,5)" rx="2" ry="2" />
<text x="984.32" y="687.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TextLibrary::register (7,888 samples, 0.19%)</title><rect x="696.4" y="741" width="2.2" height="15.0" fill="rgb(247,44,6)" rx="2" ry="2" />
<text x="699.44" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\HashLibrary::register (1,040 samples, 0.02%)</title><rect x="691.0" y="741" width="0.3" height="15.0" fill="rgb(223,184,32)" rx="2" ry="2" />
<text x="693.97" y="751.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\ParsoidParser::parse (3,086,925 samples, 73.00%)</title><rect x="298.4" y="1173" width="861.4" height="15.0" fill="rgb(210,27,38)" rx="2" ry="2" />
<text x="301.43" y="1183.5" >MediaWiki\Parser\Parsoid\ParsoidParser::parse</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::register (145,680 samples, 3.44%)</title><rect x="700.5" y="741" width="40.6" height="15.0" fill="rgb(244,14,7)" rx="2" ry="2" />
<text x="703.46" y="751.5" >Med..</text>
</g>
<g >
<title>SqlBagOStuff::newLockingWriteSectionModificationTimestamp (752 samples, 0.02%)</title><rect x="1159.5" y="789" width="0.2" height="15.0" fill="rgb(209,12,6)" rx="2" ry="2" />
<text x="1162.47" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\SlotRecord::getContent (3,120 samples, 0.07%)</title><rect x="688.2" y="661" width="0.8" height="15.0" fill="rgb(220,166,45)" rx="2" ry="2" />
<text x="691.15" y="671.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionStore::loadSlotContent (10,080 samples, 0.24%)</title><rect x="685.2" y="629" width="2.8" height="15.0" fill="rgb(243,135,38)" rx="2" ry="2" />
<text x="688.19" y="639.5" ></text>
</g>
<g >
<title>ParserCache::getMetadata (24,744 samples, 0.59%)</title><rect x="12.3" y="1317" width="6.9" height="15.0" fill="rgb(251,167,10)" rx="2" ry="2" />
<text x="15.31" y="1327.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (38,528 samples, 0.91%)</title><rect x="1134.4" y="917" width="10.8" height="15.0" fill="rgb(235,202,5)" rx="2" ry="2" />
<text x="1137.41" y="927.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="811.1" y="149" width="0.1" height="15.0" fill="rgb(246,5,49)" rx="2" ry="2" />
<text x="814.12" y="159.5" ></text>
</g>
<g >
<title>SectionProfiler::updateEntry (1,224 samples, 0.03%)</title><rect x="684.8" y="613" width="0.3" height="15.0" fill="rgb(241,137,24)" rx="2" ry="2" />
<text x="687.78" y="623.5" ></text>
</g>
<g >
<title>MediaWiki\Content\ContentHandlerFactory::createForModelID (448 samples, 0.01%)</title><rect x="980.5" y="165" width="0.2" height="15.0" fill="rgb(229,164,35)" rx="2" ry="2" />
<text x="983.54" y="175.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (632,140 samples, 14.95%)</title><rect x="804.3" y="565" width="176.4" height="15.0" fill="rgb(234,17,51)" rx="2" ry="2" />
<text x="807.28" y="575.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\Grammar::parsetlb (496 samples, 0.01%)</title><rect x="1070.5" y="901" width="0.1" height="15.0" fill="rgb(244,121,4)" rx="2" ry="2" />
<text x="1073.49" y="911.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::incrementRefCount (2,560 samples, 0.06%)</title><rect x="988.8" y="597" width="0.7" height="15.0" fill="rgb(241,214,35)" rx="2" ry="2" />
<text x="991.83" y="607.5" ></text>
</g>
<g >
<title>Parser::fetchTemplateAndTitle (1,624 samples, 0.04%)</title><rect x="1007.0" y="885" width="0.5" height="15.0" fill="rgb(239,154,41)" rx="2" ry="2" />
<text x="1010.03" y="895.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="577.1" y="533" width="0.3" height="15.0" fill="rgb(243,66,36)" rx="2" ry="2" />
<text x="580.12" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (13,800 samples, 0.33%)</title><rect x="536.3" y="565" width="3.9" height="15.0" fill="rgb(250,79,39)" rx="2" ry="2" />
<text x="539.30" y="575.5" ></text>
</g>
<g >
<title>MediaWiki\Storage\SqlBlobStore::fetchBlobs (10,080 samples, 0.24%)</title><rect x="685.2" y="549" width="2.8" height="15.0" fill="rgb(206,159,0)" rx="2" ry="2" />
<text x="688.19" y="559.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\CLDR\LanguageNames::coreHook (151,392 samples, 3.58%)</title><rect x="1070.7" y="389" width="42.3" height="15.0" fill="rgb(216,39,17)" rx="2" ry="2" />
<text x="1073.74" y="399.5" >Med..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (1,128 samples, 0.03%)</title><rect x="511.8" y="533" width="0.3" height="15.0" fill="rgb(211,168,7)" rx="2" ry="2" />
<text x="514.75" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreter::registerLibrary (9,136 samples, 0.22%)</title><rect x="745.6" y="741" width="2.5" height="15.0" fill="rgb(243,198,51)" rx="2" ry="2" />
<text x="748.59" y="751.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StyleRuleSanitizer::__construct (49,152 samples, 1.16%)</title><rect x="606.3" y="597" width="13.7" height="15.0" fill="rgb(247,108,47)" rx="2" ry="2" />
<text x="609.33" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RevisionSlots::hasSlot (1,416 samples, 0.03%)</title><rect x="356.6" y="1109" width="0.4" height="15.0" fill="rgb(247,55,0)" rx="2" ry="2" />
<text x="359.62" y="1119.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TitleLibrary::getUrl (816 samples, 0.02%)</title><rect x="981.1" y="597" width="0.2" height="15.0" fill="rgb(253,33,47)" rx="2" ry="2" />
<text x="984.08" y="607.5" ></text>
</g>
<g >
<title>MediaWiki\Utils\GitInfo::getHead (480 samples, 0.01%)</title><rect x="818.1" y="149" width="0.2" height="15.0" fill="rgb(227,77,49)" rx="2" ry="2" />
<text x="821.14" y="159.5" ></text>
</g>
<g >
<title>mysqli_result::fetch_object (536 samples, 0.01%)</title><rect x="11.9" y="1301" width="0.1" height="15.0" fill="rgb(252,80,7)" rx="2" ry="2" />
<text x="14.86" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssBreak3 (3,416 samples, 0.08%)</title><rect x="561.7" y="565" width="1.0" height="15.0" fill="rgb(228,98,21)" rx="2" ry="2" />
<text x="564.74" y="575.5" ></text>
</g>
<g >
<title>Wikimedia\Rdbms\MysqliResultWrapper::doFetchObject (584 samples, 0.01%)</title><rect x="1176.0" y="1365" width="0.2" height="15.0" fill="rgb(237,142,39)" rx="2" ry="2" />
<text x="1179.00" y="1375.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (29,240 samples, 0.69%)</title><rect x="980.7" y="837" width="8.1" height="15.0" fill="rgb(234,175,40)" rx="2" ry="2" />
<text x="983.67" y="847.5" ></text>
</g>
<g >
<title>MediaWiki\Title\Title::newFromPageReference (3,168 samples, 0.07%)</title><rect x="1175.0" y="1333" width="0.8" height="15.0" fill="rgb(223,149,0)" rx="2" ry="2" />
<text x="1177.96" y="1343.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,880 samples, 0.04%)</title><rect x="619.2" y="517" width="0.5" height="15.0" fill="rgb(216,50,17)" rx="2" ry="2" />
<text x="622.20" y="527.5" ></text>
</g>
<g >
<title>ObjectCache::newFromParams (760 samples, 0.02%)</title><rect x="943.2" y="165" width="0.2" height="15.0" fill="rgb(237,146,26)" rx="2" ry="2" />
<text x="946.23" y="175.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (376,560 samples, 8.90%)</title><rect x="830.5" y="181" width="105.0" height="15.0" fill="rgb(231,26,54)" rx="2" ry="2" />
<text x="833.46" y="191.5" >AutoLoader::..</text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\PageContent::getContent (1,504 samples, 0.04%)</title><rect x="356.6" y="1141" width="0.4" height="15.0" fill="rgb(243,203,39)" rx="2" ry="2" />
<text x="359.59" y="1151.5" ></text>
</g>
<g >
<title>spl_autoload_call (22,192 samples, 0.52%)</title><rect x="972.6" y="261" width="6.2" height="15.0" fill="rgb(244,174,54)" rx="2" ry="2" />
<text x="975.61" y="271.5" ></text>
</g>
<g >
<title>ParserCache::makeMetadataKey (448 samples, 0.01%)</title><rect x="19.4" y="1317" width="0.1" height="15.0" fill="rgb(243,159,53)" rx="2" ry="2" />
<text x="22.35" y="1327.5" ></text>
</g>
<g >
<title>RequestContext::getSkin (6,376 samples, 0.15%)</title><rect x="635.5" y="741" width="1.8" height="15.0" fill="rgb(241,124,22)" rx="2" ry="2" />
<text x="638.49" y="751.5" ></text>
</g>
<g >
<title>Generator::valid (20,640 samples, 0.49%)</title><rect x="473.6" y="373" width="5.8" height="15.0" fill="rgb(254,143,38)" rx="2" ry="2" />
<text x="476.63" y="383.5" ></text>
</g>
<g >
<title>MediaWiki\Revision\RenderedRevision::getSlotParserOutputUncached (4,086,405 samples, 96.63%)</title><rect x="19.5" y="1237" width="1140.3" height="15.0" fill="rgb(219,31,39)" rx="2" ry="2" />
<text x="22.55" y="1247.5" >MediaWiki\Revision\RenderedRevision::getSlotParserOutputUncached</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\UstringLibrary::register (2,560 samples, 0.06%)</title><rect x="988.8" y="725" width="0.7" height="15.0" fill="rgb(217,102,15)" rx="2" ry="2" />
<text x="991.83" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::calc (6,440 samples, 0.15%)</title><rect x="491.6" y="533" width="1.8" height="15.0" fill="rgb(208,30,40)" rx="2" ry="2" />
<text x="494.62" y="543.5" ></text>
</g>
<g >
<title>MediaWiki\Parser\Parsoid\Config\DataAccess::getFileInfo (82,028 samples, 1.94%)</title><rect x="1134.1" y="1013" width="22.9" height="15.0" fill="rgb(244,195,15)" rx="2" ry="2" />
<text x="1137.13" y="1023.5" >M..</text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::loadUserOptions (512 samples, 0.01%)</title><rect x="1174.5" y="1317" width="0.1" height="15.0" fill="rgb(254,75,34)" rx="2" ry="2" />
<text x="1177.50" y="1327.5" ></text>
</g>
<g >
<title>Parser::callParserFunction (632,140 samples, 14.95%)</title><rect x="804.3" y="437" width="176.4" height="15.0" fill="rgb(225,153,47)" rx="2" ry="2" />
<text x="807.28" y="447.5" >Parser::callParserFunc..</text>
</g>
<g >
<title>HashBagOStuff::__construct (432 samples, 0.01%)</title><rect x="943.3" y="149" width="0.1" height="15.0" fill="rgb(234,64,19)" rx="2" ry="2" />
<text x="946.32" y="159.5" ></text>
</g>
<g >
<title>Parser::statelessFetchTemplate (480 samples, 0.01%)</title><rect x="980.5" y="261" width="0.2" height="15.0" fill="rgb(237,206,8)" rx="2" ry="2" />
<text x="983.53" y="271.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneEngine::newInterpreter (77,748 samples, 1.84%)</title><rect x="944.7" y="213" width="21.7" height="15.0" fill="rgb(225,213,38)" rx="2" ry="2" />
<text x="947.71" y="223.5" >M..</text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::registerInterface (472 samples, 0.01%)</title><rect x="696.3" y="725" width="0.1" height="15.0" fill="rgb(240,24,32)" rx="2" ry="2" />
<text x="699.31" y="735.5" ></text>
</g>
<g >
<title>Parser::resetOutput (1,232 samples, 0.03%)</title><rect x="1069.6" y="949" width="0.3" height="15.0" fill="rgb(240,229,17)" rx="2" ry="2" />
<text x="1072.60" y="959.5" ></text>
</g>
<g >
<title>PPTemplateFrame_Hash::getNamedArgument (1,656 samples, 0.04%)</title><rect x="684.7" y="709" width="0.4" height="15.0" fill="rgb(239,66,23)" rx="2" ry="2" />
<text x="687.66" y="719.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::buildDomTreeArrayFromText (17,840 samples, 0.42%)</title><rect x="665.4" y="757" width="5.0" height="15.0" fill="rgb(232,154,29)" rx="2" ry="2" />
<text x="668.41" y="767.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::addLiteral (4,016 samples, 0.09%)</title><rect x="1066.7" y="837" width="1.1" height="15.0" fill="rgb(243,72,13)" rx="2" ry="2" />
<text x="1069.71" y="847.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSelector (45,776 samples, 1.08%)</title><rect x="607.2" y="581" width="12.8" height="15.0" fill="rgb(237,194,42)" rx="2" ry="2" />
<text x="610.21" y="591.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (16,584 samples, 0.39%)</title><rect x="981.3" y="549" width="4.7" height="15.0" fill="rgb(226,56,15)" rx="2" ry="2" />
<text x="984.32" y="559.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (3,952 samples, 0.09%)</title><rect x="625.1" y="533" width="1.1" height="15.0" fill="rgb(243,226,45)" rx="2" ry="2" />
<text x="628.14" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\Sanitizer::sanitizeRules (86,272 samples, 2.04%)</title><rect x="455.3" y="565" width="24.1" height="15.0" fill="rgb(253,204,21)" rx="2" ry="2" />
<text x="458.33" y="575.5" >W..</text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\AttributeExpander::processComplexAttributes (3,160 samples, 0.07%)</title><rect x="363.4" y="965" width="0.9" height="15.0" fill="rgb(206,101,22)" rx="2" ry="2" />
<text x="366.41" y="975.5" ></text>
</g>
<g >
<title>MediaWiki\User\Options\UserOptionsManager::getCacheKey (512 samples, 0.01%)</title><rect x="1174.5" y="1301" width="0.1" height="15.0" fill="rgb(216,201,5)" rx="2" ry="2" />
<text x="1177.50" y="1311.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::setDefaultOptions (376 samples, 0.01%)</title><rect x="611.0" y="517" width="0.1" height="15.0" fill="rgb(219,175,16)" rx="2" ry="2" />
<text x="613.97" y="527.5" ></text>
</g>
<g >
<title>AutoLoader::autoload (4,432 samples, 0.10%)</title><rect x="943.5" y="85" width="1.2" height="15.0" fill="rgb(228,92,39)" rx="2" ry="2" />
<text x="946.46" y="95.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Matcher::matchAgainst (20,704 samples, 0.49%)</title><rect x="473.6" y="469" width="5.8" height="15.0" fill="rgb(239,22,19)" rx="2" ry="2" />
<text x="476.62" y="479.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LibraryBase::checkType (408 samples, 0.01%)</title><rect x="670.5" y="693" width="0.1" height="15.0" fill="rgb(233,62,21)" rx="2" ry="2" />
<text x="673.51" y="703.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssANplusB (14,200 samples, 0.34%)</title><rect x="615.9" y="533" width="4.0" height="15.0" fill="rgb(217,105,25)" rx="2" ry="2" />
<text x="618.91" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\DOMPostProcessor::process (164,868 samples, 3.90%)</title><rect x="1113.8" y="1077" width="46.0" height="15.0" fill="rgb(242,187,41)" rx="2" ry="2" />
<text x="1116.75" y="1087.5" >Wiki..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (752 samples, 0.02%)</title><rect x="598.1" y="549" width="0.2" height="15.0" fill="rgb(250,217,12)" rx="2" ry="2" />
<text x="601.13" y="559.5" ></text>
</g>
<g >
<title>SectionProfiler::profileOutInternal (408 samples, 0.01%)</title><rect x="684.2" y="805" width="0.1" height="15.0" fill="rgb(230,73,20)" rx="2" ry="2" />
<text x="687.23" y="815.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,076 samples, 14.95%)</title><rect x="804.3" y="373" width="176.4" height="15.0" fill="rgb(246,14,25)" rx="2" ry="2" />
<text x="807.30" y="383.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>SectionProfiler::scopedProfileOut (408 samples, 0.01%)</title><rect x="684.2" y="837" width="0.1" height="15.0" fill="rgb(233,144,37)" rx="2" ry="2" />
<text x="687.23" y="847.5" ></text>
</g>
<g >
<title>spl_autoload_call (18,756 samples, 0.44%)</title><rect x="630.3" y="725" width="5.2" height="15.0" fill="rgb(218,220,17)" rx="2" ry="2" />
<text x="633.26" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Parsoid::wikitext2html (2,876,997 samples, 68.03%)</title><rect x="357.0" y="1157" width="802.8" height="15.0" fill="rgb(228,172,2)" rx="2" ry="2" />
<text x="360.01" y="1167.5" >Wikimedia\Parsoid\Parsoid::wikitext2html</text>
</g>
<g >
<title>MediaWiki\Extension\QuickInstantCommons\MultiHttpClient::runMultiCurlFinish (4,360 samples, 0.10%)</title><rect x="1158.2" y="773" width="1.3" height="15.0" fill="rgb(207,45,37)" rx="2" ry="2" />
<text x="1161.24" y="783.5" ></text>
</g>
<g >
<title>Preprocessor_Hash::buildDomTreeArrayFromText (408 samples, 0.01%)</title><rect x="626.5" y="629" width="0.1" height="15.0" fill="rgb(244,8,43)" rx="2" ry="2" />
<text x="629.48" y="639.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\TextLibrary::register (10,296 samples, 0.24%)</title><rect x="818.4" y="197" width="2.9" height="15.0" fill="rgb(226,158,44)" rx="2" ry="2" />
<text x="821.38" y="207.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssDisplay3 (5,432 samples, 0.13%)</title><rect x="522.5" y="581" width="1.5" height="15.0" fill="rgb(209,58,4)" rx="2" ry="2" />
<text x="525.46" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Languages\LanguageNameUtils::getLanguageName (152,576 samples, 3.61%)</title><rect x="1070.7" y="501" width="42.6" height="15.0" fill="rgb(209,43,1)" rx="2" ry="2" />
<text x="1073.74" y="511.5" >Medi..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="438.1" y="565" width="0.2" height="15.0" fill="rgb(211,76,25)" rx="2" ry="2" />
<text x="441.09" y="575.5" ></text>
</g>
<g >
<title>MediumSpecificBagOStuff::set (432 samples, 0.01%)</title><rect x="805.0" y="149" width="0.1" height="15.0" fill="rgb(232,191,14)" rx="2" ry="2" />
<text x="807.95" y="159.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="611.4" y="533" width="0.1" height="15.0" fill="rgb(220,10,51)" rx="2" ry="2" />
<text x="614.38" y="543.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssSelector (3,448 samples, 0.08%)</title><rect x="433.6" y="581" width="0.9" height="15.0" fill="rgb(250,189,44)" rx="2" ry="2" />
<text x="436.56" y="591.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TreeBuilder\RemexPipeline::insertExplicitStartTag (2,256 samples, 0.05%)</title><rect x="626.6" y="725" width="0.6" height="15.0" fill="rgb(252,140,19)" rx="2" ry="2" />
<text x="629.61" y="735.5" ></text>
</g>
<g >
<title>spl_autoload_call (76,852 samples, 1.82%)</title><rect x="945.0" y="197" width="21.4" height="15.0" fill="rgb(221,197,32)" rx="2" ry="2" />
<text x="947.96" y="207.5" >s..</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\KeywordMatcher::__construct (1,504 samples, 0.04%)</title><rect x="521.4" y="549" width="0.5" height="15.0" fill="rgb(253,156,12)" rx="2" ry="2" />
<text x="524.44" y="559.5" ></text>
</g>
<g >
<title>proc_open (1,373 samples, 0.03%)</title><rect x="748.2" y="725" width="0.4" height="15.0" fill="rgb(224,99,14)" rx="2" ry="2" />
<text x="751.19" y="735.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\DelimMatcher::__construct (376 samples, 0.01%)</title><rect x="547.9" y="565" width="0.1" height="15.0" fill="rgb(244,184,49)" rx="2" ry="2" />
<text x="550.90" y="575.5" ></text>
</g>
<g >
<title>PPFrame_Hash::expand (704,380 samples, 16.66%)</title><rect x="784.1" y="789" width="196.6" height="15.0" fill="rgb(223,226,8)" rx="2" ry="2" />
<text x="787.13" y="799.5" >PPFrame_Hash::expand</text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\FunctionMatcher::__construct (696 samples, 0.02%)</title><rect x="489.3" y="517" width="0.2" height="15.0" fill="rgb(244,140,25)" rx="2" ry="2" />
<text x="492.31" y="527.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaCommon\LuaEngine::instantiatePHPLibrary (181,608 samples, 4.29%)</title><rect x="690.6" y="757" width="50.7" height="15.0" fill="rgb(248,151,4)" rx="2" ry="2" />
<text x="693.60" y="767.5" >Media..</text>
</g>
<g >
<title>Preprocessor_Hash::newFrame (648 samples, 0.02%)</title><rect x="1070.3" y="949" width="0.2" height="15.0" fill="rgb(236,207,37)" rx="2" ry="2" />
<text x="1073.31" y="959.5" ></text>
</g>
<g >
<title>Wikimedia\Parsoid\Wt2Html\TT\ExtensionHandler::onTag (154,560 samples, 3.65%)</title><rect x="1070.6" y="901" width="43.2" height="15.0" fill="rgb(232,181,27)" rx="2" ry="2" />
<text x="1073.63" y="911.5" >Wiki..</text>
</g>
<g >
<title>MediaWiki\Output\OutputPage::setPageTitleMsg (3,656 samples, 0.09%)</title><rect x="637.3" y="789" width="1.0" height="15.0" fill="rgb(253,159,22)" rx="2" ry="2" />
<text x="640.27" y="799.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::__wakeup (143,360 samples, 3.39%)</title><rect x="701.0" y="629" width="40.0" height="15.0" fill="rgb(205,32,5)" rx="2" ry="2" />
<text x="704.04" y="639.5" >Med..</text>
</g>
<g >
<title>MediaWiki\Title\Title::makeTitle (3,168 samples, 0.07%)</title><rect x="351.3" y="1029" width="0.9" height="15.0" fill="rgb(221,185,36)" rx="2" ry="2" />
<text x="354.29" y="1039.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::cssID (800 samples, 0.02%)</title><rect x="611.6" y="549" width="0.2" height="15.0" fill="rgb(225,121,6)" rx="2" ry="2" />
<text x="614.62" y="559.5" ></text>
</g>
<g >
<title>Parser::braceSubstitution (632,172 samples, 14.95%)</title><rect x="804.3" y="677" width="176.4" height="15.0" fill="rgb(208,159,18)" rx="2" ry="2" />
<text x="807.28" y="687.5" >Parser::braceSubstitut..</text>
</g>
<g >
<title>MediaWiki\Revision\RevisionRecord::getContent (12,896 samples, 0.30%)</title><rect x="749.3" y="789" width="3.6" height="15.0" fill="rgb(240,219,51)" rx="2" ry="2" />
<text x="752.32" y="799.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Sanitizer\StylePropertySanitizer::cssFilter1 (13,832 samples, 0.33%)</title><rect x="524.0" y="581" width="3.8" height="15.0" fill="rgb(249,215,25)" rx="2" ry="2" />
<text x="526.98" y="591.5" ></text>
</g>
<g >
<title>MediaWiki\Extension\Scribunto\Engines\LuaStandalone\LuaStandaloneInterpreterFunction::decrementRefCount (2,056 samples, 0.05%)</title><rect x="745.0" y="709" width="0.6" height="15.0" fill="rgb(254,222,48)" rx="2" ry="2" />
<text x="748.02" y="719.5" ></text>
</g>
<g >
<title>MediaWiki\HookContainer\HookContainer::run (6,376 samples, 0.15%)</title><rect x="635.5" y="709" width="1.8" height="15.0" fill="rgb(242,37,16)" rx="2" ry="2" />
<text x="638.49" y="719.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\MatcherFactory::position (6,280 samples, 0.15%)</title><rect x="504.0" y="549" width="1.7" height="15.0" fill="rgb(248,57,0)" rx="2" ry="2" />
<text x="506.95" y="559.5" ></text>
</g>
<g >
<title>Wikimedia\CSS\Grammar\Quantifier::generateMatches (20,640 samples, 0.49%)</title><rect x="473.6" y="421" width="5.8" height="15.0" fill="rgb(223,118,54)" rx="2" ry="2" />
<text x="476.63" y="431.5" ></text>
</g>
<g >
<title>Language::getMagic (752 samples, 0.02%)</title><rect x="989.8" y="805" width="0.2" height="15.0" fill="rgb(243,211,41)" rx="2" ry="2" />
<text x="992.83" y="815.5" ></text>
</g>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14502949
Default Alt Text
pprof-flamegraph.svg (323 KB)

Event Timeline