<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>thepragmaticquant — fired-not-fed</title><description>AI-for-security benchmarks that score models on compiled code can report a number nobody can recompute. We took one apart: how well obfuscation resists AI decompilers.</description><link>https://thepragmaticquant.com/</link><item><title>Nobody published the denominator</title><link>https://thepragmaticquant.com/nobody-published-the-denominator/</link><guid isPermaLink="true">https://thepragmaticquant.com/nobody-published-the-denominator/</guid><description>AI-for-security benchmarks that score models on compiled code can report a number nobody can recompute. Of 37 papers reporting an obfuscation-strength number, exactly 1 conditions it on whether the transform actually fired — and that one is a disassembly paper, which scores nothing on re-executability. Our own do-nothing control passes the metric.</description><pubDate>Thu, 30 Jul 2026 00:00:00 GMT</pubDate><content:encoded>&lt;div class=&quot;tldr&quot;&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — The models here read compiled code and write source back, and the number that scores them cannot be recomputed by anyone who was not in the room. When a paper claims an obfuscator defeats an AI code-reverser, it publishes one number: how far the reverser’s success rate fell. Nobody publishes what that rate was computed over. Across &lt;strong&gt;37&lt;/strong&gt; papers reporting such a number, &lt;strong&gt;1&lt;/strong&gt; conditions it on whether the transform actually fired on the function being scored — and that one scores disassembly rather than re-executability, which leaves nothing on the axis these numbers live on — and &lt;strong&gt;0&lt;/strong&gt; stratify it by context-window truncation. Condition our own grid on firing and a two-transform ranking we had already written down collapses to noise: on the strict clang-side scorer at an 8192-token window, Fisher’s exact test bottoms out at &lt;strong&gt;p = 0.22&lt;/strong&gt; across the fired-only cells, nowhere near separating, and no ordering survives in either direction. Then a control configuration whose per-function outcomes are identical to the clean build passes the field’s standard metric as a working obfuscator. Preprint: &lt;a href=&quot;https://doi.org/10.5281/zenodo.21682266&quot;&gt;doi:10.5281/zenodo.21682266&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;You sell a compiled program. The buyer owns the machine it runs on, so they can take it apart at leisure.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Obfuscation&lt;/em&gt; is the defence: a compiler pass that leaves the program’s behaviour alone while making its compiled form harder to read back. Every paper measuring how well it holds against AI code-reversers reports one number — how far the reverser’s success rate fell.&lt;/p&gt;
&lt;p&gt;That number averages two populations that behave nothing alike. There are the functions the transform changed. And there are the functions it never touched, which recover exactly as well as they did before anyone tried to protect them, and get counted into the obfuscated result anyway.&lt;/p&gt;
&lt;p&gt;So the headline can move because the defence worked, or because the transform covered less ground. Buyers choose on those published numbers, because those numbers are the only evidence anyone has.&lt;/p&gt;
&lt;p&gt;Nothing that gets published lets a reader tell the two cases apart.&lt;/p&gt;
&lt;p&gt;The defect is arithmetic before it is anything about binaries. This series measures it in neural decompilation because that is a setting where each missing term can still be put back and counted: whether the transform fired, whether the model read the function whole, which toolchain and which disassembler rendered the text, and what the attacker had already seen.&lt;/p&gt;
&lt;h2 id=&quot;the-one-number-everybody-reports&quot;&gt;The one number everybody reports&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-one-number-everybody-reports&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The metric deserves a steelman, because the arithmetic behind it is sound.&lt;/p&gt;
&lt;p&gt;A &lt;em&gt;neural decompiler&lt;/em&gt; is a transformer that reads &lt;em&gt;stripped&lt;/em&gt; assembly — machine instructions with the function and variable names thrown away — and emits compilable C. The obfuscation passes it is tested against are the ones above: flattening control flow into a dispatch loop, injecting branches that never execute, encrypting strings and constants so they materialize only at runtime. The attacker downloads the shipped binary and runs a decompiler over it, so the field’s measurement is the natural one: decompile clean, decompile obfuscated, report how far recovery fell.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Recovery&lt;/em&gt; is defined strictly. A function counts as recovered when the emitted C compiles and reproduces the reference behaviour on its test inputs — output that merely looks like the original scores zero. A second family of metrics scores the &lt;em&gt;shape&lt;/em&gt; of what came back, usually the recovered control-flow graph’s similarity to the original. Different question, different axis; every number here stays on the re-executability axis, and any pair that needs a bridge between the two gets one in the text.&lt;/p&gt;
&lt;p&gt;So: one scalar, strictly defined, cheap, comparable across papers, shaped exactly like the accuracy-drop-under-attack number adversarial machine learning has reported for a decade. It is a reasonable thing to publish. What goes unpublished is the population it was computed over.&lt;/p&gt;
&lt;h2 id=&quot;what-thirty-seven-papers-publish&quot;&gt;What thirty-seven papers publish&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-thirty-seven-papers-publish&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;We built a census to find out whether that omission was ours or the field’s. The corpus is 96 papers after deduplication, 96 papers, unrelated to the 96 configurations of our own grid further down. Of those, 91 were verified against their full text, and 37 report an obfuscation-strength number of the kind above.&lt;/p&gt;
&lt;p&gt;We then scored each of those 37 for the four things a reader needs to recompute the number. Conditioning the rate on whether the transform actually fired on the function being scored, fired meaning the compiled object’s bytes for that function change relative to the clean build: 1 of 37. Stratifying it by truncation, these models read a fixed number of tokens, and anything longer is cut off and scored as a failure, which the fifth section takes apart, so a reader can tell how many instances the model never saw whole: 0 of 37. Decomposing the drop by toolchain provenance, meaning which compiler built the binaries, since two compilers turn identical source into visibly different assembly: 0 of 37. Reporting a bare aggregate with none of the above: 35 of 37.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A grid of 91 rows, one per full-text paper, against five columns for the five reporting planks. The four conditioning columns, fired-only, truncation-stratified, confidence intervals, provenance decomposition, are almost entirely blank, a near-white field with only a scatter of marks. The fifth column, bare aggregate scalar, is nearly solid: almost every row reports one. A strip along the 37 obfuscation-arm rows tags each by transform class, and a separate grey band sits off to one side holding the paper&apos;s own selection caveats, papers excluded from every denominator.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-census-sheet&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1838&quot; role=&quot;img&quot; aria-label=&quot;a census sheet of 91 papers by 4 measurement planks: the four plank columns are almost empty and the bare-aggregate-scalar column is almost solid&quot;&gt;&lt;style&gt;#fig-fnf-a1-census-sheet [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-census-sheet [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-census-sheet [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-census-sheet [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-census-sheet [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-census-sheet [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-census-sheet [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-census-sheet [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-census-sheet [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-census-sheet [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1838&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
  :where(#cs-root) text { font-family: var(--mono); fill: var(--fg); }
  .cs-title { font-size: 26px; font-weight: bold; }
  .cs-sub { font-size: 14px; fill: var(--comment); }
  .cs-lede { font-size: 17px; font-weight: bold; }
  .cs-stripbg { fill: none; stroke: var(--current-line); stroke-width: 1; }
  .cs-slotk { font-size: 13px; fill: var(--comment); letter-spacing: 0.5px; }
  .cs-slotv-lit { font-size: 13px; fill: #56b4e9; }
  .cs-slotv-grey { font-size: 13px; fill: var(--comment); }
  .cs-nrule { stroke: var(--fg); stroke-width: 2; }
  .cs-scope { font-size: 13px; fill: var(--comment); }
  .cs-leg { font-size: 13px; }
  .cs-colh { font-size: 13px; fill: var(--comment); font-weight: bold; }
  .cs-sheetrule { stroke: var(--comment); stroke-width: 1; }
  .cs-met { fill: #56b4e9; }
  .cs-weak { fill: var(--bg); stroke: #56b4e9; stroke-width: 1.4; }
  .cs-no { fill: var(--comment); opacity: 0.42; }
  .cs-bs { fill: #e69f00; }
  .cs-bspart { fill: var(--bg); stroke: #e69f00; stroke-width: 1.4; }
  .cs-obf { fill: var(--comment); opacity: 0.55; }
  .cs-big { font-size: 22px; font-weight: bold; }
  .cs-note { font-size: 13px; fill: var(--comment); }
  .cs-plabel { font-size: 14px; }
  .cs-vmet { font-size: 14px; fill: #56b4e9; }
  .cs-vbs { font-size: 14px; fill: #e69f00; }
  .cs-struck { font-size: 14px; fill: var(--comment); }
  .cs-strikeline { stroke: #d55e00; stroke-width: 1.6; }
  .cs-dstrip { stroke: var(--comment); stroke-width: 2.4; }
  .cs-dlab { font-size: 13px; fill: var(--comment); }
  .cs-ring { fill: none; stroke: #d55e00; stroke-width: 1.4; }
  .cs-fnbox { fill: none; stroke: #d55e00; stroke-width: 1; }
  .cs-leader { fill: none; stroke: #d55e00; stroke-width: 1.2; stroke-dasharray: 4 4; }
  .cs-fnh { font-size: 14px; font-weight: bold; fill: #d55e00; }
  .cs-vermnote { font-size: 13px; fill: #d55e00; }
  .cs-h3 { font-size: 14px; font-weight: bold; }
  .cs-h3grey { font-size: 14px; font-weight: bold; fill: var(--comment); }
  .cs-clab { font-size: 13px; fill: var(--comment); }
  .cs-clabn { font-size: 13px; }
  .cs-tc { fill: var(--current-line); stroke: var(--comment); stroke-width: 0.8; }
  .cs-blank { fill: none; stroke: var(--comment); stroke-width: 0.8; stroke-dasharray: 2 2; }
  .cs-ven { fill: none; stroke: var(--comment); stroke-width: 1; }
  .cs-venpre { fill: var(--comment); opacity: 0.6; }
  .cs-kappabox { fill: none; stroke: var(--comment); stroke-width: 1; stroke-dasharray: 3 3; }
  .cs-kappa { font-size: 13px; fill: var(--comment); letter-spacing: 0.5px; }
  .cs-marginbox { fill: none; stroke: var(--comment); stroke-width: 1; stroke-dasharray: 5 4; }
  .cs-mnum { font-size: 14px; font-weight: bold; fill: var(--comment); }
  .cs-rule { stroke: var(--current-line); stroke-width: 1; }
&lt;/style&gt;
&lt;g id=&quot;cs-root&quot;&gt;
&lt;text class=&quot;cs-title&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;The census sheet&lt;/text&gt;
&lt;text class=&quot;cs-sub&quot; x=&quot;24.0&quot; y=&quot;76.0&quot;&gt;91 full-text papers &amp;#215; 4 measurement planks = 364 cells. 18 are met.&lt;/text&gt;
&lt;text class=&quot;cs-sub&quot; x=&quot;24.0&quot; y=&quot;96.0&quot;&gt;Every mark is one paper reporting one thing. The last column is not a plank: it is their absence.&lt;/text&gt;
&lt;text class=&quot;cs-lede&quot; x=&quot;24.0&quot; y=&quot;126.0&quot;&gt;Obfuscation-strength numbers that cannot be recomputed from what was published.&lt;/text&gt;
&lt;rect class=&quot;cs-stripbg&quot; x=&quot;24&quot; y=&quot;144&quot; width=&quot;880&quot; height=&quot;78&quot; rx=&quot;3&quot;/&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;36.0&quot; y=&quot;166.0&quot;&gt;ATTACKER&lt;/text&gt;
&lt;text class=&quot;cs-slotv-grey&quot; x=&quot;36.0&quot; y=&quot;183.0&quot;&gt;n/a: no model measured&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;250.0&quot; y=&quot;166.0&quot;&gt;SCORER&lt;/text&gt;
&lt;text class=&quot;cs-slotv-lit&quot; x=&quot;250.0&quot; y=&quot;183.0&quot;&gt;quote-or-null rubric&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;464.0&quot; y=&quot;166.0&quot;&gt;WINDOW&lt;/text&gt;
&lt;text class=&quot;cs-slotv-grey&quot; x=&quot;464.0&quot; y=&quot;183.0&quot;&gt;n/a&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;678.0&quot; y=&quot;166.0&quot;&gt;COMPILER&lt;/text&gt;
&lt;text class=&quot;cs-slotv-grey&quot; x=&quot;678.0&quot; y=&quot;183.0&quot;&gt;n/a&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;36.0&quot; y=&quot;200.0&quot;&gt;DISASSEMBLER&lt;/text&gt;
&lt;text class=&quot;cs-slotv-grey&quot; x=&quot;36.0&quot; y=&quot;217.0&quot;&gt;n/a&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;250.0&quot; y=&quot;200.0&quot;&gt;CONDITIONING&lt;/text&gt;
&lt;text class=&quot;cs-slotv-lit&quot; x=&quot;250.0&quot; y=&quot;217.0&quot;&gt;per-plank positives&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;464.0&quot; y=&quot;200.0&quot;&gt;CORPUS&lt;/text&gt;
&lt;text class=&quot;cs-slotv-lit&quot; x=&quot;464.0&quot; y=&quot;217.0&quot;&gt;96 screened, 91 full-text&lt;/text&gt;
&lt;text class=&quot;cs-slotk&quot; x=&quot;678.0&quot; y=&quot;200.0&quot;&gt;n&lt;/text&gt;
&lt;text class=&quot;cs-slotv-lit&quot; x=&quot;678.0&quot; y=&quot;217.0&quot;&gt;91 papers&lt;/text&gt;
&lt;line class=&quot;cs-nrule&quot; x1=&quot;678.0&quot; y1=&quot;227.0&quot; x2=&quot;759.9&quot; y2=&quot;227.0&quot;/&gt;
&lt;text class=&quot;cs-scope&quot; x=&quot;24.0&quot; y=&quot;242.0&quot;&gt;scope: a census of published practice, not a measurement of any model &amp;#183; four grey slots are grey because&lt;/text&gt;
&lt;text class=&quot;cs-scope&quot; x=&quot;24.0&quot; y=&quot;260.0&quot;&gt;this figure fixes nothing about a decompiler &amp;#183; the selection caveats are in the grey band, bottom right&lt;/text&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;24.0&quot; y=&quot;281.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;72.0&quot; y=&quot;288.0&quot;&gt;plank met&lt;/text&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;167.1&quot; y=&quot;281.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;214.5&quot; y=&quot;288.0&quot;&gt;met weakly&lt;/text&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;317.1&quot; y=&quot;285.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;365.1&quot; y=&quot;288.0&quot;&gt;not met&lt;/text&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;24.0&quot; y=&quot;303.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;72.0&quot; y=&quot;310.0&quot;&gt;bare scalar&lt;/text&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;183.3&quot; y=&quot;303.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;230.7&quot; y=&quot;310.0&quot;&gt;bare scalar, partly&lt;/text&gt;
&lt;text class=&quot;cs-leg&quot; x=&quot;405.8&quot; y=&quot;310.0&quot;&gt;blank = not applicable&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;24.0&quot; y=&quot;336.0&quot;&gt;obf&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;72.0&quot; y=&quot;336.0&quot; text-anchor=&quot;middle&quot;&gt;A&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;116.0&quot; y=&quot;336.0&quot; text-anchor=&quot;middle&quot;&gt;B&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;160.0&quot; y=&quot;336.0&quot; text-anchor=&quot;middle&quot;&gt;C&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;204.0&quot; y=&quot;336.0&quot; text-anchor=&quot;middle&quot;&gt;D&lt;/text&gt;
&lt;text class=&quot;cs-colh&quot; x=&quot;256.0&quot; y=&quot;336.0&quot; text-anchor=&quot;middle&quot;&gt;BS&lt;/text&gt;
&lt;line class=&quot;cs-sheetrule&quot; x1=&quot;24&quot; y1=&quot;341&quot; x2=&quot;276.0&quot; y2=&quot;341&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;344.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;348.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;348.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;348.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;348.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;344.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;361.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;361.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;361.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;357.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;374.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;374.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;374.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;370.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;387.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;387.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;387.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;383.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;96.0&quot; y=&quot;396.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;400.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;400.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;396.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;413.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;413.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;413.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;409.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;426.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;422.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;426.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;422.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;439.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;439.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;439.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;435.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;452.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;452.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;452.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;448.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;465.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;465.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;465.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;461.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;478.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;478.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;478.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;474.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;491.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;491.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;491.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;487.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;504.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;504.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;504.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;500.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;517.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;513.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;517.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;513.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;526.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;530.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;530.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;530.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;530.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;526.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;539.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;543.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;543.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;543.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;543.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;543.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;552.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;52.0&quot; y=&quot;552.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;556.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;556.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;184.0&quot; y=&quot;552.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;556.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;565.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;569.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;569.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;569.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;569.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;565.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;578.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;582.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;582.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;582.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;582.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;578.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;591.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;595.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;595.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;595.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;591.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;604.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;608.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;608.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;608.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;604.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;621.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;621.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;621.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;617.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;634.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;634.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;634.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;630.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;643.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;647.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;647.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;647.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;647.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;643.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;660.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;660.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;660.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;656.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;669.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;673.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;673.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;673.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;673.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;669.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;682.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;686.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;686.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;686.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;686.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;682.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;699.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;699.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;699.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;695.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;708.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;712.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;712.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;712.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;712.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;708.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;721.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;725.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;725.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;725.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;725.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;721.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;738.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;738.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;738.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;734.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;751.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;751.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;751.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;747.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;764.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;764.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;764.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;760.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;96.0&quot; y=&quot;773.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;777.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;777.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;773.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;790.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;790.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;790.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;786.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;803.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;803.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;803.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;799.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;96.0&quot; y=&quot;812.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;816.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;816.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;812.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;829.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;829.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;829.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;825.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;842.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;838.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;842.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;838.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;855.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;855.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;855.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;851.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;868.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;868.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;868.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;868.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;877.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;881.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;881.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;881.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;881.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;877.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;894.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;894.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;894.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;890.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;907.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;907.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;907.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;903.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;916.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;920.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;920.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;920.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;920.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;916.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;929.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;933.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;933.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;933.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;933.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;929.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;942.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;946.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;946.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;946.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;946.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;942.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;955.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;959.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;959.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;955.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;959.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;955.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;972.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;972.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;972.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;968.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;985.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;985.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;985.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;981.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;994.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;998.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;998.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;994.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;998.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;994.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1011.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1011.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1011.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1007.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1024.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;1020.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1024.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1020.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1037.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1037.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1037.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1033.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1050.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1050.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1050.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1046.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1059.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1063.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1063.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1063.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1063.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1059.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1072.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1076.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1076.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1076.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1076.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1072.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1089.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1089.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1089.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1085.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1102.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1102.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1102.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1098.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1115.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1115.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1115.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;1115.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1124.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1128.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1128.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1128.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1128.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1124.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1141.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1141.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1141.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1137.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1150.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1154.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1154.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1154.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1154.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1150.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1163.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1167.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1167.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;1163.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1167.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1163.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1180.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;1176.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1180.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;1180.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1193.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;1189.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1193.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;1193.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1206.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1206.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1206.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1202.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1219.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;140.0&quot; y=&quot;1215.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1219.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;1219.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1228.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1232.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1232.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;1228.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-met&quot; x=&quot;184.0&quot; y=&quot;1228.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1228.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1241.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1245.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1245.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1245.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1245.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1241.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1258.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1258.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1258.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1254.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1267.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1271.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1271.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1271.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1271.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1267.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1280.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1284.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1284.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-weak&quot; x=&quot;140.6&quot; y=&quot;1280.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1284.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1280.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1297.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1297.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1297.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1293.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1310.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1310.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1310.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1306.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1319.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1323.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1323.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1323.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1323.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1319.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1332.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1336.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1336.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1336.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1336.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1332.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1349.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1349.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1349.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1345.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1358.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1362.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1362.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1362.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1362.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1358.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1375.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1375.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1375.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1371.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1388.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1388.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1388.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1384.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1401.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1401.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1401.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bspart&quot; x=&quot;236.6&quot; y=&quot;1397.6&quot; width=&quot;38.8&quot; height=&quot;8.8&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1414.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1414.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1414.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;236.0&quot; y=&quot;1414.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1427.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1427.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1427.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1423.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1440.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1440.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1440.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1436.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1453.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1453.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1453.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1449.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1466.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1466.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1466.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1462.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1475.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1479.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1479.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1479.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1479.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1475.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1488.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1492.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1492.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1492.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1492.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1488.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1501.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1505.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1505.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1505.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1505.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1501.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-obf&quot; x=&quot;24.0&quot; y=&quot;1514.0&quot; width=&quot;14.0&quot; height=&quot;10.0&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;52.0&quot; y=&quot;1518.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;96.0&quot; y=&quot;1518.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;140.0&quot; y=&quot;1518.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-no&quot; x=&quot;184.0&quot; y=&quot;1518.2&quot; width=&quot;40.0&quot; height=&quot;1.6&quot;/&gt;
&lt;rect class=&quot;cs-bs&quot; x=&quot;236.0&quot; y=&quot;1514.0&quot; width=&quot;40.0&quot; height=&quot;10.0&quot;/&gt;
&lt;line class=&quot;cs-sheetrule&quot; x1=&quot;24&quot; y1=&quot;1529.0&quot; x2=&quot;276.0&quot; y2=&quot;1529.0&quot;/&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1549.0&quot;&gt;91 rows, one paper each,&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1567.0&quot;&gt;in corpus order. The 35 rows&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1585.0&quot;&gt;with an obfuscation arm carry&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1603.0&quot;&gt;the left gutter tick.&lt;/text&gt;
&lt;text class=&quot;cs-big&quot; x=&quot;330.0&quot; y=&quot;352.0&quot;&gt;18 of 364 plank cells met&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;374.0&quot;&gt;A + B + C + D over 91 papers x 4 planks. BS is excluded from the 364: a&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;392.0&quot;&gt;bare aggregate scalar is the ABSENCE of a plank, not a fifth one.&lt;/text&gt;
&lt;text class=&quot;cs-plabel&quot; x=&quot;330.0&quot; y=&quot;422.0&quot;&gt;A  fired-only / coverage&lt;/text&gt;
&lt;text class=&quot;cs-vmet&quot; x=&quot;580.0&quot; y=&quot;422.0&quot;&gt;1/91 = 1.1% [0.2, 6.0]&lt;/text&gt;
&lt;text class=&quot;cs-plabel&quot; x=&quot;330.0&quot; y=&quot;446.0&quot;&gt;B  truncation-stratified&lt;/text&gt;
&lt;text class=&quot;cs-vmet&quot; x=&quot;580.0&quot; y=&quot;446.0&quot;&gt;3/91 = 3.3% [1.1, 9.2]&lt;/text&gt;
&lt;text class=&quot;cs-plabel&quot; x=&quot;330.0&quot; y=&quot;470.0&quot;&gt;C  confidence intervals&lt;/text&gt;
&lt;text class=&quot;cs-vmet&quot; x=&quot;580.0&quot; y=&quot;470.0&quot;&gt;12/91 = 13.2% [7.7, 21.6]&lt;/text&gt;
&lt;text class=&quot;cs-struck&quot; x=&quot;580.0&quot; y=&quot;490.0&quot;&gt;12 (7 firmly + 5 weakly)&lt;/text&gt;
&lt;line class=&quot;cs-strikeline&quot; x1=&quot;578.0&quot; y1=&quot;485.0&quot; x2=&quot;790.3&quot; y2=&quot;485.0&quot;/&gt;
&lt;text class=&quot;cs-vmet&quot; x=&quot;580.0&quot; y=&quot;510.0&quot;&gt;12 (6 firmly + 6 weakly)&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;580.0&quot; y=&quot;530.0&quot;&gt;corrected: the re-verification moved one&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;580.0&quot; y=&quot;548.0&quot;&gt;cell to weakly. The committed master&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;580.0&quot; y=&quot;566.0&quot;&gt;read 7 + 5 until 2026-07-29 and now&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;580.0&quot; y=&quot;584.0&quot;&gt;reads 6 + 6 too &amp;#8212; read from the CSV at&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;580.0&quot; y=&quot;602.0&quot;&gt;build time, not copied.&lt;/text&gt;
&lt;text class=&quot;cs-plabel&quot; x=&quot;330.0&quot; y=&quot;624.0&quot;&gt;D  provenance decomposed&lt;/text&gt;
&lt;text class=&quot;cs-vmet&quot; x=&quot;580.0&quot; y=&quot;624.0&quot;&gt;2/91 = 2.2% [0.6, 7.7]&lt;/text&gt;
&lt;text class=&quot;cs-plabel&quot; x=&quot;330.0&quot; y=&quot;648.0&quot;&gt;BS  bare aggregate scalar&lt;/text&gt;
&lt;text class=&quot;cs-vbs&quot; x=&quot;580.0&quot; y=&quot;648.0&quot;&gt;83/91 = 91.2% [83.6, 95.5]&lt;/text&gt;
&lt;line class=&quot;cs-dstrip&quot; x1=&quot;330.0&quot; y1=&quot;674.0&quot; x2=&quot;466.5&quot; y2=&quot;674.0&quot;/&gt;
&lt;text class=&quot;cs-dlab&quot; x=&quot;474.5&quot; y=&quot;679.0&quot;&gt;denominator: 91 full-text papers&lt;/text&gt;
&lt;rect class=&quot;cs-ring&quot; x=&quot;50.0&quot; y=&quot;549.6&quot; width=&quot;44.0&quot; height=&quot;14.8&quot;/&gt;
&lt;polyline class=&quot;cs-leader&quot; points=&quot;96.0,557.0 106.0,563.5 303.0,563.5 303.0,724.0 322.0,724.0&quot;/&gt;
&lt;rect class=&quot;cs-fnbox&quot; x=&quot;322.0&quot; y=&quot;706&quot; width=&quot;582.0&quot; height=&quot;156.0&quot; rx=&quot;3&quot;/&gt;
&lt;text class=&quot;cs-fnh&quot; x=&quot;330.0&quot; y=&quot;730.0&quot;&gt;the one mark in column A&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;752.0&quot;&gt;DisasLLM (arXiv 2407.08924): firing rate 1/20 = 5.0% [0.9, 23.6].&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;770.0&quot;&gt;AXIS: disassembly Precision/Recall/F1, never a re-executability&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;788.0&quot;&gt;recovery cell.&lt;/text&gt;
&lt;text class=&quot;cs-vermnote&quot; x=&quot;330.0&quot; y=&quot;812.0&quot;&gt;0 of the 20 coverage-sparse re-executability&lt;/text&gt;
&lt;text class=&quot;cs-vermnote&quot; x=&quot;330.0&quot; y=&quot;830.0&quot;&gt;decompilers publish a firing rate.&lt;/text&gt;
&lt;line class=&quot;cs-dstrip&quot; x1=&quot;330.0&quot; y1=&quot;848.0&quot; x2=&quot;360.0&quot; y2=&quot;848.0&quot;/&gt;
&lt;text class=&quot;cs-dlab&quot; x=&quot;368.0&quot; y=&quot;853.0&quot;&gt;its own denominator: 20 papers&lt;/text&gt;
&lt;text class=&quot;cs-h3&quot; x=&quot;330.0&quot; y=&quot;892.0&quot;&gt;transform class, over the 37 obfuscation-arm rows&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;920.0&quot; text-anchor=&quot;end&quot;&gt;coverage-sparse&lt;/text&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;498.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;507.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;516.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;525.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;534.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;543.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;552.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;561.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;570.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;579.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;588.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;597.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;606.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;615.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;624.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;633.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;642.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;651.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;660.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;669.0&quot; y=&quot;913.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;686.0&quot; y=&quot;920.0&quot;&gt;20&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;940.0&quot; text-anchor=&quot;end&quot;&gt;by-construction&lt;/text&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;498.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;507.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;516.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;525.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;534.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;543.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;552.0&quot; y=&quot;933.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;569.0&quot; y=&quot;940.0&quot;&gt;7&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;960.0&quot; text-anchor=&quot;end&quot;&gt;mixed&lt;/text&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;498.0&quot; y=&quot;953.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;507.0&quot; y=&quot;953.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;516.0&quot; y=&quot;953.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;525.0&quot; y=&quot;953.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;534.0&quot; y=&quot;953.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;551.0&quot; y=&quot;960.0&quot;&gt;5&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;980.0&quot; text-anchor=&quot;end&quot;&gt;whole-program-VM&lt;/text&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;498.0&quot; y=&quot;973.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;507.0&quot; y=&quot;973.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;516.0&quot; y=&quot;973.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;533.0&quot; y=&quot;980.0&quot;&gt;3&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;1000.0&quot; text-anchor=&quot;end&quot;&gt;llm-generated&lt;/text&gt;
&lt;rect class=&quot;cs-tc&quot; x=&quot;498.0&quot; y=&quot;993.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;515.0&quot; y=&quot;1000.0&quot;&gt;1&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;486.0&quot; y=&quot;1020.0&quot; text-anchor=&quot;end&quot;&gt;unclassified&lt;/text&gt;
&lt;rect class=&quot;cs-blank&quot; x=&quot;498.0&quot; y=&quot;1013.0&quot; width=&quot;7&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;515.0&quot; y=&quot;1020.0&quot;&gt;1  DEBRA, blank on purpose&lt;/text&gt;
&lt;line class=&quot;cs-dstrip&quot; x1=&quot;330.0&quot; y1=&quot;1036.0&quot; x2=&quot;385.5&quot; y2=&quot;1036.0&quot;/&gt;
&lt;text class=&quot;cs-dlab&quot; x=&quot;393.5&quot; y=&quot;1041.0&quot;&gt;denominator: 37, all tiers&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1060.0&quot;&gt;37 is NOT a subset of 91: 35 of the 37 are rows on this sheet, 2 sit in&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1078.0&quot;&gt;tiers the sheet does not show. Never re-denominated over 91 or 96.&lt;/text&gt;
&lt;text class=&quot;cs-h3&quot; x=&quot;330.0&quot; y=&quot;1122.0&quot;&gt;venue status &amp;#8212; the only /96 statistic&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;440.0&quot; y=&quot;1144.0&quot; text-anchor=&quot;end&quot;&gt;preprint&lt;/text&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;452.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;459.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;466.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;473.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;480.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;487.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;494.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;501.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;508.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;515.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;522.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;529.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;536.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;543.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;550.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;557.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;564.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;571.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;578.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;585.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;592.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;599.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;606.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;613.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;620.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;627.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;634.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;641.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;648.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;655.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;662.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;669.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;676.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;683.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;690.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;697.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;704.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;711.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;718.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;725.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;732.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;739.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;746.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;753.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;760.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;767.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;774.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;781.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;788.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;795.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;802.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-venpre&quot; x=&quot;809.0&quot; y=&quot;1137.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;824.0&quot; y=&quot;1144.0&quot;&gt;52&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;440.0&quot; y=&quot;1166.0&quot; text-anchor=&quot;end&quot;&gt;refereed&lt;/text&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;452.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;459.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;466.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;473.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;480.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;487.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;494.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;501.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;508.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;515.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;522.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;529.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;536.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;543.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;550.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;557.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;564.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;571.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;578.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;585.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;592.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;599.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;606.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;613.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;620.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;627.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;634.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;641.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;648.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;655.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;662.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;669.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;676.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;683.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;690.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;697.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;704.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;711.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;718.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;725.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;732.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;739.0&quot; y=&quot;1159.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;754.0&quot; y=&quot;1166.0&quot;&gt;42&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;440.0&quot; y=&quot;1188.0&quot; text-anchor=&quot;end&quot;&gt;poster&lt;/text&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;452.0&quot; y=&quot;1181.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;467.0&quot; y=&quot;1188.0&quot;&gt;1&lt;/text&gt;
&lt;text class=&quot;cs-clab&quot; x=&quot;440.0&quot; y=&quot;1210.0&quot; text-anchor=&quot;end&quot;&gt;report&lt;/text&gt;
&lt;rect class=&quot;cs-ven&quot; x=&quot;452.0&quot; y=&quot;1203.0&quot; width=&quot;5.4&quot; height=&quot;7&quot;/&gt;
&lt;text class=&quot;cs-clabn&quot; x=&quot;467.0&quot; y=&quot;1210.0&quot;&gt;1&lt;/text&gt;
&lt;line class=&quot;cs-dstrip&quot; x1=&quot;330.0&quot; y1=&quot;1224.0&quot; x2=&quot;474.0&quot; y2=&quot;1224.0&quot;/&gt;
&lt;text class=&quot;cs-dlab&quot; x=&quot;482.0&quot; y=&quot;1229.0&quot;&gt;denominator: 96 screened papers&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1248.0&quot;&gt;A preprint majority is a SELECTION CAVEAT, not decoration: it is an&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1266.0&quot;&gt;outcome-correlated bias direction, and it points against this census.&lt;/text&gt;
&lt;text class=&quot;cs-h3&quot; x=&quot;330.0&quot; y=&quot;1310.0&quot;&gt;re-verification, stated exactly&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1332.0&quot;&gt;233/235 cells upheld over 70 papers &amp;#183; 2 adjustments&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1350.0&quot;&gt;0 of 128 NO-cells overturned &amp;#183; 0 factual reversals&lt;/text&gt;
&lt;rect class=&quot;cs-kappabox&quot; x=&quot;330.0&quot; y=&quot;1359.0&quot; width=&quot;210.0&quot; height=&quot;24&quot; rx=&quot;3&quot;/&gt;
&lt;text class=&quot;cs-kappa&quot; x=&quot;340.0&quot; y=&quot;1374.0&quot;&gt;kappa: NOT COMPUTABLE&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;552.0&quot; y=&quot;1374.0&quot;&gt;n = 2 double-scored, degenerate categories.&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1400.0&quot;&gt;Rendered grey, never a tick: this is not validated dual annotation and&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1418.0&quot;&gt;must not read as one.&lt;/text&gt;
&lt;text class=&quot;cs-h3grey&quot; x=&quot;330.0&quot; y=&quot;1484.0&quot;&gt;the uncounted margin&lt;/text&gt;
&lt;text class=&quot;cs-mnum&quot; x=&quot;330.0&quot; y=&quot;1506.0&quot;&gt;60&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;370.0&quot; y=&quot;1506.0&quot;&gt;classical deobfuscators excluded by scope&lt;/text&gt;
&lt;text class=&quot;cs-mnum&quot; x=&quot;330.0&quot; y=&quot;1526.0&quot;&gt;11&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;370.0&quot; y=&quot;1526.0&quot;&gt;gated closed-access DOIs&lt;/text&gt;
&lt;text class=&quot;cs-mnum&quot; x=&quot;330.0&quot; y=&quot;1546.0&quot;&gt;52&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;370.0&quot; y=&quot;1546.0&quot;&gt;preprint majority of the 96&lt;/text&gt;
&lt;text class=&quot;cs-vermnote&quot; x=&quot;330.0&quot; y=&quot;1572.0&quot;&gt;NOT IN ANY DENOMINATOR. Never added to 96.&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1592.0&quot;&gt;All three could inflate the missing-rate headline: the paper&amp;#8217;s own&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;330.0&quot; y=&quot;1610.0&quot;&gt;confession, against itself.&lt;/text&gt;
&lt;rect class=&quot;cs-marginbox&quot; x=&quot;322.0&quot; y=&quot;1462.0&quot; width=&quot;582.0&quot; height=&quot;166.0&quot; rx=&quot;3&quot;/&gt;
&lt;line class=&quot;cs-rule&quot; x1=&quot;24&quot; y1=&quot;1636.0&quot; x2=&quot;904&quot; y2=&quot;1636.0&quot;/&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1658.0&quot;&gt;Plank C ships as 12 (6 firmly + 6 weakly). The superseded 7 + 5 is printed above at the same size with a rule&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1676.0&quot;&gt;through it, because a corrected record is a restatement and not an erasure: the total 12 never moved. The&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1694.0&quot;&gt;manuscript was corrected first and prevalence_master.csv second (2026-07-29); a tier-filtered recount of the&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1712.0&quot;&gt;committed CSV over the 91 full-text papers now reproduces 6 + 6, and this figure reads that cell at build&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1730.0&quot;&gt;time rather than restating it from memory.&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1754.0&quot;&gt;Every count here is recomputable with prevalence_tally.py over prevalence_master.csv. Scorer: quote-or-null&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1772.0&quot;&gt;rubric, single-pass scoring, with a complete adversarial re-verification against the primary source. The&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1790.0&quot;&gt;three denominators (91 full-text, 37 obfuscation-arm across all tiers, 96 screened) are never mixed, and 96&lt;/text&gt;
&lt;text class=&quot;cs-note&quot; x=&quot;24.0&quot; y=&quot;1808.0&quot;&gt;-&gt; 91 -&gt; 37 is a false containment.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;Every published paper as a row, every plank a reader needs as a column. The four columns that would make the number recomputable are empty; the one that makes it un-auditable is full. Scored single-pass over 91 full-text papers, adversarially re-verified on 70 with 233 of 235 cells upheld; recomputable with the deposit&apos;s prevalence_tally.py.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;plank&lt;/th&gt;&lt;th&gt;what it requires&lt;/th&gt;&lt;th&gt;k/n&lt;/th&gt;&lt;th&gt;rate&lt;/th&gt;&lt;th&gt;Wilson 95%&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;A&lt;/td&gt;&lt;td&gt;fired-only / coverage-conditioned&lt;/td&gt;&lt;td&gt;1/91&lt;/td&gt;&lt;td&gt;1.1%&lt;/td&gt;&lt;td&gt;[0.2, 6.0]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;B&lt;/td&gt;&lt;td&gt;truncation-stratified&lt;/td&gt;&lt;td&gt;3/91&lt;/td&gt;&lt;td&gt;3.3%&lt;/td&gt;&lt;td&gt;[1.1, 9.2]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;C&lt;/td&gt;&lt;td&gt;confidence intervals (6 firmly + 6 weakly)&lt;/td&gt;&lt;td&gt;12/91&lt;/td&gt;&lt;td&gt;13.2%&lt;/td&gt;&lt;td&gt;[7.7, 21.6]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;D&lt;/td&gt;&lt;td&gt;provenance decomposition&lt;/td&gt;&lt;td&gt;2/91&lt;/td&gt;&lt;td&gt;2.2%&lt;/td&gt;&lt;td&gt;[0.6, 7.7]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;BS&lt;/td&gt;&lt;td&gt;bare aggregate scalar (the absence of a plank)&lt;/td&gt;&lt;td&gt;83/91&lt;/td&gt;&lt;td&gt;91.2%&lt;/td&gt;&lt;td&gt;[83.6, 95.5]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;5&quot;&gt;18 of 364 plank cells met (A+B+C+D over 91 papers x 4 planks). The lone A mark is DisasLLM, whose firing-conditioned cell scores disassembly precision/recall/F1, not re-executability recovery, so it scores nothing on the axis that matters here.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; &lt;script type=&quot;module&quot; src=&quot;https://thepragmaticquant.com/vercel/path0/src/components/Figure.astro?astro&amp;type=script&amp;index=0&amp;lang.ts&quot;&gt;&lt;/script&gt;
&lt;p&gt;The single positive in the firing-conditioned column carries a disqualifier, and the disqualifier travels with the count everywhere it is quoted. That paper, DisasLLM, named in its row of the scored table the deposit ships, does condition on firing, but its firing-conditioned cell is a disassembly precision/recall/F1 row rather than a re-executability recovery cell. On the axis this piece is about, the count is zero.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The corpus was scored single-pass, then adversarially re-verified on 70 of the 96 papers, with 233 of 235 re-examined cells upheld. Only two papers were double-scored and the category distribution is degenerate, so no inter-annotator statistic is computable.&lt;/span&gt;
&lt;p&gt;The finding is deliberately unexciting: nobody is cheating. Every one of those 35 numbers appears to be correctly computed over whatever population its authors used. There is simply no way for a reader to learn what that population was, no way to compare two papers’ numbers, no way to tell a strong transform from a lucky denominator. The deposit ships the scored table and the tally script, so the counts can be recomputed rather than trusted.&lt;/p&gt;
&lt;h2 id=&quot;the-functions-the-transform-skipped&quot;&gt;The functions the transform skipped&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-functions-the-transform-skipped&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Here is the mechanism that makes the scalar un-auditable.&lt;/p&gt;
&lt;p&gt;Firing is a per-function property. A transform that flattens control flow needs control flow to flatten; a pass that encrypts string literals needs string literals; a pass gated on a size heuristic skips whatever falls below the threshold. So on any real corpus some functions come out changed and some come out byte-identical to the clean build. Both are handed to the decompiler, and both are counted in one average:&lt;/p&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;div class=&quot;codeblock-head&quot;&gt;&lt;span class=&quot;lang&quot;&gt;text&lt;/span&gt;&lt;button type=&quot;button&quot; class=&quot;copy-btn&quot; data-copy aria-label=&quot;Copy code&quot;&gt;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;16&quot; height=&quot;16&quot; viewBox=&quot;0 0 24 24&quot; fill=&quot;none&quot; stroke=&quot;currentColor&quot; stroke-width=&quot;2&quot; stroke-linecap=&quot;round&quot; stroke-linejoin=&quot;round&quot; aria-hidden=&quot;true&quot;&gt;&lt;rect width=&quot;14&quot; height=&quot;14&quot; x=&quot;8&quot; y=&quot;8&quot; rx=&quot;2&quot; ry=&quot;2&quot;&gt;&lt;/rect&gt;&lt;path d=&quot;M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;span class=&quot;copy-label&quot;&gt;Copy&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;pre class=&quot;astro-code astro-code-themes github-light github-dark-default&quot; style=&quot;--shiki-light:#24292e;--shiki-dark:#e6edf3;--shiki-light-bg:#fff;--shiki-dark-bg:#0d1117;overflow-x:auto&quot; tabindex=&quot;0&quot; data-language=&quot;text&quot;&gt;&lt;code&gt;&lt;span class=&quot;line&quot;&gt;&lt;span&gt;aggregate recovery&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span&gt;  =  share of functions the transform fired on&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span&gt;       x  recovery among those functions&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span&gt;  +  share it never fired on&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;line&quot;&gt;&lt;span&gt;       x  recovery among those        &amp;lt;-- which is just the clean rate&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;The first term is the only one that answers the question anyone asked. The second is clean-rate contamination: functions the transform never modified, still recovering at their pre-obfuscation rate, arriving in the obfuscated column as though the transform had been tested on them. Push the firing rate down and the aggregate drifts toward the clean rate no matter how effective the transform is on the functions it does reach.&lt;/p&gt;
&lt;p&gt;Put round numbers on it. A transform fires on 20 of 100 functions and recovers nothing at all on those 20, total defeat on everything it touched. The other 80 were never modified, so they recover at the clean rate of 10%, which is 8 functions. The published aggregate is 8%, down from 10%, and it reads as a transform that barely helped. The 20 it actually reached were annihilated.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;Six trays, one per configuration, each a 164-cell grid, one cell per function. Cells carry one of four marks: never-fired (the transform left the function untouched), fired-but-not-recovered, truncated, or a solid dot for re-executed. The clean and low-coverage trays are dominated by never-fired ink: string encryption fires on a thin band of 29 and leaves 135 cells as ghosts, the placebo fires on 6 and ghosts 158, while bogus control flow fills its whole tray with firing marks. The never-fired population is visible as ink that was counted into the aggregate but never actually tested against the transform.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-ghost-function-ledger&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2042&quot; role=&quot;img&quot; aria-label=&quot;six 164-cell trays, one per obfuscation config: functions the transform never fired on are hollow, and the recoveries landing on them are the ghost recoveries the aggregate counts&quot;&gt;&lt;style&gt;#fig-fnf-a1-ghost-function-ledger [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-ghost-function-ledger [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-ghost-function-ledger [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-ghost-function-ledger [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-ghost-function-ledger [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-ghost-function-ledger [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-ghost-function-ledger [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-ghost-function-ledger [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-ghost-function-ledger [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-ghost-function-ledger [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2042&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
  :where(#gl-root) text { font-family: var(--mono); fill: var(--fg); }
  .gl-title { font-size: 26px; font-weight: bold; }
  .gl-sub { font-size: 14px; fill: var(--comment); }
  .gl-lede { font-size: 18px; font-weight: bold; }
  .gl-lede2 { font-size: 15px; fill: #e69f00; }
  .gl-h2 { font-size: 18px; font-weight: bold; }
  .gl-stripbg { fill: none; stroke: var(--current-line); stroke-width: 1; }
  .gl-slotk { font-size: 13px; fill: var(--comment); letter-spacing: 0.5px; }
  .gl-slotv { font-size: 13px; fill: #56b4e9; }
  .gl-nrule { stroke: var(--fg); stroke-width: 2; }
  .gl-scope { font-size: 13px; fill: var(--comment); }
  .gl-leg { font-size: 14px; }
  .gl-legnote { font-size: 13px; fill: var(--comment); }
  .gl-trayk { font-size: 16px; font-weight: bold; }
  .gl-trayt { font-size: 13px; fill: var(--comment); }
  .gl-trayn { font-size: 14px; fill: var(--comment); }
  .gl-arith { font-size: 14px; }
  .gl-ghostcall { font-size: 14px; font-weight: bold; fill: #e69f00; }
  .gl-none { font-size: 14px; fill: var(--comment); }
  .gl-zero { font-size: 14px; font-weight: bold; fill: #d55e00; }
  .gl-note { font-size: 13px; fill: var(--comment); }
  .gl-quote { font-size: 16px; font-style: italic; }
  .gl-chip { fill: var(--bg); }
  .gl-rule { stroke: var(--current-line); stroke-width: 1; }
  .gl-colh { font-size: 13px; fill: var(--comment); letter-spacing: 0.5px; }
  .gl-row { font-size: 14px; }
  .gl-rowb { font-size: 14px; fill: #56b4e9; }
  .gl-rowg { font-size: 14px; fill: var(--comment); }
  .gl-tick { font-size: 13px; fill: var(--comment); }
  .gl-axis { font-size: 14px; fill: var(--comment); }
  .gl-iwtick { stroke: var(--current-line); stroke-width: 1; }
  .gl-iwbar { stroke: #56b4e9; stroke-width: 3; }
  .gl-iwcap { stroke: #56b4e9; stroke-width: 3; }
  .gl-iwdot { fill: #56b4e9; }
  .gl-dstrip { stroke: var(--comment); stroke-width: 2; }
  .gl-grid { stroke: var(--current-line); stroke-width: 1; }
  .gl-rawser { fill: none; stroke: #e69f00; stroke-width: 3; }
  .gl-rawdot { fill: #e69f00; }
  .gl-dashser { fill: none; stroke: #56b4e9; stroke-width: 2; stroke-dasharray: 6 5; }
  .gl-dashdot { fill: var(--bg); stroke: #56b4e9; stroke-width: 2; }
  .gl-foser { fill: none; stroke: #56b4e9; stroke-width: 3; }
  .gl-fodot { fill: #56b4e9; }
  .gl-legorange { font-size: 14px; font-weight: bold; fill: #e69f00; }
  .gl-legblue { font-size: 14px; font-weight: bold; fill: #56b4e9; }
  .gl-ghost { fill: var(--comment); opacity: 0.55; }
  .gl-ghostrec { fill: #e69f00; }
  .gl-trunc { fill: none; stroke: var(--comment); stroke-width: 1.1; }
  .gl-truncslash { stroke: var(--comment); stroke-width: 1.1; }
  .gl-miss { fill: var(--bg); stroke: var(--comment); stroke-width: 1.1; }
  .gl-hit { fill: #56b4e9; }
&lt;/style&gt;
&lt;g id=&quot;gl-root&quot;&gt;
&lt;text class=&quot;gl-title&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;The ghost function ledger&lt;/text&gt;
&lt;text class=&quot;gl-sub&quot; x=&quot;24.0&quot; y=&quot;76.0&quot;&gt;Six independent 164-function trays, one per config, in func0-id order.&lt;/text&gt;
&lt;text class=&quot;gl-sub&quot; x=&quot;24.0&quot; y=&quot;96.0&quot;&gt;A tray is never carved out of another: the firing masks do not nest.&lt;/text&gt;
&lt;text class=&quot;gl-lede&quot; x=&quot;24.0&quot; y=&quot;126.0&quot;&gt;Under the placebo, string-encryption and constant-encryption, EVERY&lt;/text&gt;
&lt;text class=&quot;gl-lede&quot; x=&quot;24.0&quot; y=&quot;148.0&quot;&gt;recovery sits on a function the transform never fired on.&lt;/text&gt;
&lt;text class=&quot;gl-lede2&quot; x=&quot;24.0&quot; y=&quot;172.0&quot;&gt;Those ghost recoveries land at the clean rate, reported inside the obfuscated aggregate.&lt;/text&gt;
&lt;rect class=&quot;gl-stripbg&quot; x=&quot;24&quot; y=&quot;190&quot; width=&quot;880&quot; height=&quot;78&quot; rx=&quot;3&quot;/&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;36.0&quot; y=&quot;212.0&quot;&gt;ATTACKER&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;36.0&quot; y=&quot;229.0&quot;&gt;stock v1.5 (6.7B)&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;250.0&quot; y=&quot;212.0&quot;&gt;SCORER&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;250.0&quot; y=&quot;229.0&quot;&gt;clang-strict re-exec&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;464.0&quot; y=&quot;212.0&quot;&gt;WINDOW&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;464.0&quot; y=&quot;229.0&quot;&gt;8192 (RoPE-extrap.)&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;678.0&quot; y=&quot;212.0&quot;&gt;COMPILER&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;678.0&quot; y=&quot;229.0&quot;&gt;clang x86/O2&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;36.0&quot; y=&quot;246.0&quot;&gt;DISASSEMBLER&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;36.0&quot; y=&quot;263.0&quot;&gt;llvm-objdump 22.1.6&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;250.0&quot; y=&quot;246.0&quot;&gt;CONDITIONING&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;250.0&quot; y=&quot;263.0&quot;&gt;aggregate + fired-only&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;464.0&quot; y=&quot;246.0&quot;&gt;CORPUS&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;464.0&quot; y=&quot;263.0&quot;&gt;HumanEval-Decompile&lt;/text&gt;
&lt;text class=&quot;gl-slotk&quot; x=&quot;678.0&quot; y=&quot;246.0&quot;&gt;n&lt;/text&gt;
&lt;text class=&quot;gl-slotv&quot; x=&quot;678.0&quot; y=&quot;263.0&quot;&gt;164 per tray&lt;/text&gt;
&lt;line class=&quot;gl-nrule&quot; x1=&quot;678.0&quot; y1=&quot;273.0&quot; x2=&quot;825.6&quot; y2=&quot;273.0&quot;/&gt;
&lt;text class=&quot;gl-scope&quot; x=&quot;24.0&quot; y=&quot;288.0&quot;&gt;scope: 1 clean + 95 obfuscated (config 0 is a point inside the grid) &amp;#183; floor, not ceiling&lt;/text&gt;
&lt;text class=&quot;gl-scope&quot; x=&quot;24.0&quot; y=&quot;306.0&quot;&gt;one modest 6.7B attacker, static/client-side tier &amp;#183; seed 0xC0FFEE&lt;/text&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;24.0&quot; y=&quot;326.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;text class=&quot;gl-leg&quot; x=&quot;40.0&quot; y=&quot;332.0&quot;&gt;never fired: a ghost, low bar&lt;/text&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;317.7&quot; y=&quot;324.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;text class=&quot;gl-leg&quot; x=&quot;333.7&quot; y=&quot;332.0&quot;&gt;never fired, still recovered&lt;/text&gt;
&lt;rect class=&quot;gl-hit&quot; x=&quot;602.8&quot; y=&quot;323.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-leg&quot; x=&quot;618.8&quot; y=&quot;332.0&quot;&gt;fired and re-executed&lt;/text&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;24.0&quot; y=&quot;347.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-leg&quot; x=&quot;40.0&quot; y=&quot;356.0&quot;&gt;fired, scored, not recovered&lt;/text&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;309.0&quot; y=&quot;347.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;309.0&quot; y1=&quot;355.0&quot; x2=&quot;317.0&quot; y2=&quot;347.0&quot;/&gt;
&lt;text class=&quot;gl-leg&quot; x=&quot;325.0&quot; y=&quot;356.0&quot;&gt;fired, truncated: censored, slashed&lt;/text&gt;
&lt;text class=&quot;gl-legnote&quot; x=&quot;24.0&quot; y=&quot;380.0&quot;&gt;Each tray: 164 cells, two rows of 82. Firing counts are byte-diff masks, not the fired-and-non-truncated n&amp;#8217;s.&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;410.0&quot;&gt;cfg 16 &amp;#183; backend-marker (placebo)&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;367.4&quot; y=&quot;410.0&quot;&gt;bo;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;410.0&quot; text-anchor=&quot;end&quot;&gt;fired 6/164 &amp;#183; ghosts 158 &amp;#183; truncated 0&lt;/text&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;30.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;40.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;50.8&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;61.2&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;71.6&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;422.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;92.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;102.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;113.2&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;123.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;134.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;144.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;154.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;165.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;175.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;186.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;196.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;206.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;217.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;227.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;238.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;248.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;258.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;269.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;279.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;290.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;422.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;310.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;321.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;331.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;342.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;352.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;362.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;373.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;383.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;394.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;404.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;414.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;425.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;435.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;446.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;456.4&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;466.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;477.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;487.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;498.0&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;508.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;518.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;529.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;539.6&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;550.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;560.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;570.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;581.2&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;591.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;602.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;612.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;622.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;633.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;643.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;654.0&quot; y=&quot;423.7&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;664.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;674.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;685.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;695.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;706.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;716.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;726.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;737.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;747.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;758.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;768.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;778.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;789.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;799.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;810.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;820.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;830.8&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;841.2&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;851.6&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;862.0&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;872.4&quot; y=&quot;425.1&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;30.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;40.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;50.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;61.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;71.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;432.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;92.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;102.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;113.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;123.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;134.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;144.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;154.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;165.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;175.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;186.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;196.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;206.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;217.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;227.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;238.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;248.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;258.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;269.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;279.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;290.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;300.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;310.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;321.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;331.6&quot; y=&quot;434.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;342.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;352.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;362.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;373.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;383.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;394.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;404.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;414.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;425.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;435.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;446.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;456.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;466.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;477.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;487.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;498.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;508.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;518.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;529.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;539.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;550.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;560.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;570.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;581.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;591.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;602.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;612.4&quot; y=&quot;434.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;622.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;633.2&quot; y=&quot;434.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;643.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;654.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;664.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;674.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;685.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;695.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;432.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;716.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;726.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;737.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;432.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;758.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;768.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;778.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;789.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;799.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;810.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;432.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;830.8&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;841.2&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;851.6&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;862.0&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;872.4&quot; y=&quot;435.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;461.4&quot;&gt;raw aggregate 12/164 = 7.3% [4.2, 12.4]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;461.4&quot;&gt;fired-only 0/6 = 0.0% [0.0, 39.0]&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;481.4&quot;&gt;158 of 164 never took the stain&lt;/text&gt;
&lt;text class=&quot;gl-ghostcall&quot; x=&quot;454.0&quot; y=&quot;481.4&quot;&gt;&amp;#9632; all 12 of 12 recoveries are ghosts&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;516.4&quot;&gt;cfg  1 &amp;#183; string_encryption&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;297.9&quot; y=&quot;516.4&quot;&gt;se;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;516.4&quot; text-anchor=&quot;end&quot;&gt;fired 29/164 &amp;#183; ghosts 135 &amp;#183; truncated 12&lt;/text&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;30.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;40.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;50.8&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;61.2&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;71.6&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;82.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;92.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;102.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;113.2&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;123.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;134.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;144.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;154.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;165.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;175.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;196.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;217.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;227.6&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;227.6&quot; y1=&quot;536.4&quot; x2=&quot;235.6&quot; y2=&quot;528.4&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;238.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;248.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;258.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;269.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;279.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;290.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;300.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;310.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;321.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;331.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;342.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;352.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;362.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;373.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;383.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;394.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;404.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;414.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;425.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;435.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;446.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;456.4&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;466.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;477.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;487.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;498.0&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;508.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;518.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;529.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;539.6&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;550.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;570.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;581.2&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;591.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;602.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;612.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;622.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;633.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;643.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;654.0&quot; y=&quot;530.1&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;664.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;674.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;685.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;716.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;726.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;737.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;747.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;758.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;768.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;778.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;789.2&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;799.6&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;810.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;820.4&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;830.8&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;862.0&quot; y=&quot;531.5&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;528.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;30.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;40.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;61.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;71.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;82.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;92.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;102.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;113.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;123.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;134.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;144.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;154.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;165.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;175.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;186.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;206.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;217.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;227.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;238.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;258.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;269.2&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;279.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;290.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;300.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;310.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;331.6&quot; y=&quot;540.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;362.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;373.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;383.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;546.8&quot; x2=&quot;422.8&quot; y2=&quot;538.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;425.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;435.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;446.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;456.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;466.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;477.2&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;477.2&quot; y1=&quot;546.8&quot; x2=&quot;485.2&quot; y2=&quot;538.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;487.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;508.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;518.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;529.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;539.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;550.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;560.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;570.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;581.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;591.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;612.4&quot; y=&quot;540.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;622.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;633.2&quot; y=&quot;540.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;643.6&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;643.6&quot; y1=&quot;546.8&quot; x2=&quot;651.6&quot; y2=&quot;538.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;654.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;664.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;674.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;695.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;706.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;726.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;737.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;747.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;758.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;778.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;789.2&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;810.0&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;820.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;830.8&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;851.6&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;538.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;872.4&quot; y=&quot;541.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;567.8&quot;&gt;raw aggregate 12/164 = 7.3% [4.2, 12.4]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;567.8&quot;&gt;fired-only 0/29 = 0.0% [0.0, 11.7]&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;587.8&quot;&gt;135 of 164 never took the stain&lt;/text&gt;
&lt;text class=&quot;gl-ghostcall&quot; x=&quot;454.0&quot; y=&quot;587.8&quot;&gt;&amp;#9632; all 12 of 12 recoveries are ghosts&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;622.8&quot;&gt;cfg  4 &amp;#183; flatten_cfg&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;238.4&quot; y=&quot;622.8&quot;&gt;cff;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;622.8&quot; text-anchor=&quot;end&quot;&gt;fired 139/164 &amp;#183; ghosts 25 &amp;#183; truncated 9&lt;/text&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;40.4&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;50.8&quot; y=&quot;636.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;71.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;92.4&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-hit&quot; x=&quot;113.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;134.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;134.0&quot; y1=&quot;642.8&quot; x2=&quot;142.0&quot; y2=&quot;634.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;227.6&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;258.8&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;269.2&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;362.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;362.8&quot; y1=&quot;642.8&quot; x2=&quot;370.8&quot; y2=&quot;634.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;642.8&quot; x2=&quot;422.8&quot; y2=&quot;634.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;456.4&quot; y=&quot;636.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-hit&quot; x=&quot;487.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;498.0&quot; y=&quot;636.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;518.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;581.2&quot; y=&quot;636.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;612.4&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;633.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;633.2&quot; y1=&quot;642.8&quot; x2=&quot;641.2&quot; y2=&quot;634.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;654.0&quot; y=&quot;636.5&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;695.6&quot; y=&quot;637.9&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;634.8&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;71.6&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;123.6&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;134.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;144.4&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;186.0&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;227.6&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;269.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;269.2&quot; y1=&quot;653.2&quot; x2=&quot;277.2&quot; y2=&quot;645.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;331.6&quot; y=&quot;646.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;362.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;653.2&quot; x2=&quot;422.8&quot; y2=&quot;645.2&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;425.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;425.2&quot; y1=&quot;653.2&quot; x2=&quot;433.2&quot; y2=&quot;645.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;477.2&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;518.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;518.8&quot; y1=&quot;653.2&quot; x2=&quot;526.8&quot; y2=&quot;645.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;602.0&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;612.4&quot; y=&quot;646.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;633.2&quot; y=&quot;646.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;664.4&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;706.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;706.0&quot; y1=&quot;653.2&quot; x2=&quot;714.0&quot; y2=&quot;645.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;830.8&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;841.2&quot; y=&quot;648.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;645.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;674.2&quot;&gt;raw aggregate 10/164 = 6.1% [3.3, 10.9]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;674.2&quot;&gt;fired-only 2/139 = 1.4% [0.4, 5.1]&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;694.2&quot;&gt;25 of 164 never took the stain&lt;/text&gt;
&lt;text class=&quot;gl-ghostcall&quot; x=&quot;454.0&quot; y=&quot;694.2&quot;&gt;&amp;#9632; 8 of 10 recoveries are ghosts, 2 fired&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;729.2&quot;&gt;cfg  2 &amp;#183; constant_encryption&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;317.8&quot; y=&quot;729.2&quot;&gt;ce;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;729.2&quot; text-anchor=&quot;end&quot;&gt;fired 157/164 &amp;#183; ghosts 7 &amp;#183; truncated 6&lt;/text&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;40.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;40.4&quot; y1=&quot;749.2&quot; x2=&quot;48.4&quot; y2=&quot;741.2&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;50.8&quot; y=&quot;742.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;71.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;71.6&quot; y1=&quot;749.2&quot; x2=&quot;79.6&quot; y2=&quot;741.2&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;82.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;82.0&quot; y1=&quot;749.2&quot; x2=&quot;90.0&quot; y2=&quot;741.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;123.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;123.6&quot; y1=&quot;749.2&quot; x2=&quot;131.6&quot; y2=&quot;741.2&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;134.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;227.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;269.2&quot; y=&quot;744.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;362.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;414.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;456.4&quot; y=&quot;742.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;498.0&quot; y=&quot;742.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;518.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghostrec&quot; x=&quot;581.2&quot; y=&quot;742.9&quot; width=&quot;8.0&quot; height=&quot;4.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;633.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;768.4&quot; y=&quot;744.3&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;741.2&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;71.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;134.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-ghost&quot; x=&quot;206.8&quot; y=&quot;754.7&quot; width=&quot;8.0&quot; height=&quot;1.8&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;227.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;269.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;362.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;759.6&quot; x2=&quot;422.8&quot; y2=&quot;751.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;518.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;633.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;706.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;706.0&quot; y1=&quot;759.6&quot; x2=&quot;714.0&quot; y2=&quot;751.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;751.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;780.6&quot;&gt;raw aggregate 4/164 = 2.4% [1.0, 6.1]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;780.6&quot;&gt;fired-only 0/157 = 0.0% [0.0, 2.4]&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;800.6&quot;&gt;7 of 164 never took the stain&lt;/text&gt;
&lt;text class=&quot;gl-ghostcall&quot; x=&quot;454.0&quot; y=&quot;800.6&quot;&gt;&amp;#9632; all 4 of 4 recoveries are ghosts&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;835.6&quot;&gt;cfg  8 &amp;#183; bogus_control_flow&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;307.8&quot; y=&quot;835.6&quot;&gt;bcf;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;835.6&quot; text-anchor=&quot;end&quot;&gt;fired 164/164 &amp;#183; ghosts 0 &amp;#183; truncated 6&lt;/text&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;71.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;134.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;134.0&quot; y1=&quot;855.6&quot; x2=&quot;142.0&quot; y2=&quot;847.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;227.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;227.6&quot; y1=&quot;855.6&quot; x2=&quot;235.6&quot; y2=&quot;847.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;269.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;362.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;362.8&quot; y1=&quot;855.6&quot; x2=&quot;370.8&quot; y2=&quot;847.6&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;414.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;518.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;633.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;847.6&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;71.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;134.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;227.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;269.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;362.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;383.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;866.0&quot; x2=&quot;422.8&quot; y2=&quot;858.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;518.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;633.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;674.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;706.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;706.0&quot; y1=&quot;866.0&quot; x2=&quot;714.0&quot; y2=&quot;858.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-hit&quot; x=&quot;758.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;841.2&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;841.2&quot; y1=&quot;866.0&quot; x2=&quot;849.2&quot; y2=&quot;858.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;858.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;887.0&quot;&gt;raw aggregate 1/164 = 0.6% [0.1, 3.4]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;887.0&quot;&gt;fired-only 1/164 = 0.6% [0.1, 3.4]&lt;/text&gt;
&lt;text class=&quot;gl-zero&quot; x=&quot;24.0&quot; y=&quot;907.0&quot;&gt;zero ghosts: fired-only cannot correct it&lt;/text&gt;
&lt;text class=&quot;gl-ghostcall&quot; x=&quot;454.0&quot; y=&quot;907.0&quot;&gt;&amp;#9632; 1 of 1 recoveries fired: no ghosts to inflate it&lt;/text&gt;
&lt;text class=&quot;gl-trayk&quot; x=&quot;24.0&quot; y=&quot;942.0&quot;&gt;cfg 14 &amp;#183; heavy composite (ce+cff+bcf)&lt;/text&gt;
&lt;text class=&quot;gl-trayt&quot; x=&quot;407.0&quot; y=&quot;942.0&quot;&gt;ce+cff+bcf;mba0&lt;/text&gt;
&lt;text class=&quot;gl-trayn&quot; x=&quot;904.0&quot; y=&quot;942.0&quot; text-anchor=&quot;end&quot;&gt;fired 164/164 &amp;#183; ghosts 0 &amp;#183; truncated 42&lt;/text&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;50.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;71.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;71.6&quot; y1=&quot;962.0&quot; x2=&quot;79.6&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;92.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;134.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;134.0&quot; y1=&quot;962.0&quot; x2=&quot;142.0&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;144.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;144.4&quot; y1=&quot;962.0&quot; x2=&quot;152.4&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;206.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;206.8&quot; y1=&quot;962.0&quot; x2=&quot;214.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;227.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;227.6&quot; y1=&quot;962.0&quot; x2=&quot;235.6&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;238.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;238.0&quot; y1=&quot;962.0&quot; x2=&quot;246.0&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;248.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;248.4&quot; y1=&quot;962.0&quot; x2=&quot;256.4&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;258.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;269.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;300.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;300.4&quot; y1=&quot;962.0&quot; x2=&quot;308.4&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;310.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;310.8&quot; y1=&quot;962.0&quot; x2=&quot;318.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;321.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;362.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;362.8&quot; y1=&quot;962.0&quot; x2=&quot;370.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;373.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;373.2&quot; y1=&quot;962.0&quot; x2=&quot;381.2&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;383.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;383.6&quot; y1=&quot;962.0&quot; x2=&quot;391.6&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;962.0&quot; x2=&quot;422.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;425.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;466.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;477.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;487.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;487.6&quot; y1=&quot;962.0&quot; x2=&quot;495.6&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;518.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;518.8&quot; y1=&quot;962.0&quot; x2=&quot;526.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;550.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;550.0&quot; y1=&quot;962.0&quot; x2=&quot;558.0&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;622.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;622.8&quot; y1=&quot;962.0&quot; x2=&quot;630.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;633.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;633.2&quot; y1=&quot;962.0&quot; x2=&quot;641.2&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;643.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;674.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;674.8&quot; y1=&quot;962.0&quot; x2=&quot;682.8&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;685.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;706.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;716.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;726.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;737.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;737.2&quot; y1=&quot;962.0&quot; x2=&quot;745.2&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;758.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;758.0&quot; y1=&quot;962.0&quot; x2=&quot;766.0&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;841.2&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;851.6&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;872.4&quot; y=&quot;954.0&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;872.4&quot; y1=&quot;962.0&quot; x2=&quot;880.4&quot; y2=&quot;954.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;30.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;40.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;50.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;50.8&quot; y1=&quot;972.4&quot; x2=&quot;58.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;61.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;71.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;71.6&quot; y1=&quot;972.4&quot; x2=&quot;79.6&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;82.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;92.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;92.4&quot; y1=&quot;972.4&quot; x2=&quot;100.4&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;102.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;113.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;123.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;134.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;144.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;154.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;165.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;175.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;186.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;196.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;206.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;217.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;227.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;238.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;248.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;258.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;258.8&quot; y1=&quot;972.4&quot; x2=&quot;266.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;269.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;269.2&quot; y1=&quot;972.4&quot; x2=&quot;277.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;279.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;290.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;300.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;310.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;321.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;321.2&quot; y1=&quot;972.4&quot; x2=&quot;329.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;331.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;342.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;352.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;362.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;373.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;383.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;383.6&quot; y1=&quot;972.4&quot; x2=&quot;391.6&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;394.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;404.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;414.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;414.8&quot; y1=&quot;972.4&quot; x2=&quot;422.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;425.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;425.2&quot; y1=&quot;972.4&quot; x2=&quot;433.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;435.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;446.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;456.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;466.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;466.8&quot; y1=&quot;972.4&quot; x2=&quot;474.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;477.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;477.2&quot; y1=&quot;972.4&quot; x2=&quot;485.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;487.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;498.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;508.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;518.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;518.8&quot; y1=&quot;972.4&quot; x2=&quot;526.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;529.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;539.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;550.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;560.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;570.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;581.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;591.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;602.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;612.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;622.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;633.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;643.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;643.6&quot; y1=&quot;972.4&quot; x2=&quot;651.6&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;654.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;664.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;674.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;674.8&quot; y1=&quot;972.4&quot; x2=&quot;682.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;685.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;685.2&quot; y1=&quot;972.4&quot; x2=&quot;693.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;695.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;706.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;706.0&quot; y1=&quot;972.4&quot; x2=&quot;714.0&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;716.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;716.4&quot; y1=&quot;972.4&quot; x2=&quot;724.4&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;726.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;726.8&quot; y1=&quot;972.4&quot; x2=&quot;734.8&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;737.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;747.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;758.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;768.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;778.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;789.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;799.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;810.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;820.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;830.8&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;841.2&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;841.2&quot; y1=&quot;972.4&quot; x2=&quot;849.2&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-trunc&quot; x=&quot;851.6&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;line class=&quot;gl-truncslash&quot; x1=&quot;851.6&quot; y1=&quot;972.4&quot; x2=&quot;859.6&quot; y2=&quot;964.4&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;862.0&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;rect class=&quot;gl-miss&quot; x=&quot;872.4&quot; y=&quot;964.4&quot; width=&quot;8.0&quot; height=&quot;8.0&quot;/&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;24.0&quot; y=&quot;993.4&quot;&gt;raw aggregate 0/164 = 0.0% [0.0, 2.3]&lt;/text&gt;
&lt;text class=&quot;gl-arith&quot; x=&quot;454.0&quot; y=&quot;993.4&quot;&gt;fired-only 0/164 = 0.0% [0.0, 2.3]&lt;/text&gt;
&lt;text class=&quot;gl-zero&quot; x=&quot;24.0&quot; y=&quot;1013.4&quot;&gt;zero ghosts: fired-only cannot correct it&lt;/text&gt;
&lt;text class=&quot;gl-none&quot; x=&quot;454.0&quot; y=&quot;1013.4&quot;&gt;no recoveries in either denominator&lt;/text&gt;
&lt;line class=&quot;gl-rule&quot; x1=&quot;24&quot; y1=&quot;1022.3999999999999&quot; x2=&quot;904&quot; y2=&quot;1022.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-h2&quot; x=&quot;24.0&quot; y=&quot;1048.4&quot;&gt;Two denominator families. Only bogus-control-flow coincides.&lt;/text&gt;
&lt;text class=&quot;gl-colh&quot; x=&quot;314.0&quot; y=&quot;1074.4&quot;&gt;FIRED-ONLY (its own firing mask)&lt;/text&gt;
&lt;text class=&quot;gl-colh&quot; x=&quot;644.0&quot; y=&quot;1074.4&quot;&gt;FULL-N /164, A SEPARATE ROW&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;24.0&quot; y=&quot;1096.4&quot;&gt;cfg  4 &amp;#183; flatten_cfg&lt;/text&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;314.0&quot; y=&quot;1096.4&quot;&gt;2/139 = 1.4% [0.4, 5.1]&lt;/text&gt;
&lt;text class=&quot;gl-rowg&quot; x=&quot;644.0&quot; y=&quot;1096.4&quot;&gt;2/164 = 1.2% [0.3, 4.3]&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;24.0&quot; y=&quot;1118.4&quot;&gt;cfg  8 &amp;#183; bogus_control_flow&lt;/text&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;314.0&quot; y=&quot;1118.4&quot;&gt;1/164 = 0.6% [0.1, 3.4]&lt;/text&gt;
&lt;text class=&quot;gl-rowg&quot; x=&quot;644.0&quot; y=&quot;1118.4&quot;&gt;1/164 = 0.6% [0.1, 3.4]&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;24.0&quot; y=&quot;1140.4&quot;&gt;cfg  2 &amp;#183; constant_encryption&lt;/text&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;314.0&quot; y=&quot;1140.4&quot;&gt;0/157 = 0.0% [0.0, 2.4]&lt;/text&gt;
&lt;text class=&quot;gl-rowg&quot; x=&quot;644.0&quot; y=&quot;1140.4&quot;&gt;0/164 = 0.0% [0.0, 2.3]&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;24.0&quot; y=&quot;1162.4&quot;&gt;cfg  1 &amp;#183; string_encryption&lt;/text&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;314.0&quot; y=&quot;1162.4&quot;&gt;0/29 = 0.0% [0.0, 11.7]&lt;/text&gt;
&lt;text class=&quot;gl-rowg&quot; x=&quot;644.0&quot; y=&quot;1162.4&quot;&gt;not printed at full N&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1202.4&quot;&gt;Two of the three full-N denominators are not firing denominators at all. The full-N cells exist to show&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1222.4&quot;&gt;that at 0-2 successes the data establishes neither an ordering nor an equivalence; they are never drawn as&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1242.4&quot;&gt;whiskers on the fired-only points.&lt;/text&gt;
&lt;line class=&quot;gl-rule&quot; x1=&quot;24&quot; y1=&quot;1256.3999999999999&quot; x2=&quot;904&quot; y2=&quot;1256.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-h2&quot; x=&quot;24.0&quot; y=&quot;1280.4&quot;&gt;The same point estimate, carrying different amounts of information&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;314.0&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;314.0&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;314.0&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;0%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;371.1&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;371.1&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;371.1&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;2%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;428.3&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;428.3&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;428.3&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;4%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;485.4&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;485.4&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;485.4&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;6%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;542.6&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;542.6&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;542.6&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;8%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;599.7&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;599.7&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;599.7&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;10%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;656.9&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;656.9&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;656.9&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;12%&lt;/text&gt;
&lt;line class=&quot;gl-iwtick&quot; x1=&quot;714.0&quot; y1=&quot;1306.3999999999999&quot; x2=&quot;714.0&quot; y2=&quot;1388.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;714.0&quot; y=&quot;1406.4&quot; text-anchor=&quot;middle&quot;&gt;14%&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;300.0&quot; y=&quot;1327.4&quot; text-anchor=&quot;end&quot;&gt;string_encryption fired-only&lt;/text&gt;
&lt;line class=&quot;gl-iwbar&quot; x1=&quot;314.0&quot; y1=&quot;1322.4&quot; x2=&quot;648.3&quot; y2=&quot;1322.4&quot;/&gt;
&lt;line class=&quot;gl-iwcap&quot; x1=&quot;648.3&quot; y1=&quot;1316.4&quot; x2=&quot;648.3&quot; y2=&quot;1328.4&quot;/&gt;
&lt;circle class=&quot;gl-iwdot&quot; cx=&quot;314.0&quot; cy=&quot;1322.4&quot; r=&quot;4.5&quot;/&gt;
&lt;rect class=&quot;gl-chip&quot; x=&quot;656.3&quot; y=&quot;1314.8&quot; width=&quot;146.9&quot; height=&quot;18.9&quot;/&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;660.3&quot; y=&quot;1327.4&quot;&gt;0/29 [0.0, 11.7]&lt;/text&gt;
&lt;line class=&quot;gl-dstrip&quot; x1=&quot;314.0&quot; y1=&quot;1339.4&quot; x2=&quot;329.9&quot; y2=&quot;1339.4&quot;/&gt;
&lt;rect class=&quot;gl-chip&quot; x=&quot;333.9&quot; y=&quot;1332.7&quot; width=&quot;209.5&quot; height=&quot;17.6&quot;/&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;337.9&quot; y=&quot;1344.4&quot;&gt;denominator strip, n = 29&lt;/text&gt;
&lt;text class=&quot;gl-row&quot; x=&quot;300.0&quot; y=&quot;1371.4&quot; text-anchor=&quot;end&quot;&gt;constant_encryption fired-only&lt;/text&gt;
&lt;line class=&quot;gl-iwbar&quot; x1=&quot;314.0&quot; y1=&quot;1366.4&quot; x2=&quot;382.6&quot; y2=&quot;1366.4&quot;/&gt;
&lt;line class=&quot;gl-iwcap&quot; x1=&quot;382.6&quot; y1=&quot;1360.4&quot; x2=&quot;382.6&quot; y2=&quot;1372.4&quot;/&gt;
&lt;circle class=&quot;gl-iwdot&quot; cx=&quot;314.0&quot; cy=&quot;1366.4&quot; r=&quot;4.5&quot;/&gt;
&lt;rect class=&quot;gl-chip&quot; x=&quot;390.6&quot; y=&quot;1358.8&quot; width=&quot;146.9&quot; height=&quot;18.9&quot;/&gt;
&lt;text class=&quot;gl-rowb&quot; x=&quot;394.6&quot; y=&quot;1371.4&quot;&gt;0/157 [0.0, 2.4]&lt;/text&gt;
&lt;line class=&quot;gl-dstrip&quot; x1=&quot;314.0&quot; y1=&quot;1383.4&quot; x2=&quot;400.4&quot; y2=&quot;1383.4&quot;/&gt;
&lt;rect class=&quot;gl-chip&quot; x=&quot;404.4&quot; y=&quot;1376.7&quot; width=&quot;217.6&quot; height=&quot;17.6&quot;/&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;408.4&quot; y=&quot;1388.4&quot;&gt;denominator strip, n = 157&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1432.4&quot;&gt;Zero over 29 and zero over 157 are not the same zero &amp;#8212; the point estimate is the same, the information is&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1452.4&quot;&gt;not.&lt;/text&gt;
&lt;line class=&quot;gl-rule&quot; x1=&quot;24&quot; y1=&quot;1482.3999999999999&quot; x2=&quot;904&quot; y2=&quot;1482.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-h2&quot; x=&quot;24.0&quot; y=&quot;1506.4&quot;&gt;The staircase is the artifact: median re-exec by stacking depth&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1528.4&quot;&gt;depth = popcount(5 booleans) + 1[mba_rounds &amp;gt; 0], range 1-6&lt;/text&gt;
&lt;line class=&quot;gl-grid&quot; x1=&quot;106&quot; y1=&quot;1732.4&quot; x2=&quot;604&quot; y2=&quot;1732.4&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;96.0&quot; y=&quot;1737.4&quot; text-anchor=&quot;end&quot;&gt;0%&lt;/text&gt;
&lt;line class=&quot;gl-grid&quot; x1=&quot;106&quot; y1=&quot;1687.4&quot; x2=&quot;604&quot; y2=&quot;1687.4&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;96.0&quot; y=&quot;1692.4&quot; text-anchor=&quot;end&quot;&gt;2%&lt;/text&gt;
&lt;line class=&quot;gl-grid&quot; x1=&quot;106&quot; y1=&quot;1642.4&quot; x2=&quot;604&quot; y2=&quot;1642.4&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;96.0&quot; y=&quot;1647.4&quot; text-anchor=&quot;end&quot;&gt;4%&lt;/text&gt;
&lt;line class=&quot;gl-grid&quot; x1=&quot;106&quot; y1=&quot;1597.4&quot; x2=&quot;604&quot; y2=&quot;1597.4&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;96.0&quot; y=&quot;1602.4&quot; text-anchor=&quot;end&quot;&gt;6%&lt;/text&gt;
&lt;line class=&quot;gl-grid&quot; x1=&quot;106&quot; y1=&quot;1552.4&quot; x2=&quot;604&quot; y2=&quot;1552.4&quot;/&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;96.0&quot; y=&quot;1557.4&quot; text-anchor=&quot;end&quot;&gt;8%&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;106.0&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;1&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;205.6&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;2&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;305.2&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;3&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;404.8&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;4&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;504.4&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;5&lt;/text&gt;
&lt;text class=&quot;gl-tick&quot; x=&quot;604.0&quot; y=&quot;1756.4&quot; text-anchor=&quot;middle&quot;&gt;6&lt;/text&gt;
&lt;text class=&quot;gl-axis&quot; x=&quot;355.0&quot; y=&quot;1780.4&quot; text-anchor=&quot;middle&quot;&gt;stacking depth&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;106.0&quot; y=&quot;1800.4&quot;&gt;all three series read 0.0% from depth 4 on, so their marks coincide there&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1820.4&quot;&gt;Raw-aggregate and truncation-excluded are the same data, two denominators. The staircase is the artifact.&lt;/text&gt;
&lt;polyline class=&quot;gl-foser&quot; points=&quot;106.0,1732.4 205.6,1732.4 305.2,1732.4 404.8,1732.4 504.4,1732.4 604.0,1732.4&quot;/&gt;
&lt;polyline class=&quot;gl-dashser&quot; points=&quot;106.0,1586.1 205.6,1676.1 305.2,1685.1 404.8,1732.4 504.4,1732.4 604.0,1732.4&quot;/&gt;
&lt;polyline class=&quot;gl-rawser&quot; points=&quot;106.0,1678.4 205.6,1691.9 305.2,1691.9 404.8,1732.4 504.4,1732.4 604.0,1732.4&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;106.0&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;205.6&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;305.2&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;404.8&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;504.4&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;604.0&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;106.0&quot; cy=&quot;1586.1&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;205.6&quot; cy=&quot;1676.1&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;305.2&quot; cy=&quot;1685.1&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;404.8&quot; cy=&quot;1732.4&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;504.4&quot; cy=&quot;1732.4&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;604.0&quot; cy=&quot;1732.4&quot; r=&quot;4&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;106.0&quot; cy=&quot;1678.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;205.6&quot; cy=&quot;1691.9&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;305.2&quot; cy=&quot;1691.9&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;404.8&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;504.4&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;604.0&quot; cy=&quot;1732.4&quot; r=&quot;4.5&quot;/&gt;
&lt;circle class=&quot;gl-rawdot&quot; cx=&quot;632&quot; cy=&quot;1560.3999999999999&quot; r=&quot;4.5&quot;/&gt;
&lt;text class=&quot;gl-legorange&quot; x=&quot;644.0&quot; y=&quot;1565.4&quot;&gt;RAW-AGGREGATE median&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1583.4&quot;&gt;truncation INCLUDED&lt;/text&gt;
&lt;circle class=&quot;gl-dashdot&quot; cx=&quot;632&quot; cy=&quot;1608.3999999999999&quot; r=&quot;4&quot;/&gt;
&lt;text class=&quot;gl-legblue&quot; x=&quot;644.0&quot; y=&quot;1613.4&quot;&gt;truncation-EXCLUDED&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1631.4&quot;&gt;depth 1: 2.4% raw-aggregate&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1649.4&quot;&gt;vs 6.5% truncation-excluded&lt;/text&gt;
&lt;circle class=&quot;gl-fodot&quot; cx=&quot;632&quot; cy=&quot;1674.3999999999999&quot; r=&quot;4.5&quot;/&gt;
&lt;text class=&quot;gl-legblue&quot; x=&quot;644.0&quot; y=&quot;1679.4&quot;&gt;fired-only median&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1697.4&quot;&gt;0.0% at every depth&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1722.4&quot;&gt;87 of 95 obfuscated configs sit&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1740.4&quot;&gt;below 1% fired-only; max 3.12%&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1758.4&quot;&gt;(stock arm, not the D1C&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;644.0&quot; y=&quot;1776.4&quot;&gt;control&amp;#8217;s 1.3%).&lt;/text&gt;
&lt;line class=&quot;gl-rule&quot; x1=&quot;24&quot; y1=&quot;1828.3999999999999&quot; x2=&quot;904&quot; y2=&quot;1828.3999999999999&quot;/&gt;
&lt;text class=&quot;gl-quote&quot; x=&quot;24.0&quot; y=&quot;1854.4&quot;&gt;&amp;#8220;The material that did not take up the stain is still in the photograph.&amp;#8221;&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1880.4&quot;&gt;Clean baseline, same conditions: 12/164 = 7.3% [4.2, 12.4] raw; 12/152 = 7.9% [4.6, 13.3] non-truncated.&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1900.4&quot;&gt;Never drawn at 9.15% &amp;#8212; that is the D1C control&amp;#8217;s clean base, a different attacker.&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1926.4&quot;&gt;The placebo and string-encryption trays report the clean aggregate exactly: 12/164 in both, all 12 landing on&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1946.4&quot;&gt;never-fired functions. Set identity of the recovered ids is not claimed here.&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1972.4&quot;&gt;The ghost population is heterogeneous, and that heterogeneity is the finding: 158 ghosts under the placebo, 0&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;1992.4&quot;&gt;under bogus-control-flow, so the fired-only correction is severe on sparse transforms and absent on dense&lt;/text&gt;
&lt;text class=&quot;gl-note&quot; x=&quot;24.0&quot; y=&quot;2012.4&quot;&gt;ones. Aggregate and fired-only are printed at equal weight; neither is the headline.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;Each configuration&apos;s 164 functions, marked by what happened. The pale never-fired cells are the ghosts: counted at the clean rate, never touched by the transform. Firing ranges from 6 of 164 to all 164 across configurations, so the dilution is per-cell and no after-the-fact correction recovers it. Stock v1.5, clang-strict scorer, 8192-token window, x86/O2, seed 0xC0FFEE.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;config&lt;/th&gt;&lt;th&gt;transform&lt;/th&gt;&lt;th&gt;fired (byte-diff) /164&lt;/th&gt;&lt;th&gt;ghosts&lt;/th&gt;&lt;th&gt;analysed n&lt;/th&gt;&lt;th&gt;fired-only k/n&lt;/th&gt;&lt;th&gt;raw aggregate&lt;/th&gt;&lt;th&gt;recoveries that are ghosts&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 16&lt;/td&gt;&lt;td&gt;backend-marker (placebo)&lt;/td&gt;&lt;td&gt;6/164&lt;/td&gt;&lt;td&gt;158&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;0/6 = 0.0%&lt;/td&gt;&lt;td&gt;12/164 = 7.3%&lt;/td&gt;&lt;td&gt;12 of 12&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 1&lt;/td&gt;&lt;td&gt;string_encryption&lt;/td&gt;&lt;td&gt;29/164&lt;/td&gt;&lt;td&gt;135&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;0/29 = 0.0%&lt;/td&gt;&lt;td&gt;12/164 = 7.3%&lt;/td&gt;&lt;td&gt;12 of 12&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 4&lt;/td&gt;&lt;td&gt;flatten_cfg&lt;/td&gt;&lt;td&gt;139/164&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;130&lt;/td&gt;&lt;td&gt;2/139 = 1.4%&lt;/td&gt;&lt;td&gt;10/164 = 6.1%&lt;/td&gt;&lt;td&gt;8 of 10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 2&lt;/td&gt;&lt;td&gt;constant_encryption&lt;/td&gt;&lt;td&gt;157/164&lt;/td&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;151&lt;/td&gt;&lt;td&gt;0/157 = 0.0%&lt;/td&gt;&lt;td&gt;4/164 = 2.4%&lt;/td&gt;&lt;td&gt;4 of 4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 8&lt;/td&gt;&lt;td&gt;bogus_control_flow&lt;/td&gt;&lt;td&gt;164/164&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;158&lt;/td&gt;&lt;td&gt;1/164 = 0.6%&lt;/td&gt;&lt;td&gt;1/164 = 0.6%&lt;/td&gt;&lt;td&gt;0 of 1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cfg 14&lt;/td&gt;&lt;td&gt;heavy composite&lt;/td&gt;&lt;td&gt;164/164&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;122&lt;/td&gt;&lt;td&gt;0/164 = 0.0%&lt;/td&gt;&lt;td&gt;0/164 = 0.0%&lt;/td&gt;&lt;td&gt;0 of 0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;8&quot;&gt;Clean baseline, same conditions: 12/164 = 7.3% raw, 12/152 = 7.9% truncation-excluded. Interval-width pair: 0/29 [0.0, 11.7] vs 0/157 [0.0, 2.4], the same 0.0% carrying very different amounts of information.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;The never-fired population is wildly heterogeneous. Some configurations in our grid fire on every function and have no ghosts at all; sparse, heuristic-gated ones fire on a small minority and are almost entirely ghosts. The distortion therefore varies per cell, no rule of thumb corrects for it afterwards, and only the person who ran the transform can publish it.&lt;/p&gt;
&lt;p&gt;Conditioning on firing has a cost, and the cost is honest: the denominator shrinks and the confidence interval around the rate, the range the true value plausibly occupies, given how few functions were counted, widens with it. Zero successes out of two dozen functions and zero out of a hundred and fifty carry the same point estimate and very different amounts of information. The wide interval tells you the experiment was small, which the aggregate hid by padding the denominator.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The statistical idea is old, and it came from mutation testing, which solved the same problem decades ago with the Covered Mutation Score: score a mutant only over the tests that actually reach it, because a mutant no test covers tells you nothing about the suite. What is new here is the application, nobody had carried the covered-only discipline across into obfuscation-strength claims, where the uncovered population is a majority in some configurations and empty in others. Adversarial machine learning, the field whose accuracy-drop-under-attack number this one is shaped like, reached the same discipline from the other side: its evaluation-hygiene canon conditions attack success on the perturbations that were successfully generated.&lt;/span&gt;
&lt;p&gt;The same fix, pointed at our own grid, cost us a result we had already written down.&lt;/p&gt;
&lt;p&gt;A word on structure, because the rest leans on it: the grid is a 96-configuration factorial of our own obfuscation toggles, each run over the same 164 functions, 95 obfuscated configurations plus the clean baseline, which is itself a point inside the grid, so every grid-wide statistic below is computed over 95. A cell is one configuration’s number together with the population it was computed over; an arm or leg is a whole sub-experiment with its own model, scorer and window.&lt;/p&gt;
&lt;p&gt;Every cell in this section comes from one arm: the stock released LLM4Decompile v1.5 over 164 functions per configuration, scored with the strict clang-side re-executability scorer at an 8192-token context window, the amount of disassembly the model can read at once, on x86 binaries built at O2, the setting most shipped software uses, seed &lt;code&gt;0xC0FFEE&lt;/code&gt;. Read the raw aggregates and a clean story is sitting right there: control-flow flattening leaves recovery at 6.1% while bogus control flow crushes it to 0.6%. Ten to one. Injecting dead branches looks dramatically stronger than restructuring control flow, which is counterintuitive, publishable, and exactly the kind of result that makes a grid worth running. We wrote it into the table as a ranking.&lt;/p&gt;
&lt;p&gt;Conditioning both cells on firing collapses them into each other. Both land in the 0–1.4% band, and Fisher’s exact test, the right test when counts are small enough that a chi-squared approximation misbehaves, separates nothing.&lt;/p&gt;
&lt;p&gt;Which number you quote depends on the denominator you tested, so both belong in print. Across the full-164 cells, each transform’s fired-only successes carried over the whole corpus, every pairwise contrast returns p &amp;gt; 0.3, with a minimum of 0.50. Across the fired-only cells, where each transform carries its own denominator, the minimum falls to p = 0.22: control-flow flattening’s 2 of 139 against constant encryption’s 0 of 157, the third transform in the same collapsed band and the pair that comes nearest to separating anything. Attaching the roomier full-N figure to a fired-only cell is precisely the splice this piece exists to name, so it does not happen here. Neither figure buys an ordering. At two successes between the two cells, 0.22 is what the arithmetic returns when there is nothing there to find.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A slopegraph. On the left, the raw-aggregate column, control-flow flattening sits well above bogus control flow, an order-of-magnitude apart. Lines run to the right, the fired-only column, where every transform&apos;s point drops into a single narrow floor strip and the flattening-over-bogus ordering crosses and disappears. Wilson intervals on the fired-only points overlap heavily; the full-N cells sit in a separate labelled row so the two denominator families are never read off one axis.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-dissolution-slopegraph&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1558&quot; role=&quot;img&quot; aria-label=&quot;slopegraph: four obfuscation transforms drawn at their raw aggregate recovery on the left and at their fired-only recovery on the right; the ordering crosses and every cell collapses into a hatched no-opinion floor between zero and 1.4 percent, beneath a dashed clean-baseline rail at 7.9 percent&quot;&gt;&lt;style&gt;#fig-fnf-a1-dissolution-slopegraph [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-dissolution-slopegraph [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-dissolution-slopegraph [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-dissolution-slopegraph [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-dissolution-slopegraph [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-dissolution-slopegraph [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-dissolution-slopegraph [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-dissolution-slopegraph [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-dissolution-slopegraph [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-dissolution-slopegraph [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1558&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;defs&gt;
  &lt;pattern id=&quot;fnfa1f4-hatchpat&quot; width=&quot;7&quot; height=&quot;7&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;7&quot; stroke=&quot;#8a8f98&quot; stroke-width=&quot;1&quot;/&gt;
  &lt;/pattern&gt;
&lt;/defs&gt;
&lt;style&gt;
    :where(#fnfa1f4-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa1f4-title { font-size: 26px; font-weight: bold; letter-spacing: 0.04em; }
    .fnfa1f4-sub { font-size: 16px; fill: var(--comment); }
    .fnfa1f4-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f4-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa1f4-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa1f4-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f4-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa1f4-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa1f4-scope { font-size: 14px; fill: var(--comment); }
    .fnfa1f4-frame { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa1f4-tick { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa1f4-ticklab { font-size: 15px; fill: var(--comment); }
    .fnfa1f4-axtitle { font-size: 13px; fill: var(--comment); }
    .fnfa1f4-hatch { fill: url(#fnfa1f4-hatchpat); opacity: 0.34; }
    .fnfa1f4-bandedge { stroke: var(--comment); stroke-width: 1; stroke-dasharray: 2 4; }
    .fnfa1f4-swatchedge { fill: none; stroke: var(--comment); stroke-width: 1; }
    .fnfa1f4-bandlab { font-size: 14px; fill: var(--comment); letter-spacing: 0.12em; }
    .fnfa1f4-bandsub { font-size: 13px; fill: var(--comment); }
    .fnfa1f4-rail { stroke: var(--fg); stroke-width: 1.6; stroke-dasharray: 8 5; }
    .fnfa1f4-raillab { font-size: 15px; font-weight: bold; }
    .fnfa1f4-railsub { font-size: 14px; fill: var(--comment); }
    .fnfa1f4-colhead { font-size: 18px; font-weight: bold; letter-spacing: 0.08em; }
    .fnfa1f4-colsub { font-size: 14px; fill: var(--comment); }
    .fnfa1f4-slopeA { stroke: #e69f00; stroke-width: 2.2; }
    .fnfa1f4-slopeB { stroke: #56b4e9; stroke-width: 2.2; }
    .fnfa1f4-raw { fill: #e69f00; }
    .fnfa1f4-fired { fill: #56b4e9; }
    .fnfa1f4-whisk { stroke: #56b4e9; stroke-width: 1.8; }
    .fnfa1f4-leader { stroke: var(--comment); stroke-width: 1; stroke-dasharray: 3 3; }
    .fnfa1f4-lname { font-size: 15px; }
    .fnfa1f4-lval { font-size: 15px; fill: #e69f00; }
    .fnfa1f4-rval { font-size: 15px; fill: #56b4e9; }
    .fnfa1f4-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa1f4-pansub { font-size: 14px; fill: var(--comment); }
    .fnfa1f4-denname { font-size: 14px; }
    .fnfa1f4-denraw { stroke: #e69f00; stroke-width: 5; }
    .fnfa1f4-denfired { stroke: #56b4e9; stroke-width: 5; }
    .fnfa1f4-denlab { font-size: 13px; fill: var(--comment); }
    .fnfa1f4-fn { font-size: 15px; }
    .fnfa1f4-stat { font-size: 14px; }
    .fnfa1f4-verdict { font-size: 20px; font-weight: bold; fill: #d55e00; }
    .fnfa1f4-note { font-size: 13px; fill: var(--comment); }
    .fnfa1f4-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa1f4-root&quot;&gt;
&lt;text class=&quot;fnfa1f4-title&quot; x=&quot;24&quot; y=&quot;52&quot;&gt;THE DISSOLUTION SLOPEGRAPH&lt;/text&gt;
&lt;text class=&quot;fnfa1f4-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;Condition on firing and our own transform ranking dissolves: the ordering crosses and all&lt;/text&gt;
&lt;text class=&quot;fnfa1f4-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;four cells land on a 0&amp;#8211;1.4% floor. Same runs, same scorer, one denominator changed.&lt;/text&gt;
&lt;rect class=&quot;fnfa1f4-stripbg&quot; x=&quot;24&quot; y=&quot;122&quot; width=&quot;880&quot; height=&quot;152&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;38&quot; y=&quot;140&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;38&quot; y=&quot;161&quot;&gt;stock v1.5&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;38&quot; y=&quot;179&quot;&gt;(no fine-tune)&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;258&quot; y=&quot;140&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;258&quot; y=&quot;161&quot;&gt;clang-strict&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;258&quot; y=&quot;179&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;244&quot; y1=&quot;126&quot; x2=&quot;244&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;478&quot; y=&quot;140&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;478&quot; y=&quot;161&quot;&gt;8192&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;478&quot; y=&quot;179&quot;&gt;RoPE-extrap.&lt;/text&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;464&quot; y1=&quot;126&quot; x2=&quot;464&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;698&quot; y=&quot;140&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;698&quot; y=&quot;161&quot;&gt;clang x86 O2&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;698&quot; y=&quot;179&quot;&gt;seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;684&quot; y1=&quot;126&quot; x2=&quot;684&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;38&quot; y=&quot;206&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;38&quot; y=&quot;227&quot;&gt;llvm-objdump 22.1.6&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;38&quot; y=&quot;245&quot;&gt;-M att&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;258&quot; y=&quot;206&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;258&quot; y=&quot;227&quot;&gt;raw aggregate&lt;/text&gt;&lt;text class=&quot;fnfa1f4-slotval&quot; x=&quot;258&quot; y=&quot;245&quot;&gt;-&gt; fired-only&lt;/text&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;244&quot; y1=&quot;192&quot; x2=&quot;244&quot; y2=&quot;252&quot;/&gt;&lt;text class=&quot;fnfa1f4-slotlab&quot; x=&quot;478&quot; y=&quot;206&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa1f4-nrule&quot; x1=&quot;478&quot; y1=&quot;226&quot; x2=&quot;608&quot; y2=&quot;226&quot;/&gt;&lt;text class=&quot;fnfa1f4-nlab&quot; x=&quot;614&quot; y=&quot;231&quot;&gt;164 raw&lt;/text&gt;&lt;line class=&quot;fnfa1f4-nrule&quot; x1=&quot;478&quot; y1=&quot;242&quot; x2=&quot;501&quot; y2=&quot;242&quot;/&gt;&lt;text class=&quot;fnfa1f4-nlab&quot; x=&quot;614&quot; y=&quot;247&quot;&gt;29 fired (string)&lt;/text&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;464&quot; y1=&quot;192&quot; x2=&quot;464&quot; y2=&quot;252&quot;/&gt;&lt;line class=&quot;fnfa1f4-slotsep&quot; x1=&quot;32&quot; y1=&quot;190&quot; x2=&quot;896&quot; y2=&quot;190&quot;/&gt;&lt;text class=&quot;fnfa1f4-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;264&quot;&gt;floor, not ceiling &amp;#183; one modest 6.7B attacker &amp;#183; static/client-side tier&lt;/text&gt;
&lt;line class=&quot;fnfa1f4-frame&quot; x1=&quot;112&quot; y1=&quot;372&quot; x2=&quot;112&quot; y2=&quot;732&quot;/&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;732.0&quot; x2=&quot;112&quot; y2=&quot;732.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;738.0&quot;&gt;0%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;672.0&quot; x2=&quot;112&quot; y2=&quot;672.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;678.0&quot;&gt;2%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;612.0&quot; x2=&quot;112&quot; y2=&quot;612.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;618.0&quot;&gt;4%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;552.0&quot; x2=&quot;112&quot; y2=&quot;552.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;558.0&quot;&gt;6%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;492.0&quot; x2=&quot;112&quot; y2=&quot;492.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;498.0&quot;&gt;8%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;432.0&quot; x2=&quot;112&quot; y2=&quot;432.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;438.0&quot;&gt;10%&lt;/text&gt;&lt;line class=&quot;fnfa1f4-tick&quot; x1=&quot;105&quot; y1=&quot;372.0&quot; x2=&quot;112&quot; y2=&quot;372.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-ticklab&quot; text-anchor=&quot;end&quot; x=&quot;99&quot; y=&quot;378.0&quot;&gt;12%&lt;/text&gt;&lt;text class=&quot;fnfa1f4-axtitle&quot; x=&quot;40&quot; y=&quot;328&quot;&gt;re-exec pass@1&lt;/text&gt;&lt;text class=&quot;fnfa1f4-axtitle&quot; x=&quot;40&quot; y=&quot;344&quot;&gt;byte-exact working C&lt;/text&gt;
&lt;rect class=&quot;fnfa1f4-hatch&quot; x=&quot;360&quot; y=&quot;690.0&quot; width=&quot;272&quot; height=&quot;42.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-bandedge&quot; x1=&quot;360&quot; y1=&quot;690.0&quot; x2=&quot;632&quot; y2=&quot;690.0&quot;/&gt;
&lt;line class=&quot;fnfa1f4-slopeA&quot; x1=&quot;360&quot; y1=&quot;513.0&quot; x2=&quot;490.0&quot; y2=&quot;622.5&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeB&quot; x1=&quot;490.0&quot; y1=&quot;622.5&quot; x2=&quot;620&quot; y2=&quot;732.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeA&quot; x1=&quot;360&quot; y1=&quot;549.0&quot; x2=&quot;490.0&quot; y2=&quot;619.5&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeB&quot; x1=&quot;490.0&quot; y1=&quot;619.5&quot; x2=&quot;620&quot; y2=&quot;690.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeA&quot; x1=&quot;360&quot; y1=&quot;660.0&quot; x2=&quot;490.0&quot; y2=&quot;696.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeB&quot; x1=&quot;490.0&quot; y1=&quot;696.0&quot; x2=&quot;620&quot; y2=&quot;732.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeA&quot; x1=&quot;360&quot; y1=&quot;714.0&quot; x2=&quot;490.0&quot; y2=&quot;714.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-slopeB&quot; x1=&quot;490.0&quot; y1=&quot;714.0&quot; x2=&quot;620&quot; y2=&quot;714.0&quot;/&gt;
&lt;line class=&quot;fnfa1f4-rail&quot; x1=&quot;112&quot; y1=&quot;495.0&quot; x2=&quot;632&quot; y2=&quot;495.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-raillab&quot; x=&quot;640&quot; y=&quot;449&quot;&gt;CLEAN RAIL&lt;/text&gt;&lt;text class=&quot;fnfa1f4-railsub&quot; x=&quot;640&quot; y=&quot;466&quot;&gt;7.9% (12/152) [4.6,13.3]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-railsub&quot; x=&quot;640&quot; y=&quot;483&quot;&gt;truncation-excluded&lt;/text&gt;&lt;text class=&quot;fnfa1f4-railsub&quot; x=&quot;640&quot; y=&quot;500&quot;&gt;raw 7.3% (12/164)&lt;/text&gt;&lt;text class=&quot;fnfa1f4-railsub&quot; x=&quot;640&quot; y=&quot;517&quot;&gt;[4.2,12.4]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-railsub&quot; x=&quot;640&quot; y=&quot;534&quot;&gt;same 12, two denominators&lt;/text&gt;
&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;625.0&quot; y1=&quot;732.0&quot; x2=&quot;625.0&quot; y2=&quot;381.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;619.0&quot; y1=&quot;381.0&quot; x2=&quot;631.0&quot; y2=&quot;381.0&quot;/&gt;&lt;circle class=&quot;fnfa1f4-raw&quot; cx=&quot;360&quot; cy=&quot;513.0&quot; r=&quot;7&quot;/&gt;&lt;circle class=&quot;fnfa1f4-fired&quot; cx=&quot;625.0&quot; cy=&quot;732.0&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;620.0&quot; y1=&quot;720.0&quot; x2=&quot;620.0&quot; y2=&quot;579.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;614.0&quot; y1=&quot;579.0&quot; x2=&quot;626.0&quot; y2=&quot;579.0&quot;/&gt;&lt;circle class=&quot;fnfa1f4-raw&quot; cx=&quot;360&quot; cy=&quot;549.0&quot; r=&quot;7&quot;/&gt;&lt;circle class=&quot;fnfa1f4-fired&quot; cx=&quot;620.0&quot; cy=&quot;690.0&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;615.0&quot; y1=&quot;732.0&quot; x2=&quot;615.0&quot; y2=&quot;660.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;609.0&quot; y1=&quot;660.0&quot; x2=&quot;621.0&quot; y2=&quot;660.0&quot;/&gt;&lt;circle class=&quot;fnfa1f4-raw&quot; cx=&quot;360&quot; cy=&quot;660.0&quot; r=&quot;7&quot;/&gt;&lt;circle class=&quot;fnfa1f4-fired&quot; cx=&quot;615.0&quot; cy=&quot;732.0&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;620.0&quot; y1=&quot;729.0&quot; x2=&quot;620.0&quot; y2=&quot;630.0&quot;/&gt;&lt;line class=&quot;fnfa1f4-whisk&quot; x1=&quot;614.0&quot; y1=&quot;630.0&quot; x2=&quot;626.0&quot; y2=&quot;630.0&quot;/&gt;&lt;circle class=&quot;fnfa1f4-raw&quot; cx=&quot;360&quot; cy=&quot;714.0&quot; r=&quot;7&quot;/&gt;&lt;circle class=&quot;fnfa1f4-fired&quot; cx=&quot;620.0&quot; cy=&quot;714.0&quot; r=&quot;7&quot;/&gt;
&lt;text class=&quot;fnfa1f4-colhead&quot; text-anchor=&quot;middle&quot; x=&quot;360&quot; y=&quot;310&quot;&gt;RAW AGGREGATE&lt;/text&gt;&lt;text class=&quot;fnfa1f4-colsub&quot; text-anchor=&quot;middle&quot; x=&quot;360&quot; y=&quot;330&quot;&gt;all 164, truncation included&lt;/text&gt;&lt;text class=&quot;fnfa1f4-colsub&quot; text-anchor=&quot;middle&quot; x=&quot;360&quot; y=&quot;348&quot;&gt;the field&amp;#8217;s default reading&lt;/text&gt;&lt;text class=&quot;fnfa1f4-colhead&quot; text-anchor=&quot;middle&quot; x=&quot;630&quot; y=&quot;310&quot;&gt;FIRED-ONLY&lt;/text&gt;&lt;text class=&quot;fnfa1f4-colsub&quot; text-anchor=&quot;middle&quot; x=&quot;630&quot; y=&quot;330&quot;&gt;denominator = the firing mask&lt;/text&gt;&lt;text class=&quot;fnfa1f4-colsub&quot; text-anchor=&quot;middle&quot; x=&quot;630&quot; y=&quot;348&quot;&gt;the controlled reading&lt;/text&gt;
&lt;text class=&quot;fnfa1f4-lname&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;509.0&quot;&gt;string_encryption&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lval&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;528.0&quot;&gt;7.3% (12/164) [4.2,12.4]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lname&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;545.0&quot;&gt;flatten_cfg (CFF)&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lval&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;564.0&quot;&gt;6.1% (10/164) [3.3,10.9]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lname&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;656.0&quot;&gt;constant_encryption&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lval&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;675.0&quot;&gt;2.4% (4/164) [1.0,6.1]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lname&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;710.0&quot;&gt;bogus_control_flow (BCF)&lt;/text&gt;&lt;text class=&quot;fnfa1f4-lval&quot; text-anchor=&quot;end&quot; x=&quot;344&quot; y=&quot;729.0&quot;&gt;0.6% (1/164) [0.1,3.4]&lt;/text&gt;
&lt;line class=&quot;fnfa1f4-leader&quot; x1=&quot;634.0&quot; y1=&quot;732.0&quot; x2=&quot;634&quot; y2=&quot;775.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-rval&quot; x=&quot;640&quot; y=&quot;780.0&quot;&gt;string 0.0% (0/29) [0.0,11.7]&lt;/text&gt;&lt;line class=&quot;fnfa1f4-leader&quot; x1=&quot;629.0&quot; y1=&quot;690.0&quot; x2=&quot;634&quot; y2=&quot;681.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-rval&quot; x=&quot;640&quot; y=&quot;686.0&quot;&gt;CFF 1.4% (2/139) [0.4,5.1]&lt;/text&gt;&lt;line class=&quot;fnfa1f4-leader&quot; x1=&quot;624.0&quot; y1=&quot;732.0&quot; x2=&quot;634&quot; y2=&quot;745.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-rval&quot; x=&quot;640&quot; y=&quot;750.0&quot;&gt;const 0.0% (0/157) [0.0,2.4]&lt;/text&gt;&lt;line class=&quot;fnfa1f4-leader&quot; x1=&quot;629.0&quot; y1=&quot;714.0&quot; x2=&quot;634&quot; y2=&quot;715.0&quot;/&gt;&lt;text class=&quot;fnfa1f4-rval&quot; x=&quot;640&quot; y=&quot;720.0&quot;&gt;BCF 0.6% (1/164) [0.1,3.4]&lt;/text&gt;
&lt;rect class=&quot;fnfa1f4-hatch&quot; x=&quot;112&quot; y=&quot;758&quot; width=&quot;26&quot; height=&quot;16&quot;/&gt;&lt;rect class=&quot;fnfa1f4-swatchedge&quot; x=&quot;112&quot; y=&quot;758&quot; width=&quot;26&quot; height=&quot;16&quot;/&gt;&lt;path class=&quot;fnfa1f4-leader&quot; fill=&quot;none&quot; d=&quot;M 356 732 L 356 746 L 125 746 L 125 758&quot;/&gt;&lt;text class=&quot;fnfa1f4-bandlab&quot; x=&quot;150&quot; y=&quot;771&quot;&gt;NO OPINION AT THIS n&lt;/text&gt;&lt;text class=&quot;fnfa1f4-bandsub&quot; x=&quot;150&quot; y=&quot;789&quot;&gt;0&amp;#8211;2 successes per cell: no ordering, no equivalence&lt;/text&gt;
&lt;text class=&quot;fnfa1f4-panhead&quot; x=&quot;24&quot; y=&quot;856&quot;&gt;DENOMINATOR STRIPS &amp;#8212; PHYSICAL LENGTH = n&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;880&quot;&gt;The raw column and the fired-only column are not the same population. Only bogus_control_flow&apos;s firing&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;899&quot;&gt;mask happens to equal 164, and only because it fires on every function in the corpus.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-denname&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;937&quot;&gt;string_encryption&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denraw&quot; x1=&quot;300&quot; y1=&quot;932&quot; x2=&quot;540&quot; y2=&quot;932&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;937&quot;&gt;n = 164 raw&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denfired&quot; x1=&quot;300&quot; y1=&quot;950&quot; x2=&quot;342&quot; y2=&quot;950&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;955&quot;&gt;n = 29 fired&lt;/text&gt;&lt;text class=&quot;fnfa1f4-denname&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;979&quot;&gt;flatten_cfg (CFF)&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denraw&quot; x1=&quot;300&quot; y1=&quot;974&quot; x2=&quot;540&quot; y2=&quot;974&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;979&quot;&gt;n = 164 raw&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denfired&quot; x1=&quot;300&quot; y1=&quot;992&quot; x2=&quot;503&quot; y2=&quot;992&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;997&quot;&gt;n = 139 fired&lt;/text&gt;&lt;text class=&quot;fnfa1f4-denname&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1021&quot;&gt;constant_encryption&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denraw&quot; x1=&quot;300&quot; y1=&quot;1016&quot; x2=&quot;540&quot; y2=&quot;1016&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;1021&quot;&gt;n = 164 raw&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denfired&quot; x1=&quot;300&quot; y1=&quot;1034&quot; x2=&quot;530&quot; y2=&quot;1034&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;1039&quot;&gt;n = 157 fired&lt;/text&gt;&lt;text class=&quot;fnfa1f4-denname&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1063&quot;&gt;bogus_control_flow (BCF)&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denraw&quot; x1=&quot;300&quot; y1=&quot;1058&quot; x2=&quot;540&quot; y2=&quot;1058&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;1063&quot;&gt;n = 164 raw&lt;/text&gt;&lt;line class=&quot;fnfa1f4-denfired&quot; x1=&quot;300&quot; y1=&quot;1076&quot; x2=&quot;540&quot; y2=&quot;1076&quot;/&gt;&lt;text class=&quot;fnfa1f4-denlab&quot; x=&quot;552&quot; y=&quot;1081&quot;&gt;n = 164 fired&lt;/text&gt;&lt;text class=&quot;fnfa1f4-panhead&quot; x=&quot;24&quot; y=&quot;1114&quot;&gt;FULL-N ROW &amp;#8212; A DIFFERENT DENOMINATOR, NOT A FIRING DENOMINATOR&lt;/text&gt;&lt;text class=&quot;fnfa1f4-fn&quot; x=&quot;24&quot; y=&quot;1138&quot;&gt;CFF 1.2% (2/164) [0.3,4.3]  &amp;#183;  BCF 0.6% (1/164) [0.1,3.4]  &amp;#183;  const 0.0% (0/164) [0.0,2.3]&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1162&quot;&gt;The clean rail carries BOTH denominators: 7.9% (12/152) truncation-excluded and raw 7.3% (12/164) - the&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1181&quot;&gt;same 12 successes over two populations. The rail is DRAWN truncation-excluded because the fired-only&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1200&quot;&gt;cells below it are truncation-excluded too; printing both is what makes that choice visible instead of&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1219&quot;&gt;implied.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1254&quot;&gt;Printed for one purpose only: at 0-2 successes the data establishes neither an ordering nor an&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1273&quot;&gt;equivalence. These are NOT the whiskers drawn above -- two of these three denominators are not firing&lt;/text&gt;&lt;text class=&quot;fnfa1f4-pansub&quot; x=&quot;24&quot; y=&quot;1292&quot;&gt;denominators at all.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-stat&quot; x=&quot;24&quot; y=&quot;1327&quot;&gt;No pairwise contrast reaches p &amp;lt; 0.05. Fisher exact, two-sided: min p = 0.2197 (CFF 2/139 vs const&lt;/text&gt;&lt;text class=&quot;fnfa1f4-stat&quot; x=&quot;24&quot; y=&quot;1346&quot;&gt;0/157) on the FIRED-ONLY denominators plotted here; min p = 0.4985 on full-N. The paper&apos;s &amp;#8220;all p&lt;/text&gt;&lt;text class=&quot;fnfa1f4-stat&quot; x=&quot;24&quot; y=&quot;1365&quot;&gt;&amp;gt; 0.3&amp;#8221; is a full-N statement and is not printed beside these cells.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-verdict&quot; x=&quot;24&quot; y=&quot;1406&quot;&gt;The authors killed their own headline.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-note&quot; x=&quot;24&quot; y=&quot;1432&quot;&gt;Interval width is information: 0/29 [0.0,11.7] and 0/157 [0.0,2.4] are the same point estimate carrying&lt;/text&gt;&lt;text class=&quot;fnfa1f4-note&quot; x=&quot;24&quot; y=&quot;1450&quot;&gt;different amounts of it. The two 0.0% cells share one point; their whiskers are dodged 5px so both are readable.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-note&quot; x=&quot;24&quot; y=&quot;1468&quot;&gt;string_encryption&apos;s raw aggregate is the clean raw cell count for count (12/164) -- the aggregate is measuring&lt;/text&gt;&lt;text class=&quot;fnfa1f4-note&quot; x=&quot;24&quot; y=&quot;1486&quot;&gt;the functions the transform never touched.&lt;/text&gt;&lt;text class=&quot;fnfa1f4-prov&quot; x=&quot;24&quot; y=&quot;1520&quot;&gt;Wilson 95% throughout. 1 clean + 95 obfuscated grid; these are four single-transform configs.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The ranking on the left is the raw aggregate; the floor on the right is the same transforms scored only over the functions they fired on. Conditioning collapses the ten-to-one gap into overlapping noise. Stock v1.5, clang-strict scorer, 8192-token window, x86/O2, seed 0xC0FFEE; Wilson 95% throughout.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;transform&lt;/th&gt;&lt;th&gt;raw k/n&lt;/th&gt;&lt;th&gt;raw %&lt;/th&gt;&lt;th&gt;fired-only k/n&lt;/th&gt;&lt;th&gt;fired-only %&lt;/th&gt;&lt;th&gt;full-N k/n&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;string_encryption&lt;/td&gt;&lt;td&gt;12/164&lt;/td&gt;&lt;td&gt;7.3%&lt;/td&gt;&lt;td&gt;0/29&lt;/td&gt;&lt;td&gt;0.0% [0.0, 11.7]&lt;/td&gt;&lt;td&gt;not published&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;flatten_cfg (CFF)&lt;/td&gt;&lt;td&gt;10/164&lt;/td&gt;&lt;td&gt;6.1%&lt;/td&gt;&lt;td&gt;2/139&lt;/td&gt;&lt;td&gt;1.4% [0.4, 5.1]&lt;/td&gt;&lt;td&gt;2/164&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;constant_encryption&lt;/td&gt;&lt;td&gt;4/164&lt;/td&gt;&lt;td&gt;2.4%&lt;/td&gt;&lt;td&gt;0/157&lt;/td&gt;&lt;td&gt;0.0% [0.0, 2.4]&lt;/td&gt;&lt;td&gt;0/164&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;bogus_control_flow (BCF)&lt;/td&gt;&lt;td&gt;1/164&lt;/td&gt;&lt;td&gt;0.6%&lt;/td&gt;&lt;td&gt;1/164&lt;/td&gt;&lt;td&gt;0.6% [0.1, 3.4]&lt;/td&gt;&lt;td&gt;1/164&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;clean (comparator)&lt;/td&gt;&lt;td&gt;12/164&lt;/td&gt;&lt;td&gt;7.3%&lt;/td&gt;&lt;td&gt;12/152&lt;/td&gt;&lt;td&gt;7.9% [4.6, 13.3]&lt;/td&gt;&lt;td&gt;, &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;6&quot;&gt;Pairwise Fisher exact, two-sided: minimum p = 0.22 on the fired-only denominators (CFF 2/139 vs const 0/157), 0.50 on full-N. No pairwise contrast separates. “All p &amp;gt; 0.3” is a full-N statement and is not printed beside fired-only cells.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;The dissolution runs in the direction that costs the most, and the arithmetic is small enough to check by hand. Bogus control flow fires on all 164 functions, so its 0.6% was already a fired-only number and does not move. Control-flow flattening fires on 139 and skips 25, and 8 of its 10 apparent successes sit in those 25, functions the pass never touched, recovering at 32% against this arm’s 7.3% clean rate, because they were the easy ones it declined. Scored over the 139 it reached, flattening reads 1.4% (2/139) against bogus control flow’s 0.6% (1/164).&lt;/p&gt;
&lt;p&gt;The collapse licenses one sentence and no more. It does not establish that the two transforms are equivalent: at the success counts these cells contain, the data pays for exactly no ordering established at this n, and an equivalence claim would need a powered equivalence test this cell cannot support.&lt;/p&gt;
&lt;p&gt;We killed the ranking. A protocol that only ever indicts other people’s numbers is a marketing document.&lt;/p&gt;
&lt;h2 id=&quot;a-no-op-that-passes&quot;&gt;A no-op that passes&lt;a class=&quot;heading-anchor&quot; href=&quot;#a-no-op-that-passes&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The ranking dissolution is a corollary. This is the wall.&lt;/p&gt;
&lt;p&gt;Somewhere in the grid sits a backend-marker pass: it writes a short tag into the object file recording which code generator produced it, a build stamp, and changes nothing about the program’s structure, its control flow, or its data. Its per-function results are worth stating exactly, because the exactness is the entire argument.&lt;/p&gt;
&lt;p&gt;They come from a different checkpoint than the ranking above, the fine-tuned clang-native 6.7B control attacker rather than the stock release, on the same strict clang-side scorer, the same 8192-token window, the same 164 functions at x86/O2, the same seed. Two checkpoints, so the two sections’ rates cannot be compared with each other.&lt;/p&gt;
&lt;p&gt;It fires on 6 of the 164 functions: six compiled objects whose bytes differ from the clean build. The other 158 are byte-identical, every byte, and you can put the two hex dumps side by side and look. Its fired-only recovery is 0 of 6. And its per-function outcome triples, recovered, compiled, truncated, are identical to the clean build on all 164 functions, with 0 differences and the same 15 recovered functions. Its aggregate recovery is therefore unchanged from that arm’s clean rate of 9.15%.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;Two full-width monospace hex columns side by side, the clean object and the placebo object for the same function, with no highlights anywhere, because every one of the 64 rows is identical and the two files share a sha256. Below them, a 164-cell strip encoding the per-function outcome difference between clean and placebo runs: every cell is blank, zero marks, because nothing changed. The verdict is drawn back into the identical bytes: a configuration that fires, and is scored as an obfuscator, while changing no outcome at all.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-byte-identical&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2487&quot; role=&quot;img&quot; aria-label=&quot;two columns of hexadecimal dump side by side, clean object on the left and placebo object on the right, with no differences highlighted anywhere because every byte matches; beneath them three aligned 164-cell strips showing 6 byte differences, zero outcome differences, and the same 15 re-executed functions in both arms&quot;&gt;&lt;style&gt;#fig-fnf-a1-byte-identical [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-byte-identical [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-byte-identical [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-byte-identical [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-byte-identical [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-byte-identical [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-byte-identical [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-byte-identical [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-byte-identical [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-byte-identical [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2487&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#fnfa1f3-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa1f3-title { font-size: 28px; font-weight: bold; letter-spacing: 0.05em; }
    .fnfa1f3-sub { font-size: 16px; fill: var(--comment); }
    .fnfa1f3-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f3-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa1f3-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa1f3-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f3-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa1f3-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa1f3-scope { font-size: 14px; fill: var(--comment); }
    .fnfa1f3-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa1f3-pansub { font-size: 14px; fill: var(--comment); }
    .fnfa1f3-colhead { font-size: 17px; font-weight: bold; letter-spacing: 0.08em; }
    .fnfa1f3-colsub { font-size: 13px; fill: var(--comment); }
    .fnfa1f3-off { font-size: 14px; fill: var(--comment); }
    .fnfa1f3-hex { font-size: 14px; }
    .fnfa1f3-gutter { stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f3-chip { fill: var(--bg); }
    .fnfa1f3-spine { font-size: 13px; fill: var(--comment); letter-spacing: 0.16em; }
    .fnfa1f3-identical { font-size: 21px; font-weight: bold; letter-spacing: 0.06em; }
    .fnfa1f3-mono13 { font-size: 13px; fill: var(--comment); }
    .fnfa1f3-rowlab { font-size: 14px; font-weight: bold; letter-spacing: 0.06em; }
    .fnfa1f3-rownote { font-size: 13px; fill: var(--comment); }
    .fnfa1f3-cempty { fill: none; stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f3-mfire { fill: #e69f00; }
    /* -mnone is the OUTCOME-DIFF row&apos;s mark class. The row renders no marks today because
       the measured outcome-difference count is 0 -- which is the figure&apos;s whole claim -- but
       the class name is chosen per cell from the data, so a single non-zero outcome would
       emit it. Deleting the rule would paint that first real difference as a black block.
       Kept deliberately: unrendered because the data says zero, not because it is dead. */
    .fnfa1f3-mnone { fill: none; stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f3-mrex { fill: #56b4e9; }
    .fnfa1f3-denom { stroke: var(--comment); stroke-width: 3; }
    .fnfa1f3-denlab { font-size: 13px; fill: var(--comment); }
    .fnfa1f3-verdict { font-size: 22px; font-weight: bold; }
    .fnfa1f3-scored { font-size: 17px; fill: #e69f00; }
    .fnfa1f3-arrow { stroke: #d55e00; stroke-width: 2; }
    .fnfa1f3-arrowhead { fill: #d55e00; }
    .fnfa1f3-arrowlab { font-size: 15px; fill: #d55e00; }
    .fnfa1f3-note { font-size: 14px; }
    .fnfa1f3-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa1f3-root&quot;&gt;
&lt;text class=&quot;fnfa1f3-title&quot; x=&quot;24&quot; y=&quot;54&quot;&gt;BYTE-IDENTICAL&lt;/text&gt;
&lt;text class=&quot;fnfa1f3-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;158 of 164 objects are byte-identical to clean, and all 164 outcomes are. The metric&lt;/text&gt;
&lt;text class=&quot;fnfa1f3-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;still reports this config as a working obfuscator at the full clean rate.&lt;/text&gt;
&lt;rect class=&quot;fnfa1f3-stripbg&quot; x=&quot;24&quot; y=&quot;120&quot; width=&quot;880&quot; height=&quot;152&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;38&quot; y=&quot;138&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;38&quot; y=&quot;159&quot;&gt;D1C 6.7B control&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;258&quot; y=&quot;138&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;258&quot; y=&quot;159&quot;&gt;clang-strict&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;258&quot; y=&quot;177&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;244&quot; y1=&quot;124&quot; x2=&quot;244&quot; y2=&quot;184&quot;/&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;478&quot; y=&quot;138&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;478&quot; y=&quot;159&quot;&gt;8192&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;478&quot; y=&quot;177&quot;&gt;RoPE-extrap.&lt;/text&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;464&quot; y1=&quot;124&quot; x2=&quot;464&quot; y2=&quot;184&quot;/&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;698&quot; y=&quot;138&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;698&quot; y=&quot;159&quot;&gt;clang x86 O2&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;698&quot; y=&quot;177&quot;&gt;seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;684&quot; y1=&quot;124&quot; x2=&quot;684&quot; y2=&quot;184&quot;/&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;38&quot; y=&quot;204&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;38&quot; y=&quot;225&quot;&gt;llvm-objdump 22.1.6&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;38&quot; y=&quot;243&quot;&gt;-M att&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;258&quot; y=&quot;204&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;258&quot; y=&quot;225&quot;&gt;aggregate&lt;/text&gt;&lt;text class=&quot;fnfa1f3-slotval&quot; x=&quot;258&quot; y=&quot;243&quot;&gt;truncation 0.0%&lt;/text&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;244&quot; y1=&quot;190&quot; x2=&quot;244&quot; y2=&quot;250&quot;/&gt;&lt;text class=&quot;fnfa1f3-slotlab&quot; x=&quot;478&quot; y=&quot;204&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa1f3-nrule&quot; x1=&quot;478&quot; y1=&quot;224&quot; x2=&quot;608&quot; y2=&quot;224&quot;/&gt;&lt;text class=&quot;fnfa1f3-nlab&quot; x=&quot;614&quot; y=&quot;229&quot;&gt;164 functions&lt;/text&gt;&lt;line class=&quot;fnfa1f3-nrule&quot; x1=&quot;478&quot; y1=&quot;240&quot; x2=&quot;483&quot; y2=&quot;240&quot;/&gt;&lt;text class=&quot;fnfa1f3-nlab&quot; x=&quot;614&quot; y=&quot;245&quot;&gt;6 fired (byte diff)&lt;/text&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;464&quot; y1=&quot;190&quot; x2=&quot;464&quot; y2=&quot;250&quot;/&gt;&lt;line class=&quot;fnfa1f3-slotsep&quot; x1=&quot;32&quot; y1=&quot;188&quot; x2=&quot;896&quot; y2=&quot;188&quot;/&gt;&lt;text class=&quot;fnfa1f3-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;262&quot;&gt;floor, not ceiling &amp;#183; one modest 6.7B attacker &amp;#183; static/client-side tier&lt;/text&gt;
&lt;text class=&quot;fnfa1f3-panhead&quot; x=&quot;24&quot; y=&quot;300&quot;&gt;PANEL 1 &amp;#183; BYTE IDENTITY &amp;#183; n = 1 OBJECT OF THE 158 THAT ARE BYTE-IDENTICAL&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;324&quot;&gt;xxd of func41.o, 1,016 bytes, 64 rows of 16. Offsets are shared and the ASCII gutter is omitted; both&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;343&quot;&gt;columns are the raw xxd hex field, rendered from the ledger. There are no diff highlights because there&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;362&quot;&gt;is no diff -- the absence of highlight is the graphic.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-colhead&quot; x=&quot;159&quot; y=&quot;411&quot;&gt;CLEAN&lt;/text&gt;&lt;text class=&quot;fnfa1f3-colsub&quot; x=&quot;159&quot; y=&quot;430&quot;&gt;cfg 0 &amp;#183; no transforms&lt;/text&gt;&lt;text class=&quot;fnfa1f3-colhead&quot; x=&quot;524&quot; y=&quot;411&quot;&gt;PLACEBO&lt;/text&gt;&lt;text class=&quot;fnfa1f3-colsub&quot; x=&quot;524&quot; y=&quot;430&quot;&gt;cfg 16 &amp;#183; backend_obfu ON&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;457&quot;&gt;00000000:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;457&quot;&gt;7f45 4c46 0201 0100 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;457&quot;&gt;7f45 4c46 0201 0100 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;474&quot;&gt;00000010:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;474&quot;&gt;0100 3e00 0100 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;474&quot;&gt;0100 3e00 0100 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;491&quot;&gt;00000020:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;491&quot;&gt;0000 0000 0000 0000 b801 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;491&quot;&gt;0000 0000 0000 0000 b801 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;508&quot;&gt;00000030:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;508&quot;&gt;0000 0000 4000 0000 0000 4000 0900 0100&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;508&quot;&gt;0000 0000 4000 0000 0000 4000 0900 0100&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;525&quot;&gt;00000040:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;525&quot;&gt;89f8 0faf c7c3 0063 6c61 6e67 2076 6572&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;525&quot;&gt;89f8 0faf c7c3 0063 6c61 6e67 2076 6572&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;542&quot;&gt;00000050:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;542&quot;&gt;7369 6f6e 2032 322e 312e 3620 2868 7474&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;542&quot;&gt;7369 6f6e 2032 322e 312e 3620 2868 7474&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;559&quot;&gt;00000060:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;559&quot;&gt;7073 3a2f 2f67 6974 6875 622e 636f 6d2f&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;559&quot;&gt;7073 3a2f 2f67 6974 6875 622e 636f 6d2f&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;576&quot;&gt;00000070:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;576&quot;&gt;6c6c 766d 2f6c 6c76 6d2d 7072 6f6a 6563&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;576&quot;&gt;6c6c 766d 2f6c 6c76 6d2d 7072 6f6a 6563&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;593&quot;&gt;00000080:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;593&quot;&gt;7420 6663 3461 6164 3762 3564 6233 6666&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;593&quot;&gt;7420 6663 3461 6164 3762 3564 6233 6666&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;610&quot;&gt;00000090:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;610&quot;&gt;6634 3231 6466 3961 3936 3337 3630 3562&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;610&quot;&gt;6634 3231 6466 3961 3936 3337 3630 3562&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;627&quot;&gt;000000a0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;627&quot;&gt;3963 6135 3636 3738 3831 2900 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;627&quot;&gt;3963 6135 3636 3738 3831 2900 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;644&quot;&gt;000000b0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;644&quot;&gt;1400 0000 0000 0000 017a 5200 0178 1001&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;644&quot;&gt;1400 0000 0000 0000 017a 5200 0178 1001&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;661&quot;&gt;000000c0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;661&quot;&gt;1b0c 0708 9001 0000 1400 0000 1c00 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;661&quot;&gt;1b0c 0708 9001 0000 1400 0000 1c00 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;678&quot;&gt;000000d0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;678&quot;&gt;0000 0000 0600 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;678&quot;&gt;0000 0000 0600 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;695&quot;&gt;000000e0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;695&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;695&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;712&quot;&gt;000000f0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;712&quot;&gt;0000 0000 0000 0000 3d00 0000 0400 f1ff&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;712&quot;&gt;0000 0000 0000 0000 3d00 0000 0400 f1ff&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;729&quot;&gt;00000100:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;729&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;729&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;746&quot;&gt;00000110:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;746&quot;&gt;0000 0000 0300 0200 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;746&quot;&gt;0000 0000 0300 0200 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;763&quot;&gt;00000120:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;763&quot;&gt;0000 0000 0000 0000 5400 0000 1200 0200&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;763&quot;&gt;0000 0000 0000 0000 5400 0000 1200 0200&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;780&quot;&gt;00000130:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;780&quot;&gt;0000 0000 0000 0000 0600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;780&quot;&gt;0000 0000 0000 0000 0600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;797&quot;&gt;00000140:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;797&quot;&gt;2000 0000 0000 0000 0200 0000 0200 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;797&quot;&gt;2000 0000 0000 0000 0200 0000 0200 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;814&quot;&gt;00000150:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;814&quot;&gt;0000 0000 0000 0000 002e 7465 7874 002e&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;814&quot;&gt;0000 0000 0000 0000 002e 7465 7874 002e&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;831&quot;&gt;00000160:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;831&quot;&gt;636f 6d6d 656e 7400 2e6e 6f74 652e 474e&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;831&quot;&gt;636f 6d6d 656e 7400 2e6e 6f74 652e 474e&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;848&quot;&gt;00000170:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;848&quot;&gt;552d 7374 6163 6b00 2e6c 6c76 6d5f 6164&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;848&quot;&gt;552d 7374 6163 6b00 2e6c 6c76 6d5f 6164&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;865&quot;&gt;00000180:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;865&quot;&gt;6472 7369 6700 2e72 656c 612e 6568 5f66&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;865&quot;&gt;6472 7369 6700 2e72 656c 612e 6568 5f66&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;882&quot;&gt;00000190:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;882&quot;&gt;7261 6d65 0066 756e 632e 6300 2e73 7472&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;882&quot;&gt;7261 6d65 0066 756e 632e 6300 2e73 7472&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;899&quot;&gt;000001a0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;899&quot;&gt;7461 6200 2e73 796d 7461 6200 6675 6e63&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;899&quot;&gt;7461 6200 2e73 796d 7461 6200 6675 6e63&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;916&quot;&gt;000001b0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;916&quot;&gt;3000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;916&quot;&gt;3000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;933&quot;&gt;000001c0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;933&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;933&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;950&quot;&gt;000001d0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;950&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;950&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;967&quot;&gt;000001e0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;967&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;967&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;984&quot;&gt;000001f0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;984&quot;&gt;0000 0000 0000 0000 4400 0000 0300 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;984&quot;&gt;0000 0000 0000 0000 4400 0000 0300 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1001&quot;&gt;00000200:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1001&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1001&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1018&quot;&gt;00000210:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1018&quot;&gt;5801 0000 0000 0000 5a00 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1018&quot;&gt;5801 0000 0000 0000 5a00 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1035&quot;&gt;00000220:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1035&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1035&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1052&quot;&gt;00000230:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1052&quot;&gt;0000 0000 0000 0000 0100 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1052&quot;&gt;0000 0000 0000 0000 0100 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1069&quot;&gt;00000240:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1069&quot;&gt;0600 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1069&quot;&gt;0600 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1086&quot;&gt;00000250:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1086&quot;&gt;4000 0000 0000 0000 0600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1086&quot;&gt;4000 0000 0000 0000 0600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1103&quot;&gt;00000260:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1103&quot;&gt;0000 0000 0000 0000 1000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1103&quot;&gt;0000 0000 0000 0000 1000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1120&quot;&gt;00000270:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1120&quot;&gt;0000 0000 0000 0000 0700 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1120&quot;&gt;0000 0000 0000 0000 0700 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1137&quot;&gt;00000280:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1137&quot;&gt;3000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1137&quot;&gt;3000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1154&quot;&gt;00000290:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1154&quot;&gt;4600 0000 0000 0000 6600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1154&quot;&gt;4600 0000 0000 0000 6600 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1171&quot;&gt;000002a0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1171&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1171&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1188&quot;&gt;000002b0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1188&quot;&gt;0100 0000 0000 0000 1000 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1188&quot;&gt;0100 0000 0000 0000 1000 0000 0100 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1205&quot;&gt;000002c0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1205&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1205&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1222&quot;&gt;000002d0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1222&quot;&gt;ac00 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1222&quot;&gt;ac00 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1239&quot;&gt;000002e0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1239&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1239&quot;&gt;0000 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1256&quot;&gt;000002f0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1256&quot;&gt;0000 0000 0000 0000 3300 0000 0100 0070&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1256&quot;&gt;0000 0000 0000 0000 3300 0000 0100 0070&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1273&quot;&gt;00000300:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1273&quot;&gt;0200 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1273&quot;&gt;0200 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1290&quot;&gt;00000310:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1290&quot;&gt;b000 0000 0000 0000 3000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1290&quot;&gt;b000 0000 0000 0000 3000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1307&quot;&gt;00000320:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1307&quot;&gt;0000 0000 0000 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1307&quot;&gt;0000 0000 0000 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1324&quot;&gt;00000330:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1324&quot;&gt;0000 0000 0000 0000 2e00 0000 0400 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1324&quot;&gt;0000 0000 0000 0000 2e00 0000 0400 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1341&quot;&gt;00000340:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1341&quot;&gt;4000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1341&quot;&gt;4000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1358&quot;&gt;00000350:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1358&quot;&gt;4001 0000 0000 0000 1800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1358&quot;&gt;4001 0000 0000 0000 1800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1375&quot;&gt;00000360:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1375&quot;&gt;0800 0000 0500 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1375&quot;&gt;0800 0000 0500 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1392&quot;&gt;00000370:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1392&quot;&gt;1800 0000 0000 0000 2000 0000 034c ff6f&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1392&quot;&gt;1800 0000 0000 0000 2000 0000 034c ff6f&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1409&quot;&gt;00000380:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1409&quot;&gt;0000 0080 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1409&quot;&gt;0000 0080 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1426&quot;&gt;00000390:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1426&quot;&gt;5801 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1426&quot;&gt;5801 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1443&quot;&gt;000003a0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1443&quot;&gt;0800 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1443&quot;&gt;0800 0000 0000 0000 0100 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1460&quot;&gt;000003b0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1460&quot;&gt;0000 0000 0000 0000 4c00 0000 0200 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1460&quot;&gt;0000 0000 0000 0000 4c00 0000 0200 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1477&quot;&gt;000003c0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1477&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1477&quot;&gt;0000 0000 0000 0000 0000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1494&quot;&gt;000003d0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1494&quot;&gt;e000 0000 0000 0000 6000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1494&quot;&gt;e000 0000 0000 0000 6000 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1511&quot;&gt;000003e0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1511&quot;&gt;0100 0000 0300 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1511&quot;&gt;0100 0000 0300 0000 0800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-off&quot; x=&quot;75&quot; y=&quot;1528&quot;&gt;000003f0:&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;159&quot; y=&quot;1528&quot;&gt;1800 0000 0000 0000&lt;/text&gt;&lt;text class=&quot;fnfa1f3-hex&quot; x=&quot;524&quot; y=&quot;1528&quot;&gt;1800 0000 0000 0000&lt;/text&gt;&lt;line class=&quot;fnfa1f3-gutter&quot; x1=&quot;504&quot; y1=&quot;443&quot; x2=&quot;504&quot; y2=&quot;1534&quot;/&gt;&lt;rect class=&quot;fnfa1f3-chip&quot; x=&quot;491.4&quot; y=&quot;866.0&quot; width=&quot;19.0&quot; height=&quot;253.0&quot;/&gt;&lt;text class=&quot;fnfa1f3-spine&quot; text-anchor=&quot;middle&quot; x=&quot;504&quot; y=&quot;992&quot; transform=&quot;rotate(-90 504 992)&quot;&gt;THIS FUNCTION IS 1 OF 158&lt;/text&gt;&lt;text class=&quot;fnfa1f3-identical&quot; text-anchor=&quot;middle&quot; x=&quot;463&quot; y=&quot;1562&quot;&gt;IDENTICAL. EVERY BYTE.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-mono13&quot; text-anchor=&quot;middle&quot; x=&quot;463&quot; y=&quot;1586&quot;&gt;sha256 of both objects: 41bacddf9d2ffeff9a7e61cf0ce07f4d9ebd4da07267d9d756ff016a250df647&lt;/text&gt;&lt;text class=&quot;fnfa1f3-mono13&quot; text-anchor=&quot;middle&quot; x=&quot;463&quot; y=&quot;1606&quot;&gt;byte-diff set verified by cmp over all 164 objects: {5, 26, 87, 147, 151, 158} &amp;#8212; func41 is not in it&lt;/text&gt;&lt;text class=&quot;fnfa1f3-panhead&quot; x=&quot;24&quot; y=&quot;1668&quot;&gt;PANEL 2 &amp;#183; OUTCOME IDENTITY &amp;#183; n = 164 (THE WHOLE GRID CORPUS)&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;1692&quot;&gt;Three reads of the same 164 functions, in func0-id order, aligned column for column. The middle row is&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;1711&quot;&gt;the audit: per-function (reexec, compiled, truncated) outcomes are identical to clean on all 164, so it&lt;/text&gt;&lt;text class=&quot;fnfa1f3-pansub&quot; x=&quot;24&quot; y=&quot;1730&quot;&gt;carries zero marks. The top row is what the field&apos;s firing test detects on the same objects.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rowlab&quot; x=&quot;62&quot; y=&quot;1767&quot;&gt;BYTE DIFF vs clean&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rownote&quot; x=&quot;320&quot; y=&quot;1767&quot;&gt;6 of 164 marked &amp;#8212; this is what &amp;#8220;fired&amp;#8221; means&lt;/text&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;62.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;66.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;71.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;76.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;81.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;86.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;91.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;96.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;101.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;106.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;111.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;115.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;120.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;125.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;130.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;135.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;140.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;145.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;150.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;155.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;160.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;164.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;169.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;174.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;179.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;184.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;189.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;194.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;199.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;204.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;209.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;213.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;218.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;223.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;228.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;233.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;238.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;243.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;248.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;253.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;258.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;262.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;267.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;272.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;277.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;282.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;287.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;292.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;297.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;302.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;307.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;311.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;316.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;321.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;326.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;331.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;336.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;341.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;346.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;351.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;356.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;360.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;365.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;370.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;375.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;380.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;385.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;390.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;395.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;400.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;405.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;409.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;414.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;419.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;424.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;429.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;434.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;439.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;444.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;449.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;454.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;458.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;463.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;468.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;473.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;478.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;483.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;488.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;493.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;498.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;503.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;507.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;512.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;517.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;522.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;527.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;532.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;537.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;542.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;547.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;552.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;556.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;561.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;566.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;571.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;576.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;581.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;586.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;591.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;596.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;601.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;605.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;610.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;615.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;620.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;625.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;630.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;635.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;640.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;645.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;650.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;654.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;659.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;664.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;669.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;674.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;679.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;684.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;689.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;694.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;699.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;703.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;708.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;713.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;718.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;723.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;728.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;733.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;738.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;743.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;748.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;752.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;757.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;762.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;767.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;772.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;777.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;782.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;787.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;792.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;797.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;801.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;806.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;811.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;816.6&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;821.5&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;826.4&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;831.3&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mfire&quot; x=&quot;836.2&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;841.1&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;846.0&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;850.9&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;855.8&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;860.7&quot; y=&quot;1775&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;line class=&quot;fnfa1f3-denom&quot; x1=&quot;62&quot; y1=&quot;1803&quot; x2=&quot;865.6&quot; y2=&quot;1803&quot;/&gt;&lt;text class=&quot;fnfa1f3-denlab&quot; x=&quot;62&quot; y=&quot;1819&quot;&gt;n = 164 &amp;#8212; the denominator strip beneath each row is drawn at physical length n&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rowlab&quot; x=&quot;62&quot; y=&quot;1843&quot;&gt;OUTCOME DIFF vs clean&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rownote&quot; x=&quot;320&quot; y=&quot;1843&quot;&gt;0 of 164 marked &amp;#8212; (reexec, compiled, truncated)&lt;/text&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;62.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;66.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;71.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;76.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;81.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;86.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;91.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;96.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;101.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;106.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;111.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;115.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;120.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;125.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;130.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;135.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;140.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;145.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;150.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;155.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;160.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;164.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;169.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;174.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;179.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;184.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;189.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;194.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;199.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;204.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;209.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;213.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;218.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;223.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;228.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;233.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;238.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;243.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;248.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;253.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;258.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;262.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;267.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;272.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;277.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;282.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;287.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;292.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;297.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;302.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;307.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;311.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;316.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;321.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;326.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;331.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;336.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;341.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;346.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;351.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;356.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;360.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;365.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;370.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;375.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;380.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;385.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;390.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;395.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;400.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;405.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;409.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;414.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;419.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;424.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;429.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;434.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;439.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;444.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;449.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;454.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;458.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;463.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;468.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;473.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;478.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;483.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;488.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;493.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;498.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;503.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;507.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;512.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;517.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;522.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;527.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;532.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;537.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;542.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;547.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;552.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;556.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;561.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;566.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;571.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;576.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;581.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;586.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;591.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;596.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;601.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;605.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;610.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;615.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;620.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;625.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;630.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;635.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;640.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;645.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;650.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;654.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;659.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;664.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;669.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;674.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;679.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;684.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;689.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;694.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;699.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;703.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;708.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;713.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;718.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;723.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;728.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;733.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;738.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;743.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;748.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;752.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;757.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;762.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;767.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;772.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;777.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;782.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;787.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;792.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;797.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;801.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;806.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;811.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;816.6&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;821.5&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;826.4&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;831.3&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;836.2&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;841.1&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;846.0&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;850.9&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;855.8&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;860.7&quot; y=&quot;1851&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;line class=&quot;fnfa1f3-denom&quot; x1=&quot;62&quot; y1=&quot;1879&quot; x2=&quot;865.6&quot; y2=&quot;1879&quot;/&gt;&lt;text class=&quot;fnfa1f3-denlab&quot; x=&quot;62&quot; y=&quot;1895&quot;&gt;n = 164&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rowlab&quot; x=&quot;62&quot; y=&quot;1919&quot;&gt;RE-EXECUTED, BOTH ARMS&lt;/text&gt;&lt;text class=&quot;fnfa1f3-rownote&quot; x=&quot;320&quot; y=&quot;1919&quot;&gt;15 of 164 marked &amp;#8212; the same 15 func ids in each arm&lt;/text&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;62.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;66.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;71.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;76.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;81.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;86.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;91.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;96.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;101.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;106.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;111.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;115.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;120.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;125.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;130.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;135.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;140.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;145.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;150.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;155.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;160.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;164.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;169.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;174.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;179.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;184.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;189.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;194.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;199.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;204.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;209.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;213.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;218.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;223.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;228.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;233.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;238.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;243.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;248.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;253.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;258.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;262.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;267.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;272.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;277.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;282.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;287.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;292.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;297.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;302.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;307.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;311.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;316.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;321.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;326.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;331.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;336.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;341.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;346.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;351.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;356.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;360.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;365.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;370.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;375.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;380.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;385.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;390.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;395.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;400.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;405.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;409.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;414.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;419.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;424.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;429.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;434.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;439.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;444.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;449.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;454.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;458.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;463.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;468.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;473.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;478.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;483.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;488.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;493.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;498.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;503.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;507.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;512.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;517.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;522.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;527.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;532.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;537.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;542.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;547.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;552.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;556.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;561.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;566.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;571.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;576.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;581.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;586.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;591.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;596.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;601.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;605.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;610.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;615.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;620.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;625.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;630.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;635.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;640.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;645.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-mrex&quot; x=&quot;650.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;654.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;659.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;664.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;669.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;674.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;679.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;684.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;689.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;694.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;699.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;703.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;708.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;713.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;718.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;723.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;728.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;733.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;738.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;743.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;748.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;752.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;757.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;762.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;767.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;772.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;777.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;782.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;787.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;792.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;797.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;801.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;806.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;811.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;816.6&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;821.5&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;826.4&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;831.3&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;836.2&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;841.1&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;846.0&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;850.9&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;855.8&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;rect class=&quot;fnfa1f3-cempty&quot; x=&quot;860.7&quot; y=&quot;1927&quot; width=&quot;3.7&quot; height=&quot;18&quot;/&gt;&lt;line class=&quot;fnfa1f3-denom&quot; x1=&quot;62&quot; y1=&quot;1955&quot; x2=&quot;865.6&quot; y2=&quot;1955&quot;/&gt;&lt;text class=&quot;fnfa1f3-denlab&quot; x=&quot;62&quot; y=&quot;1971&quot;&gt;n = 164&lt;/text&gt;&lt;text class=&quot;fnfa1f3-denlab&quot; x=&quot;62&quot; y=&quot;1989&quot;&gt;func id 0 at the left edge, 163 at the right; every column is the same function in all three rows&lt;/text&gt;&lt;text class=&quot;fnfa1f3-verdict&quot; x=&quot;66&quot; y=&quot;2029&quot;&gt;obfuscation strength: aggregate indistinguishable&lt;/text&gt;&lt;text class=&quot;fnfa1f3-verdict&quot; x=&quot;66&quot; y=&quot;2057&quot;&gt;from clean baseline&lt;/text&gt;&lt;text class=&quot;fnfa1f3-scored&quot; x=&quot;66&quot; y=&quot;2087&quot;&gt;as scored by the field&amp;#8217;s metric: 9.15% (15/164) Wilson95 [5.6,14.5]&lt;/text&gt;&lt;text class=&quot;fnfa1f3-mono13&quot; x=&quot;66&quot; y=&quot;2111&quot;&gt;D1C fine-tuned clang-native 6.7B control (obfuscation-naive); clang-strict re-exec; window 8192 (RoPE-&lt;/text&gt;&lt;text class=&quot;fnfa1f3-mono13&quot; x=&quot;66&quot; y=&quot;2129&quot;&gt;extrapolated); clang, x86, O2; llvm-objdump (LLVM-22.1.6), -M att; seed 0xC0FFEE; N=164; truncation&lt;/text&gt;&lt;text class=&quot;fnfa1f3-mono13&quot; x=&quot;66&quot; y=&quot;2147&quot;&gt;0.0% &amp;#8212; identical to the clean baseline cell, count for count.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-arrowlab&quot; x=&quot;66&quot; y=&quot;2185&quot;&gt;computed over the bytes above &amp;#8212; the ones that did not change&lt;/text&gt;&lt;path class=&quot;fnfa1f3-arrow&quot; fill=&quot;none&quot; d=&quot;M 42 1650.8 L 42 1538.0&quot;/&gt;&lt;path class=&quot;fnfa1f3-arrow&quot; fill=&quot;none&quot; d=&quot;M 42 2193.0 L 42 1739.5&quot;/&gt;&lt;path class=&quot;fnfa1f3-arrowhead&quot; d=&quot;M 42 1530 l -6 12 l 12 0 z&quot;/&gt;&lt;text class=&quot;fnfa1f3-panhead&quot; x=&quot;24&quot; y=&quot;2217&quot;&gt;THE CONCESSION, MANDATORY&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2241&quot;&gt;The placebo&amp;#8217;s 6 firings are all on clean-non-recoverable functions: fired-only 0/6 [0.0,39.0],&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2263&quot;&gt;and clean on those same 6 is also 0/6 [0.0,39.0]. So this demonstrates the metric&amp;#8217;s BLINDNESS,&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2285&quot;&gt;not a powered negative control. At n = 6 the interval reaches 39%: there is almost no statistical power&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2307&quot;&gt;on the mechanism here.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2355&quot;&gt;The correct label is &amp;#8220;semantically inert / outcome-inert backend-marker&amp;#8221;. Never&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2377&quot;&gt;&amp;#8220;byte-inert&amp;#8221;: firing IS defined as a byte diff and this config genuinely perturbs 6 of 164&lt;/text&gt;&lt;text class=&quot;fnfa1f3-note&quot; x=&quot;24&quot; y=&quot;2399&quot;&gt;objects. What is inert is the outcome.&lt;/text&gt;&lt;text class=&quot;fnfa1f3-prov&quot; x=&quot;24&quot; y=&quot;2447&quot;&gt;Population: 1 clean + 95 obfuscated; the placebo is config 16 inside that grid, not a separate condition.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The placebo config&apos;s object next to the clean object for one function: byte-for-byte identical, same hash. Across all 164 functions the outcome differs in zero cases, yet the config&apos;s aggregate is the clean rate of 9.15% and the field&apos;s metric records it as a working obfuscator. It is outcome-inert, not byte-inert, firing is a byte diff, and it does perturb 6 of 164 objects; what is identical is the outcome. D1C control attacker, clang-strict scorer, 8192-token window, x86/O2.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;claim&lt;/th&gt;&lt;th&gt;as audited&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;the config hardens the binary&lt;/td&gt;&lt;td&gt;byte diff on 6 of 164 objects (func ids 5, 26, 87, 147, 151, 158); the other 158 are byte-identical to clean&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;recovery under the config is suppressed&lt;/td&gt;&lt;td&gt;per-function (reexec, compiled, truncated) identical to clean on all 164, 0 differences, same 15 recovered func ids, the number is the clean cell, 9.15% (15/164)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;it is a negative control for the metric&lt;/td&gt;&lt;td&gt;fired-only 0/6 [0.0, 39.0]; clean on those same 6 is also 0/6, all firings land on clean-non-recoverable functions, so it shows the metric’s blindness, not a powered null&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;displayed object (func41)&lt;/td&gt;&lt;td&gt;1,016 bytes; sha256 clean == placebo == 41bacddf…0df647; equal on all 64 hex rows; cmp of all 164 objects gives diffset 158&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;Two things about that 9.15% before anyone quotes it. It is low because of the scorer: score the same checkpoint on the same 164 clean functions with the permissive gcc-side scorer and the clean rate reads 15.9% (26/164), same model, same window, same functions, one scoring rule apart, which is why no clean rate in this series travels without the scorer that produced it. And the pass is aggregate-identical under the stock checkpoint too, the same 12 functions recovering with and without it, so the blindness below survives a change of attacker.&lt;/p&gt;
&lt;p&gt;The field’s standard metric reports no meaningful drop here, which is correct, and which is the problem: it had no way to distinguish “this transform does nothing” from “this transform does nothing detectable by this attacker on this corpus” from “this transform was never applied to most of the corpus.” All three read as the same scalar. A metric that cannot fail a no-op cannot certify a transform.&lt;/p&gt;
&lt;p&gt;What the configuration demonstrates is that blindness, and only that. All six functions it perturbs were already unrecoverable in the clean build, so the cell has close to no statistical power to detect an effect if one existed. It cannot serve as the protocol’s load-bearing negative control; sold as a powered null it would invert under the first competent reviewer.&lt;/p&gt;
&lt;h2 id=&quot;the-wall-the-fix-does-not-reach&quot;&gt;The wall the fix does not reach&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-wall-the-fix-does-not-reach&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Conditioning on firing fixes coverage. It does nothing whatsoever about the second confound, and the second confound is arguably worse because it is invisible from inside the metric.&lt;/p&gt;
&lt;p&gt;Neural decompilers have a context window. Feed one a disassembly listing longer than that window and the input is cut off; the model answers on a fragment, fails to produce compilable output, and the harness scores the instance as a failure. Which it is, a failure of the measurement apparatus, telling you only that the listing was long. Obfuscation passes that duplicate blocks or inject dispatch loops make listings much longer, so they push instances over the window and harvest failures the model never had a chance at. What moved was the truncation rate.&lt;/p&gt;
&lt;p&gt;The scale is larger than it sounds. In the o-mvll arm of our own grid, the same fine-tuned control attacker, the same strict clang-side scorer and the same 8192-token window as above, reading llvm-objdump’s rendering of the disassembly, exactly 1 of 164 functions came back working. As an aggregate that is roughly a 99% failure rate, and the field’s vocabulary would call it near-total deterrence. Stratified, it is 81.7% truncation (134 of 164) plus a fired-only recovery of 3.3% (1 of 30) on the functions the model saw whole, whose 95% interval of [0.6, 16.7] comfortably contains that arm’s own 9.15% clean rate.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;Per-function prompt token lengths plotted against a hard vertical rule at the context window. The 30 measured lengths spread from tens of tokens up to the budget. Everything past the rule is printed at faint 8% ink and labelled COUNTED AS A RECOVERY FAILURE. The censored functions are drawn explicitly as a pile stacked at the generation cap rather than as a fabricated spread, because their true lengths were never measured, the tokenizer pinned every one at the budget.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-window-wall&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2566&quot; role=&quot;img&quot; aria-label=&quot;two panels. Panel A: twelve beeswarm rows of per-function prompt token length on a log axis against a hard rule at 4096 tokens, where bogus control flow at O0 puts 139 of 164 functions past the rule. Panel B: the o-mvll arm&apos;s 30 measured lengths beside a block of 134 censored items pinned at the cap, and the surviving 3.3 percent cell whose interval crosses the 9.15 percent clean rail&quot;&gt;&lt;style&gt;#fig-fnf-a1-window-wall [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-window-wall [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-window-wall [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-window-wall [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-window-wall [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-window-wall [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-window-wall [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-window-wall [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-window-wall [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-window-wall [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2566&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#ww-root) text { font-family: var(--mono); fill: var(--fg); }
    .ww-title { font-size: 24px; font-weight: bold; }
    .ww-sub { font-size: 16px; fill: var(--comment); }
    .ww-panlab { font-size: 18px; font-weight: bold; }
    .ww-grouplab { font-size: 16px; font-weight: bold; }
    .ww-rowlab { font-size: 15px; }
    .ww-rowstat { font-size: 15px; fill: var(--comment); }
    .ww-tick { font-size: 15px; fill: var(--comment); }
    .ww-walllab { font-size: 15px; font-weight: bold; fill: #d55e00; }
    .ww-note { font-size: 15px; }
    .ww-caveat { font-size: 15px; fill: var(--comment); }
    .ww-slotlab { font-size: 14px; fill: var(--comment); }
    /* The three slot statuses are a VOCABULARY, not a list of what this figure
       happens to use: the class name is computed as -slot-{status} from the slot
       table. A status this figure has no instance of today therefore has no rendered
       element, and deleting its rule would make it paint with the SVG default (black
       fill) the moment a condition is flagged. Kept deliberately -- an unrendered
       rule here is a fallback, not dead craft. */
    .ww-slot-lit { font-size: 14px; fill: #56b4e9; }
    .ww-slot-grey { font-size: 14px; fill: var(--comment); }
    .ww-slot-verm { font-size: 14px; fill: #d55e00; }
    .ww-grid { stroke: var(--current-line); stroke-width: 1; }
    .ww-rule { stroke: var(--current-line); stroke-width: 1; }
    .ww-wall { stroke: #d55e00; stroke-width: 2.5; }
    .ww-past { fill: var(--fg); opacity: 0.08; }
    .ww-in { fill: #56b4e9; }
    .ww-out { fill: none; stroke: #56b4e9; stroke-width: 1.2; opacity: 0.55; }
    .ww-cens { fill: var(--comment); opacity: 0.75; }
    .ww-censbox { fill: none; stroke: var(--comment); stroke-width: 1.2; stroke-dasharray: 4 4; }
    .ww-railline { stroke: var(--comment); stroke-width: 1.6; stroke-dasharray: 6 5; }
    .ww-whisk { stroke: #56b4e9; stroke-width: 1.6; }
    .ww-dot { fill: #56b4e9; }
    .ww-lead { stroke: var(--comment); stroke-width: 1; stroke-dasharray: 3 4; }
    .ww-chip { fill: var(--bg); }
    .ww-prov { font-size: 14px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;ww-root&quot;&gt;
&lt;text class=&quot;ww-title&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;50.0&quot;&gt;The window wall&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;76.0&quot;&gt;Truncation is a hard positional threshold - and it is SCORED AS DETERRENCE.&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;98.0&quot;&gt;Two panels, two arms, two axes: truncation is a (window, disassembler, tokenizer)&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;120.0&quot;&gt;property, never a property of the transform.&lt;/text&gt;&lt;line class=&quot;ww-rule&quot; x1=&quot;24&quot; y1=&quot;140&quot; x2=&quot;904&quot; y2=&quot;140&quot;/&gt;&lt;text class=&quot;ww-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;170.0&quot;&gt;PANEL A - our faithful-family reconstruction (NEVER &quot;Table 5&quot;)&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;192.0&quot;&gt;Pluto-Obfuscator commit 64dcc49 on LLVM 14.0.6, GNU objdump, v1.5 tokenizer,&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;212.0&quot;&gt;opt-aware prompt, all 164 functions at O0-O3, 0 compile failures.&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;244.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;ww-slot-grey&quot; x=&quot;99.6&quot; y=&quot;244.0&quot;&gt;none - tokenizer-only measurement (v1.5 tokenizer)&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;267.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;ww-slot-grey&quot; x=&quot;82.8&quot; y=&quot;267.0&quot;&gt;n/a - the measured quantity is prompt length&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;477.6&quot; y=&quot;267.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;536.4&quot; y=&quot;267.0&quot;&gt;4096 native&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;290.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;99.6&quot; y=&quot;290.0&quot;&gt;Pluto-Obfuscator 64dcc49 on LLVM 14.0.6, O0-O3&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;511.2&quot; y=&quot;290.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;620.4&quot; y=&quot;290.0&quot;&gt;GNU objdump&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;313.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;133.2&quot; y=&quot;313.0&quot;&gt;all 164 functions per cell&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;336.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;40.8&quot; y=&quot;336.0&quot;&gt;164 x 4 opt levels = 656 prompt-length measurements (OURS)&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;362.0&quot;&gt;In one breath: window 4,096 tokens - disassembler GNU objdump - tokenizer v1.5.&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;384.0&quot;&gt;Our 656 counts PROMPT LENGTHS (164 x 4 opt levels, Pluto/LLVM-14.0.6). It is NOT&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;404.0&quot;&gt;Table 5&apos;s 656 recovery instances. Same arithmetic, different object.&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;324.6&quot; y=&quot;444.0&quot;&gt;100&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;547.1&quot; y=&quot;444.0&quot;&gt;1,000&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;683.4&quot; y=&quot;444.0&quot;&gt;4,096&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;769.7&quot; y=&quot;444.0&quot;&gt;10,000&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;836.7&quot; y=&quot;444.0&quot;&gt;20,000&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;444.0&quot;&gt;prompt length (tokens, log)&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;589.0&quot;&gt;O0&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;589.0&quot;&gt;  1/164   0.6%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;621.0&quot;&gt;O1&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;621.0&quot;&gt;  0/164   0.0%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;653.0&quot;&gt;O2&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;653.0&quot;&gt;  4/164   2.4%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;685.0&quot;&gt;O3&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;685.0&quot;&gt;  4/164   2.4%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;765.0&quot;&gt;O0&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;765.0&quot;&gt; 22/164  13.4%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;797.0&quot;&gt;O1&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;797.0&quot;&gt; 11/164   6.7%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;829.0&quot;&gt;O2&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;829.0&quot;&gt; 31/164  18.9%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;861.0&quot;&gt;O3&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;861.0&quot;&gt; 32/164  19.5%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;941.0&quot;&gt;O0&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;941.0&quot;&gt;139/164  84.8%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;973.0&quot;&gt;O1&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;973.0&quot;&gt; 39/164  23.8%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1005.0&quot;&gt;O2&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;1005.0&quot;&gt; 58/164  35.4%&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1037.0&quot;&gt;O3&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;end&quot; x=&quot;226.0&quot; y=&quot;1037.0&quot;&gt; 60/164  36.6%&lt;/text&gt;&lt;rect class=&quot;ww-past&quot; x=&quot;683.4&quot; y=&quot;504.0&quot; width=&quot;204.6&quot; height=&quot;544.0&quot;/&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;324.6&quot; y1=&quot;504.0&quot; x2=&quot;324.6&quot; y2=&quot;1048.0&quot;/&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;547.1&quot; y1=&quot;504.0&quot; x2=&quot;547.1&quot; y2=&quot;1048.0&quot;/&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;769.7&quot; y1=&quot;504.0&quot; x2=&quot;769.7&quot; y2=&quot;1048.0&quot;/&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;836.7&quot; y1=&quot;504.0&quot; x2=&quot;836.7&quot; y2=&quot;1048.0&quot;/&gt;&lt;line class=&quot;ww-wall&quot; x1=&quot;683.4&quot; y1=&quot;504.0&quot; x2=&quot;683.4&quot; y2=&quot;1048.0&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;322.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;334.7&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;350.7&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;355.7&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;388.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;400.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;401.7&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;409.2&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;410.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;423.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;426.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;445.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;448.1&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;448.7&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;452.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;458.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;460.0&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;460.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;462.4&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;462.6&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.5&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;468.0&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;469.5&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.7&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.6&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.0&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;479.0&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;479.4&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;479.4&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;479.8&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;480.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;480.7&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;480.9&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;481.9&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;482.2&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;482.8&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;484.1&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;484.1&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;484.7&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;487.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;489.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;492.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.3&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;496.3&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;496.5&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;496.6&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;497.9&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.7&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.8&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;500.3&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;501.6&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;504.3&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;504.5&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;507.1&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;507.1&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.0&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.9&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.0&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.1&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.2&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;513.1&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;513.2&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.4&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.8&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.6&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.8&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.9&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.6&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;520.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;520.5&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;521.6&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;521.9&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.0&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.2&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.5&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;525.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;526.2&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;526.7&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;526.9&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;527.1&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;527.6&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.5&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.7&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.8&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.0&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.0&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.6&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.9&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.0&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;535.2&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;535.8&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.8&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;538.4&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.3&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;540.3&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.5&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;544.1&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;544.3&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;545.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.4&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.2&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.6&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;554.5&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.9&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.4&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;557.7&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.4&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.6&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;561.3&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;565.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;569.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.7&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.7&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;573.2&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.9&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.3&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.8&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.1&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.2&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;584.6&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.3&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.1&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.0&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.7&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.4&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.5&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.9&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.1&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.3&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.7&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.7&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.2&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.0&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.3&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.4&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;610.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.0&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.5&quot; cy=&quot;579.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.5&quot; cy=&quot;594.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.8&quot; cy=&quot;574.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;612.4&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.3&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.8&quot; cy=&quot;594.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.0&quot; cy=&quot;573.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;621.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;626.4&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.6&quot; cy=&quot;589.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.8&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.5&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;672.6&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.9&quot; cy=&quot;584.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;341.4&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;358.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;360.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;362.5&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;366.3&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;373.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;384.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;385.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;388.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;393.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;395.4&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;396.3&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;399.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;401.7&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;402.5&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;403.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;404.2&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;405.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;406.7&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;407.6&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.4&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;413.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;413.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;413.5&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;416.9&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;419.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;421.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;423.1&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;425.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;427.5&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;429.1&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;432.7&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;433.9&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;434.9&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;437.3&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;437.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;439.1&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;440.8&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;441.7&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;442.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;442.0&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;443.4&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;444.3&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;444.8&quot; cy=&quot;605.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;446.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;448.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;453.9&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;454.4&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;455.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;457.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;460.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;462.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;463.3&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;463.5&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;464.4&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;464.9&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.3&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.5&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;468.2&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;469.1&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;469.7&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.0&quot; cy=&quot;605.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.8&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.9&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.4&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.4&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.4&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;477.6&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;478.0&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;478.0&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;481.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;482.2&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;485.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.0&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.1&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.1&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.1&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;490.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;490.4&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;492.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.5&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.2&quot; cy=&quot;605.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.3&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.7&quot; cy=&quot;605.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.0&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;497.9&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.7&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;504.9&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;506.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;507.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.0&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.1&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.4&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.0&quot; cy=&quot;626.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.1&quot; cy=&quot;605.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.7&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;516.3&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.8&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.1&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;520.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.3&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;527.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.7&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.2&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.1&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.6&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.3&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.8&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.2&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.3&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;537.4&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;537.4&quot; cy=&quot;606.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;544.9&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.8&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.5&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;551.4&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;551.6&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;552.2&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;552.5&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;558.3&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.3&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.8&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.3&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.6&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;564.9&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;566.0&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.9&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;571.2&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.0&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.7&quot; cy=&quot;611.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.0&quot; cy=&quot;626.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.3&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.7&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.7&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.0&quot; cy=&quot;621.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;594.1&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.5&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.7&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.6&quot; cy=&quot;616.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;341.4&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;362.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;366.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;373.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;384.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;402.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;403.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;403.8&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;405.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;413.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;416.9&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;421.6&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;423.4&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;425.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;433.9&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;438.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;439.7&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;442.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;444.3&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;446.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;450.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;454.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;454.6&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;455.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;455.6&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;460.7&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;464.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.6&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.8&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.2&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.4&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.1&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.3&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.0&quot; cy=&quot;637.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.0&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;480.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;481.3&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;482.8&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;487.2&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;488.5&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;490.4&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.3&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.5&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.2&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.8&quot; cy=&quot;637.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.8&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.0&quot; cy=&quot;637.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;496.8&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;498.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.5&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.7&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;500.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;501.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;501.9&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;504.8&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.4&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.8&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;506.1&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.1&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.1&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;511.3&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.4&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;516.1&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.1&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.9&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.1&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;521.7&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.1&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.3&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.1&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.6&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.7&quot; cy=&quot;637.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;525.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.4&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.7&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.7&quot; cy=&quot;638.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.7&quot; cy=&quot;658.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;530.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.8&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.9&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.6&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;537.2&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.6&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;540.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.2&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.2&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.3&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;545.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.1&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;547.4&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.0&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;552.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.5&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;558.4&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;564.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;567.8&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.9&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.5&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.6&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.3&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.9&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.5&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.6&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.8&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.8&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.7&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.6&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.1&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;591.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;591.2&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;591.5&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.7&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.7&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;597.3&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.7&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.6&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;603.7&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.6&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.9&quot; cy=&quot;643.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.8&quot; cy=&quot;658.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.6&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.7&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.0&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;621.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.4&quot; cy=&quot;653.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.4&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.2&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.3&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.9&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.0&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;740.1&quot; cy=&quot;648.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;341.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;362.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;366.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;373.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;384.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;403.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;403.8&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;405.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;405.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.4&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;413.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;416.9&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;423.4&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;425.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;433.9&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;438.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;438.2&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;442.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;442.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;444.3&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;446.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.7&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;450.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;454.6&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;455.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;455.6&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;460.7&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;464.4&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.6&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;465.8&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.0&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;470.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.0&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.2&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;471.4&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.1&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;472.9&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;475.0&quot; cy=&quot;669.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;480.9&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;481.3&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;482.8&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;485.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;487.2&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;488.5&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;490.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;491.3&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.1&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.3&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.5&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.2&quot; cy=&quot;669.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.8&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;494.8&quot; cy=&quot;669.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.0&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;496.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;498.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.5&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;499.7&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;500.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;501.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;501.9&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;504.8&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.8&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;506.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.1&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.1&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;510.4&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;511.3&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.4&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;516.1&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.9&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.1&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;521.7&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.1&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;523.6&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;525.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;527.1&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.4&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.4&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.7&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.7&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.7&quot; cy=&quot;669.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.7&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;530.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.6&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.6&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;540.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.2&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.3&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;547.4&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.0&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.5&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;558.4&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;558.7&quot; cy=&quot;690.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;564.9&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;567.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.0&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.6&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.3&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;575.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.1&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.4&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.6&quot; cy=&quot;690.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.8&quot; cy=&quot;670.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.8&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.1&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;591.0&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.8&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;599.3&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.6&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;603.7&quot; cy=&quot;675.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.9&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;610.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;612.1&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.3&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.3&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.4&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;624.7&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.9&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.3&quot; cy=&quot;685.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.2&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;682.7&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.5&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.9&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;740.1&quot; cy=&quot;680.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;322.6&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;334.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;350.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;355.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;388.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;409.2&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;491.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;495.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;513.5&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.8&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;524.0&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;524.6&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.4&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;532.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;532.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.5&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;537.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.3&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;540.8&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.4&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;547.4&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.5&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;554.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;557.2&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;557.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.6&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.5&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;561.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;561.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.8&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.8&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.8&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;567.6&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;569.0&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;571.0&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;575.6&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.4&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.4&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.9&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.1&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.8&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.5&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;584.5&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;584.8&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;587.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.8&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.9&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;591.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.9&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.9&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.9&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.3&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.5&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.6&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.6&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.2&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.4&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.4&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.6&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.6&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.0&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.9&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;610.0&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;610.5&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;610.9&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;612.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;612.8&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;612.9&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.7&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;614.5&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.0&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.1&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.2&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.8&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.1&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.2&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.3&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.6&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.7&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.5&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.6&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;625.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;625.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.9&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.4&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.3&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.3&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.9&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.2&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;634.0&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;634.0&quot; cy=&quot;749.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;636.2&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;639.5&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.7&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.0&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.2&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;649.2&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;649.8&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.5&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;651.2&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;653.6&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;660.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;660.9&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.6&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.2&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.9&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.7&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;669.8&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;673.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;676.0&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.6&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.4&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.8&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;680.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.6&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.0&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.4&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.9&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;689.0&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;689.2&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.9&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.2&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.2&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;700.0&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;700.8&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.7&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.0&quot; cy=&quot;765.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.6&quot; cy=&quot;755.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;713.1&quot; cy=&quot;770.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;714.6&quot; cy=&quot;750.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;714.9&quot; cy=&quot;770.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;737.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;742.1&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;749.5&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;776.3&quot; cy=&quot;760.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;450.0&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;486.3&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;492.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;493.6&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;497.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;502.2&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;506.8&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.6&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;516.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.8&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.3&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.6&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.5&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.0&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.6&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;525.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;526.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;527.8&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.0&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.1&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.3&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;529.5&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;530.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.0&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;532.2&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.1&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;533.2&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.2&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.7&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.9&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;535.3&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;535.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.2&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.2&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.7&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.4&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.1&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.9&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;547.6&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.2&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.5&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.1&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.3&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.9&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.9&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;551.2&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;554.6&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;557.2&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;557.8&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.1&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.0&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.5&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;564.0&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;564.4&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;565.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;569.3&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;575.9&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;575.9&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.3&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.1&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;579.2&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.6&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.0&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.0&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.5&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;583.1&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;583.6&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;583.7&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;583.7&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.7&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.0&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.3&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.3&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.4&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.3&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.2&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.7&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.1&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.2&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.3&quot; cy=&quot;782.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.0&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.6&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;599.3&quot; cy=&quot;802.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.0&quot; cy=&quot;781.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;603.9&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.3&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.5&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.8&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.3&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.8&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;614.2&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.4&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.7&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.7&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.0&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.3&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.7&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.4&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.8&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;639.4&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;641.1&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;641.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.7&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.0&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.2&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;649.6&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.0&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;652.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;653.1&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;653.5&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.8&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;659.1&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.7&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.7&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.6&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.5&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.5&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;668.3&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;672.9&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.0&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.9&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.6&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.7&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;680.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.6&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;682.2&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;690.8&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.3&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.6&quot; cy=&quot;787.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.7&quot; cy=&quot;802.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.9&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.8&quot; cy=&quot;797.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;700.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.7&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;718.5&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;738.4&quot; cy=&quot;792.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;449.5&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;477.0&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;487.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;489.4&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;502.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;503.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;508.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.0&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;518.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;520.0&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;521.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.4&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;536.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;540.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.7&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.7&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.9&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;544.9&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.8&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.4&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.7&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.7&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;551.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;553.7&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.4&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;561.3&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;567.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;569.2&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;572.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;573.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;573.5&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.3&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.8&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;579.0&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.5&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.6&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;583.9&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;584.9&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.4&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.2&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.7&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.5&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;594.1&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;594.2&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.8&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;597.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;597.9&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;598.9&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.8&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.9&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.4&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.7&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.8&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.5&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.2&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.8&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.9&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.1&quot; cy=&quot;813.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.3&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.8&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.9&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.3&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.4&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.5&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;621.8&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.2&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;624.5&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;624.7&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;626.3&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.2&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.1&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.9&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.8&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.0&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.2&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;635.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;636.2&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.8&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;639.9&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;645.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;647.9&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.0&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.9&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;652.8&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.5&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.6&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.1&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.3&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;659.3&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;660.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.6&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.6&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.0&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.5&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.9&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;671.5&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;672.0&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;672.7&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.5&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.7&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.2&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.6&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.2&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.8&quot; cy=&quot;834.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;680.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;682.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;686.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.6&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;690.4&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.5&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.5&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.5&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.5&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.6&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;700.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;703.6&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;703.7&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;711.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;714.2&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;720.3&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;720.7&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.3&quot; cy=&quot;819.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.4&quot; cy=&quot;834.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.8&quot; cy=&quot;814.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.6&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;729.1&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;737.2&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;738.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;742.1&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;752.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;762.7&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;765.9&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;769.3&quot; cy=&quot;829.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;773.0&quot; cy=&quot;824.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;253.6&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;259.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;290.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;295.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;304.2&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;319.6&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;448.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;476.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;488.3&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;492.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;502.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;506.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;512.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;517.6&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;520.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;531.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;535.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.6&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;541.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.4&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.1&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;547.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;548.7&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.1&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;550.7&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;551.4&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;553.8&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;558.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.0&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;560.9&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.4&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;562.5&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;567.2&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.9&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.3&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.4&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.6&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.8&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.9&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.4&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;581.8&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.6&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;584.4&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;587.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.1&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.8&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.1&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.2&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;597.6&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;599.4&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.8&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.9&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.3&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.6&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.8&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.4&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.2&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.5&quot; cy=&quot;845.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;609.1&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.5&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.4&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.5&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.9&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.9&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;621.7&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;625.0&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;625.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;625.4&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;626.5&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.2&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.7&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.8&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.0&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.3&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.0&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;632.6&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.0&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.2&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.4&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.4&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.7&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;648.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;649.8&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;650.6&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;652.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.3&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.5&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.8&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.2&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.6&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.9&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.6&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.9&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.0&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.9&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.8&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.0&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;671.9&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;672.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;673.8&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.3&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.2&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.6&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;676.3&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.8&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.3&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.5&quot; cy=&quot;866.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;684.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.0&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.3&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;690.4&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.9&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.1&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.1&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;693.9&quot; cy=&quot;846.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;702.7&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;703.7&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.1&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.9&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.6&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;715.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;720.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;721.2&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;721.3&quot; cy=&quot;851.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.2&quot; cy=&quot;866.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;729.4&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;737.5&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;739.1&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;747.8&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;753.2&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;764.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;765.7&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;769.9&quot; cy=&quot;861.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;770.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;779.1&quot; cy=&quot;856.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;505.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;511.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;511.7&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;522.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;534.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;539.8&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;626.8&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.7&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.7&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;652.5&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;652.8&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.3&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.0&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.7&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.9&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.8&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.7&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.0&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;669.7&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.6&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;671.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.5&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.7&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;683.5&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;683.9&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.6&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.0&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.1&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.0&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;690.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.1&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.7&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.2&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;696.6&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;696.8&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.6&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.6&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.2&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;702.6&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.8&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;706.5&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;706.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;706.9&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;707.4&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;707.7&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;708.3&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.0&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.0&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.9&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;711.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.1&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.6&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;714.3&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;716.7&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;719.6&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;721.7&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.9&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;724.1&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;724.5&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;724.7&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;725.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;725.2&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;727.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.6&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;729.7&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;730.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;730.5&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;731.1&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;732.5&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;732.6&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;733.6&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;733.8&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.6&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.8&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;735.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;736.1&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;736.8&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;737.2&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;737.2&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;738.0&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;738.6&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;740.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;741.2&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;741.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;743.4&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;744.7&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;744.8&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;744.9&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;745.2&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;745.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;746.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;747.7&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;747.9&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;750.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;755.2&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;755.5&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;755.9&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;756.9&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;757.0&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;757.1&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;757.3&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;757.8&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;758.0&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;758.3&quot; cy=&quot;946.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;759.6&quot; cy=&quot;925.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;761.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;761.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;762.3&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;763.7&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;765.0&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;768.2&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;769.3&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;772.9&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;773.2&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;775.2&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;775.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;776.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;779.8&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;780.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;780.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;781.2&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;783.9&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;784.2&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;785.3&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;788.1&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;788.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;790.3&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;796.7&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;799.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;799.7&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;800.0&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;802.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;802.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;803.1&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;804.1&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;804.6&quot; cy=&quot;926.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;805.8&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;806.9&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;807.5&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;807.7&quot; cy=&quot;946.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;810.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;812.3&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;816.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;821.3&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;822.5&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;826.1&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;829.4&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;829.6&quot; cy=&quot;931.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;833.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;833.5&quot; cy=&quot;941.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;841.2&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;851.3&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;863.5&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;868.4&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;883.5&quot; cy=&quot;936.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;409.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;422.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;428.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;519.7&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;524.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;543.1&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;546.0&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.1&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.5&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.5&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;552.2&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;552.3&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;554.8&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.2&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;556.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.4&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.5&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.7&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;565.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;566.4&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;566.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.0&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.6&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;571.2&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;573.3&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.0&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.9&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.2&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;576.5&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.9&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.6&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.8&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;582.1&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.2&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.5&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;588.1&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.4&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.9&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;590.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.9&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;593.6&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.9&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;597.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;599.5&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;599.7&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;600.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.1&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;603.1&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.8&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.9&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;604.9&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.8&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.3&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.3&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.8&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;614.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.4&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.5&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.6&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.2&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.6&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.4&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.8&quot; cy=&quot;957.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.4&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.9&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.8&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;623.8&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;624.5&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.9&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;629.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.5&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.3&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.8&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;634.1&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;635.9&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;636.4&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.5&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.3&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.6&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.9&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;641.3&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;645.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.1&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;651.3&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;654.4&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.4&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.8&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;659.3&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;660.8&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.7&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.8&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;662.7&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.0&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.3&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;668.7&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.3&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.9&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;671.3&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.0&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;676.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;676.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.2&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.7&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;679.1&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;689.0&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;690.3&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;691.8&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;696.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.2&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.5&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.5&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.9&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;701.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;701.7&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;701.7&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;703.9&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.9&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.6&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.6&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;710.7&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;711.9&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;713.3&quot; cy=&quot;958.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;714.9&quot; cy=&quot;978.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;718.5&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.2&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;722.5&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.4&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.3&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.9&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.5&quot; cy=&quot;963.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.7&quot; cy=&quot;978.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;733.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;736.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;742.2&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;743.2&quot; cy=&quot;973.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;748.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;763.1&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;768.7&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;775.9&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;803.8&quot; cy=&quot;968.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;409.6&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;422.4&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;428.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;524.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.5&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.4&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.2&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.0&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.9&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.2&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.9&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.6&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.4&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.7&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.4&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.9&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.1&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.1&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.4&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.8&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.4&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.2&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.3&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.8&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.6&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;614.1&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.2&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.5&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.5&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.6&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.4&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.2&quot; cy=&quot;989.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.6&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.4&quot; cy=&quot;989.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.4&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.5&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.7&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.7&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.1&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.5&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.6&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.8&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;634.0&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;636.4&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.2&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.6&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.7&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;639.7&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.9&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;641.7&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.4&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.6&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.4&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.2&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;651.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.3&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.5&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.8&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.5&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.7&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.0&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.7&quot; cy=&quot;989.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.4&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;662.5&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.6&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.0&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.2&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.8&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.6&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.0&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;669.3&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.2&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.7&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.0&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.4&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.1&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.1&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.2&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;680.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.3&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.4&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;683.0&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;683.3&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;684.2&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.5&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;686.8&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.1&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;689.8&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.7&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.0&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.6&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.6&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.6&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.7&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.7&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.5&quot; cy=&quot;990.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.2&quot; cy=&quot;1010.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.6&quot; cy=&quot;989.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.5&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.9&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.4&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.8&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.1&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.1&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;713.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;716.8&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;717.3&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;720.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.4&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.7&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.9&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.3&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;731.9&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;732.0&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.2&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.8&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;736.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;740.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;741.2&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;745.2&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;746.0&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;750.7&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;754.5&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;755.0&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;758.0&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;762.2&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;763.1&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;764.9&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.1&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.3&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.4&quot; cy=&quot;995.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.5&quot; cy=&quot;1010.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;774.3&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;776.4&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;821.3&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;824.3&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;826.4&quot; cy=&quot;1000.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;828.2&quot; cy=&quot;1005.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;408.8&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;409.6&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;420.9&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;422.4&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;428.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;509.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;515.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;524.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;528.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;542.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;549.5&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;555.8&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;559.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;563.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;568.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;570.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.0&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;574.9&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;577.9&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;578.6&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;580.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;585.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;586.7&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;589.4&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;592.9&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;595.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;596.1&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;601.1&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;602.4&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;605.8&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;606.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.2&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;607.3&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;608.8&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;611.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;613.6&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;614.1&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.2&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.5&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.5&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;615.6&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;616.4&quot; cy=&quot;1042.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;617.2&quot; cy=&quot;1021.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;618.6&quot; cy=&quot;1042.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;619.4&quot; cy=&quot;1021.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;620.4&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.5&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;622.7&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;627.7&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.1&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;628.5&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;630.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;631.6&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;633.8&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;634.0&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;636.4&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;637.2&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.6&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;638.7&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;639.7&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;640.9&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;641.7&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.4&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;642.6&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;644.4&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;646.2&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;651.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.5&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.8&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.5&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;656.7&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;657.0&quot; cy=&quot;1042.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;658.7&quot; cy=&quot;1021.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;661.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;662.5&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;663.6&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.0&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;664.2&quot; cy=&quot;1042.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;665.8&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;666.6&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;667.0&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;669.3&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.0&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;674.4&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.1&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.1&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;678.2&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;683.0&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;683.3&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;684.2&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;685.5&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;686.8&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;687.1&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;688.2&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;689.8&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;692.7&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.0&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;694.6&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;695.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.6&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;697.7&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.1&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;698.5&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;699.2&quot; cy=&quot;1042.5&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;701.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.5&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;704.9&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.4&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;705.8&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;707.2&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.1&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;709.1&quot; cy=&quot;1022.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;712.6&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;713.0&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;716.8&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;717.3&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;720.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;723.7&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;726.9&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;728.3&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;731.9&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;732.0&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.2&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;734.8&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;736.7&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;740.1&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;745.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;746.0&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;752.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;752.7&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;753.2&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;755.0&quot; cy=&quot;1042.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;759.0&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;762.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;763.1&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;764.9&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;766.5&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;774.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;776.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;776.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;810.2&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;821.3&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;825.4&quot; cy=&quot;1032.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;826.4&quot; cy=&quot;1037.0&quot; r=&quot;2.7&quot;/&gt;&lt;circle class=&quot;ww-out&quot; cx=&quot;828.2&quot; cy=&quot;1027.0&quot; r=&quot;2.7&quot;/&gt;&lt;rect class=&quot;ww-chip&quot; x=&quot;24.0&quot; y=&quot;533.6&quot; width=&quot;653.2&quot; height=&quot;22.4&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;548.0&quot;&gt;clean - no obfuscation: 9 of our 656 prompts (1.4%) over the window&lt;/text&gt;&lt;rect class=&quot;ww-chip&quot; x=&quot;24.0&quot; y=&quot;709.6&quot; width=&quot;739.6&quot; height=&quot;22.4&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;724.0&quot;&gt;control-flow flattening (fla): 96 of our 656 prompts (14.6%) over the window&lt;/text&gt;&lt;rect class=&quot;ww-chip&quot; x=&quot;24.0&quot; y=&quot;885.6&quot; width=&quot;701.2&quot; height=&quot;22.4&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;900.0&quot;&gt;bogus control flow (bcf): 296 of our 656 prompts (45.1%) over the window&lt;/text&gt;&lt;line class=&quot;ww-lead&quot; x1=&quot;883.5&quot; y1=&quot;950.0&quot; x2=&quot;883.5&quot; y2=&quot;1064.0&quot;/&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;end&quot; x=&quot;888.0&quot; y=&quot;1080.0&quot;&gt;32,450 tokens - the measured maximum (BCF / O0 / func_id 160,&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;end&quot; x=&quot;888.0&quot; y=&quot;1100.0&quot;&gt;2,408 asm lines) against the 4,096-token window&lt;/text&gt;&lt;text class=&quot;ww-walllab&quot; text-anchor=&quot;end&quot; x=&quot;673.4&quot; y=&quot;470.0&quot;&gt;4,096 - the native window&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;end&quot; x=&quot;888.0&quot; y=&quot;490.0&quot;&gt;past it: unseen by the model&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1126.0&quot;&gt;BCF at O0: 139 of 164 prompts (84.8%) overflow the window before the model reads a token.&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1150.0&quot;&gt;Table 5 published no truncation rates. That absence is the finding.&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1174.0&quot;&gt;The honest claim: Table 5&apos;s 9.76% BCF-O0 recovery cell corresponds to a regime where ~85% of&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1198.0&quot;&gt;BCF-O0 functions overflow the window under a faithful OLLVM-family compile. Family-level and&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1222.0&quot;&gt;version-caveated - codegen and tokenization drift across major LLVM versions could move&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1246.0&quot;&gt;per-function token lengths either way.&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1272.0&quot;&gt;The figure plan gives clean as 1.3%; that is a round-down of&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1296.0&quot;&gt;9 / our 656 = 1.372%, which is 1.4% at one decimal. The counts above are the primary record.&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1320.0&quot;&gt;Filled dot: inside the window. Open dot: past it, in the 8%-ink band - measured, and never seen&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1344.0&quot;&gt;by the model. The BAND is at 8% ink; the marks inside it are drawn OPEN at full stroke rather&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1368.0&quot;&gt;than at 8% ink, because 8%-ink dots are invisible at this column width and would delete the&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1392.0&quot;&gt;139-mark BCF-O0 row - the opposite of &quot;present, real, unseen&quot;. A documented deviation from the&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1416.0&quot;&gt;plan&apos;s &quot;everything beyond the window is printed at 8% ink&quot;.&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1440.0&quot;&gt;Axis extent is the measured maximum, 32,450 tokens. An internal result doc gives&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1464.0&quot;&gt;17,061 as the BCF-O0 maximum; 17 records exceed it, and 17,061 is a BCF O2/O3 value for&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1488.0&quot;&gt;func_id 10 - the first prompt to trip the tokenizer&apos;s own 16,384 warning. The preprint never&lt;/text&gt;&lt;text class=&quot;ww-caveat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1512.0&quot;&gt;prints 17,061, so this is a result-doc defect, not a defect in the published cell.&lt;/text&gt;&lt;line class=&quot;ww-rule&quot; x1=&quot;24&quot; y1=&quot;1552.0&quot; x2=&quot;904&quot; y2=&quot;1552.0&quot;/&gt;&lt;text class=&quot;ww-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1582.0&quot;&gt;PANEL B - the censored pile (o-mvll arm, our OLLVM-family calibration)&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1604.0&quot;&gt;A different arm, a different axis: 8192 window, llvm-objdump, clang + o-mvll passes.&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;1630.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;99.6&quot; y=&quot;1630.0&quot;&gt;D1C control&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;217.2&quot; y=&quot;1630.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;276.0&quot; y=&quot;1630.0&quot;&gt;clang-strict re-exec&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;469.2&quot; y=&quot;1630.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;528.0&quot; y=&quot;1630.0&quot;&gt;8192, generation budget 6144&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;1653.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;99.6&quot; y=&quot;1653.0&quot;&gt;clang-22.1.6 + o-mvll&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;301.2&quot; y=&quot;1653.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;410.4&quot; y=&quot;1653.0&quot;&gt;llvm-objdump&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;24.0&quot; y=&quot;1676.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;133.2&quot; y=&quot;1676.0&quot;&gt;fired-only, truncation-excluded&lt;/text&gt;&lt;text class=&quot;ww-slotlab&quot; x=&quot;418.8&quot; y=&quot;1676.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;ww-slot-lit&quot; x=&quot;435.6&quot; y=&quot;1676.0&quot;&gt;164 -&gt; 30 non-truncated&lt;/text&gt;&lt;text class=&quot;ww-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1702.0&quot;&gt;In one breath: window 8192 (budget 6144) - disassembler llvm-objdump - tokenizer v1.5.&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;327.7&quot; y=&quot;1748.0&quot;&gt;100&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;558.2&quot; y=&quot;1748.0&quot;&gt;1,000&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;739.9&quot; y=&quot;1748.0&quot;&gt;6,135&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1748.0&quot;&gt;prompt length (tokens, log)&lt;/text&gt;&lt;line class=&quot;ww-wall&quot; x1=&quot;740.0&quot; y1=&quot;1764.0&quot; x2=&quot;740.0&quot; y2=&quot;1816.0&quot;/&gt;&lt;rect class=&quot;ww-past&quot; x=&quot;740.0&quot; y=&quot;1764.0&quot; width=&quot;144.0&quot; height=&quot;52&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;254.3&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;283.1&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;294.8&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;357.8&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;459.8&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;466.0&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;655.9&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;662.3&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;670.3&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;675.2&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.4&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;677.8&quot; cy=&quot;1785.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;680.2&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;681.8&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;685.8&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;689.0&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;691.4&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;691.9&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;692.6&quot; cy=&quot;1785.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;693.1&quot; cy=&quot;1800.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;693.6&quot; cy=&quot;1780.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;704.9&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;706.5&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;708.7&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;714.4&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;724.0&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;725.9&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;738.5&quot; cy=&quot;1790.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;739.8&quot; cy=&quot;1795.0&quot; r=&quot;3.2&quot;/&gt;&lt;circle class=&quot;ww-in&quot; cx=&quot;739.8&quot; cy=&quot;1785.0&quot; r=&quot;3.2&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;752.0&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;755.9&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;759.8&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;763.7&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;767.6&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;771.5&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;775.4&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;779.3&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;783.2&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;787.1&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;791.0&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;794.9&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;798.8&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;802.7&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;806.6&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;810.5&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;814.4&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;818.3&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;822.2&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;826.1&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;830.0&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;833.9&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;837.8&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;841.7&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;845.6&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;849.5&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;853.4&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;857.3&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;861.2&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;865.1&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;869.0&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;872.9&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;876.8&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;880.7&quot; y=&quot;1768.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;752.0&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;755.9&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;759.8&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;763.7&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;767.6&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;771.5&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;775.4&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;779.3&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;783.2&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;787.1&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;791.0&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;794.9&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;798.8&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;802.7&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;806.6&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;810.5&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;814.4&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;818.3&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;822.2&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;826.1&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;830.0&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;833.9&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;837.8&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;841.7&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;845.6&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;849.5&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;853.4&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;857.3&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;861.2&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;865.1&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;869.0&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;872.9&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;876.8&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;880.7&quot; y=&quot;1780.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;752.0&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;755.9&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;759.8&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;763.7&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;767.6&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;771.5&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;775.4&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;779.3&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;783.2&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;787.1&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;791.0&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;794.9&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;798.8&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;802.7&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;806.6&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;810.5&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;814.4&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;818.3&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;822.2&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;826.1&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;830.0&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;833.9&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;837.8&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;841.7&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;845.6&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;849.5&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;853.4&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;857.3&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;861.2&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;865.1&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;869.0&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;872.9&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;876.8&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;880.7&quot; y=&quot;1792.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;752.0&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;755.9&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;759.8&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;763.7&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;767.6&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;771.5&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;775.4&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;779.3&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;783.2&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;787.1&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;791.0&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;794.9&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;798.8&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;802.7&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;806.6&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;810.5&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;814.4&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;818.3&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;822.2&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;826.1&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;830.0&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;833.9&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;837.8&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;841.7&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;845.6&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;849.5&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;853.4&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;857.3&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;861.2&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;865.1&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;869.0&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-cens&quot; x=&quot;872.9&quot; y=&quot;1804.0&quot; width=&quot;2.6&quot; height=&quot;8&quot;/&gt;&lt;rect class=&quot;ww-censbox&quot; x=&quot;747.0&quot; y=&quot;1763.0&quot; width=&quot;140.6&quot; height=&quot;54.0&quot;/&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1842.0&quot;&gt;30 non-truncated lengths, measured. 134 CENSORED: every truncated record is&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1862.0&quot;&gt;pinned at in_tokens = 6,135, the generation-budget cap (max non-truncated:&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1882.0&quot;&gt;6,134). They have no measured length, so drawing them as a spread would&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1902.0&quot;&gt;fabricate a distribution.&lt;/text&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1795.0&quot;&gt;164 items&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1815.0&quot;&gt;81.7% cut&lt;/text&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1958.0&quot;&gt;and the rate that survives, with its interval&lt;/text&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;236.0&quot; y1=&quot;1992.0&quot; x2=&quot;236.0&quot; y2=&quot;2040.0&quot;/&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;236.0&quot; y=&quot;2058.0&quot;&gt;0%&lt;/text&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;362.0&quot; y1=&quot;1992.0&quot; x2=&quot;362.0&quot; y2=&quot;2040.0&quot;/&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;362.0&quot; y=&quot;2058.0&quot;&gt;5%&lt;/text&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;488.0&quot; y1=&quot;1992.0&quot; x2=&quot;488.0&quot; y2=&quot;2040.0&quot;/&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;488.0&quot; y=&quot;2058.0&quot;&gt;10%&lt;/text&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;614.0&quot; y1=&quot;1992.0&quot; x2=&quot;614.0&quot; y2=&quot;2040.0&quot;/&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;614.0&quot; y=&quot;2058.0&quot;&gt;15%&lt;/text&gt;&lt;line class=&quot;ww-grid&quot; x1=&quot;740.0&quot; y1=&quot;1992.0&quot; x2=&quot;740.0&quot; y2=&quot;2040.0&quot;/&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;middle&quot; x=&quot;740.0&quot; y=&quot;2058.0&quot;&gt;20%&lt;/text&gt;&lt;text class=&quot;ww-tick&quot; text-anchor=&quot;start&quot; x=&quot;236.0&quot; y=&quot;2080.0&quot;&gt;re-executability (%), clang-strict&lt;/text&gt;&lt;line class=&quot;ww-railline&quot; x1=&quot;466.6&quot; y1=&quot;1992.0&quot; x2=&quot;466.6&quot; y2=&quot;2040.0&quot;/&gt;&lt;line class=&quot;ww-whisk&quot; x1=&quot;251.1&quot; y1=&quot;2018.0&quot; x2=&quot;656.8&quot; y2=&quot;2018.0&quot;/&gt;&lt;line class=&quot;ww-whisk&quot; x1=&quot;251.1&quot; y1=&quot;2010.0&quot; x2=&quot;251.1&quot; y2=&quot;2026.0&quot;/&gt;&lt;line class=&quot;ww-whisk&quot; x1=&quot;656.8&quot; y1=&quot;2010.0&quot; x2=&quot;656.8&quot; y2=&quot;2026.0&quot;/&gt;&lt;circle class=&quot;ww-dot&quot; cx=&quot;319.2&quot; cy=&quot;2018.0&quot; r=&quot;7&quot;/&gt;&lt;text class=&quot;ww-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1988.0&quot;&gt;o-mvll, 1/30&lt;/text&gt;&lt;text class=&quot;ww-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2022.0&quot;&gt;3.3%&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;476.6&quot; y=&quot;1984.0&quot;&gt;clean rail 9.15% (15/164) [5.6, 14.5]&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;770.0&quot; y=&quot;2023.0&quot;&gt;3.3% (1/30)&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;770.0&quot; y=&quot;2043.0&quot;&gt;[0.6, 16.7]&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2110.0&quot;&gt;The interval contains the clean base, so this cell establishes no recovery suppression at all.&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2134.0&quot;&gt;Printing 3.3% as a point deterrence result without its interval reverses the argument.&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2158.0&quot;&gt;Two denominators on one rate axis, both printed: 1/30 is the o-mvll arm&apos;s non-truncated count,&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2182.0&quot;&gt;15/164 is config-0 over all functions. Neither is a subset of the other&apos;s population.&lt;/text&gt;&lt;line class=&quot;ww-rule&quot; x1=&quot;24&quot; y1=&quot;2216.0&quot; x2=&quot;904&quot; y2=&quot;2216.0&quot;/&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2246.0&quot;&gt;Grid context, with its window&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2270.0&quot;&gt;Across the 95 obfuscated configs truncation ranges 0.0-93.9% (93.9% = 154/164, cfg66 and 15&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2294.0&quot;&gt;siblings) AT THE 8192 WINDOW. Not portable to the native-4096 legs: there the same configs&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2318.0&quot;&gt;truncate MORE, not less. A window control must recompute, not rescale.&lt;/text&gt;&lt;text class=&quot;ww-grouplab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2352.0&quot;&gt;Survivorship, both arms - the effect is attacker-selective, not a law&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2376.0&quot;&gt;stock v1.5 clean arm: recovered median 144 vs not-recovered 682 tokens,&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2400.0&quot;&gt;AUC 0.716, perm p = 0.041, on 12 recovered items.&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2424.0&quot;&gt;D1C control clean arm: 405 vs 732 tokens, AUC 0.627, perm p = 0.235:&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2448.0&quot;&gt;directional, not significant. Quoting only the significant arm would imply a general&lt;/text&gt;&lt;text class=&quot;ww-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2472.0&quot;&gt;survivorship law, so both are printed.&lt;/text&gt;&lt;text class=&quot;ww-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2512.0&quot;&gt;Panel A: 1,968 measurements (164 x 4 x 3), 0 compile failures.&lt;/text&gt;&lt;text class=&quot;ww-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2532.0&quot;&gt;Panel B: per-item recovery records, seed 0xC0FFEE.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;Prompt length against the context window. Functions past the rule are cut off and scored as recovery failures, so a truncation rate reads as deterrence. Under a faithful OLLVM-family compile, 84.8% of bogus-control-flow functions at O0 overflow the window, which is the regime a published 9.76% recovery cell was measured in, though that rate itself was never reported. Truncation is a property of the (window, disassembler, tokenizer) triple, never of the transform.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;arm&lt;/th&gt;&lt;th&gt;n&lt;/th&gt;&lt;th&gt;truncated (over window)&lt;/th&gt;&lt;th&gt;non-truncated&lt;/th&gt;&lt;th&gt;recovered&lt;/th&gt;&lt;th&gt;rate&lt;/th&gt;&lt;th&gt;window / disassembler&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Pluto/OLLVM, BCF at O0&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;139 (84.8%)&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;, &lt;/td&gt;&lt;td&gt;, &lt;/td&gt;&lt;td&gt;4,096 native / GNU objdump&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;o-mvll (D1C control)&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;134 (81.7%)&lt;/td&gt;&lt;td&gt;30&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;3.3% [0.6, 16.7]&lt;/td&gt;&lt;td&gt;8,192 / llvm-objdump&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;o-mvll clean comparator&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;15&lt;/td&gt;&lt;td&gt;9.15% [5.6, 14.5]&lt;/td&gt;&lt;td&gt;8,192 / llvm-objdump&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;7&quot;&gt;Per-cell truncation, Pluto family: bogus control flow overflows 139/164 (84.8%) at O0, longest prompt 32,450 tokens; control-flow flattening 22/164 (13.4%); clean 1/164. The 134 truncated o-mvll items are censored at the 6,135-token budget, their true lengths are unmeasured, so drawing them as a spread would fabricate a distribution.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;And a truncation rate is not a property of the transform. It is a property of the (window, disassembler, tokenizer) triple: the same configuration, disassembled by a different tool or tokenized by a different model, truncates at a different rate, and at a smaller window it truncates more. So a truncation rate cannot be carried across arms or rescaled between windows, it has to be recomputed inside each arm and printed on each cell, in the same breath as the recovery number it explains. Zero of the 37 papers do this. Neither did we, in the first cut of our own grid.&lt;/p&gt;
&lt;p&gt;The two confounds compound in a way worth naming. Coverage dilution pulls the aggregate up toward the clean rate by padding it with untested functions; truncation pushes it down by scoring unseen functions as failures. Both are population effects, both are invisible in the scalar, and they do not cancel in any predictable ratio.&lt;/p&gt;
&lt;p&gt;We can put a ratio on the dilution, what fraction of a configuration’s aggregate recovery comes from functions the transform never fired on, and across the 95 obfuscated configurations it is bimodal, two piles at the ends of the axis. 48 score zero: they fire on all 164 functions, so there is no ghost population to dilute anything, and that bucket absorbs the configurations where nothing recovered at all and the ratio is a 0/0 the code prints as zero. 43 score close to 1.0, meaning almost the entire aggregate is clean-rate contamination. Four sit mid-band near 0.47, and they are the cells whose only transform rewrites arithmetic into mixed boolean-arithmetic expressions, the one corner of the grid where the never-fired population is neither absent nor overwhelming. So the scalar diagnoses whether never-fired functions exist, and against an attacker crushed to near zero on the functions it does reach, that is the whole of its range.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A quantile dotplot of the 95 obfuscated configurations along the coverage-dilution axis, which runs from 0 to 1. The distribution is a barbell: a mass piled at 0.0 and a mass piled at 1.0, with almost nothing between. The four mid-band configurations near 0.47 are drawn and named individually. Rug ticks under each dot encode firing count. The configurations whose ratio is undefined, recovery of zero over a zero denominator, are drawn in a separate grey unmeasured register rather than folded into the pile at zero.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a1-barbell&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1637&quot; role=&quot;img&quot; aria-label=&quot;dotplot of the coverage-dilution scalar over 95 obfuscated configs: a pile of 43 dots at 1.0, four at about 0.47, four at zero, and a separate grey pen of 44 configs held off the axis behind a break because the scalar is undefined for them; beneath it a rug of firing counts per config&quot;&gt;&lt;style&gt;#fig-fnf-a1-barbell [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a1-barbell [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a1-barbell [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a1-barbell [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a1-barbell [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a1-barbell [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a1-barbell [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a1-barbell [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a1-barbell [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a1-barbell [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1637&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#fnfa1f6-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa1f6-title { font-size: 26px; font-weight: bold; letter-spacing: 0.04em; }
    .fnfa1f6-sub { font-size: 16px; fill: var(--comment); }
    .fnfa1f6-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f6-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa1f6-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa1f6-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f6-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa1f6-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa1f6-scope { font-size: 14px; fill: var(--comment); }
    .fnfa1f6-axis { stroke: var(--comment); stroke-width: 1.4; }
    .fnfa1f6-tick { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa1f6-ticklab { font-size: 14px; fill: var(--comment); }
    .fnfa1f6-axtitle { font-size: 15px; fill: var(--fg); }
    .fnfa1f6-break { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa1f6-dot { fill: #e69f00; }
    .fnfa1f6-mirage { fill: none; stroke: #d55e00; stroke-width: 2; }
    .fnfa1f6-pilenum { font-size: 21px; font-weight: bold; fill: #e69f00; }
    .fnfa1f6-pilelab { font-size: 14px; fill: var(--comment); }
    .fnfa1f6-leg { font-size: 14px; fill: var(--comment); }
    .fnfa1f6-undef { fill: none; stroke: var(--comment); stroke-width: 1.4; }
    .fnfa1f6-penfoot { stroke: var(--comment); stroke-width: 1.4; stroke-dasharray: 3 3; }
    .fnfa1f6-pennum { font-size: 21px; font-weight: bold; fill: var(--comment); }
    .fnfa1f6-penlab { font-size: 15px; fill: var(--comment); letter-spacing: 0.1em; }
    .fnfa1f6-pensub { font-size: 13px; fill: var(--comment); }
    .fnfa1f6-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa1f6-pansub { font-size: 14px; fill: var(--comment); }
    .fnfa1f6-ruglab { font-size: 14px; }
    .fnfa1f6-rugbase { stroke: var(--current-line); stroke-width: 1; }
    .fnfa1f6-rugm { stroke: #e69f00; stroke-width: 1.6; }
    .fnfa1f6-rugu { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa1f6-rugtick { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa1f6-rugval { font-size: 13px; fill: var(--comment); }
    .fnfa1f6-note { font-size: 14px; }
    .fnfa1f6-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa1f6-root&quot;&gt;
&lt;text class=&quot;fnfa1f6-title&quot; x=&quot;24&quot; y=&quot;52&quot;&gt;THE BARBELL, REFRAMED&lt;/text&gt;
&lt;text class=&quot;fnfa1f6-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;The field&amp;#8217;s dilution scalar has no middle because for 44 of 95 configs it has no value.&lt;/text&gt;
&lt;text class=&quot;fnfa1f6-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;Where it is defined, 43 of 51 sit at 1.00: the aggregate is all clean-rate contamination.&lt;/text&gt;
&lt;rect class=&quot;fnfa1f6-stripbg&quot; x=&quot;24&quot; y=&quot;118&quot; width=&quot;880&quot; height=&quot;152&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;38&quot; y=&quot;136&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;38&quot; y=&quot;157&quot;&gt;D1C 6.7B control&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;258&quot; y=&quot;136&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;258&quot; y=&quot;157&quot;&gt;clang-strict&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;258&quot; y=&quot;175&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;244&quot; y1=&quot;122&quot; x2=&quot;244&quot; y2=&quot;182&quot;/&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;478&quot; y=&quot;136&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;478&quot; y=&quot;157&quot;&gt;8192&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;478&quot; y=&quot;175&quot;&gt;RoPE-extrap.&lt;/text&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;464&quot; y1=&quot;122&quot; x2=&quot;464&quot; y2=&quot;182&quot;/&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;698&quot; y=&quot;136&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;698&quot; y=&quot;157&quot;&gt;clang x86 O2&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;698&quot; y=&quot;175&quot;&gt;seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;684&quot; y1=&quot;122&quot; x2=&quot;684&quot; y2=&quot;182&quot;/&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;38&quot; y=&quot;202&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;38&quot; y=&quot;223&quot;&gt;llvm-objdump 22.1.6&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;38&quot; y=&quot;241&quot;&gt;-M att&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;258&quot; y=&quot;202&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;258&quot; y=&quot;223&quot;&gt;aggregate, fired-only&lt;/text&gt;&lt;text class=&quot;fnfa1f6-slotval&quot; x=&quot;258&quot; y=&quot;241&quot;&gt;exclude_truncated=True&lt;/text&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;244&quot; y1=&quot;188&quot; x2=&quot;244&quot; y2=&quot;248&quot;/&gt;&lt;text class=&quot;fnfa1f6-slotlab&quot; x=&quot;478&quot; y=&quot;202&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa1f6-nrule&quot; x1=&quot;478&quot; y1=&quot;222&quot; x2=&quot;608&quot; y2=&quot;222&quot;/&gt;&lt;text class=&quot;fnfa1f6-nlab&quot; x=&quot;614&quot; y=&quot;227&quot;&gt;95 obfuscated configs&lt;/text&gt;&lt;line class=&quot;fnfa1f6-nrule&quot; x1=&quot;478&quot; y1=&quot;238&quot; x2=&quot;548&quot; y2=&quot;238&quot;/&gt;&lt;text class=&quot;fnfa1f6-nlab&quot; x=&quot;614&quot; y=&quot;243&quot;&gt;51 with a defined scalar&lt;/text&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;464&quot; y1=&quot;188&quot; x2=&quot;464&quot; y2=&quot;248&quot;/&gt;&lt;line class=&quot;fnfa1f6-slotsep&quot; x1=&quot;32&quot; y1=&quot;186&quot; x2=&quot;896&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa1f6-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;260&quot;&gt;floor, not ceiling &amp;#183; one modest 6.7B attacker &amp;#183; static/client-side tier&lt;/text&gt;
&lt;line class=&quot;fnfa1f6-axis&quot; x1=&quot;352&quot; y1=&quot;800&quot; x2=&quot;866&quot; y2=&quot;800&quot;/&gt;&lt;line class=&quot;fnfa1f6-tick&quot; x1=&quot;352.0&quot; y1=&quot;800&quot; x2=&quot;352.0&quot; y2=&quot;808&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;352.0&quot; y=&quot;826&quot;&gt;0.00&lt;/text&gt;&lt;line class=&quot;fnfa1f6-tick&quot; x1=&quot;480.5&quot; y1=&quot;800&quot; x2=&quot;480.5&quot; y2=&quot;808&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;480.5&quot; y=&quot;826&quot;&gt;0.25&lt;/text&gt;&lt;line class=&quot;fnfa1f6-tick&quot; x1=&quot;609.0&quot; y1=&quot;800&quot; x2=&quot;609.0&quot; y2=&quot;808&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;609.0&quot; y=&quot;826&quot;&gt;0.50&lt;/text&gt;&lt;line class=&quot;fnfa1f6-tick&quot; x1=&quot;737.5&quot; y1=&quot;800&quot; x2=&quot;737.5&quot; y2=&quot;808&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;737.5&quot; y=&quot;826&quot;&gt;0.75&lt;/text&gt;&lt;line class=&quot;fnfa1f6-tick&quot; x1=&quot;866.0&quot; y1=&quot;800&quot; x2=&quot;866.0&quot; y2=&quot;808&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;866.0&quot; y=&quot;826&quot;&gt;1.00&lt;/text&gt;&lt;text class=&quot;fnfa1f6-axtitle&quot; text-anchor=&quot;middle&quot; x=&quot;609&quot; y=&quot;848&quot;&gt;coverage-dilution scalar = (aggregate &amp;#8722; fired-only) / aggregate&lt;/text&gt;&lt;path class=&quot;fnfa1f6-break&quot; fill=&quot;none&quot; d=&quot;M 316 807 L 324 793&quot;/&gt;&lt;path class=&quot;fnfa1f6-break&quot; fill=&quot;none&quot; d=&quot;M 326 807 L 334 793&quot;/&gt;
&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;657&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;657&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;657&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;657&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;670&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;670&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;670&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;670&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;683&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;683&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;683&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;683&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;696&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;696&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;696&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;696&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;709&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;709&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;709&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;709&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;722&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;722&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;722&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;722&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;735&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;735&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;735&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;735&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;748&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;748&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;748&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;748&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;761&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;761&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;761&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;761&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;774&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;774&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;774&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;774&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;56&quot; y=&quot;787&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;69&quot; y=&quot;787&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;82&quot; y=&quot;787&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;95&quot; y=&quot;787&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;line class=&quot;fnfa1f6-penfoot&quot; x1=&quot;50&quot; y1=&quot;800&quot; x2=&quot;108&quot; y2=&quot;800&quot;/&gt;&lt;text class=&quot;fnfa1f6-pennum&quot; x=&quot;56&quot; y=&quot;611&quot;&gt;44&lt;/text&gt;&lt;text class=&quot;fnfa1f6-penlab&quot; x=&quot;56&quot; y=&quot;631&quot;&gt;UNDEFINED&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;56&quot; y=&quot;647&quot;&gt;no value on this axis&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;826&quot;&gt;Aggregate recovery is 0.00% on&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;844&quot;&gt;all 44, so the ratio has a zero&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;862&quot;&gt;denominator. The result file&apos;s&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;880&quot;&gt;0.0 is a GUARD and must not read&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;898&quot;&gt;as &quot;no dilution&quot;. These configs&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pensub&quot; x=&quot;40&quot; y=&quot;916&quot;&gt;fired on all 164 functions each.&lt;/text&gt;
&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;791.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-mirage&quot; cx=&quot;866.0&quot; cy=&quot;791.0&quot; r=&quot;8.0&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;781.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-mirage&quot; cx=&quot;866.0&quot; cy=&quot;781.0&quot; r=&quot;8.0&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;771.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-mirage&quot; cx=&quot;866.0&quot; cy=&quot;771.0&quot; r=&quot;8.0&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;761.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;751.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;741.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;731.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;721.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;711.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;701.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;691.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;681.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;671.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;661.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;651.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;641.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;631.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;621.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;611.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;601.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;591.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;581.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;571.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;561.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;551.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;541.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;531.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;521.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;511.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;501.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;491.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;481.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;471.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;461.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;451.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;441.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;431.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;421.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;411.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;401.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;391.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;381.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;866.0&quot; cy=&quot;371.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;593.4&quot; cy=&quot;791.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;593.4&quot; cy=&quot;781.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;595.2&quot; cy=&quot;771.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;595.2&quot; cy=&quot;761.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;352.0&quot; cy=&quot;791.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;352.0&quot; cy=&quot;781.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;352.0&quot; cy=&quot;771.0&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;352.0&quot; cy=&quot;761.0&quot; r=&quot;4.6&quot;/&gt;
&lt;text class=&quot;fnfa1f6-pilenum&quot; text-anchor=&quot;middle&quot; x=&quot;866&quot; y=&quot;351&quot;&gt;43&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilelab&quot; text-anchor=&quot;end&quot; x=&quot;878&quot; y=&quot;331&quot;&gt;at 1.00&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilenum&quot; text-anchor=&quot;middle&quot; x=&quot;594&quot; y=&quot;741&quot;&gt;4&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;594&quot; y=&quot;717&quot;&gt;cfg 32/33/48/49&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;594&quot; y=&quot;699&quot;&gt;0.4696 / 0.4732&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilenum&quot; text-anchor=&quot;middle&quot; x=&quot;352&quot; y=&quot;741&quot;&gt;4&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;368&quot; y=&quot;717&quot;&gt;cfg 8/9/24/25&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;368&quot; y=&quot;699&quot;&gt;measured zeros&lt;/text&gt;
&lt;text class=&quot;fnfa1f6-panhead&quot; x=&quot;56&quot; y=&quot;396&quot;&gt;ONE MARK = ONE CONFIG&lt;/text&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;64&quot; cy=&quot;422&quot; r=&quot;4.6&quot;/&gt;&lt;text class=&quot;fnfa1f6-leg&quot; x=&quot;82&quot; y=&quot;427&quot;&gt;measured scalar&lt;/text&gt;&lt;rect class=&quot;fnfa1f6-undef&quot; x=&quot;60&quot; y=&quot;444&quot; width=&quot;9&quot; height=&quot;9&quot;/&gt;&lt;text class=&quot;fnfa1f6-leg&quot; x=&quot;82&quot; y=&quot;453&quot;&gt;undefined: no value, held off the axis&lt;/text&gt;&lt;circle class=&quot;fnfa1f6-dot&quot; cx=&quot;64&quot; cy=&quot;474&quot; r=&quot;4.6&quot;/&gt;&lt;circle class=&quot;fnfa1f6-mirage&quot; cx=&quot;64&quot; cy=&quot;474&quot; r=&quot;8.0&quot;/&gt;&lt;text class=&quot;fnfa1f6-leg&quot; x=&quot;82&quot; y=&quot;479&quot;&gt;aggregate equals the clean cell exactly&lt;/text&gt;&lt;text class=&quot;fnfa1f6-leg&quot; x=&quot;56&quot; y=&quot;512&quot;&gt;Piles are ordered bottom-up by n_fired, so&lt;/text&gt;&lt;text class=&quot;fnfa1f6-leg&quot; x=&quot;56&quot; y=&quot;530&quot;&gt;the lowest-firing configs sit on the axis.&lt;/text&gt;
&lt;text class=&quot;fnfa1f6-panhead&quot; x=&quot;24&quot; y=&quot;958&quot;&gt;THE RUG &amp;#8212; FIRING COUNT PER CONFIG (n_fired of 164)&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;976&quot;&gt;The scalar is not ranking transform strength. It is reporting whether any function escaped the&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;995&quot;&gt;transform: every config with a positive scalar left at least four functions untouched, and every&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;1014&quot;&gt;measured zero and every undefined config fired on all 164.&lt;/text&gt;&lt;text class=&quot;fnfa1f6-ruglab&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1041&quot;&gt;UNDEFINED (44)&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugbase&quot; x1=&quot;300&quot; y1=&quot;1036&quot; x2=&quot;770&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugu&quot; x1=&quot;770.0&quot; y1=&quot;1025&quot; x2=&quot;770.0&quot; y2=&quot;1036&quot;/&gt;&lt;text class=&quot;fnfa1f6-rugval&quot; text-anchor=&quot;end&quot; x=&quot;904&quot; y=&quot;1041&quot;&gt;all at 164&lt;/text&gt;&lt;text class=&quot;fnfa1f6-ruglab&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1075&quot;&gt;scalar 0.00 (4)&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugbase&quot; x1=&quot;300&quot; y1=&quot;1070&quot; x2=&quot;770&quot; y2=&quot;1070&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;770.0&quot; y1=&quot;1059&quot; x2=&quot;770.0&quot; y2=&quot;1070&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;770.0&quot; y1=&quot;1059&quot; x2=&quot;770.0&quot; y2=&quot;1070&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;770.0&quot; y1=&quot;1059&quot; x2=&quot;770.0&quot; y2=&quot;1070&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;770.0&quot; y1=&quot;1059&quot; x2=&quot;770.0&quot; y2=&quot;1070&quot;/&gt;&lt;text class=&quot;fnfa1f6-rugval&quot; text-anchor=&quot;end&quot; x=&quot;904&quot; y=&quot;1075&quot;&gt;all at 164&lt;/text&gt;&lt;text class=&quot;fnfa1f6-ruglab&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1109&quot;&gt;scalar ~0.47 (4)&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugbase&quot; x1=&quot;300&quot; y1=&quot;1104&quot; x2=&quot;770&quot; y2=&quot;1104&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;744.2&quot; y1=&quot;1093&quot; x2=&quot;744.2&quot; y2=&quot;1104&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;747.1&quot; y1=&quot;1093&quot; x2=&quot;747.1&quot; y2=&quot;1104&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;744.2&quot; y1=&quot;1093&quot; x2=&quot;744.2&quot; y2=&quot;1104&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;747.1&quot; y1=&quot;1093&quot; x2=&quot;747.1&quot; y2=&quot;1104&quot;/&gt;&lt;text class=&quot;fnfa1f6-rugval&quot; text-anchor=&quot;end&quot; x=&quot;904&quot; y=&quot;1109&quot;&gt;155&amp;#8211;156 (med 155)&lt;/text&gt;&lt;text class=&quot;fnfa1f6-ruglab&quot; text-anchor=&quot;end&quot; x=&quot;284&quot; y=&quot;1143&quot;&gt;scalar 1.00 (43)&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugbase&quot; x1=&quot;300&quot; y1=&quot;1138&quot; x2=&quot;770&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;383.1&quot; y1=&quot;1127&quot; x2=&quot;383.1&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;749.9&quot; y1=&quot;1127&quot; x2=&quot;749.9&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;749.9&quot; y1=&quot;1127&quot; x2=&quot;749.9&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;698.4&quot; y1=&quot;1127&quot; x2=&quot;698.4&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;712.7&quot; y1=&quot;1127&quot; x2=&quot;712.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;317.2&quot; y1=&quot;1127&quot; x2=&quot;317.2&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;400.3&quot; y1=&quot;1127&quot; x2=&quot;400.3&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;749.9&quot; y1=&quot;1127&quot; x2=&quot;749.9&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;749.9&quot; y1=&quot;1127&quot; x2=&quot;749.9&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;698.4&quot; y1=&quot;1127&quot; x2=&quot;698.4&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;712.7&quot; y1=&quot;1127&quot; x2=&quot;712.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;744.2&quot; y1=&quot;1127&quot; x2=&quot;744.2&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;747.1&quot; y1=&quot;1127&quot; x2=&quot;747.1&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;744.2&quot; y1=&quot;1127&quot; x2=&quot;744.2&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;747.1&quot; y1=&quot;1127&quot; x2=&quot;747.1&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;755.7&quot; y1=&quot;1127&quot; x2=&quot;755.7&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;line class=&quot;fnfa1f6-rugm&quot; x1=&quot;758.5&quot; y1=&quot;1127&quot; x2=&quot;758.5&quot; y2=&quot;1138&quot;/&gt;&lt;text class=&quot;fnfa1f6-rugval&quot; text-anchor=&quot;end&quot; x=&quot;904&quot; y=&quot;1143&quot;&gt;6&amp;#8211;160 (med 159)&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugtick&quot; x1=&quot;300.0&quot; y1=&quot;1144&quot; x2=&quot;300.0&quot; y2=&quot;1150&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;300.0&quot; y=&quot;1168&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugtick&quot; x1=&quot;417.5&quot; y1=&quot;1144&quot; x2=&quot;417.5&quot; y2=&quot;1150&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;417.5&quot; y=&quot;1168&quot;&gt;41&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugtick&quot; x1=&quot;535.0&quot; y1=&quot;1144&quot; x2=&quot;535.0&quot; y2=&quot;1150&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;535.0&quot; y=&quot;1168&quot;&gt;82&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugtick&quot; x1=&quot;652.5&quot; y1=&quot;1144&quot; x2=&quot;652.5&quot; y2=&quot;1150&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;652.5&quot; y=&quot;1168&quot;&gt;123&lt;/text&gt;&lt;line class=&quot;fnfa1f6-rugtick&quot; x1=&quot;770.0&quot; y1=&quot;1144&quot; x2=&quot;770.0&quot; y2=&quot;1150&quot;/&gt;&lt;text class=&quot;fnfa1f6-ticklab&quot; text-anchor=&quot;middle&quot; x=&quot;770.0&quot; y=&quot;1168&quot;&gt;164&lt;/text&gt;
&lt;text class=&quot;fnfa1f6-panhead&quot; x=&quot;24&quot; y=&quot;1204&quot;&gt;THE MIRAGE &amp;#8212; RINGED IN THE 1.00 PILE&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1228&quot;&gt;Three configs score an aggregate of exactly 9.15% (15/164) Wilson95 [5.6,14.5] &amp;#8212; the clean&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1247&quot;&gt;baseline cell, count for count: cfg 1 (se) fires 29/164 = 17.7%, recovers 0/29 = 0.0%; cfg 16 (bo&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1266&quot;&gt;(inert marker)) fires 6/164 = 3.7%, recovers 0/6 = 0.0%; cfg 17 (se+bo) fires 35/164 = 21.3%, recovers&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1285&quot;&gt;0/35 = 0.0%. They are also the three lowest-firing configs in the grid. The metric certifies them as&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1304&quot;&gt;working obfuscators at the clean rate.&lt;/text&gt;&lt;text class=&quot;fnfa1f6-panhead&quot; x=&quot;24&quot; y=&quot;1337&quot;&gt;THE READING&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1361&quot;&gt;Of the 51 configs where the scalar is defined: 4 at zero, 4 mid-band at ~0.47 (cfg 32/33/48/49), 43 at&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1380&quot;&gt;~1.0 -- the aggregate is essentially all clean-rate contamination. Grid summary over the 95: median&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1399&quot;&gt;0.00, mean 0.4725, range 0.0&amp;#8211;1.0, and the scalar takes only four distinct values across the whole&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1418&quot;&gt;grid (0.0, 0.4696, 0.4732, 1.0). The old headline was &quot;there is no middle&quot;; the stronger finding is&lt;/text&gt;&lt;text class=&quot;fnfa1f6-note&quot; x=&quot;24&quot; y=&quot;1437&quot;&gt;that for 44 of 95 configs there is no number.&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;1472&quot;&gt;Population: 1 clean + 95 obfuscated (2^5 booleans x 3 MBA rounds, cfg_index = mba_rounds*32 + bits).&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;1491&quot;&gt;Never &quot;96 configs&quot;. Config 0 IS the clean baseline and a point inside the grid, not a 97th condition;&lt;/text&gt;&lt;text class=&quot;fnfa1f6-pansub&quot; x=&quot;24&quot; y=&quot;1510&quot;&gt;it has no firing mask, so the scalar does not apply to it and it is not drawn.&lt;/text&gt;&lt;text class=&quot;fnfa1f6-prov&quot; x=&quot;24&quot; y=&quot;1545&quot;&gt;Corroboration: on the coverage-matched intersection of the four single-transform fired sets (24 functions)&lt;/text&gt;&lt;text class=&quot;fnfa1f6-prov&quot; x=&quot;24&quot; y=&quot;1563&quot;&gt;every rate is zero on its OWN cell &amp;#8212; string_encryption 0/24, constant_encryption 0/23, flatten_cfg 0/22,&lt;/text&gt;&lt;text class=&quot;fnfa1f6-prov&quot; x=&quot;24&quot; y=&quot;1581&quot;&gt;bogus_control_flow 0/23 &amp;#8212; and every McNemar p = 1.000. The clean attacker already recovers 0/24 there,&lt;/text&gt;&lt;text class=&quot;fnfa1f6-prov&quot; x=&quot;24&quot; y=&quot;1599&quot;&gt;because all 15 clean successes fall outside the string-encryption-bounded intersection.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;How much of each configuration&apos;s apparent effect is coverage dilution rather than hardening, over the 95 obfuscated configs. The scalar is bimodal: near 1.0 (almost all apparent effect is ghosts) or near 0 (the transform fired everywhere). But 44 of the 48 low values are undefined, zero recovery over a zero denominator, a guard value, not a measurement, drawn grey so they do not read as &apos;no dilution&apos;. Three configs sit at exactly the 9.15% clean rate while recovering nothing on every function they fired on: the mirage made numeric.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;state&lt;/th&gt;&lt;th&gt;count (of 95)&lt;/th&gt;&lt;th&gt;what it is&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;~1.00&lt;/td&gt;&lt;td&gt;43&lt;/td&gt;&lt;td&gt;fired-only ~0% while never-fired functions recover at the clean rate, nearly all apparent recovery is a coverage artifact&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;~0.47&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;mid-band; the near-MBA-only configs, named individually in the figure&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;measured 0.0&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;true zeros: the transform fired on all 164, so there is nothing to dilute&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;undefined&lt;/td&gt;&lt;td&gt;44&lt;/td&gt;&lt;td&gt;aggregate recovery is 0.0%, so the ratio is 0/0, a guard value, drawn grey; the scalar does not exist for these&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;3&quot;&gt;Among the 51 configs where the scalar is defined it is positive iff at least four functions never fired (n_fired ≤ 160), it reports whether ghosts exist, not transform strength. Scalar = (aggregate − fired-only) / aggregate. D1C control, clang-strict, 8192-token window, x86/O2.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;Which leaves the denominators themselves, the mundane failure mode that eats the most numbers. Four of them run through this series:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;164, the grid corpus: every function, in every configuration.&lt;/li&gt;
&lt;li&gt;149, the matched non-truncated subset: functions whose disassembly fits a 4096-token window on both sides of the next article’s compiler comparison. Fifteen truncate and are dropped from both arms, a different fifteen from the fifteen the placebo section recovers, sharing exactly one member. There is one 149, not two: the two legs that use it were checked function by function and carry the same set.&lt;/li&gt;
&lt;li&gt;151, the fired, non-truncated population of one obfuscated cell in the third article’s scaling ladder, at that arm’s own window and prompt. It sits inside 164 and inside 162, but 7 of its functions fall outside the 149: the two overlap without either containing the other.&lt;/li&gt;
&lt;li&gt;162, the grid minus the two functions that truncate in the disassembler-format comparison.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;None is a superset the obfuscated cells are drawn from; each obfuscated cell has its own fired, non-truncated population. Put flattening’s 2/139 beside bogus control flow’s 1/164 and both rates are honest; put either beside the 10/164 aggregate that produced the ranking and you have drawn a trend across three different populations.&lt;/p&gt;
&lt;div class=&quot;table-scroll&quot;&gt;&lt;table&gt;&lt;caption&gt;The four denominators this piece and its siblings use. Recovery was never computed over the same population twice, and the population was never printed; this is the reference every rate resolves against.&lt;/caption&gt;&lt;tr&gt;&lt;th&gt;n&lt;/th&gt;&lt;th&gt;what it counts&lt;/th&gt;&lt;th&gt;arm / scorer / window&lt;/th&gt;&lt;th&gt;drops, and why&lt;/th&gt;&lt;th&gt;what it is NOT nested with&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;the grid corpus, every function in every configuration&lt;/td&gt;&lt;td&gt;all grid legs; scorer and window vary by leg&lt;/td&gt;&lt;td&gt;nothing; it is the base population&lt;/td&gt;&lt;td&gt;the census (96/91/37) and ExeBench (489/473), which are different populations entirely&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;149&lt;/td&gt;&lt;td&gt;the shared matched non-truncated subset, one construction, reached by two legs that carry the identical func ids&lt;/td&gt;&lt;td&gt;Article 2’s stock-v1.5 provenance leg and Article 3’s naive/Kerckhoffs legs; gcc-lenient; native 4096&lt;/td&gt;&lt;td&gt;the 15 that truncate under clang at 4096; {147, 160} truncate under gcc too and are a subset of those 15&lt;/td&gt;&lt;td&gt;151, they only overlap: 7 of the 151 fall outside the 149 and 5 of the 149 fall outside the 151, so neither contains the other. There is no second 149.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;151&lt;/td&gt;&lt;td&gt;the fired, non-truncated population of one obfuscated cell in Article 3’s scaling ladder&lt;/td&gt;&lt;td&gt;Ghidra-Ref v2 (6.7B/9B/22B), obfuscation-naive; gcc-lenient; native 4096&lt;/td&gt;&lt;td&gt;13 functions truncated at that arm’s window&lt;/td&gt;&lt;td&gt;the 149 (overlap only, above); its rates belong to a third denominator family (151/132/98) and must not mix with the 149 or 164 legs&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;162&lt;/td&gt;&lt;td&gt;the grid minus the two functions that truncate in every disassembler-format arm&lt;/td&gt;&lt;td&gt;Article 2 factorial; gcc-lenient; native 4096&lt;/td&gt;&lt;td&gt;func_id 147 and 160 only&lt;/td&gt;&lt;td&gt;nothing on sets (149 is nested inside 162, 162 inside 164), but its RATE, 44/162 = 27.2%, is the matched corner, not to be printed as disagreeing with 41/149 = 27.5%, the same arm on the paired subset&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
&lt;h2 id=&quot;what-this-does-not-show&quot;&gt;What this does not show&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-this-does-not-show&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The limits are specific, and three of them are load-bearing.&lt;/p&gt;
&lt;p&gt;No published number here is disputed. The census makes no claim that any of the 35 bare aggregates is arithmetically wrong. What it claims is that the presentation is un-auditable: the population, the firing rate and the truncation rate are missing, so a reader cannot recompute the cell or compare it with another paper’s. That is a reporting finding, not an allegation of arithmetic error.&lt;/p&gt;
&lt;p&gt;The census’s own reliability is limited. Single-pass scoring, adversarially re-verified on 70 of 96 papers, 233 of 235 re-examined cells upheld, and no computable inter-annotator statistic. That is stronger than one pass alone and weaker than validated dual annotation, and the paper says so in those words.&lt;/p&gt;
&lt;p&gt;Every attacker result above is scoped, and the scope is narrow. These are static, client-side measurements against two 6.7B decompiler checkpoints on 164 functions, one scorer and one window at a time, single-shot: no tool use, no iteration, no human in the loop. Every number here is a floor an attacker starts from. A better-resourced attacker is the subject of the third piece in this series, and it moves them substantially. Nothing here says any shipping product is broken. Client-side hardening is deterrence, never a guarantee.&lt;/p&gt;
&lt;p&gt;Two smaller limits. The backend-marker configuration’s null is unpowered, all six of its firings landed on functions that were already unrecoverable when clean, so it evidences the metric’s blindness and nothing about the transform. And the first minted version of the deposit calls that configuration “byte-inert,” one page from the definition of firing as a byte difference; the pass changes the bytes of six functions and leaves the outcomes alone, so the correct word is outcome-inert, and the correction goes into the next version.&lt;/p&gt;
&lt;p&gt;One bridge, rather than a limit. Both arms here run the strict clang-side scorer at an 8192-token window; the legs in the next two articles run a more permissive gcc-side scorer at the model’s native 4096-token window, which is a different measurement and cannot go on the same axis without saying so out loud. It is also why the two transforms above trade places between articles: at these counts the ordering is a property of the measurement regime.&lt;/p&gt;
&lt;h2 id=&quot;what-an-obfuscation-number-has-to-carry&quot;&gt;What an obfuscation number has to carry&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-an-obfuscation-number-has-to-carry&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;| what read fine | what was actually true | the rule it became |
|, |, |, |
| a tenfold gap between two transforms is a ranking | 8 of the wider cell’s 10 successes were on functions the pass never fired on; conditioned, the two land at 1.4% and 0.6%, and Fisher’s minimum is p = 0.22 across the fired-only cells (0.50 across the full-164 ones) | report the rate over the functions the transform actually reached, or report no ordering |
| the aggregate fell, so the transform works | the aggregate’s second term is the clean rate of functions the transform never fired on | publish the firing rate per cell, or the drop is unattributable |
| near-total deterrence in the o-mvll cell | 81.7% of that cell’s functions exceeded the context window and were scored as failures unseen; 1 of the 30 seen whole came back | print the (window, disassembler, tokenizer) triple and the truncation rate on every cell, recomputed per arm |
| a no-op will obviously fail the metric | outcomes identical to clean on all 164 functions, aggregate unchanged from that arm’s 9.15%, and the metric passed it | require a metric a no-op fails, or it certifies nothing |
| our negative control settles the point | all six of its firings landed on functions that were already unrecoverable when clean | a null needs power; state when yours has almost none |&lt;/p&gt;
&lt;p&gt;Thirty-five papers reported a drop and did not say what it was a drop over. Our own grid reported a ten-to-one gap between two transforms and did not say that four fifths of the wider cell’s successes came from functions the pass had declined to touch. Same defect, wildly different consequence, and both of them invisible to any reader who only has the number.&lt;/p&gt;
&lt;p&gt;The next article changes the scope from the binary to the environment it was built in, two arms, the same functions, zero obfuscation in either one, and a gap nobody put there on purpose.&lt;/p&gt;
&lt;p&gt;The census is one subfield; the rule it leaves behind is not. &lt;em&gt;Any eval that folds inputs a transform never touched into the same average, without reporting how often it fired, inherits this exact bug.&lt;/em&gt;&lt;/p&gt;</content:encoded><category>obfuscation</category><category>decompilation</category><category>evals</category><category>reproducibility</category></item><item><title>The compiler did it, and my obfuscation took the credit</title><link>https://thepragmaticquant.com/the-compiler-did-it/</link><guid isPermaLink="true">https://thepragmaticquant.com/the-compiler-did-it/</guid><description>Two arms of the same 149 functions, neither arm obfuscated — stock LLM4Decompile v1.5, gcc-lenient scorer, native 4096-token window: GCC-built binaries recover at 27.5%, clang-built at 15.4%, paired McNemar p = 0.0029. The confound is the toolchain, and the law generalizes well past binary analysis. The three-term decomposition built to separate those effects then fails to add up, and the ~5.6-point residual is printed open.</description><pubDate>Thu, 30 Jul 2026 00:00:00 GMT</pubDate><content:encoded>&lt;div class=&quot;tldr&quot;&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — Same &lt;strong&gt;149&lt;/strong&gt; matched functions, the stock released LLM4Decompile v1.5, one scorer for both, no obfuscation in either arm: GCC-built binaries recover at &lt;strong&gt;27.5%&lt;/strong&gt; and clang-built binaries at &lt;strong&gt;15.4%&lt;/strong&gt; (paired McNemar &lt;em&gt;p&lt;/em&gt; = 0.0029, gcc-lenient scorer, native 4096-token window). A published obfuscation-strength number can carry a double-digit toolchain term it never names. The three-term decomposition built to separate those effects then misses its own predicted corner by &lt;strong&gt;~5.6 points&lt;/strong&gt;, and the residual is printed open and unexplained. Preprint: &lt;a href=&quot;https://doi.org/10.5281/zenodo.21682266&quot;&gt;doi:10.5281/zenodo.21682266&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;You build the corpus twice. Once clean, once through the obfuscator. Then you report how far the AI decompiler’s success rate fell.&lt;/p&gt;
&lt;p&gt;But the interesting obfuscators are compiler passes, so building that second corpus changes the compiler too. On the corpus below, the compiler switch alone is worth 12.1 points of measured resistance — with no obfuscation anywhere in either arm.&lt;/p&gt;
&lt;p&gt;The quantity that moves is re-executable recovery. A neural decompiler reads stripped assembly — machine instructions with the function and variable names thrown away — and writes back C. The metric counts the fraction of functions whose emitted C actually compiles and reproduces the original’s behaviour.&lt;/p&gt;
&lt;p&gt;It is the strictest metric in this field, and its drop between clean and obfuscated binaries is what gets published as obfuscation strength. Here it moved 12.1 points on a change nobody had proposed as a treatment.&lt;/p&gt;
&lt;p&gt;A controlled comparison isolates the variable you named only if that variable was the only one that moved, and in this field switching obfuscators almost always switches compilers too.&lt;/p&gt;
&lt;h2 id=&quot;the-comparison-that-looks-airtight&quot;&gt;The comparison that looks airtight&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-comparison-that-looks-airtight&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The field’s standard experiment is a good experiment. Compile a corpus clean. Compile it again through an obfuscator. Run the same decompiler on both. Report the drop. One knob moved, one outcome moved, attribute the delta to the knob. That is what a controlled comparison means, and the instinct behind it is sound, it is how you would measure a drug, a cache policy, or a compiler flag.&lt;/p&gt;
&lt;p&gt;It is also, overwhelmingly, what gets published. In the census the first piece in this series walks through, 35 of the 37 papers that report an obfuscation-strength number at all report exactly one bare aggregate scalar for it (37 is the obfuscation-arm subset of 91 full-text-verified papers; those denominators are unpacked in that piece).&lt;/p&gt;
&lt;p&gt;The steelman is stronger than it looks, because at the level of author intent it is simply true: the only thing the author touched was the obfuscator. Nobody edited the training set. Nobody swapped the model.&lt;/p&gt;
&lt;p&gt;But those obfuscators live inside the compiler, at the intermediate-representation level, which means you obfuscate by building your whole corpus with the toolchain the obfuscator plugs into. That toolchain is usually clang/LLVM. And the model in every cell below, LLM4Decompile v1.5, is trained on GCC output, which is a documented property of its released training corpus rather than an inference from my result. The mechanism has independent attestation too: Decaf, an unrelated system, reports that recompiling its inputs with clang instead of GCC degrades its own GCC-trained reranker, and attributes that to assembly patterns the model was never exposed to. So the clean arm and the obfuscated arm differ by two things, and only one of them is in the paper’s table.&lt;/p&gt;
&lt;h2 id=&quot;one-thing-changed-and-it-was-the-toolchain&quot;&gt;One thing changed, and it was the toolchain&lt;a class=&quot;heading-anchor&quot; href=&quot;#one-thing-changed-and-it-was-the-toolchain&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;Two side-by-side columns of AT&amp;amp;T-syntax x86 disassembly for the same source function func0, the left column labelled the gcc arm and the right the clang arm, set in identical monospace. The gcc column is a visibly shorter block of instructions than the clang column; the mnemonics, registers, and offsets differ line for line, yet neither listing carries any of the junk blocks, opaque predicates, or scrambled control flow an obfuscated function would show. Two clean listings of one function that simply read as different code.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a2-two-binaries&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1845&quot; role=&quot;img&quot; aria-label=&quot;two disassembly listings side by side in identical type, gcc on the left with 27 instructions and clang on the right with 33, with zero obfuscation in either arm; the listings look alike to a reader, and the model re-executes the gcc one and fails the clang one&quot;&gt;&lt;style&gt;#fig-fnf-a2-two-binaries [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a2-two-binaries [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a2-two-binaries [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a2-two-binaries [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a2-two-binaries [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a2-two-binaries [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a2-two-binaries [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a2-two-binaries [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a2-two-binaries [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a2-two-binaries [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1845&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#fnfa2f2-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa2f2-title { font-size: 28px; font-weight: bold; letter-spacing: 0.04em; }
    .fnfa2f2-sub { font-size: 16px; fill: var(--comment); }
    .fnfa2f2-rule { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-rowrule { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa2f2-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa2f2-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa2f2-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa2f2-scope { font-size: 14px; fill: var(--comment); }
    .fnfa2f2-stamp { font-size: 26px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa2f2-stampsub { font-size: 14px; fill: var(--comment); }
    .fnfa2f2-colbox { fill: none; stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-colhead { font-size: 21px; font-weight: bold; letter-spacing: 0.06em; }
    .fnfa2f2-colinv { font-size: 13px; fill: var(--comment); }
    .fnfa2f2-asmhead { font-size: 13px; fill: #56b4e9; letter-spacing: 0.04em; }
    .fnfa2f2-asm { font-size: 13px; }
    .fnfa2f2-asmoff { font-size: 13px; fill: var(--comment); }
    .fnfa2f2-gutrule { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f2-dotpass { fill: #56b4e9; }
    .fnfa2f2-dotfail { fill: none; stroke: #56b4e9; stroke-width: 2; }
    .fnfa2f2-verdict { font-size: 15px; font-weight: bold; }
    .fnfa2f2-colnote { font-size: 13px; fill: var(--comment); }
    .fnfa2f2-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa2f2-thead { font-size: 13px; fill: var(--comment); letter-spacing: 0.1em; }
    .fnfa2f2-tlab { font-size: 14px; }
    .fnfa2f2-tval { font-size: 15px; font-weight: bold; }
    .fnfa2f2-stub { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa2f2-stubend { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa2f2-stublab { font-size: 13px; fill: var(--comment); }
    .fnfa2f2-note { font-size: 14px; }
    .fnfa2f2-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa2f2-root&quot;&gt;
&lt;text class=&quot;fnfa2f2-title&quot; x=&quot;24&quot; y=&quot;54&quot;&gt;TWO BINARIES, NO OBFUSCATION&lt;/text&gt;
&lt;text class=&quot;fnfa2f2-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;One source function, two compilers, two disassemblies. Different, invisibly so to a&lt;/text&gt;
&lt;text class=&quot;fnfa2f2-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;reader, and decisive to the model: the left one re-executes and the right one does not.&lt;/text&gt;
&lt;rect class=&quot;fnfa2f2-stripbg&quot; x=&quot;24&quot; y=&quot;120&quot; width=&quot;880&quot; height=&quot;178&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;38&quot; y=&quot;138&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;38&quot; y=&quot;159&quot;&gt;stock LLM4Decompile&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;38&quot; y=&quot;177&quot;&gt;6.7B-v1.5&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;258&quot; y=&quot;138&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;258&quot; y=&quot;159&quot;&gt;gcc-lenient&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;258&quot; y=&quot;177&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;244&quot; y1=&quot;124&quot; x2=&quot;244&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;478&quot; y=&quot;138&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;478&quot; y=&quot;159&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;478&quot; y=&quot;177&quot;&gt;no RoPE extrap.&lt;/text&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;464&quot; y1=&quot;124&quot; x2=&quot;464&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;698&quot; y=&quot;138&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;698&quot; y=&quot;159&quot;&gt;gcc vs clang (VARIED)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;698&quot; y=&quot;177&quot;&gt;x86 O2, seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;684&quot; y1=&quot;124&quot; x2=&quot;684&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;38&quot; y=&quot;206&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;38&quot; y=&quot;227&quot;&gt;llvm-objdump&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;38&quot; y=&quot;245&quot;&gt;both arms, -M att&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;258&quot; y=&quot;206&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;258&quot; y=&quot;227&quot;&gt;paired, matched&lt;/text&gt;&lt;text class=&quot;fnfa2f2-slotval&quot; x=&quot;258&quot; y=&quot;245&quot;&gt;non-truncated subset&lt;/text&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;244&quot; y1=&quot;192&quot; x2=&quot;244&quot; y2=&quot;254&quot;/&gt;&lt;text class=&quot;fnfa2f2-slotlab&quot; x=&quot;478&quot; y=&quot;206&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa2f2-nrule&quot; x1=&quot;478&quot; y1=&quot;224&quot; x2=&quot;481&quot; y2=&quot;224&quot;/&gt;&lt;text class=&quot;fnfa2f2-nlab&quot; x=&quot;580&quot; y=&quot;229&quot;&gt;1 function displayed&lt;/text&gt;&lt;line class=&quot;fnfa2f2-nrule&quot; x1=&quot;478&quot; y1=&quot;241&quot; x2=&quot;574&quot; y2=&quot;241&quot;/&gt;&lt;text class=&quot;fnfa2f2-nlab&quot; x=&quot;580&quot; y=&quot;246&quot;&gt;149 matched pairs&lt;/text&gt;&lt;line class=&quot;fnfa2f2-nrule&quot; x1=&quot;478&quot; y1=&quot;258&quot; x2=&quot;495&quot; y2=&quot;258&quot;/&gt;&lt;text class=&quot;fnfa2f2-nlab&quot; x=&quot;580&quot; y=&quot;263&quot;&gt;26 in cell b&lt;/text&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;464&quot; y1=&quot;192&quot; x2=&quot;464&quot; y2=&quot;254&quot;/&gt;&lt;line class=&quot;fnfa2f2-slotsep&quot; x1=&quot;32&quot; y1=&quot;190&quot; x2=&quot;896&quot; y2=&quot;190&quot;/&gt;&lt;text class=&quot;fnfa2f2-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;288&quot;&gt;floor, not ceiling &amp;#183; one stock 6.7B attacker &amp;#183; clean arm only&lt;/text&gt;
&lt;line class=&quot;fnfa2f2-rule&quot; x1=&quot;24&quot; y1=&quot;318&quot; x2=&quot;904&quot; y2=&quot;318&quot;/&gt;&lt;text class=&quot;fnfa2f2-stamp&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;354&quot;&gt;ZERO OBFUSCATION IN EITHER ARM&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rule&quot; x1=&quot;24&quot; y1=&quot;370&quot; x2=&quot;904&quot; y2=&quot;370&quot;/&gt;&lt;text class=&quot;fnfa2f2-stampsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;392&quot;&gt;Same source. Same optimisation level. Same disassembler, same flags, same seed. The only&lt;/text&gt;&lt;text class=&quot;fnfa2f2-stampsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;411&quot;&gt;difference is which compiler emitted the object the model was shown.&lt;/text&gt;&lt;rect class=&quot;fnfa2f2-colbox&quot; x=&quot;24&quot; y=&quot;436&quot; width=&quot;424&quot; height=&quot;682&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f2-colhead&quot; x=&quot;38&quot; y=&quot;458&quot;&gt;gcc&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colinv&quot; x=&quot;38&quot; y=&quot;480&quot;&gt;$ gcc -O2 -c func0.c&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colinv&quot; x=&quot;38&quot; y=&quot;498&quot;&gt;$ llvm-objdump --disassemble-symbols=func0 -M att&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmhead&quot; x=&quot;38&quot; y=&quot;522&quot;&gt;&amp;lt;func0&amp;gt;: 27 instructions, .text 0x0-0x5b&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;546.0&quot;&gt;0:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;546.0&quot;&gt;testl   %esi, %esi&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;563.5&quot;&gt;2:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;563.5&quot;&gt;jle     0x59 &amp;lt;func0+0x59&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;581.0&quot;&gt;4:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;581.0&quot;&gt;movl    %esi, %ecx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;598.5&quot;&gt;6:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;598.5&quot;&gt;movl    $0x1, %edx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;616.0&quot;&gt;b:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;616.0&quot;&gt;movss   (%rip), %xmm3 # 0x13 &amp;lt;func0+0x13&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;633.5&quot;&gt;13:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;633.5&quot;&gt;cmpq    %rcx, %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;651.0&quot;&gt;16:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;651.0&quot;&gt;je      0x59 &amp;lt;func0+0x59&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;668.5&quot;&gt;18:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;668.5&quot;&gt;movss   -0x4(%rdi,%rdx,4), %xmm2&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;686.0&quot;&gt;1e:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;686.0&quot;&gt;movq    %rdx, %rax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;703.5&quot;&gt;21:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;703.5&quot;&gt;jmp     0x30 &amp;lt;func0+0x30&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;721.0&quot;&gt;23:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;721.0&quot;&gt;nopl    (%rax,%rax)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;738.5&quot;&gt;28:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;738.5&quot;&gt;addq    $0x1, %rax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;756.0&quot;&gt;2c:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;756.0&quot;&gt;cmpl    %eax, %esi&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;773.5&quot;&gt;2e:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;773.5&quot;&gt;jle     0x50 &amp;lt;func0+0x50&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;791.0&quot;&gt;30:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;791.0&quot;&gt;movaps  %xmm2, %xmm1&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;808.5&quot;&gt;33:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;808.5&quot;&gt;subss   (%rdi,%rax,4), %xmm1&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;826.0&quot;&gt;38:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;826.0&quot;&gt;andps   %xmm3, %xmm1&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;843.5&quot;&gt;3b:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;843.5&quot;&gt;comiss  %xmm1, %xmm0&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;861.0&quot;&gt;3e:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;861.0&quot;&gt;jbe     0x28 &amp;lt;func0+0x28&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;878.5&quot;&gt;40:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;878.5&quot;&gt;movl    $0x1, %eax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;896.0&quot;&gt;45:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;896.0&quot;&gt;retq&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;913.5&quot;&gt;46:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;913.5&quot;&gt;nopw    %cs:(%rax,%rax)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;931.0&quot;&gt;50:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;931.0&quot;&gt;addq    $0x1, %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;948.5&quot;&gt;54:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;948.5&quot;&gt;cmpq    %rcx, %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;966.0&quot;&gt;57:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;966.0&quot;&gt;jne     0x18 &amp;lt;func0+0x18&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;983.5&quot;&gt;59:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;983.5&quot;&gt;xorl    %eax, %eax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;70&quot; y=&quot;1001.0&quot;&gt;5b:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;78&quot; y=&quot;1001.0&quot;&gt;retq&lt;/text&gt;&lt;circle class=&quot;fnfa2f2-dotpass&quot; cx=&quot;44&quot; cy=&quot;1127.0&quot; r=&quot;5.5&quot;/&gt;&lt;text class=&quot;fnfa2f2-verdict&quot; x=&quot;58&quot; y=&quot;1132.0&quot;&gt;the model re-executed this one&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colnote&quot; x=&quot;38&quot; y=&quot;1154.0&quot;&gt;prompt 388 tokens (window 4096, not truncated)&lt;/text&gt;&lt;rect class=&quot;fnfa2f2-colbox&quot; x=&quot;480&quot; y=&quot;436&quot; width=&quot;424&quot; height=&quot;682&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f2-colhead&quot; x=&quot;494&quot; y=&quot;458&quot;&gt;clang&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colinv&quot; x=&quot;494&quot; y=&quot;480&quot;&gt;$ clang -O2 -c func0.c&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colinv&quot; x=&quot;494&quot; y=&quot;498&quot;&gt;$ llvm-objdump --disassemble-symbols=func0 -M att&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmhead&quot; x=&quot;494&quot; y=&quot;522&quot;&gt;&amp;lt;func0&amp;gt;: 33 instructions, .text 0x0-0x73&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;546.0&quot;&gt;0:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;546.0&quot;&gt;testl   %esi, %esi&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;563.5&quot;&gt;2:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;563.5&quot;&gt;jle     0x71 &amp;lt;func0+0x71&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;581.0&quot;&gt;4:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;581.0&quot;&gt;movl    %esi, %eax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;598.5&quot;&gt;6:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;598.5&quot;&gt;xorl    %edx, %edx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;616.0&quot;&gt;8:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;616.0&quot;&gt;movaps  (%rip), %xmm1 # 0xf &amp;lt;func0+0xf&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;633.5&quot;&gt;f:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;633.5&quot;&gt;movq    %rax, %rcx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;651.0&quot;&gt;12:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;651.0&quot;&gt;movq    %rdi, %rsi&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;668.5&quot;&gt;15:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;668.5&quot;&gt;jmp     0x2c &amp;lt;func0+0x2c&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;686.0&quot;&gt;17:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;686.0&quot;&gt;nopw    (%rax,%rax)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;703.5&quot;&gt;20:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;703.5&quot;&gt;addq    $0x4, %rsi&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;721.0&quot;&gt;24:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;721.0&quot;&gt;decq    %rcx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;738.5&quot;&gt;27:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;738.5&quot;&gt;cmpq    %rax, %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;756.0&quot;&gt;2a:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;756.0&quot;&gt;je      0x71 &amp;lt;func0+0x71&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;773.5&quot;&gt;2c:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;773.5&quot;&gt;movq    %rdx, %r8&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;791.0&quot;&gt;2f:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;791.0&quot;&gt;incq    %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;808.5&quot;&gt;32:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;808.5&quot;&gt;cmpq    %rax, %rdx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;826.0&quot;&gt;35:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;826.0&quot;&gt;jae     0x20 &amp;lt;func0+0x20&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;843.5&quot;&gt;37:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;843.5&quot;&gt;movss   (%rdi,%r8,4), %xmm2&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;861.0&quot;&gt;3d:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;861.0&quot;&gt;movl    $0x1, %r8d&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;878.5&quot;&gt;43:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;878.5&quot;&gt;nopw    %cs:(%rax,%rax)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;896.0&quot;&gt;50:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;896.0&quot;&gt;movaps  %xmm2, %xmm3&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;913.5&quot;&gt;53:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;913.5&quot;&gt;subss   (%rsi,%r8,4), %xmm3&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;931.0&quot;&gt;59:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;931.0&quot;&gt;andps   %xmm1, %xmm3&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;948.5&quot;&gt;5c:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;948.5&quot;&gt;ucomiss %xmm3, %xmm0&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;966.0&quot;&gt;5f:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;966.0&quot;&gt;ja      0x6b &amp;lt;func0+0x6b&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;983.5&quot;&gt;61:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;983.5&quot;&gt;incq    %r8&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1001.0&quot;&gt;64:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1001.0&quot;&gt;cmpq    %r8, %rcx&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1018.5&quot;&gt;67:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1018.5&quot;&gt;jne     0x50 &amp;lt;func0+0x50&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1036.0&quot;&gt;69:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1036.0&quot;&gt;jmp     0x20 &amp;lt;func0+0x20&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1053.5&quot;&gt;6b:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1053.5&quot;&gt;movl    $0x1, %eax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1071.0&quot;&gt;70:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1071.0&quot;&gt;retq&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1088.5&quot;&gt;71:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1088.5&quot;&gt;xorl    %eax, %eax&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asmoff&quot; text-anchor=&quot;end&quot; x=&quot;526&quot; y=&quot;1106.0&quot;&gt;73:&lt;/text&gt;&lt;text class=&quot;fnfa2f2-asm&quot; x=&quot;534&quot; y=&quot;1106.0&quot;&gt;retq&lt;/text&gt;&lt;circle class=&quot;fnfa2f2-dotfail&quot; cx=&quot;500&quot; cy=&quot;1127.0&quot; r=&quot;5.5&quot;/&gt;&lt;text class=&quot;fnfa2f2-verdict&quot; x=&quot;514&quot; y=&quot;1132.0&quot;&gt;the model did NOT re-execute this one&lt;/text&gt;&lt;text class=&quot;fnfa2f2-colnote&quot; x=&quot;494&quot; y=&quot;1154.0&quot;&gt;prompt 445 tokens (window 4096, not truncated)&lt;/text&gt;&lt;line class=&quot;fnfa2f2-gutrule&quot; x1=&quot;464&quot; y1=&quot;500.0&quot; x2=&quot;464&quot; y2=&quot;1124.0&quot;/&gt;&lt;line class=&quot;fnfa2f2-rule&quot; x1=&quot;24&quot; y1=&quot;1166.0&quot; x2=&quot;904&quot; y2=&quot;1166.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-panhead&quot; x=&quot;24&quot; y=&quot;1188.0&quot;&gt;WHAT THE EYE GETS &amp;#183; WHAT THE MODEL GETS&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1212&quot;&gt;Both columns are set in one type at one size, unhighlighted, in offset order. No instruction is marked,&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1231&quot;&gt;because marking the six extra instructions would tell you where to look and the claim is that you&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1250&quot;&gt;cannot find it unaided. The model does not need to be told: it reads one listing into working C and the&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1269&quot;&gt;other into C that does not run.&lt;/text&gt;&lt;text class=&quot;fnfa2f2-thead&quot; x=&quot;24&quot; y=&quot;1314.0&quot;&gt;MEASURED ON THIS ONE FUNCTION&lt;/text&gt;&lt;text class=&quot;fnfa2f2-thead&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1314.0&quot;&gt;gcc&lt;/text&gt;&lt;text class=&quot;fnfa2f2-thead&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1314.0&quot;&gt;clang&lt;/text&gt;&lt;text class=&quot;fnfa2f2-thead&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1314.0&quot;&gt;difference&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rowrule&quot; x1=&quot;24&quot; y1=&quot;1328.0&quot; x2=&quot;904&quot; y2=&quot;1328.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;24&quot; y=&quot;1344.0&quot;&gt;instructions in &amp;lt;func0&amp;gt;&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1344.0&quot;&gt;27&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1344.0&quot;&gt;33&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1344.0&quot;&gt;+6 under clang&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rowrule&quot; x1=&quot;24&quot; y1=&quot;1350.0&quot; x2=&quot;904&quot; y2=&quot;1350.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;24&quot; y=&quot;1366.0&quot;&gt;.text extent (bytes)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1366.0&quot;&gt;92&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1366.0&quot;&gt;116&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1366.0&quot;&gt;+24 under clang&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rowrule&quot; x1=&quot;24&quot; y1=&quot;1372.0&quot; x2=&quot;904&quot; y2=&quot;1372.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;24&quot; y=&quot;1388.0&quot;&gt;object file (bytes)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1388.0&quot;&gt;1512&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1388.0&quot;&gt;1352&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1388.0&quot;&gt;-160 under clang &amp;#183; sections, not code&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rowrule&quot; x1=&quot;24&quot; y1=&quot;1394.0&quot; x2=&quot;904&quot; y2=&quot;1394.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;24&quot; y=&quot;1410.0&quot;&gt;prompt length (tokens)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1410.0&quot;&gt;388&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1410.0&quot;&gt;445&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1410.0&quot;&gt;+57 under clang, both under 4096&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rowrule&quot; x1=&quot;24&quot; y1=&quot;1416.0&quot; x2=&quot;904&quot; y2=&quot;1416.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;24&quot; y=&quot;1432.0&quot;&gt;re-executes (gcc-lenient)&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;360&quot; y=&quot;1432.0&quot;&gt;yes&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tval&quot; text-anchor=&quot;end&quot; x=&quot;480&quot; y=&quot;1432.0&quot;&gt;no&lt;/text&gt;&lt;text class=&quot;fnfa2f2-tlab&quot; text-anchor=&quot;start&quot; x=&quot;512&quot; y=&quot;1432.0&quot;&gt;cell b &amp;#183; 26 of 149 rows&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1466&quot;&gt;The object file is SMALLER under clang while the code is LONGER: object bytes count sections,&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1485&quot;&gt;relocations and padding, so they are not a code-size measure and are not used as one here. n = 1&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1504&quot;&gt;displayed function. The arm rates over the full matched subset are 41/149 and 23/149 and they live in&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1523&quot;&gt;A2-F1, not in this frame.&lt;/text&gt;&lt;line class=&quot;fnfa2f2-rule&quot; x1=&quot;24&quot; y1=&quot;1562.0&quot; x2=&quot;904&quot; y2=&quot;1562.0&quot;/&gt;&lt;text class=&quot;fnfa2f2-panhead&quot; x=&quot;24&quot; y=&quot;1584.0&quot;&gt;ONE SLUG, TWO FIGURES &amp;#183; AND WHERE THE 15 STUBS WENT&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 62 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 88 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;75&quot; y=&quot;1630.0&quot;&gt;10&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 118 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 144 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;131&quot; y=&quot;1630.0&quot;&gt;19&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 174 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 200 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;187&quot; y=&quot;1630.0&quot;&gt;27&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 230 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 256 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;243&quot; y=&quot;1630.0&quot;&gt;32&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 286 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 312 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;299&quot; y=&quot;1630.0&quot;&gt;33&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 342 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 368 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;355&quot; y=&quot;1630.0&quot;&gt;37&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 398 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 424 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;411&quot; y=&quot;1630.0&quot;&gt;44&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 454 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 480 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;467&quot; y=&quot;1630.0&quot;&gt;119&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 510 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 536 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;523&quot; y=&quot;1630.0&quot;&gt;125&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 566 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 592 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;579&quot; y=&quot;1630.0&quot;&gt;129&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 622 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 648 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;635&quot; y=&quot;1630.0&quot;&gt;133&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 678 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 704 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;691&quot; y=&quot;1630.0&quot;&gt;141&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 734 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 760 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;747&quot; y=&quot;1630.0&quot;&gt;147&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 790 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 816 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;803&quot; y=&quot;1630.0&quot;&gt;148&lt;/text&gt;&lt;path class=&quot;fnfa2f2-stub&quot; d=&quot;M 846 1612.0 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f2-stubend&quot; d=&quot;M 872 1607.0 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f2-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;859&quot; y=&quot;1630.0&quot;&gt;160&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1652&quot;&gt;This figure and A2-F1 report ONE experiment, so they print ONE condition slug: same attacker, same&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1671&quot;&gt;scorer, same window, same seed, same corpus. The 15 functions excluded from that experiment for&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1690&quot;&gt;truncating in either arm are drawn here in grey and counted, not cropped: func_ids {10, 19, 27, 32, 33,&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1709&quot;&gt;37, 44, 119, 125, 129, 133, 141, 147, 148, 160}. func_id 0 is not one of them; it is a full-length&lt;/text&gt;&lt;text class=&quot;fnfa2f2-note&quot; x=&quot;24&quot; y=&quot;1728&quot;&gt;listing in both arms.&lt;/text&gt;&lt;text class=&quot;fnfa2f2-prov&quot; x=&quot;24&quot; y=&quot;1769&quot;&gt;Listings were regenerated on the cluster 2026-07-29; the paired outcome is cross-checked at build time.&lt;/text&gt;&lt;text class=&quot;fnfa2f2-prov&quot; x=&quot;24&quot; y=&quot;1787&quot;&gt;Whitespace inside an instruction is normalised to single spaces; offsets, mnemonics and operands are verbatim.&lt;/text&gt;&lt;text class=&quot;fnfa2f2-prov&quot; x=&quot;24&quot; y=&quot;1805&quot;&gt;Excerpt = func0 only, one function out of the 164 in the object cache.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;One function, one source, two compilers. This is func_id 0, one of the 26 discordant rows where the gcc build re-executes and the clang build does not, under stock LLM4Decompile v1.5, the gcc-lenient scorer and the native 4096-token window, x86 at O2. The same 27 gcc instructions become 33 under clang, and a reader cannot tell which listing an obfuscator touched, because neither was touched.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;measured on func_id 0&lt;/th&gt;&lt;th&gt;gcc&lt;/th&gt;&lt;th&gt;clang&lt;/th&gt;&lt;th&gt;difference&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;instructions in &lt;code&gt;&amp;lt;func0&amp;gt;&lt;/code&gt;&lt;/td&gt;&lt;td&gt;27&lt;/td&gt;&lt;td&gt;33&lt;/td&gt;&lt;td&gt;+6 under clang&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;.text extent (bytes)&lt;/td&gt;&lt;td&gt;92&lt;/td&gt;&lt;td&gt;116&lt;/td&gt;&lt;td&gt;+24 under clang&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;object file (bytes)&lt;/td&gt;&lt;td&gt;1512&lt;/td&gt;&lt;td&gt;1352&lt;/td&gt;&lt;td&gt;-160 under clang, sections and padding, not a code-size measure&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;prompt length (tokens)&lt;/td&gt;&lt;td&gt;388&lt;/td&gt;&lt;td&gt;445&lt;/td&gt;&lt;td&gt;+57; both well under the 4096 window, neither truncated&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;re-executes (gcc-lenient)&lt;/td&gt;&lt;td&gt;yes&lt;/td&gt;&lt;td&gt;no&lt;/td&gt;&lt;td&gt;the flip this figure exists to show&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot;&gt;Excerpt is func0 only, one function’s .text out of the 164-function object, nothing inside it elided; offsets, mnemonics and operands are verbatim from the committed listing. Neither arm is obfuscated.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;So we built the corpus twice, once with GCC, once with clang, both x86 at O2 (the optimization setting most shipped software is built with), neither arm touched by any obfuscation pass, ran the stock published decompiler (LLM4Decompile v1.5) over both with the same prompt, the same 4096-token native context window, the same seed and the same gcc-lenient re-executability scorer, and compared the two arms function by function, pair by pair, an arm built to read as a null.&lt;/p&gt;
&lt;p&gt;GCC: 27.5% (41/149). Clang: 15.4% (23/149). A difference of +12.1 points in favour of the toolchain the model was trained on, on binaries with zero obfuscation in them. Both arms here are stock v1.5. The attacker piece in this series reports a clean rate of 18.8% on these same 149 functions from a different checkpoint, the fine-tuned clang-matched control; a clean rate is a property of the attacker, so those two belong to different experiments and cannot be read as a range.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;Four denominators across this series, and they are not nested the way you would guess. 164 is the grid corpus. 149 is the shared matched non-truncated subset, the functions whose disassembly fit the window in both compiler arms, with 15 dropped for truncating in either one. The attacker piece’s clean base sits on this same 149; the two sets were checked function by function and are identical, so there is one 149 in this series rather than two constructions that happen to collide. 162 is the grid minus 2 truncated instances, and it is the denominator for the factorial cells below. 151 is the scaling ladder’s bogus-control-flow cell in the attacker piece, fired and non-truncated at that arm’s window. It nests inside 164 and inside 162, but 7 of its functions fall outside the 149, so 151 and 149 overlap with neither one containing the other. The 15 dropped here are also a different 15 from the 15 recovered functions in the placebo section of the first piece. Putting a count from one of these on an axis with a rate from another is a defect all by itself.&lt;/span&gt;
&lt;p&gt;The pairing is the point, so the test respects it. Paired McNemar, a test that ignores every function the two arms agree on and looks only at the ones where they disagree, gives &lt;em&gt;p&lt;/em&gt; = 0.0029. The Newcombe paired 95% confidence interval for the difference is [+4.6, +19.6] points, and a bootstrap, resampling the data 20,000 times and reading the spread, which assumes almost nothing about its shape, lands on the same interval to under 0.1 point. Three routes to one answer, and the assumption-light one agrees with the other two.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A field of 149 thin threads spanning left to right between two vertical rails, the left rail the gcc arm and the right the clang arm, one thread per matched function. Each thread is coloured by its paired outcome, so the frame reads as four bands: a small set that re-executes in both arms, a thicker set that re-executes only on the gcc side, a thin set that re-executes only on the clang side, and a large muted mass where neither arm re-executes. Fifteen excluded stub functions are drawn inside the same frame in grey, present but set apart. The banner condition that both arms carry zero obfuscation is set at display weight across the frame.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a2-149-threads&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2253&quot; role=&quot;img&quot; aria-label=&quot;149 threads braided between two arms with zero obfuscation in either: the left rail orders the same functions by whether the gcc binary recovered, the right rail by whether the clang binary did, so 34 threads visibly cross while 115 run straight; gcc reads 27.5 percent of 149 and clang 15.4 percent, a plus 12.1 point paired difference&quot;&gt;&lt;style&gt;#fig-fnf-a2-149-threads [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a2-149-threads [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a2-149-threads [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a2-149-threads [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a2-149-threads [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a2-149-threads [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a2-149-threads [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a2-149-threads [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a2-149-threads [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a2-149-threads [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2253&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#fnfa2f1-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa2f1-title { font-size: 28px; font-weight: bold; letter-spacing: 0.04em; }
    .fnfa2f1-sub { font-size: 16px; fill: var(--comment); }
    .fnfa2f1-rule { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f1-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f1-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa2f1-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa2f1-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f1-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa2f1-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-scope { font-size: 14px; fill: var(--comment); }
    .fnfa2f1-stamp { font-size: 30px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa2f1-stampchip { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f1-stampsub { font-size: 14px; fill: var(--comment); }
    .fnfa2f1-armhead { font-size: 21px; font-weight: bold; letter-spacing: 0.08em; }
    .fnfa2f1-armsub { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-leg { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-tconc { stroke: #56b4e9; stroke-width: 1; fill: none; opacity: 0.17; }
    .fnfa2f1-tdisc { stroke: #56b4e9; stroke-width: 1.5; fill: none; opacity: 0.95; }
    .fnfa2f1-brace { stroke: var(--comment); stroke-width: 2; }
    .fnfa2f1-blab { font-size: 13px; fill: var(--comment); letter-spacing: 0.08em; }
    .fnfa2f1-bcount { font-size: 19px; font-weight: bold; }
    .fnfa2f1-armrate { font-size: 20px; font-weight: bold; }
    .fnfa2f1-armci { font-size: 14px; fill: var(--comment); }
    .fnfa2f1-denom { stroke: var(--comment); stroke-width: 3; }
    .fnfa2f1-denlab { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-delta { font-size: 26px; font-weight: bold; fill: #56b4e9; }
    .fnfa2f1-dsub { font-size: 14px; fill: var(--comment); }
    .fnfa2f1-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa2f1-pansub { font-size: 14px; fill: var(--comment); }
    .fnfa2f1-fldax { font-size: 13px; fill: var(--comment); letter-spacing: 0.06em; }
    .fnfa2f1-dotconc { fill: #56b4e9; opacity: 0.32; }
    .fnfa2f1-dotdisc { fill: #56b4e9; }
    .fnfa2f1-fldcnt { font-size: 15px; font-weight: bold; }
    .fnfa2f1-fldnote { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-pile { fill: #56b4e9; }
    .fnfa2f1-pilelab { font-size: 14px; font-weight: bold; }
    .fnfa2f1-pilebase { stroke: var(--comment); stroke-width: 2; }
    .fnfa2f1-iaxis { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa2f1-itick { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-iband { stroke: #56b4e9; stroke-width: 2; }
    .fnfa2f1-idot { fill: #56b4e9; }
    .fnfa2f1-ilab { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-stub { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa2f1-stubend { stroke: var(--comment); stroke-width: 1.6; }
    .fnfa2f1-stublab { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-stubarm { font-size: 13px; fill: var(--comment); }
    .fnfa2f1-note { font-size: 14px; }
    .fnfa2f1-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa2f1-root&quot;&gt;
&lt;text class=&quot;fnfa2f1-title&quot; x=&quot;24&quot; y=&quot;54&quot;&gt;149 THREADS, NO OBFUSCATION&lt;/text&gt;
&lt;text class=&quot;fnfa2f1-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;The same 149 functions, the same attacker, the same disassembler. Change only which&lt;/text&gt;
&lt;text class=&quot;fnfa2f1-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;compiler emitted the binary and the recovery rate moves by 12.1 points.&lt;/text&gt;
&lt;rect class=&quot;fnfa2f1-stripbg&quot; x=&quot;24&quot; y=&quot;120&quot; width=&quot;880&quot; height=&quot;178&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;38&quot; y=&quot;138&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;38&quot; y=&quot;159&quot;&gt;stock LLM4Decompile&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;38&quot; y=&quot;177&quot;&gt;6.7B-v1.5&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;258&quot; y=&quot;138&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;258&quot; y=&quot;159&quot;&gt;gcc-lenient&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;258&quot; y=&quot;177&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;244&quot; y1=&quot;124&quot; x2=&quot;244&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;478&quot; y=&quot;138&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;478&quot; y=&quot;159&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;478&quot; y=&quot;177&quot;&gt;no RoPE extrap.&lt;/text&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;464&quot; y1=&quot;124&quot; x2=&quot;464&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;698&quot; y=&quot;138&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;698&quot; y=&quot;159&quot;&gt;gcc vs clang (VARIED)&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;698&quot; y=&quot;177&quot;&gt;x86 O2, seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;684&quot; y1=&quot;124&quot; x2=&quot;684&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;38&quot; y=&quot;206&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;38&quot; y=&quot;227&quot;&gt;llvm-objdump&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;38&quot; y=&quot;245&quot;&gt;both arms, -M att&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;258&quot; y=&quot;206&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;258&quot; y=&quot;227&quot;&gt;paired, matched&lt;/text&gt;&lt;text class=&quot;fnfa2f1-slotval&quot; x=&quot;258&quot; y=&quot;245&quot;&gt;non-truncated subset&lt;/text&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;244&quot; y1=&quot;192&quot; x2=&quot;244&quot; y2=&quot;254&quot;/&gt;&lt;text class=&quot;fnfa2f1-slotlab&quot; x=&quot;478&quot; y=&quot;206&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa2f1-nrule&quot; x1=&quot;478&quot; y1=&quot;224&quot; x2=&quot;574&quot; y2=&quot;224&quot;/&gt;&lt;text class=&quot;fnfa2f1-nlab&quot; x=&quot;580&quot; y=&quot;229&quot;&gt;164 grid corpus&lt;/text&gt;&lt;line class=&quot;fnfa2f1-nrule&quot; x1=&quot;478&quot; y1=&quot;241&quot; x2=&quot;565&quot; y2=&quot;241&quot;/&gt;&lt;text class=&quot;fnfa2f1-nlab&quot; x=&quot;580&quot; y=&quot;246&quot;&gt;149 matched pairs&lt;/text&gt;&lt;line class=&quot;fnfa2f1-nrule&quot; x1=&quot;478&quot; y1=&quot;258&quot; x2=&quot;487&quot; y2=&quot;258&quot;/&gt;&lt;text class=&quot;fnfa2f1-nlab&quot; x=&quot;580&quot; y=&quot;263&quot;&gt;15 excluded&lt;/text&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;464&quot; y1=&quot;192&quot; x2=&quot;464&quot; y2=&quot;254&quot;/&gt;&lt;line class=&quot;fnfa2f1-slotsep&quot; x1=&quot;32&quot; y1=&quot;190&quot; x2=&quot;896&quot; y2=&quot;190&quot;/&gt;&lt;text class=&quot;fnfa2f1-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;288&quot;&gt;floor, not ceiling &amp;#183; one stock 6.7B attacker &amp;#183; clean arm only&lt;/text&gt;
&lt;line class=&quot;fnfa2f1-rule&quot; x1=&quot;24&quot; y1=&quot;320&quot; x2=&quot;904&quot; y2=&quot;320&quot;/&gt;&lt;text class=&quot;fnfa2f1-armhead&quot; text-anchor=&quot;middle&quot; x=&quot;258&quot; y=&quot;364&quot;&gt;GCC&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armsub&quot; text-anchor=&quot;middle&quot; x=&quot;258&quot; y=&quot;384&quot;&gt;stock-gcc x86 O2&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armhead&quot; text-anchor=&quot;middle&quot; x=&quot;662&quot; y=&quot;364&quot;&gt;clang&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armsub&quot; text-anchor=&quot;middle&quot; x=&quot;662&quot; y=&quot;384&quot;&gt;stock-clang x86 O2&lt;/text&gt;&lt;text class=&quot;fnfa2f1-leg&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;408&quot;&gt;one thread per matched function &amp;#183; 34 of 149 cross (full strength) &amp;#183; 115 run straight (pale) &amp;#183; both arms blue&lt;/text&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 438.0 C 410 438.0 510 438.0 662 438.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 440.8 C 410 440.8 510 440.8 662 440.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 591.2 C 410 591.2 510 591.2 662 591.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 594.0 C 410 594.0 510 594.0 662 594.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 596.8 C 410 596.8 510 596.8 662 596.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 443.6 C 410 443.6 510 443.6 662 443.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 599.6 C 410 599.6 510 599.6 662 599.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 602.4 C 410 602.4 510 602.4 662 602.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 605.2 C 410 605.2 510 605.2 662 605.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 608.0 C 410 608.0 510 608.0 662 608.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 610.8 C 410 610.8 510 610.8 662 610.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 613.6 C 410 613.6 510 613.6 662 613.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 616.4 C 410 616.4 510 616.4 662 616.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 619.2 C 410 619.2 510 619.2 662 619.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 622.0 C 410 622.0 510 622.0 662 622.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 624.8 C 410 624.8 510 624.8 662 624.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 446.4 C 410 446.4 510 446.4 662 446.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 627.6 C 410 627.6 510 627.6 662 627.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 630.4 C 410 630.4 510 630.4 662 630.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 633.2 C 410 633.2 510 633.2 662 633.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 636.0 C 410 636.0 510 636.0 662 636.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 638.8 C 410 638.8 510 638.8 662 638.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 641.6 C 410 641.6 510 641.6 662 641.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 449.2 C 410 449.2 510 449.2 662 449.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 644.4 C 410 644.4 510 644.4 662 644.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 647.2 C 410 647.2 510 647.2 662 647.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 650.0 C 410 650.0 510 650.0 662 650.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 452.0 C 410 452.0 510 452.0 662 452.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 652.8 C 410 652.8 510 652.8 662 652.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 454.8 C 410 454.8 510 454.8 662 454.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 655.6 C 410 655.6 510 655.6 662 655.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 658.4 C 410 658.4 510 658.4 662 658.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 661.2 C 410 661.2 510 661.2 662 661.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 457.6 C 410 457.6 510 457.6 662 457.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 664.0 C 410 664.0 510 664.0 662 664.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 666.8 C 410 666.8 510 666.8 662 666.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 669.6 C 410 669.6 510 669.6 662 669.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 672.4 C 410 672.4 510 672.4 662 672.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 460.4 C 410 460.4 510 460.4 662 460.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 675.2 C 410 675.2 510 675.2 662 675.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 678.0 C 410 678.0 510 678.0 662 678.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 680.8 C 410 680.8 510 680.8 662 680.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 683.6 C 410 683.6 510 683.6 662 683.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 463.2 C 410 463.2 510 463.2 662 463.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 686.4 C 410 686.4 510 686.4 662 686.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 689.2 C 410 689.2 510 689.2 662 689.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 692.0 C 410 692.0 510 692.0 662 692.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 694.8 C 410 694.8 510 694.8 662 694.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 697.6 C 410 697.6 510 697.6 662 697.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 700.4 C 410 700.4 510 700.4 662 700.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 703.2 C 410 703.2 510 703.2 662 703.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 706.0 C 410 706.0 510 706.0 662 706.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 708.8 C 410 708.8 510 708.8 662 708.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 711.6 C 410 711.6 510 711.6 662 711.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 714.4 C 410 714.4 510 714.4 662 714.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 717.2 C 410 717.2 510 717.2 662 717.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 720.0 C 410 720.0 510 720.0 662 720.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 722.8 C 410 722.8 510 722.8 662 722.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 725.6 C 410 725.6 510 725.6 662 725.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 728.4 C 410 728.4 510 728.4 662 728.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 731.2 C 410 731.2 510 731.2 662 731.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 734.0 C 410 734.0 510 734.0 662 734.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 736.8 C 410 736.8 510 736.8 662 736.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 739.6 C 410 739.6 510 739.6 662 739.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 742.4 C 410 742.4 510 742.4 662 742.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 745.2 C 410 745.2 510 745.2 662 745.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 748.0 C 410 748.0 510 748.0 662 748.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 750.8 C 410 750.8 510 750.8 662 750.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 753.6 C 410 753.6 510 753.6 662 753.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 756.4 C 410 756.4 510 756.4 662 756.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 466.0 C 410 466.0 510 466.0 662 466.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 759.2 C 410 759.2 510 759.2 662 759.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 762.0 C 410 762.0 510 762.0 662 762.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 764.8 C 410 764.8 510 764.8 662 764.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 767.6 C 410 767.6 510 767.6 662 767.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 770.4 C 410 770.4 510 770.4 662 770.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 773.2 C 410 773.2 510 773.2 662 773.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 776.0 C 410 776.0 510 776.0 662 776.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 778.8 C 410 778.8 510 778.8 662 778.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 781.6 C 410 781.6 510 781.6 662 781.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 784.4 C 410 784.4 510 784.4 662 784.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 787.2 C 410 787.2 510 787.2 662 787.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 790.0 C 410 790.0 510 790.0 662 790.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 792.8 C 410 792.8 510 792.8 662 792.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 795.6 C 410 795.6 510 795.6 662 795.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 798.4 C 410 798.4 510 798.4 662 798.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 468.8 C 410 468.8 510 468.8 662 468.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 801.2 C 410 801.2 510 801.2 662 801.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 804.0 C 410 804.0 510 804.0 662 804.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 806.8 C 410 806.8 510 806.8 662 806.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 809.6 C 410 809.6 510 809.6 662 809.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 812.4 C 410 812.4 510 812.4 662 812.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 815.2 C 410 815.2 510 815.2 662 815.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 818.0 C 410 818.0 510 818.0 662 818.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 820.8 C 410 820.8 510 820.8 662 820.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 823.6 C 410 823.6 510 823.6 662 823.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 826.4 C 410 826.4 510 826.4 662 826.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 471.6 C 410 471.6 510 471.6 662 471.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 829.2 C 410 829.2 510 829.2 662 829.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 474.4 C 410 474.4 510 474.4 662 474.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 832.0 C 410 832.0 510 832.0 662 832.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 834.8 C 410 834.8 510 834.8 662 834.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 837.6 C 410 837.6 510 837.6 662 837.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 840.4 C 410 840.4 510 840.4 662 840.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 843.2 C 410 843.2 510 843.2 662 843.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 846.0 C 410 846.0 510 846.0 662 846.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 848.8 C 410 848.8 510 848.8 662 848.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 477.2 C 410 477.2 510 477.2 662 477.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 851.6 C 410 851.6 510 851.6 662 851.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 854.4 C 410 854.4 510 854.4 662 854.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 857.2 C 410 857.2 510 857.2 662 857.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 860.0 C 410 860.0 510 860.0 662 860.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 862.8 C 410 862.8 510 862.8 662 862.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 865.6 C 410 865.6 510 865.6 662 865.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tconc&quot; d=&quot;M 258 868.4 C 410 868.4 510 868.4 662 868.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 480.0 C 410 480.0 510 518.4 662 518.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 482.8 C 410 482.8 510 521.2 662 521.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 568.8 C 410 568.8 510 480.0 662 480.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 485.6 C 410 485.6 510 524.0 662 524.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 488.4 C 410 488.4 510 526.8 662 526.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 571.6 C 410 571.6 510 482.8 662 482.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 491.2 C 410 491.2 510 529.6 662 529.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 574.4 C 410 574.4 510 485.6 662 485.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 494.0 C 410 494.0 510 532.4 662 532.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 496.8 C 410 496.8 510 535.2 662 535.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 499.6 C 410 499.6 510 538.0 662 538.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 502.4 C 410 502.4 510 540.8 662 540.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 505.2 C 410 505.2 510 543.6 662 543.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 508.0 C 410 508.0 510 546.4 662 546.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 577.2 C 410 577.2 510 488.4 662 488.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 510.8 C 410 510.8 510 549.2 662 549.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 513.6 C 410 513.6 510 552.0 662 552.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 516.4 C 410 516.4 510 554.8 662 554.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 519.2 C 410 519.2 510 557.6 662 557.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 580.0 C 410 580.0 510 491.2 662 491.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 582.8 C 410 582.8 510 494.0 662 494.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 585.6 C 410 585.6 510 496.8 662 496.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 588.4 C 410 588.4 510 499.6 662 499.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 522.0 C 410 522.0 510 560.4 662 560.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 524.8 C 410 524.8 510 563.2 662 563.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 527.6 C 410 527.6 510 566.0 662 566.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 530.4 C 410 530.4 510 568.8 662 568.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 533.2 C 410 533.2 510 571.6 662 571.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 536.0 C 410 536.0 510 574.4 662 574.4&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 538.8 C 410 538.8 510 577.2 662 577.2&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 541.6 C 410 541.6 510 580.0 662 580.0&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 544.4 C 410 544.4 510 582.8 662 582.8&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 547.2 C 410 547.2 510 585.6 662 585.6&quot;/&gt;&lt;path class=&quot;fnfa2f1-tdisc&quot; d=&quot;M 258 550.0 C 410 550.0 510 588.4 662 588.4&quot;/&gt;&lt;rect class=&quot;fnfa2f1-stampchip&quot; x=&quot;127.0&quot; y=&quot;538.0&quot; width=&quot;674.0&quot; height=&quot;106&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f1-stamp&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;572.0&quot;&gt;ZERO OBFUSCATION IN EITHER ARM&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stampsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;594.0&quot;&gt;Both arms are the clean grid arm, config 0.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stampsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;613.0&quot;&gt;No transform is applied in either arm.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stampsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;632.0&quot;&gt;Only the compiler that built the binary differs.&lt;/text&gt;&lt;line class=&quot;fnfa2f1-brace&quot; x1=&quot;249&quot; y1=&quot;438.0&quot; x2=&quot;249&quot; y2=&quot;538.0&quot;/&gt;&lt;text class=&quot;fnfa2f1-blab&quot; text-anchor=&quot;end&quot; x=&quot;238&quot; y=&quot;490&quot;&gt;RE-EXECUTES&lt;/text&gt;&lt;text class=&quot;fnfa2f1-bcount&quot; text-anchor=&quot;end&quot; x=&quot;238&quot; y=&quot;514&quot;&gt;41&lt;/text&gt;&lt;line class=&quot;fnfa2f1-brace&quot; x1=&quot;249&quot; y1=&quot;644.0&quot; x2=&quot;249&quot; y2=&quot;868.4&quot;/&gt;&lt;text class=&quot;fnfa2f1-blab&quot; text-anchor=&quot;end&quot; x=&quot;238&quot; y=&quot;715&quot;&gt;DOES NOT&lt;/text&gt;&lt;text class=&quot;fnfa2f1-bcount&quot; text-anchor=&quot;end&quot; x=&quot;238&quot; y=&quot;739&quot;&gt;108&lt;/text&gt;&lt;line class=&quot;fnfa2f1-brace&quot; x1=&quot;671&quot; y1=&quot;438.0&quot; x2=&quot;671&quot; y2=&quot;499.6&quot;/&gt;&lt;text class=&quot;fnfa2f1-blab&quot; text-anchor=&quot;start&quot; x=&quot;682&quot; y=&quot;465&quot;&gt;RE-EXECUTES&lt;/text&gt;&lt;text class=&quot;fnfa2f1-bcount&quot; text-anchor=&quot;start&quot; x=&quot;682&quot; y=&quot;489&quot;&gt;23&lt;/text&gt;&lt;line class=&quot;fnfa2f1-brace&quot; x1=&quot;671&quot; y1=&quot;518.4&quot; x2=&quot;671&quot; y2=&quot;538.0&quot;/&gt;&lt;line class=&quot;fnfa2f1-brace&quot; x1=&quot;671&quot; y1=&quot;644.0&quot; x2=&quot;671&quot; y2=&quot;868.4&quot;/&gt;&lt;text class=&quot;fnfa2f1-blab&quot; text-anchor=&quot;start&quot; x=&quot;682&quot; y=&quot;689&quot;&gt;DOES NOT&lt;/text&gt;&lt;text class=&quot;fnfa2f1-bcount&quot; text-anchor=&quot;start&quot; x=&quot;682&quot; y=&quot;713&quot;&gt;126&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armrate&quot; text-anchor=&quot;middle&quot; x=&quot;258&quot; y=&quot;911.2&quot;&gt;27.5% (41/149)&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armci&quot; text-anchor=&quot;middle&quot; x=&quot;258&quot; y=&quot;933.2&quot;&gt;Wilson95 [21.0, 35.2]&lt;/text&gt;&lt;line class=&quot;fnfa2f1-denom&quot; x1=&quot;146.2&quot; y1=&quot;951.2&quot; x2=&quot;369.8&quot; y2=&quot;951.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-denlab&quot; text-anchor=&quot;middle&quot; x=&quot;258&quot; y=&quot;969.2&quot;&gt;n = 149&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armrate&quot; text-anchor=&quot;middle&quot; x=&quot;662&quot; y=&quot;911.2&quot;&gt;15.4% (23/149)&lt;/text&gt;&lt;text class=&quot;fnfa2f1-armci&quot; text-anchor=&quot;middle&quot; x=&quot;662&quot; y=&quot;933.2&quot;&gt;Wilson95 [10.5, 22.1]&lt;/text&gt;&lt;line class=&quot;fnfa2f1-denom&quot; x1=&quot;550.2&quot; y1=&quot;951.2&quot; x2=&quot;773.8&quot; y2=&quot;951.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-denlab&quot; text-anchor=&quot;middle&quot; x=&quot;662&quot; y=&quot;969.2&quot;&gt;n = 149&lt;/text&gt;&lt;text class=&quot;fnfa2f1-denlab&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;987.2&quot;&gt;each denominator strip is drawn at physical length n; the two arms share one n&lt;/text&gt;&lt;text class=&quot;fnfa2f1-delta&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;1021.2&quot;&gt;+12.1 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f1-dsub&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;1045.2&quot;&gt;paired, absolute points &amp;#183; (b - c)/|S| = (26 - 8)/149 &amp;#183; exact McNemar p = 0.0029&lt;/text&gt;&lt;line class=&quot;fnfa2f1-rule&quot; x1=&quot;24&quot; y1=&quot;1061.2&quot; x2=&quot;904&quot; y2=&quot;1061.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-panhead&quot; x=&quot;24&quot; y=&quot;1083.2&quot;&gt;INSET &amp;#183; THE DISCORDANCE FIELD&lt;/text&gt;&lt;text class=&quot;fnfa2f1-pansub&quot; x=&quot;24&quot; y=&quot;1109&quot;&gt;A paired test throws away most of the data on purpose: 34 of the 149 rows carry the entire result. The&lt;/text&gt;&lt;text class=&quot;fnfa2f1-pansub&quot; x=&quot;24&quot; y=&quot;1128&quot;&gt;concordant mass (115 rows) is drawn in the palest BLUE with no outline -- unused by the paired test,&lt;/text&gt;&lt;text class=&quot;fnfa2f1-pansub&quot; x=&quot;24&quot; y=&quot;1147&quot;&gt;but still our own measurement. Nothing in this inset is grey: in this figure grey means EXCLUDED, and&lt;/text&gt;&lt;text class=&quot;fnfa2f1-pansub&quot; x=&quot;24&quot; y=&quot;1166&quot;&gt;the only excluded population is the 15 stubs at the foot of the page.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldax&quot; text-anchor=&quot;middle&quot; x=&quot;185&quot; y=&quot;1231.2&quot;&gt;clang RE-EXEC&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldax&quot; text-anchor=&quot;middle&quot; x=&quot;385&quot; y=&quot;1231.2&quot;&gt;clang FAILS&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldax&quot; text-anchor=&quot;end&quot; x=&quot;136&quot; y=&quot;1261.2&quot;&gt;GCC RE-EXEC&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;152.0&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;158.6&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;165.2&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;171.8&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;178.4&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;185.0&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;191.6&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;198.2&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;204.8&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;211.4&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;152.0&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;158.6&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;165.2&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;171.8&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;178.4&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;150&quot; y=&quot;1331&quot;&gt;a = 15 both re-exec&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldnote&quot; x=&quot;150&quot; y=&quot;1348&quot;&gt;concordant, unused&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;352.0&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;358.6&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;365.2&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;371.8&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;378.4&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;385.0&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;391.6&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;398.2&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;404.8&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;411.4&quot; y=&quot;1247.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;352.0&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;358.6&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;365.2&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;371.8&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;378.4&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;385.0&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;391.6&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;398.2&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;404.8&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;411.4&quot; y=&quot;1253.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;352.0&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;358.6&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;365.2&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;371.8&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;378.4&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;385.0&quot; y=&quot;1260.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;350&quot; y=&quot;1331&quot;&gt;b = 26 gcc only&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldnote&quot; x=&quot;350&quot; y=&quot;1348&quot;&gt;carries the result&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldax&quot; text-anchor=&quot;end&quot; x=&quot;136&quot; y=&quot;1383.2&quot;&gt;GCC FAILS&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;152.0&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;158.6&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;165.2&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;171.8&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;178.4&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;185.0&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;191.6&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotdisc&quot; x=&quot;198.2&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;150&quot; y=&quot;1453&quot;&gt;c = 8 clang only&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldnote&quot; x=&quot;150&quot; y=&quot;1470&quot;&gt;carries the result&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1369.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1375.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1382.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1389.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1395.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1402.2&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1408.8&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1415.4&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1422.0&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;352.0&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;358.6&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;365.2&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;371.8&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;378.4&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;385.0&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;391.6&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;398.2&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;404.8&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;rect class=&quot;fnfa2f1-dotconc&quot; x=&quot;411.4&quot; y=&quot;1428.6&quot; width=&quot;4.2&quot; height=&quot;4.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;350&quot; y=&quot;1453&quot;&gt;d = 100 neither&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldnote&quot; x=&quot;350&quot; y=&quot;1470&quot;&gt;concordant, unused&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldnote&quot; x=&quot;506&quot; y=&quot;1231.2&quot;&gt;the two discordant piles, one shared baseline&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-pile&quot; x=&quot;520&quot; y=&quot;1285.6&quot; width=&quot;48&quot; height=&quot;67.6&quot;/&gt;&lt;text class=&quot;fnfa2f1-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;544&quot; y=&quot;1276&quot;&gt;b = 26&lt;/text&gt;&lt;rect class=&quot;fnfa2f1-pile&quot; x=&quot;598&quot; y=&quot;1353.2&quot; width=&quot;48&quot; height=&quot;20.8&quot;/&gt;&lt;text class=&quot;fnfa2f1-pilelab&quot; text-anchor=&quot;middle&quot; x=&quot;622&quot; y=&quot;1394&quot;&gt;c = 8&lt;/text&gt;&lt;line class=&quot;fnfa2f1-pilebase&quot; x1=&quot;506&quot; y1=&quot;1353.2&quot; x2=&quot;660&quot; y2=&quot;1353.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;506&quot; y=&quot;1427.2&quot;&gt;net (26 - 8)/149&lt;/text&gt;&lt;text class=&quot;fnfa2f1-fldcnt&quot; x=&quot;506&quot; y=&quot;1449.2&quot;&gt;= +12.1 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1255&quot;&gt;b: gcc recovers the&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1274&quot;&gt;function and clang does&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1293&quot;&gt;not. c: clang recovers&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1312&quot;&gt;it and gcc does not.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1331&quot;&gt;The paired difference&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1350&quot;&gt;is the imbalance&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1369&quot;&gt;between those two piles&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1388&quot;&gt;and nothing else, which&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1407&quot;&gt;is why one flip moves&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1426&quot;&gt;it. Both piles are&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1445&quot;&gt;blue: a discordant flip&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;700&quot; y=&quot;1464&quot;&gt;is data, not failure.&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;300&quot; y1=&quot;1548.2&quot; x2=&quot;856&quot; y2=&quot;1548.2&quot;/&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;300.0&quot; y1=&quot;1548.2&quot; x2=&quot;300.0&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;300.0&quot; y=&quot;1572.2&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;411.2&quot; y1=&quot;1548.2&quot; x2=&quot;411.2&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;411.2&quot; y=&quot;1572.2&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;522.4&quot; y1=&quot;1548.2&quot; x2=&quot;522.4&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;522.4&quot; y=&quot;1572.2&quot;&gt;10&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;633.6&quot; y1=&quot;1548.2&quot; x2=&quot;633.6&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;633.6&quot; y=&quot;1572.2&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;744.8&quot; y1=&quot;1548.2&quot; x2=&quot;744.8&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;744.8&quot; y=&quot;1572.2&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iaxis&quot; x1=&quot;856.0&quot; y1=&quot;1548.2&quot; x2=&quot;856.0&quot; y2=&quot;1555.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-itick&quot; text-anchor=&quot;middle&quot; x=&quot;856.0&quot; y=&quot;1572.2&quot;&gt;25&lt;/text&gt;&lt;text class=&quot;fnfa2f1-itick&quot; x=&quot;300&quot; y=&quot;1592.2&quot;&gt;paired difference, absolute percentage points (zero at the left tick)&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;402.3&quot; y1=&quot;1502.2&quot; x2=&quot;735.9&quot; y2=&quot;1502.2&quot;/&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;402.3&quot; y1=&quot;1496.2&quot; x2=&quot;402.3&quot; y2=&quot;1508.2&quot;/&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;735.9&quot; y1=&quot;1496.2&quot; x2=&quot;735.9&quot; y2=&quot;1508.2&quot;/&gt;&lt;circle class=&quot;fnfa2f1-idot&quot; cx=&quot;569.1&quot; cy=&quot;1502.2&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;fnfa2f1-ilab&quot; text-anchor=&quot;end&quot; x=&quot;288&quot; y=&quot;1507.2&quot;&gt;Newcombe paired 95%&lt;/text&gt;&lt;text class=&quot;fnfa2f1-ilab&quot; x=&quot;745.9&quot; y=&quot;1507.2&quot;&gt;[4.6, 19.6] pt&lt;/text&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;404.5&quot; y1=&quot;1528.2&quot; x2=&quot;733.7&quot; y2=&quot;1528.2&quot;/&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;404.5&quot; y1=&quot;1522.2&quot; x2=&quot;404.5&quot; y2=&quot;1534.2&quot;/&gt;&lt;line class=&quot;fnfa2f1-iband&quot; x1=&quot;733.7&quot; y1=&quot;1522.2&quot; x2=&quot;733.7&quot; y2=&quot;1534.2&quot;/&gt;&lt;circle class=&quot;fnfa2f1-idot&quot; cx=&quot;569.1&quot; cy=&quot;1528.2&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;fnfa2f1-ilab&quot; text-anchor=&quot;end&quot; x=&quot;288&quot; y=&quot;1533.2&quot;&gt;20,000-resample bootstrap&lt;/text&gt;&lt;text class=&quot;fnfa2f1-ilab&quot; x=&quot;743.7&quot; y=&quot;1533.2&quot;&gt;[4.7, 19.5] pt&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1616&quot;&gt;Both intervals are drawn as INTERVALS, not as a density strip: the ledger carries the resample&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1635&quot;&gt;interval, not the per-resample distribution, and a drawn shape we do not have would fabricate one. They&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1654&quot;&gt;agree to &amp;lt; 0.1 pt, and both exclude zero. phi = 0.361. The unpaired interval on the same cells is&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1673&quot;&gt;wider, [2.6, 20.5] pt -- pairing is what buys the precision here.&lt;/text&gt;&lt;line class=&quot;fnfa2f1-rule&quot; x1=&quot;24&quot; y1=&quot;1698.2&quot; x2=&quot;904&quot; y2=&quot;1698.2&quot;/&gt;&lt;text class=&quot;fnfa2f1-panhead&quot; x=&quot;24&quot; y=&quot;1718.2&quot;&gt;THE 15 EXCLUDED STUBS &amp;#183; DRAWN INSIDE THE FRAME, IN GREY, COUNTED&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 62 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 88 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;75&quot; y=&quot;1768.2&quot;&gt;10&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;75&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 118 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 144 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;131&quot; y=&quot;1768.2&quot;&gt;19&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;131&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 174 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 200 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;187&quot; y=&quot;1768.2&quot;&gt;27&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;187&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 230 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 256 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;243&quot; y=&quot;1768.2&quot;&gt;32&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;243&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 286 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 312 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;299&quot; y=&quot;1768.2&quot;&gt;33&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;299&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 342 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 368 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;355&quot; y=&quot;1768.2&quot;&gt;37&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;355&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 398 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 424 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;411&quot; y=&quot;1768.2&quot;&gt;44&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;411&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 454 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 480 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;467&quot; y=&quot;1768.2&quot;&gt;119&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;467&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 510 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 536 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;523&quot; y=&quot;1768.2&quot;&gt;125&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;523&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 566 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 592 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;579&quot; y=&quot;1768.2&quot;&gt;129&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;579&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 622 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 648 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;635&quot; y=&quot;1768.2&quot;&gt;133&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;635&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 678 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 704 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;691&quot; y=&quot;1768.2&quot;&gt;141&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;691&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 734 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 760 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;747&quot; y=&quot;1768.2&quot;&gt;147&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;747&quot; y=&quot;1784.2&quot;&gt;both&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 790 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 816 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;803&quot; y=&quot;1768.2&quot;&gt;148&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;803&quot; y=&quot;1784.2&quot;&gt;clang&lt;/text&gt;&lt;path class=&quot;fnfa2f1-stub&quot; d=&quot;M 846 1748.2 l 26 0&quot;/&gt;&lt;path class=&quot;fnfa2f1-stubend&quot; d=&quot;M 872 1743.2 l 0 10&quot;/&gt;&lt;text class=&quot;fnfa2f1-stublab&quot; text-anchor=&quot;middle&quot; x=&quot;859&quot; y=&quot;1768.2&quot;&gt;160&lt;/text&gt;&lt;text class=&quot;fnfa2f1-stubarm&quot; text-anchor=&quot;middle&quot; x=&quot;859&quot; y=&quot;1784.2&quot;&gt;both&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1808&quot;&gt;Row 1 is the func_id, row 2 the arm that truncated it: &quot;clang&quot; = truncated under clang only, &quot;both&quot; =&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1827&quot;&gt;truncated under gcc AND clang. Excluded for truncating in EITHER arm. 2 truncate under gcc, func_ids&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1846&quot;&gt;{147, 160}, and all 15 truncate under clang -- the gcc set is a SUBSET of the clang set, so clang&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1865&quot;&gt;binaries are both harder to read and longer. 164 - 15 = 149. These threads are not cropped off the&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1884&quot;&gt;page; they end here, visibly.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-panhead&quot; x=&quot;24&quot; y=&quot;1925.2&quot;&gt;WHICH 149 THIS IS &amp;#183; AND WHY THERE IS ONLY ONE&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1951&quot;&gt;Article 2&apos;s matched paired subset and Article 3&apos;s config-0 non-truncated count are the SAME 149 func&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1970&quot;&gt;ids -- ONE construction, verified by set comparison of the per-function records. The stub row above is&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;1989&quot;&gt;the proof: only {147, 160} truncate under gcc and both sit inside the 15 that truncate under clang, so&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2008&quot;&gt;&quot;non-truncated in both arms&quot; and &quot;non-truncated under clang&quot; name one population, and 164 - 15 = 149&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2027&quot;&gt;either way.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2060&quot;&gt;What differs between the legs is the MEASUREMENT, not the denominator: this figure reads 27.5% (gcc)&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2079&quot;&gt;and 15.4% (clang) with the stock v1.5 attacker, while Article 3 reads 18.8% (28/149) on the same 149&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2098&quot;&gt;with a fine-tuned clang-matched control. Two attackers, two toolchains, one population -- which is&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2117&quot;&gt;exactly why 27.5% and 18.8% must never be read as a range. Never place this cell beside a clang-strict&lt;/text&gt;&lt;text class=&quot;fnfa2f1-note&quot; x=&quot;24&quot; y=&quot;2136&quot;&gt;/ 8192 cell without both scorers named.&lt;/text&gt;&lt;text class=&quot;fnfa2f1-prov&quot; x=&quot;24&quot; y=&quot;2177&quot;&gt;Population: the clean arm of the 1 clean + 95 obfuscated grid, config 0 in both compilers. Arm rates, the&lt;/text&gt;&lt;text class=&quot;fnfa2f1-prov&quot; x=&quot;24&quot; y=&quot;2195&quot;&gt;paired delta, both Wilson intervals and the exact McNemar p are recomputed from the 149 committed per-function&lt;/text&gt;&lt;text class=&quot;fnfa2f1-prov&quot; x=&quot;24&quot; y=&quot;2213&quot;&gt;rows at build time.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The hero contrast, drawn thread by thread. Only the 34 discordant threads, 26 favouring gcc, 8 favouring clang, carry the whole paired result; the 115 concordant threads contribute nothing by design. Under stock LLM4Decompile v1.5, the gcc-lenient scorer and the native 4096-token window, the gcc arm recovers 41/149 and the clang arm 23/149, a paired +12.1 points (McNemar p = 0.0029, Newcombe [4.6, 19.6]) on functions no obfuscator ever touched.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;arm&lt;/th&gt;&lt;th&gt;k/n&lt;/th&gt;&lt;th&gt;rate&lt;/th&gt;&lt;th&gt;Wilson 95%&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;gcc binaries&lt;/td&gt;&lt;td&gt;41/149&lt;/td&gt;&lt;td&gt;27.5%&lt;/td&gt;&lt;td&gt;[21.0, 35.2]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;clang binaries&lt;/td&gt;&lt;td&gt;23/149&lt;/td&gt;&lt;td&gt;15.4%&lt;/td&gt;&lt;td&gt;[10.5, 22.1]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;paired 2×2 cell&lt;/th&gt;&lt;th&gt;meaning&lt;/th&gt;&lt;th&gt;count&lt;/th&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;a&lt;/td&gt;&lt;td&gt;both arms re-execute&lt;/td&gt;&lt;td&gt;15&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;b&lt;/td&gt;&lt;td&gt;gcc re-executes, clang does not&lt;/td&gt;&lt;td&gt;26&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;c&lt;/td&gt;&lt;td&gt;clang re-executes, gcc does not&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;d&lt;/td&gt;&lt;td&gt;neither re-executes&lt;/td&gt;&lt;td&gt;100&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;paired difference&lt;/td&gt;&lt;td&gt;(b - c)/149&lt;/td&gt;&lt;td&gt;+12.1 pt&lt;/td&gt;&lt;td&gt;exact McNemar p = 0.0029&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Newcombe paired 95% CI&lt;/td&gt;&lt;td&gt;[4.6, 19.6] pt&lt;/td&gt;&lt;td&gt;excludes 0&lt;/td&gt;&lt;td&gt;bootstrap [4.7, 19.5] pt agrees to &amp;lt; 0.1 pt&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot;&gt;15 functions excluded for truncating in either arm (164 - 15 = 149); the 2 gcc-truncated ids {147, 160} are a subset of the 15 clang-truncated ones. Neither arm is obfuscated; both are config 0, the clean grid arm.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; &lt;script type=&quot;module&quot; src=&quot;https://thepragmaticquant.com/vercel/path0/src/components/Figure.astro?astro&amp;type=script&amp;index=0&amp;lang.ts&quot;&gt;&lt;/script&gt;
&lt;p&gt;The model had not been beaten by obfuscation. It had been shown a dialect it never trained on.&lt;/p&gt;
&lt;p&gt;Everything about the semantics of those 149 functions is identical across the arms, same source, same behaviour, same optimization level. What differs is register allocation, instruction selection, idiom choice, prologue shape: the accent of the codegen, and that accent is worth twelve points of measured “resistance” that no obfuscator produced and no paper would have attributed to anything else.&lt;/p&gt;
&lt;h2 id=&quot;the-law-underneath&quot;&gt;The law underneath&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-law-underneath&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The general statement is the one that carries outside this field:&lt;/p&gt;
&lt;p&gt;A model evaluated on data generated by a different toolchain than its training distribution is measuring distribution shift, not a security boundary.&lt;/p&gt;
&lt;p&gt;The word “toolchain” is doing the general work there. It means whatever pipeline turned the world into your model’s input tokens. If the treatment arm’s data came out of a different pipeline than the training data did, the degradation you measure contains a dialect term, and the dialect term is invisible in the table.&lt;/p&gt;
&lt;p&gt;The shape is easy to find elsewhere. An OCR system evaluated on documents from a scanner nobody trained on. A speech model whose “noisy” split was re-encoded through a different codec than the clean one. A model eval whose “hard” subset was regenerated by a newer formatter, so the hard split is also the unfamiliar-formatting split. In each case the measurement is real, reproducible, and mis-labelled.&lt;/p&gt;
&lt;p&gt;The test is mechanical. List every pipeline stage that produced your treatment arm; cross out the ones that also produced your training data; whatever is left is inside your number. A treatment arm built by a different tool is the most common way that list ends up non-empty.&lt;/p&gt;
&lt;h2 id=&quot;three-terms-measured-separately&quot;&gt;Three terms, measured separately&lt;a class=&quot;heading-anchor&quot; href=&quot;#three-terms-measured-separately&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The fix follows directly: if the environment carries effects, measure the environment’s effects as their own contrasts. We named three, and measured each one as an isolated paired comparison, each with its own zero base, its own interval, and its own contrast.&lt;/p&gt;
&lt;p&gt;Compiler provenance is the one above. The second is disassembler format, the model’s actual input is text that a disassembler printed, and two disassemblers print the same instructions with different syntax and layout conventions. Swapping GNU objdump text for llvm-objdump text is worth +5.6 points at &lt;em&gt;n&lt;/em&gt; = 162, &lt;em&gt;p&lt;/em&gt; = 0.049. The third is prompt fidelity: whether the prompt tells the model which optimization level it is looking at. That is worth +1.9 points, p = 0.58.&lt;/p&gt;
&lt;p&gt;The scoreboard follows, with the two rows that lose kept in.&lt;/p&gt;

































&lt;div class=&quot;table-scroll&quot;&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;environment term&lt;/th&gt;&lt;th&gt;contrast&lt;/th&gt;&lt;th&gt;n&lt;/th&gt;&lt;th&gt;test&lt;/th&gt;&lt;th&gt;status&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;compiler provenance&lt;/td&gt;&lt;td&gt;GCC 27.5% (41/149) vs clang 15.4% (23/149), +12.1pt&lt;/td&gt;&lt;td&gt;149&lt;/td&gt;&lt;td&gt;paired McNemar p = 0.0029; Newcombe [+4.6, +19.6]pt; bootstrap agrees to within 0.1pt&lt;/td&gt;&lt;td&gt;survives&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;disassembler format&lt;/td&gt;&lt;td&gt;GNU objdump vs llvm-objdump, opt-unaware, +5.6pt&lt;/td&gt;&lt;td&gt;162&lt;/td&gt;&lt;td&gt;p = 0.049&lt;/td&gt;&lt;td&gt;marginal, does not survive Holm&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;prompt fidelity&lt;/td&gt;&lt;td&gt;opt-aware vs opt-unaware prompt, +1.9pt&lt;/td&gt;&lt;td&gt;162&lt;/td&gt;&lt;td&gt;p = 0.58&lt;/td&gt;&lt;td&gt;demoted to sign-consistent only&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;Holm is the correction you owe a family of tests: run three of them and the bar for each one rises, because the chance that something clears 0.05 rises with the count. The format term at 0.049 clears an uncorrected threshold by a hair and does not clear a family-wise one. One discordant function flipping the other way erases it. The prompt term’s interval spans zero, and the paper demoted it in public to a sign-consistent observation, which is all an interval spanning zero will support.&lt;/p&gt;
&lt;p&gt;Two demoted rows out of three named terms is the honest yield of this leg. They are printed at full size because both of them lose.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;Three small-multiple panels in a row, each a single paired contrast rising from its own zero base with a horizontal confidence interval. The leftmost, compiler provenance, is a solid bar reaching furthest right and its interval clears the zero line. The middle, disassembler format, is a shorter hatched bar whose interval nearly touches zero. The rightmost, prompt fidelity, is only an open outline with no fill, its interval straddling the zero line. Beneath the panels a small Holm ladder marks three rising thresholds and shows the solid provenance bar clearing its rung while the hatched and outlined terms do not.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a2-three-terms&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1829&quot; role=&quot;img&quot; aria-label=&quot;three separate small-multiple panels, each with its own zero base and its own axis: compiler provenance plus 12.1 points solid and surviving, disassembler format plus 5.6 points hatched and failing Holm correction, prompt fidelity plus 1.9 points as an open outline and demoted; beneath them a Holm ladder on which provenance clears its threshold, format is knocked off, and prompt was never on the ladder&quot;&gt;&lt;style&gt;#fig-fnf-a2-three-terms [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a2-three-terms [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a2-three-terms [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a2-three-terms [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a2-three-terms [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a2-three-terms [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a2-three-terms [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a2-three-terms [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a2-three-terms [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a2-three-terms [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1829&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;defs&gt;
  &lt;pattern id=&quot;fnfa2f4-hatch&quot; width=&quot;7&quot; height=&quot;7&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;7&quot; stroke=&quot;#56b4e9&quot; stroke-width=&quot;2.4&quot;/&gt;
  &lt;/pattern&gt;
&lt;/defs&gt;
&lt;style&gt;
    :where(#fnfa2f4-root) text { font-family: var(--mono); fill: var(--fg); }
    .fnfa2f4-title { font-size: 28px; font-weight: bold; letter-spacing: 0.04em; }
    .fnfa2f4-sub { font-size: 16px; fill: var(--comment); }
    .fnfa2f4-rule { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-stripbg { fill: var(--bg); stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-slotlab { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .fnfa2f4-slotval { font-size: 15px; fill: #56b4e9; }
    .fnfa2f4-slotsep { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-nrule { stroke: #56b4e9; stroke-width: 3; }
    .fnfa2f4-nlab { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-scope { font-size: 14px; fill: var(--comment); }
    .fnfa2f4-panhead { font-size: 15px; font-weight: bold; letter-spacing: 0.1em; }
    .fnfa2f4-panbox { fill: none; stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-termlab { font-size: 14px; }
    .fnfa2f4-termcontrast { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-termdelta { font-size: 24px; font-weight: bold; fill: #56b4e9; }
    .fnfa2f4-termmeta { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-zero { stroke: var(--fg); stroke-width: 1.4; }
    .fnfa2f4-axis { stroke: var(--comment); stroke-width: 1.2; }
    .fnfa2f4-tick { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-axtitle { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-barsolid { fill: #56b4e9; }
    .fnfa2f4-barhatch { fill: url(#fnfa2f4-hatch); stroke: #56b4e9; stroke-width: 1.2; }
    .fnfa2f4-baropen { fill: none; stroke: #56b4e9; stroke-width: 1.6; }
    .fnfa2f4-ci { stroke: #56b4e9; stroke-width: 2; }
    .fnfa2f4-cidot { fill: #56b4e9; }
    .fnfa2f4-stsurv { font-size: 14px; font-weight: bold; fill: #56b4e9; letter-spacing: 0.06em; }
    .fnfa2f4-stfail { font-size: 14px; font-weight: bold; fill: #d55e00; letter-spacing: 0.06em; }
    .fnfa2f4-stdem { font-size: 14px; font-weight: bold; fill: var(--comment); letter-spacing: 0.06em; }
    .fnfa2f4-struck { font-size: 22px; font-weight: bold; fill: var(--comment); }
    .fnfa2f4-strikerule { stroke: var(--comment); stroke-width: 2; }
    .fnfa2f4-structag { font-size: 13px; fill: var(--comment); letter-spacing: 0.1em; }
    .fnfa2f4-structag2 { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-supbox { fill: none; stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-supval { font-size: 20px; font-weight: bold; fill: var(--comment); }
    .fnfa2f4-suptag { font-size: 14px; font-weight: bold; fill: var(--comment); letter-spacing: 0.1em; }
    .fnfa2f4-supnote { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-chip { fill: var(--bg); }
    .fnfa2f4-lgrid { stroke: var(--current-line); stroke-width: 1; }
    .fnfa2f4-rung { stroke: var(--current-line); stroke-width: 1.4; }
    .fnfa2f4-rungname { font-size: 15px; font-weight: bold; }
    .fnfa2f4-rungn { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-thresh { stroke: var(--comment); stroke-width: 2; stroke-dasharray: 4 3; }
    .fnfa2f4-threshlab { font-size: 13px; fill: var(--comment); }
    .fnfa2f4-pdot { fill: #56b4e9; }
    .fnfa2f4-plab { font-size: 14px; }
    .fnfa2f4-note { font-size: 14px; }
    .fnfa2f4-prov { font-size: 13px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;fnfa2f4-root&quot;&gt;
&lt;text class=&quot;fnfa2f4-title&quot; x=&quot;24&quot; y=&quot;54&quot;&gt;THREE TERMS, SEPARATELY&lt;/text&gt;
&lt;text class=&quot;fnfa2f4-sub&quot; x=&quot;24&quot; y=&quot;78&quot;&gt;Three environment terms with zero obfuscation anywhere in them. One survives, one is&lt;/text&gt;
&lt;text class=&quot;fnfa2f4-sub&quot; x=&quot;24&quot; y=&quot;100&quot;&gt;knocked off by multiplicity correction, one was demoted -- and they do not sum.&lt;/text&gt;
&lt;rect class=&quot;fnfa2f4-stripbg&quot; x=&quot;24&quot; y=&quot;120&quot; width=&quot;880&quot; height=&quot;178&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;38&quot; y=&quot;138&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;38&quot; y=&quot;159&quot;&gt;stock LLM4Decompile&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;38&quot; y=&quot;177&quot;&gt;6.7B-v1.5&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;258&quot; y=&quot;138&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;258&quot; y=&quot;159&quot;&gt;gcc-lenient&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;258&quot; y=&quot;177&quot;&gt;re-exec&lt;/text&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;244&quot; y1=&quot;124&quot; x2=&quot;244&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;478&quot; y=&quot;138&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;478&quot; y=&quot;159&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;478&quot; y=&quot;177&quot;&gt;no RoPE extrap.&lt;/text&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;464&quot; y1=&quot;124&quot; x2=&quot;464&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;698&quot; y=&quot;138&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;698&quot; y=&quot;159&quot;&gt;per panel: gcc / clang&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;698&quot; y=&quot;177&quot;&gt;x86 O2, seed 0xC0FFEE&lt;/text&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;684&quot; y1=&quot;124&quot; x2=&quot;684&quot; y2=&quot;186&quot;/&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;38&quot; y=&quot;206&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;38&quot; y=&quot;227&quot;&gt;llvm-objdump or&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;38&quot; y=&quot;245&quot;&gt;GNU objdump (VARIED)&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;258&quot; y=&quot;206&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;258&quot; y=&quot;227&quot;&gt;paired, per term&lt;/text&gt;&lt;text class=&quot;fnfa2f4-slotval&quot; x=&quot;258&quot; y=&quot;245&quot;&gt;clean arm only&lt;/text&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;244&quot; y1=&quot;192&quot; x2=&quot;244&quot; y2=&quot;254&quot;/&gt;&lt;text class=&quot;fnfa2f4-slotlab&quot; x=&quot;478&quot; y=&quot;206&quot;&gt;n&lt;/text&gt;&lt;line class=&quot;fnfa2f4-nrule&quot; x1=&quot;478&quot; y1=&quot;224&quot; x2=&quot;566&quot; y2=&quot;224&quot;/&gt;&lt;text class=&quot;fnfa2f4-nlab&quot; x=&quot;580&quot; y=&quot;229&quot;&gt;149 provenance&lt;/text&gt;&lt;line class=&quot;fnfa2f4-nrule&quot; x1=&quot;478&quot; y1=&quot;241&quot; x2=&quot;574&quot; y2=&quot;241&quot;/&gt;&lt;text class=&quot;fnfa2f4-nlab&quot; x=&quot;580&quot; y=&quot;246&quot;&gt;162 format&lt;/text&gt;&lt;line class=&quot;fnfa2f4-nrule&quot; x1=&quot;478&quot; y1=&quot;258&quot; x2=&quot;574&quot; y2=&quot;258&quot;/&gt;&lt;text class=&quot;fnfa2f4-nlab&quot; x=&quot;580&quot; y=&quot;263&quot;&gt;162 prompt&lt;/text&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;464&quot; y1=&quot;192&quot; x2=&quot;464&quot; y2=&quot;254&quot;/&gt;&lt;line class=&quot;fnfa2f4-slotsep&quot; x1=&quot;32&quot; y1=&quot;190&quot; x2=&quot;896&quot; y2=&quot;190&quot;/&gt;&lt;text class=&quot;fnfa2f4-scope&quot; text-anchor=&quot;end&quot; x=&quot;890&quot; y=&quot;288&quot;&gt;floor, not ceiling &amp;#183; one stock 6.7B attacker &amp;#183; clean arm only&lt;/text&gt;
&lt;line class=&quot;fnfa2f4-rule&quot; x1=&quot;24&quot; y1=&quot;306&quot; x2=&quot;904&quot; y2=&quot;306&quot;/&gt;&lt;text class=&quot;fnfa2f4-panhead&quot; x=&quot;24&quot; y=&quot;328&quot;&gt;PANEL 1 &amp;#183; THREE TERMS, MEASURED SEPARATELY&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;354&quot;&gt;Three panels, three zero bases, three axes, three intervals. The scales differ on purpose: a bar in one&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;373&quot;&gt;panel is NOT comparable in length to a bar in another, and there is no shared axis and no riser between&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;392&quot;&gt;them, because the terms do not sum and a co-axial row of bars reads as a waterfall before the caption&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;411&quot;&gt;can say otherwise.&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-panbox&quot; x=&quot;24&quot; y=&quot;452&quot; width=&quot;276&quot; height=&quot;258&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f4-termlab&quot; x=&quot;38&quot; y=&quot;476&quot;&gt;compiler provenance&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termcontrast&quot; x=&quot;38&quot; y=&quot;494&quot;&gt;gcc vs clang&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termdelta&quot; x=&quot;38&quot; y=&quot;528&quot;&gt;+12.1 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;38&quot; y=&quot;548&quot;&gt;n = 149 &amp;#183; McNemar p = 0.0029&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;38&quot; y=&quot;564&quot;&gt;Newcombe95 [4.6, 19.6] pt&lt;/text&gt;&lt;line class=&quot;fnfa2f4-zero&quot; x1=&quot;64.8&quot; y1=&quot;576&quot; x2=&quot;64.8&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;40.0&quot; y1=&quot;628&quot; x2=&quot;284.0&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;64.8&quot; y1=&quot;628&quot; x2=&quot;64.8&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;64.8&quot; y=&quot;649&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;114.4&quot; y1=&quot;628&quot; x2=&quot;114.4&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;114.4&quot; y=&quot;649&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;164.0&quot; y1=&quot;628&quot; x2=&quot;164.0&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;164.0&quot; y=&quot;649&quot;&gt;10&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;213.6&quot; y1=&quot;628&quot; x2=&quot;213.6&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;213.6&quot; y=&quot;649&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;263.2&quot; y1=&quot;628&quot; x2=&quot;263.2&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;263.2&quot; y=&quot;649&quot;&gt;20&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-barsolid&quot; x=&quot;64.8&quot; y=&quot;590&quot; width=&quot;120.0&quot; height=&quot;22&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;110.4&quot; y1=&quot;578&quot; x2=&quot;259.2&quot; y2=&quot;578&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;110.4&quot; y1=&quot;573&quot; x2=&quot;110.4&quot; y2=&quot;583&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;259.2&quot; y1=&quot;573&quot; x2=&quot;259.2&quot; y2=&quot;583&quot;/&gt;&lt;circle class=&quot;fnfa2f4-cidot&quot; cx=&quot;184.8&quot; cy=&quot;578&quot; r=&quot;3.6&quot;/&gt;&lt;text class=&quot;fnfa2f4-stsurv&quot; x=&quot;38&quot; y=&quot;680&quot;&gt;SURVIVES&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-panbox&quot; x=&quot;326&quot; y=&quot;452&quot; width=&quot;276&quot; height=&quot;258&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f4-termlab&quot; x=&quot;340&quot; y=&quot;476&quot;&gt;disassembler format&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termcontrast&quot; x=&quot;340&quot; y=&quot;494&quot;&gt;GNU vs llvm&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termdelta&quot; x=&quot;340&quot; y=&quot;528&quot;&gt;+5.6 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;340&quot; y=&quot;548&quot;&gt;n = 162 &amp;#183; McNemar p = 0.049&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;340&quot; y=&quot;564&quot;&gt;Newcombe95 [0.6, 10.5] pt&lt;/text&gt;&lt;line class=&quot;fnfa2f4-zero&quot; x1=&quot;381.4&quot; y1=&quot;576&quot; x2=&quot;381.4&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;342.0&quot; y1=&quot;628&quot; x2=&quot;586.0&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;381.4&quot; y1=&quot;628&quot; x2=&quot;381.4&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;381.4&quot; y=&quot;649&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;460.1&quot; y1=&quot;628&quot; x2=&quot;460.1&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;460.1&quot; y=&quot;649&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;538.8&quot; y1=&quot;628&quot; x2=&quot;538.8&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;538.8&quot; y=&quot;649&quot;&gt;10&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-barhatch&quot; x=&quot;381.4&quot; y=&quot;590&quot; width=&quot;88.2&quot; height=&quot;22&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;390.8&quot; y1=&quot;578&quot; x2=&quot;546.6&quot; y2=&quot;578&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;390.8&quot; y1=&quot;573&quot; x2=&quot;390.8&quot; y2=&quot;583&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;546.6&quot; y1=&quot;573&quot; x2=&quot;546.6&quot; y2=&quot;583&quot;/&gt;&lt;circle class=&quot;fnfa2f4-cidot&quot; cx=&quot;469.5&quot; cy=&quot;578&quot; r=&quot;3.6&quot;/&gt;&lt;text class=&quot;fnfa2f4-stfail&quot; x=&quot;340&quot; y=&quot;680&quot;&gt;FAILS HOLM&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-panbox&quot; x=&quot;628&quot; y=&quot;452&quot; width=&quot;276&quot; height=&quot;258&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f4-termlab&quot; x=&quot;642&quot; y=&quot;476&quot;&gt;prompt fidelity&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termcontrast&quot; x=&quot;642&quot; y=&quot;494&quot;&gt;opt-aware vs opt-unaware&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termdelta&quot; x=&quot;642&quot; y=&quot;528&quot;&gt;+1.9 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;642&quot; y=&quot;548&quot;&gt;n = 162 &amp;#183; McNemar p = 0.5811&lt;/text&gt;&lt;text class=&quot;fnfa2f4-termmeta&quot; x=&quot;642&quot; y=&quot;564&quot;&gt;Newcombe95 [-2.6, 6.3] pt&lt;/text&gt;&lt;line class=&quot;fnfa2f4-zero&quot; x1=&quot;733.5&quot; y1=&quot;576&quot; x2=&quot;733.5&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;644.0&quot; y1=&quot;628&quot; x2=&quot;888.0&quot; y2=&quot;628&quot;/&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;645.8&quot; y1=&quot;628&quot; x2=&quot;645.8&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;645.8&quot; y=&quot;649&quot;&gt;-5&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;733.5&quot; y1=&quot;628&quot; x2=&quot;733.5&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;733.5&quot; y=&quot;649&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;fnfa2f4-axis&quot; x1=&quot;821.3&quot; y1=&quot;628&quot; x2=&quot;821.3&quot; y2=&quot;634&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;821.3&quot; y=&quot;649&quot;&gt;5&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-baropen&quot; x=&quot;733.5&quot; y=&quot;590&quot; width=&quot;33.4&quot; height=&quot;22&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;687.9&quot; y1=&quot;578&quot; x2=&quot;844.1&quot; y2=&quot;578&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;687.9&quot; y1=&quot;573&quot; x2=&quot;687.9&quot; y2=&quot;583&quot;/&gt;&lt;line class=&quot;fnfa2f4-ci&quot; x1=&quot;844.1&quot; y1=&quot;573&quot; x2=&quot;844.1&quot; y2=&quot;583&quot;/&gt;&lt;circle class=&quot;fnfa2f4-cidot&quot; cx=&quot;766.9&quot; cy=&quot;578&quot; r=&quot;3.6&quot;/&gt;&lt;text class=&quot;fnfa2f4-stdem&quot; x=&quot;642&quot; y=&quot;680&quot;&gt;DEMOTED (sign-consistent&lt;/text&gt;&lt;text class=&quot;fnfa2f4-stdem&quot; x=&quot;642&quot; y=&quot;698&quot;&gt;only)&lt;/text&gt;&lt;text class=&quot;fnfa2f4-axtitle&quot; text-anchor=&quot;middle&quot; x=&quot;464&quot; y=&quot;732&quot;&gt;each panel: paired difference in absolute percentage points, on ITS OWN scale &amp;#183; own zero, own axis, own interval&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;758&quot;&gt;Fill encodes status, never hue. SOLID: survives. HATCHED: measured, and&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;777&quot;&gt;knocked off the Holm ladder below. OPEN OUTLINE, no fill: demoted, interval&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;796&quot;&gt;spans zero -- a filled bar would un-demote it. Counterfactual on the format&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;815&quot;&gt;term, recomputed from its committed 2x2 (13 vs 4 discordant): move ONE of its&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;834&quot;&gt;13 discordant functions to concordant and p goes 0.049 -&amp;gt; 0.077 and the&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;853&quot;&gt;difference falls to +4.9 pt. That is a counterfactual, not a measurement, and&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;872&quot;&gt;it is why +5.6 pt at p = 0.049 is not a result you can lean on.&lt;/text&gt;&lt;line class=&quot;fnfa2f4-rule&quot; x1=&quot;24&quot; y1=&quot;897&quot; x2=&quot;904&quot; y2=&quot;897&quot;/&gt;&lt;text class=&quot;fnfa2f4-panhead&quot; x=&quot;24&quot; y=&quot;917&quot;&gt;WHAT IS NOT DRAWN HERE&lt;/text&gt;&lt;text class=&quot;fnfa2f4-struck&quot; x=&quot;24&quot; y=&quot;947&quot;&gt;~35 points&lt;/text&gt;&lt;line class=&quot;fnfa2f4-strikerule&quot; x1=&quot;24&quot; y1=&quot;940&quot; x2=&quot;152&quot; y2=&quot;940&quot;/&gt;&lt;text class=&quot;fnfa2f4-structag&quot; x=&quot;172&quot; y=&quot;943&quot;&gt;THE FIELD&amp;#39;S MENTAL MODEL OF THE ENVIRONMENT TERM&lt;/text&gt;&lt;text class=&quot;fnfa2f4-structag2&quot; x=&quot;172&quot; y=&quot;961&quot;&gt;kept at full size with a rule through it, and set GREY: it is a mental model, not a failed&lt;/text&gt;&lt;text class=&quot;fnfa2f4-structag2&quot; x=&quot;172&quot; y=&quot;979&quot;&gt;measurement, so it does not get vermillion&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1019&quot;&gt;And a fourth bar is DELETED, not drawn small: the &quot;~4 pt predicted cross-&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1038&quot;&gt;harness term&quot; is not a measurement. Its only trace in this corpus is 36.71 -&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1057&quot;&gt;32.8 = 3.91, the residual the ADDITIVE MODEL predicted before the corner was&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1076&quot;&gt;measured -- and that additive model is exactly what the measured 27.2% corner&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1095&quot;&gt;refuted. The trace is recorded so nobody re-derives the bar. The residuals&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1114&quot;&gt;that ARE measured live at other aggregation levels and are not interchangeable&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1133&quot;&gt;with it: 9.5 pt (36.71 - 44/162, O2-only, GNU-objdump to GNU-objdump), 15.9 pt&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1152&quot;&gt;(the AVG-level reproduction miss, 45.37 - 29.51 (&apos;a ~16-point miss&apos;)).&lt;/text&gt;&lt;line class=&quot;fnfa2f4-rule&quot; x1=&quot;24&quot; y1=&quot;1181&quot; x2=&quot;904&quot; y2=&quot;1181&quot;/&gt;&lt;text class=&quot;fnfa2f4-panhead&quot; x=&quot;24&quot; y=&quot;1201&quot;&gt;PANEL 2 &amp;#183; THE HOLM LADDER &amp;#183; THREE TESTS IN ONE FAMILY&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1227&quot;&gt;Three tests on one family of environment terms, so the thresholds step down: alpha/3 = 0.0167, alpha/2&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1246&quot;&gt;= 0.025, alpha/1 = 0.05, recomputed here from the family definition. Sorted ascending, the procedure&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1265&quot;&gt;stops at the first p above its own rung.&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-supbox&quot; x=&quot;24&quot; y=&quot;1288&quot; width=&quot;880&quot; height=&quot;100&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;fnfa2f4-supval&quot; x=&quot;40&quot; y=&quot;1312&quot;&gt;11.7 pt&lt;/text&gt;&lt;line class=&quot;fnfa2f4-strikerule&quot; x1=&quot;36&quot; y1=&quot;1305&quot; x2=&quot;124&quot; y2=&quot;1305&quot;/&gt;&lt;text class=&quot;fnfa2f4-suptag&quot; x=&quot;148&quot; y=&quot;1308&quot;&gt;SUPERSEDED . CROSS-HARNESS&lt;/text&gt;&lt;text class=&quot;fnfa2f4-supnote&quot; x=&quot;148&quot; y=&quot;1326&quot;&gt;36.71 - 25.3, i.e. every other harness difference riding along · n = 162, not 149&lt;/text&gt;&lt;text class=&quot;fnfa2f4-supnote&quot; x=&quot;148&quot; y=&quot;1344&quot;&gt;no test and no rung: it is an estimate this leg superseded. The value 11.7 also appears in this&lt;/text&gt;&lt;text class=&quot;fnfa2f4-supnote&quot; x=&quot;148&quot; y=&quot;1362&quot;&gt;corpus as string-encryption&apos;s Wilson upper bound.&lt;/text&gt;&lt;line class=&quot;fnfa2f4-lgrid&quot; x1=&quot;232.0&quot; y1=&quot;1428&quot; x2=&quot;232.0&quot; y2=&quot;1574&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;232.0&quot; y=&quot;1592&quot;&gt;0.001&lt;/text&gt;&lt;line class=&quot;fnfa2f4-lgrid&quot; x1=&quot;434.0&quot; y1=&quot;1428&quot; x2=&quot;434.0&quot; y2=&quot;1574&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;434.0&quot; y=&quot;1592&quot;&gt;0.01&lt;/text&gt;&lt;line class=&quot;fnfa2f4-lgrid&quot; x1=&quot;636.0&quot; y1=&quot;1428&quot; x2=&quot;636.0&quot; y2=&quot;1574&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;636.0&quot; y=&quot;1592&quot;&gt;0.1&lt;/text&gt;&lt;line class=&quot;fnfa2f4-lgrid&quot; x1=&quot;838.0&quot; y1=&quot;1428&quot; x2=&quot;838.0&quot; y2=&quot;1574&quot;/&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;838.0&quot; y=&quot;1592&quot;&gt;1.0&lt;/text&gt;&lt;text class=&quot;fnfa2f4-tick&quot; text-anchor=&quot;middle&quot; x=&quot;535&quot; y=&quot;1612&quot;&gt;exact McNemar p, log scale&lt;/text&gt;&lt;line class=&quot;fnfa2f4-rung&quot; x1=&quot;232&quot; y1=&quot;1454&quot; x2=&quot;838&quot; y2=&quot;1454&quot;/&gt;&lt;text class=&quot;fnfa2f4-rungname&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1459&quot;&gt;provenance&lt;/text&gt;&lt;text class=&quot;fnfa2f4-rungn&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1475&quot;&gt;n = 149&lt;/text&gt;&lt;line class=&quot;fnfa2f4-thresh&quot; x1=&quot;479.0&quot; y1=&quot;1441&quot; x2=&quot;479.0&quot; y2=&quot;1467&quot;/&gt;&lt;text class=&quot;fnfa2f4-threshlab&quot; text-anchor=&quot;middle&quot; x=&quot;479.0&quot; y=&quot;1436&quot;&gt;0.0167&lt;/text&gt;&lt;circle class=&quot;fnfa2f4-pdot&quot; cx=&quot;325.4&quot; cy=&quot;1454&quot; r=&quot;6&quot;/&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;332.4&quot; y=&quot;1446.4&quot; width=&quot;94.0&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-plab&quot; x=&quot;337.4&quot; y=&quot;1459.0&quot;&gt;p = 0.0029&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;777.6&quot; y=&quot;1423.4&quot; width=&quot;65.4&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-stsurv&quot; text-anchor=&quot;end&quot; x=&quot;838.0&quot; y=&quot;1436.0&quot;&gt;CLEARS&lt;/text&gt;&lt;line class=&quot;fnfa2f4-rung&quot; x1=&quot;232&quot; y1=&quot;1500&quot; x2=&quot;838&quot; y2=&quot;1500&quot;/&gt;&lt;text class=&quot;fnfa2f4-rungname&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1505&quot;&gt;format&lt;/text&gt;&lt;text class=&quot;fnfa2f4-rungn&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1521&quot;&gt;n = 162&lt;/text&gt;&lt;line class=&quot;fnfa2f4-thresh&quot; x1=&quot;514.4&quot; y1=&quot;1487&quot; x2=&quot;514.4&quot; y2=&quot;1513&quot;/&gt;&lt;text class=&quot;fnfa2f4-threshlab&quot; text-anchor=&quot;middle&quot; x=&quot;514.4&quot; y=&quot;1482&quot;&gt;0.025&lt;/text&gt;&lt;circle class=&quot;fnfa2f4-pdot&quot; cx=&quot;573.4&quot; cy=&quot;1500&quot; r=&quot;6&quot;/&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;580.4&quot; y=&quot;1492.4&quot; width=&quot;85.6&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-plab&quot; x=&quot;585.4&quot; y=&quot;1505.0&quot;&gt;p = 0.049&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;731.4&quot; y=&quot;1469.4&quot; width=&quot;111.6&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-stfail&quot; text-anchor=&quot;end&quot; x=&quot;838.0&quot; y=&quot;1482.0&quot;&gt;KNOCKED OFF&lt;/text&gt;&lt;line class=&quot;fnfa2f4-rung&quot; x1=&quot;232&quot; y1=&quot;1546&quot; x2=&quot;838&quot; y2=&quot;1546&quot;/&gt;&lt;text class=&quot;fnfa2f4-rungname&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1551&quot;&gt;prompt&lt;/text&gt;&lt;text class=&quot;fnfa2f4-rungn&quot; text-anchor=&quot;end&quot; x=&quot;218&quot; y=&quot;1567&quot;&gt;n = 162&lt;/text&gt;&lt;line class=&quot;fnfa2f4-thresh&quot; x1=&quot;575.2&quot; y1=&quot;1533&quot; x2=&quot;575.2&quot; y2=&quot;1559&quot;/&gt;&lt;text class=&quot;fnfa2f4-threshlab&quot; text-anchor=&quot;middle&quot; x=&quot;575.2&quot; y=&quot;1528&quot;&gt;0.05&lt;/text&gt;&lt;circle class=&quot;fnfa2f4-pdot&quot; cx=&quot;790.4&quot; cy=&quot;1546&quot; r=&quot;6&quot;/&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;797.4&quot; y=&quot;1538.4&quot; width=&quot;94.0&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-plab&quot; x=&quot;802.4&quot; y=&quot;1551.0&quot;&gt;p = 0.5811&lt;/text&gt;&lt;rect class=&quot;fnfa2f4-chip&quot; x=&quot;620.5&quot; y=&quot;1515.4&quot; width=&quot;222.5&quot; height=&quot;18.9&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;fnfa2f4-stdem&quot; text-anchor=&quot;end&quot; x=&quot;838.0&quot; y=&quot;1528.0&quot;&gt;WAS NEVER ON THE LADDER&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1632&quot;&gt;Holm-Bonferroni over the 3-term family, sorted ascending: alpha/3 = 0.0167, alpha/2 = 0.025, alpha/1 =&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1651&quot;&gt;0.05. provenance clears its own rung (0.0029 vs 0.0167); format does not (0.049 vs 0.025) and the step-&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1670&quot;&gt;down stops there; prompt was never on the ladder (0.5811). The paper states the terms are &quot;not additive&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1689&quot;&gt;shares, and do not sum&quot;, and the measured additivity corner falls 5.6 pt short of the additive&lt;/text&gt;&lt;text class=&quot;fnfa2f4-note&quot; x=&quot;24&quot; y=&quot;1708&quot;&gt;prediction -- which is why this figure has three axes and no risers.&lt;/text&gt;&lt;text class=&quot;fnfa2f4-prov&quot; x=&quot;24&quot; y=&quot;1753&quot;&gt;Deltas, exact McNemar p values, Holm thresholds, Holm verdicts and the one-flip counterfactual are all&lt;/text&gt;&lt;text class=&quot;fnfa2f4-prov&quot; x=&quot;24&quot; y=&quot;1771&quot;&gt;recomputed from the committed 2x2 tables at build time. n = 149 for provenance and n = 162 for the other two:&lt;/text&gt;&lt;text class=&quot;fnfa2f4-prov&quot; x=&quot;24&quot; y=&quot;1789&quot;&gt;different denominators, both printed, never mixed on one axis.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt;  &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;term&lt;/th&gt;&lt;th&gt;contrast&lt;/th&gt;&lt;th&gt;n&lt;/th&gt;&lt;th&gt;test&lt;/th&gt;&lt;th&gt;p&lt;/th&gt;&lt;th&gt;Holm threshold&lt;/th&gt;&lt;th&gt;Newcombe 95% CI&lt;/th&gt;&lt;th&gt;status&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;compiler provenance&lt;/td&gt;&lt;td&gt;+12.1 pt&lt;/td&gt;&lt;td&gt;149&lt;/td&gt;&lt;td&gt;exact McNemar&lt;/td&gt;&lt;td&gt;0.0029&lt;/td&gt;&lt;td&gt;0.0167&lt;/td&gt;&lt;td&gt;[4.6, 19.6] pt&lt;/td&gt;&lt;td&gt;survives&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;disassembler format&lt;/td&gt;&lt;td&gt;+5.6 pt&lt;/td&gt;&lt;td&gt;162&lt;/td&gt;&lt;td&gt;exact McNemar&lt;/td&gt;&lt;td&gt;0.049&lt;/td&gt;&lt;td&gt;0.025&lt;/td&gt;&lt;td&gt;[0.6, 10.5] pt&lt;/td&gt;&lt;td&gt;fails Holm&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;prompt fidelity&lt;/td&gt;&lt;td&gt;+1.9 pt&lt;/td&gt;&lt;td&gt;162&lt;/td&gt;&lt;td&gt;exact McNemar&lt;/td&gt;&lt;td&gt;0.5811&lt;/td&gt;&lt;td&gt;0.05&lt;/td&gt;&lt;td&gt;[-2.6, 6.3] pt&lt;/td&gt;&lt;td&gt;demoted (sign-consistent only)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;8&quot;&gt;Holm-Bonferroni over the 3-term family, sorted ascending: 0.0167, 0.025, 0.05. Provenance 0.0029 ≤ 0.0167 rejects the null; format 0.049 &amp;gt; 0.025 does not, and everything above it is retained. One discordant flip in the format term takes its p to 0.077 and its difference to +4.9 pt.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;h2 id=&quot;the-terms-do-not-sum&quot;&gt;The terms do not sum&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-terms-do-not-sum&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Add the two measured effects to the base cell and the fourth corner should read 25.3 + 5.6 + 1.9 = 32.8%. It reads 27.2%. The prediction misses by about 5.6 points, and in the paper’s own words the three terms “are not additive shares, and do not sum.”&lt;/p&gt;
&lt;p&gt;Here is the full 2 × 2 that says so, four obfuscation-free cells, all on GCC binaries, gcc-lenient scorer, native 4096-token window, x86 at O2, n = 162, with Wilson 95% intervals in brackets (the interval for a proportion when the count is small enough that the textbook formula misbehaves):&lt;/p&gt;




















&lt;div class=&quot;table-scroll&quot;&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;opt-unaware prompt&lt;/th&gt;&lt;th&gt;opt-aware prompt&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;llvm-objdump&lt;/td&gt;&lt;td&gt;25.3% (41/162) [19.2, 32.5]&lt;/td&gt;&lt;td&gt;27.2% (44/162) [20.9, 34.5]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;GNU objdump&lt;/td&gt;&lt;td&gt;30.9% (50/162) [24.3, 38.4]&lt;/td&gt;&lt;td&gt;27.2% (44/162) [20.9, 34.5]&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;Both opt-aware cells come out at the same count, 44 of 162. The format gain that is worth +5.6 points under opt-unaware prompting is worth nothing at all once the prompt names the optimization level, and that is where the missing 5.6 points went.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The 41 in 41/162 (llvm-objdump, opt-unaware) is a different cell from the 41 in 41/149 (the GCC provenance arm). Same count, different populations, different experiments. Anchor a count to its denominator every time you move it between paragraphs, or a number-scrape will eventually splice two of these into a trend.&lt;/span&gt;
&lt;p&gt;The format term is +5.6 points and the additivity residual is ~5.6 points, and those are different quantities that happen to coincide. The first is a measured paired difference between two disassembler formats under opt-unaware prompting. The second is arithmetic: predicted corner minus measured corner. And the coincidence is thinner than it looks, because the two 44s are not the same 44 functions. Checked pairwise against the per-function records, the two opt-aware cells share 37 recovered functions and differ on 7 in each direction, so the shortfall equals the vanished term arithmetically rather than because the same functions recovered.&lt;/p&gt;
&lt;p&gt;That locates the interaction. It does not explain it. Why conditioning a prompt on optimization level should absorb a disassembler-syntax effect is unexplained here and unexplained in the paper. The four intervals overlap visibly, so the honest label on the interaction is suggestive and unestablished. This section was first drawn as a waterfall, the naive total on the left, three descending steps, one per term, landing on the corner cell, and a waterfall’s whole gestalt is additivity: the reader’s eye completes the sum before it reaches any caption disclaiming one. The arithmetic above forbids that chart, which is why it is not here. In what replaced it the gap is drawn as empty space, because there is no mechanism to fill it with.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;An interaction plot on a percent axis clipped to roughly 15 to 40 percent, with a break glyph at its foot. Two lines run left to right across the two prompt conditions, one line per disassembler. Under the opt-unaware prompt the two lines sit far apart; under the opt-aware prompt they converge onto a single shared point, so the lines are visibly non-parallel, they fan in rather than tracking each other. High above the measured opt-aware corner floats a grey open marker at the phantom 32.8 percent the additive model predicted, and a vertical caliper drops from it down to the measured corner, the span between them left as literal empty space with no bar or riser filling it.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a2-additivity-ladder&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1300&quot; role=&quot;img&quot; aria-label=&quot;two-by-two interaction plot of re-executability against disassembler format; the opt-unaware line climbs from 25.3 to 30.9 percent while the opt-aware line runs flat at 27.2 percent, and an open grey marker shows the 32.8 percent additive prediction 5.6 points above the measured corner with the gap left empty&quot;&gt;&lt;style&gt;#fig-fnf-a2-additivity-ladder [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a2-additivity-ladder [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a2-additivity-ladder [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a2-additivity-ladder [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a2-additivity-ladder [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a2-additivity-ladder [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a2-additivity-ladder [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a2-additivity-ladder [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a2-additivity-ladder [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a2-additivity-ladder [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1300&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#al-root) text { font-family: var(--mono); fill: var(--fg); }
    .al-title { font-size: 24px; font-weight: bold; }
    .al-sub { font-size: 17px; fill: var(--comment); }
    .al-axlab { font-size: 16px; }
    .al-tick { font-size: 16px; fill: var(--comment); }
    .al-xtick { font-size: 17px; }
    .al-val { font-size: 15px; }
    .al-leg { font-size: 16px; fill: #56b4e9; }
    .al-phlab { font-size: 15px; fill: var(--comment); }
    .al-caliplab { font-size: 15px; font-weight: bold; }
    .al-nhead { font-size: 17px; font-weight: bold; }
    .al-note { font-size: 15px; }
    .al-caveat { font-size: 15px; fill: var(--comment); }
    .al-slotlab { font-size: 14px; fill: var(--comment); }
    /* The three slot statuses are a VOCABULARY, not a list of what this figure
       happens to use: the class name is computed as -slot-{status} from the slot
       table. A status this figure has no instance of today therefore has no rendered
       element, and deleting its rule would make it paint with the SVG default (black
       fill) the moment a condition is flagged. Kept deliberately -- an unrendered
       rule here is a fallback, not dead craft. */
    .al-slot-lit { font-size: 14px; fill: #56b4e9; }
    .al-slot-grey { font-size: 14px; fill: var(--comment); }
    .al-slot-verm { font-size: 14px; fill: #d55e00; }
    .al-grid { stroke: var(--current-line); stroke-width: 1; }
    .al-axis { stroke: var(--comment); stroke-width: 1.5; }
    .al-line { stroke: #56b4e9; stroke-width: 3; fill: none; }
    .al-whisk { stroke: #56b4e9; stroke-width: 1.4; opacity: 0.7; }
    .al-dot { fill: #56b4e9; }
    .al-phantom { fill: none; stroke: var(--comment); stroke-width: 2.6; stroke-dasharray: 4 3; }
    .al-caliper { stroke: var(--fg); stroke-width: 1.6; }
    .al-lead { stroke: var(--comment); stroke-width: 1; stroke-dasharray: 3 4; }
    .al-chip { fill: var(--bg); }
    .al-rule { stroke: var(--current-line); stroke-width: 1; }
    .al-prov { font-size: 14px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;al-root&quot;&gt;
&lt;text class=&quot;al-title&quot; x=&quot;24&quot; y=&quot;50&quot;&gt;The additivity ladder&lt;/text&gt;
&lt;text class=&quot;al-sub&quot; x=&quot;24&quot; y=&quot;76&quot;&gt;An interaction plot, not a decomposition: the terms do not sum.&lt;/text&gt;
&lt;text class=&quot;al-sub&quot; x=&quot;24&quot; y=&quot;98&quot;&gt;Two prompts x two disassembler formats, one leg, four measured cells.&lt;/text&gt;
&lt;line class=&quot;al-rule&quot; x1=&quot;24&quot; y1=&quot;118&quot; x2=&quot;904&quot; y2=&quot;118&quot;/&gt;
&lt;text class=&quot;al-slotlab&quot; x=&quot;24.0&quot; y=&quot;142.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;99.6&quot; y=&quot;142.0&quot;&gt;stock v1.5&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;208.8&quot; y=&quot;142.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;267.6&quot; y=&quot;142.0&quot;&gt;gcc-lenient&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;385.2&quot; y=&quot;142.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;444.0&quot; y=&quot;142.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;561.6&quot; y=&quot;142.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;al-slot-grey&quot; x=&quot;637.2&quot; y=&quot;142.0&quot;&gt;gcc x86 O2 (fixed)&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;24.0&quot; y=&quot;165.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;133.2&quot; y=&quot;165.0&quot;&gt;llvm-objdump vs GNU objdump (VARIED)&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;460.8&quot; y=&quot;165.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;570.0&quot; y=&quot;165.0&quot;&gt;aggregate, truncation-excluded&lt;/text&gt;&lt;text class=&quot;al-slotlab&quot; x=&quot;24.0&quot; y=&quot;188.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;al-slot-lit&quot; x=&quot;40.8&quot; y=&quot;188.0&quot;&gt;162 in all four cells&lt;/text&gt;
&lt;text class=&quot;al-sub&quot; x=&quot;24&quot; y=&quot;218&quot;&gt;floor, not ceiling; one stock 6.7B attacker; static/client-side tier.&lt;/text&gt;
&lt;text class=&quot;al-axlab&quot; x=&quot;24&quot; y=&quot;266&quot;&gt;re-executability (%, gcc-lenient, n = 162 in every cell)&lt;/text&gt;
&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;730.0&quot; x2=&quot;576&quot; y2=&quot;730.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;736.0&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;642.0&quot; x2=&quot;576&quot; y2=&quot;642.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;648.0&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;554.0&quot; x2=&quot;576&quot; y2=&quot;554.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;560.0&quot;&gt;25&lt;/text&gt;&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;466.0&quot; x2=&quot;576&quot; y2=&quot;466.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;472.0&quot;&gt;30&lt;/text&gt;&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;378.0&quot; x2=&quot;576&quot; y2=&quot;378.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;384.0&quot;&gt;35&lt;/text&gt;&lt;line class=&quot;al-grid&quot; x1=&quot;150&quot; y1=&quot;290.0&quot; x2=&quot;576&quot; y2=&quot;290.0&quot;/&gt;&lt;text class=&quot;al-tick&quot; text-anchor=&quot;end&quot; x=&quot;138&quot; y=&quot;296.0&quot;&gt;40&lt;/text&gt;&lt;line class=&quot;al-axis&quot; x1=&quot;150&quot; y1=&quot;290&quot; x2=&quot;150&quot; y2=&quot;730&quot;/&gt;&lt;line class=&quot;al-axis&quot; x1=&quot;142&quot; y1=&quot;742&quot; x2=&quot;158&quot; y2=&quot;734&quot;/&gt;&lt;line class=&quot;al-axis&quot; x1=&quot;142&quot; y1=&quot;750&quot; x2=&quot;158&quot; y2=&quot;742&quot;/&gt;&lt;line class=&quot;al-axis&quot; x1=&quot;300&quot; y1=&quot;730&quot; x2=&quot;300&quot; y2=&quot;740&quot;/&gt;&lt;text class=&quot;al-xtick&quot; text-anchor=&quot;middle&quot; x=&quot;300&quot; y=&quot;766&quot;&gt;llvm-objdump&lt;/text&gt;&lt;line class=&quot;al-axis&quot; x1=&quot;520&quot; y1=&quot;730&quot; x2=&quot;520&quot; y2=&quot;740&quot;/&gt;&lt;text class=&quot;al-xtick&quot; text-anchor=&quot;middle&quot; x=&quot;520&quot; y=&quot;766&quot;&gt;GNU objdump&lt;/text&gt;

&lt;line class=&quot;al-line&quot; x1=&quot;170&quot; y1=&quot;326&quot; x2=&quot;200&quot; y2=&quot;326&quot;/&gt;
&lt;text class=&quot;al-leg&quot; x=&quot;210&quot; y=&quot;331&quot;&gt;opt-unaware prompt&lt;/text&gt;
&lt;line class=&quot;al-line&quot; x1=&quot;170&quot; y1=&quot;354&quot; x2=&quot;200&quot; y2=&quot;354&quot; stroke-dasharray=&quot;7 6&quot;/&gt;
&lt;text class=&quot;al-leg&quot; x=&quot;210&quot; y=&quot;359&quot;&gt;opt-aware prompt&lt;/text&gt;

&lt;line class=&quot;al-line&quot; x1=&quot;290&quot; y1=&quot;548.5&quot; x2=&quot;510&quot; y2=&quot;450.9&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;290&quot; y1=&quot;656.1&quot; x2=&quot;290&quot; y2=&quot;422.0&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;283&quot; y1=&quot;656.1&quot; x2=&quot;297&quot; y2=&quot;656.1&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;283&quot; y1=&quot;422.0&quot; x2=&quot;297&quot; y2=&quot;422.0&quot;/&gt;&lt;circle class=&quot;al-dot&quot; cx=&quot;290&quot; cy=&quot;548.5&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;510&quot; y1=&quot;566.3&quot; x2=&quot;510&quot; y2=&quot;318.2&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;503&quot; y1=&quot;566.3&quot; x2=&quot;517&quot; y2=&quot;566.3&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;503&quot; y1=&quot;318.2&quot; x2=&quot;517&quot; y2=&quot;318.2&quot;/&gt;&lt;circle class=&quot;al-dot&quot; cx=&quot;510&quot; cy=&quot;450.9&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;al-line&quot; x1=&quot;310&quot; y1=&quot;516.0&quot; x2=&quot;530&quot; y2=&quot;516.0&quot; stroke-dasharray=&quot;7 6&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;310&quot; y1=&quot;626.2&quot; x2=&quot;310&quot; y2=&quot;386.8&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;303&quot; y1=&quot;626.2&quot; x2=&quot;317&quot; y2=&quot;626.2&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;303&quot; y1=&quot;386.8&quot; x2=&quot;317&quot; y2=&quot;386.8&quot;/&gt;&lt;circle class=&quot;al-dot&quot; cx=&quot;310&quot; cy=&quot;516.0&quot; r=&quot;7&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;530&quot; y1=&quot;626.2&quot; x2=&quot;530&quot; y2=&quot;386.8&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;523&quot; y1=&quot;626.2&quot; x2=&quot;537&quot; y2=&quot;626.2&quot;/&gt;&lt;line class=&quot;al-whisk&quot; x1=&quot;523&quot; y1=&quot;386.8&quot; x2=&quot;537&quot; y2=&quot;386.8&quot;/&gt;&lt;circle class=&quot;al-dot&quot; cx=&quot;530&quot; cy=&quot;516.0&quot; r=&quot;7&quot;/&gt;

&lt;line class=&quot;al-lead&quot; x1=&quot;539&quot; y1=&quot;516.0&quot; x2=&quot;596&quot; y2=&quot;516.0&quot;/&gt;
&lt;circle class=&quot;al-phantom&quot; cx=&quot;596&quot; cy=&quot;416.7&quot; r=&quot;11&quot;/&gt;
&lt;line class=&quot;al-caliper&quot; x1=&quot;596&quot; y1=&quot;416.7&quot; x2=&quot;596&quot; y2=&quot;516.0&quot;/&gt;
&lt;line class=&quot;al-caliper&quot; x1=&quot;589&quot; y1=&quot;416.7&quot; x2=&quot;603&quot; y2=&quot;416.7&quot;/&gt;
&lt;line class=&quot;al-caliper&quot; x1=&quot;589&quot; y1=&quot;516.0&quot; x2=&quot;603&quot; y2=&quot;516.0&quot;/&gt;
&lt;text class=&quot;al-phlab&quot; x=&quot;616&quot; y=&quot;396.7&quot;&gt;32.8% predicted,&lt;/text&gt;
&lt;text class=&quot;al-phlab&quot; x=&quot;616&quot; y=&quot;416.7&quot;&gt;if the terms added&lt;/text&gt;
&lt;text class=&quot;al-caliplab&quot; x=&quot;616&quot; y=&quot;462.4&quot;&gt;5.6 pt gap,&lt;/text&gt;
&lt;text class=&quot;al-caliplab&quot; x=&quot;616&quot; y=&quot;484.4&quot;&gt;left empty&lt;/text&gt;

&lt;rect class=&quot;al-chip&quot; x=&quot;172.5&quot; y=&quot;572.2&quot; width=&quot;255.0&quot; height=&quot;22.5&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;al-val&quot; text-anchor=&quot;middle&quot; x=&quot;300.0&quot; y=&quot;589.8&quot;&gt;25.3% (41/162) [19.2, 32.5]&lt;/text&gt;&lt;rect class=&quot;al-chip&quot; x=&quot;158.5&quot; y=&quot;471.7&quot; width=&quot;255.0&quot; height=&quot;22.5&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;al-val&quot; text-anchor=&quot;middle&quot; x=&quot;286.0&quot; y=&quot;489.2&quot;&gt;27.2% (44/162) [20.9, 34.5]&lt;/text&gt;&lt;rect class=&quot;al-chip&quot; x=&quot;311.0&quot; y=&quot;404.6&quot; width=&quot;255.0&quot; height=&quot;22.5&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;al-val&quot; text-anchor=&quot;end&quot; x=&quot;560.0&quot; y=&quot;422.1&quot;&gt;30.9% (50/162) [24.3, 38.4]&lt;/text&gt;&lt;rect class=&quot;al-chip&quot; x=&quot;402.5&quot; y=&quot;539.7&quot; width=&quot;255.0&quot; height=&quot;22.5&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;al-val&quot; text-anchor=&quot;middle&quot; x=&quot;530.0&quot; y=&quot;557.2&quot;&gt;27.2% (44/162) [20.9, 34.5]&lt;/text&gt;
&lt;text class=&quot;al-axlab&quot; text-anchor=&quot;middle&quot; x=&quot;410.0&quot; y=&quot;798&quot;&gt;disassembler format (the varied axis)&lt;/text&gt;
&lt;line class=&quot;al-rule&quot; x1=&quot;24&quot; y1=&quot;802&quot; x2=&quot;904&quot; y2=&quot;802&quot;/&gt;
&lt;text class=&quot;al-nhead&quot; x=&quot;24&quot; y=&quot;828&quot;&gt;The lines are not parallel. That is the finding, and it is not a decomposition.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;852&quot;&gt;Format gain: +5.6 pt under the opt-unaware prompt, 0.0 pt under the opt-aware one.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;876&quot;&gt;Prompt gain: +1.9 pt under llvm-objdump, -3.7 pt under GNU objdump. One term, two values.&lt;/text&gt;&lt;text class=&quot;al-nhead&quot; x=&quot;24&quot; y=&quot;900&quot;&gt;FLAT IN RATE, NOT IN SET. Both opt-aware cells are 44/162 = 27.160% exactly, so both&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;924&quot;&gt;print 27.2% and the segment is drawn dead flat. But they share only 37 recovered func ids&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;948&quot;&gt;and differ on 7 in each direction: 14 functions flipped. The 0.0 pt is an equal COUNT,&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;972&quot;&gt;never the same functions, and the 5.6 pt shortfall is arithmetic, not set identity.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;996&quot;&gt;Grey open marker: 25.3 + 5.6 + 1.9 = 32.8%, the additive PREDICTION - never a measured cell.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;1020&quot;&gt;The 5.6 pt gap to the measured corner is left empty. Unexplained.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;1044&quot;&gt;Reported open, not explained away.&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1068&quot;&gt;All four Wilson 95% intervals overlap, and 32.8 sits inside the corner&apos;s own [20.9, 34.5],&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1092&quot;&gt;so the non-additivity is SUGGESTIVE, UNESTABLISHED. What is established: the additive&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1116&quot;&gt;point prediction is not borne out by the measured cell.&lt;/text&gt;&lt;text class=&quot;al-note&quot; x=&quot;24&quot; y=&quot;1140&quot;&gt;n = 162 in every cell: the 164-function corpus minus func_ids 147 and 160, truncated in all four.&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1164&quot;&gt;Percent axis clipped to 15-40%; a 0-40 axis compresses the 5.6 pt rise and the flat&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1188&quot;&gt;opt-aware segment below reading resolution. Slope in this frame is exaggerated relative&lt;/text&gt;&lt;text class=&quot;al-caveat&quot; x=&quot;24&quot; y=&quot;1212&quot;&gt;to a zero-based axis - the pt differences are printed on every cell.&lt;/text&gt;
&lt;text class=&quot;al-prov&quot; x=&quot;24&quot; y=&quot;1266&quot;&gt;stock LLM4Decompile-6.7B-v1.5, stock-gcc x86/O2 binaries, seed 0xC0FFEE, Wilson 95%.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt;  &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;cell&lt;/th&gt;&lt;th&gt;prompt&lt;/th&gt;&lt;th&gt;disassembler&lt;/th&gt;&lt;th&gt;k/n&lt;/th&gt;&lt;th&gt;rate&lt;/th&gt;&lt;th&gt;Wilson 95%&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;A&lt;/td&gt;&lt;td&gt;opt-unaware&lt;/td&gt;&lt;td&gt;llvm-objdump&lt;/td&gt;&lt;td&gt;41/162&lt;/td&gt;&lt;td&gt;25.3%&lt;/td&gt;&lt;td&gt;[19.2, 32.5]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;B&lt;/td&gt;&lt;td&gt;opt-unaware&lt;/td&gt;&lt;td&gt;GNU objdump&lt;/td&gt;&lt;td&gt;50/162&lt;/td&gt;&lt;td&gt;30.9%&lt;/td&gt;&lt;td&gt;[24.3, 38.4]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;C&lt;/td&gt;&lt;td&gt;opt-aware&lt;/td&gt;&lt;td&gt;llvm-objdump&lt;/td&gt;&lt;td&gt;44/162&lt;/td&gt;&lt;td&gt;27.2%&lt;/td&gt;&lt;td&gt;[20.9, 34.5]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;D&lt;/td&gt;&lt;td&gt;opt-aware&lt;/td&gt;&lt;td&gt;GNU objdump&lt;/td&gt;&lt;td&gt;44/162&lt;/td&gt;&lt;td&gt;27.2%&lt;/td&gt;&lt;td&gt;[20.9, 34.5]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;predicted corner&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;25.3 + 5.6 (disassembler) + 1.9 (prompt), assuming the terms add&lt;/td&gt;&lt;td colspan=&quot;3&quot;&gt;32.8%, a prediction, never a measured cell; 5.6 pt above the measured 27.2% corner&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;6&quot;&gt;Cells C and D land on the same 44/162 but are two distinct measured cells; they share 37 recovered func ids and differ on 7 in each direction. All four Wilson intervals overlap and 32.8 sits inside cell D’s [20.9, 34.5], so the non-additivity is suggestive, not established. The gap is left open, not explained.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;And there is a second, larger hole just outside this frame. Our matched corner is 27.2% (44/162, our harness). The published cell it corresponds to, clean re-executability at O2 from GNU objdump text, in the source model’s own harness, is 36.71%, with no confidence interval published. That is about 9.5 points we cannot decompose. Two harnesses measuring what is nominally the same quantity disagree by more than any term this piece measured, which sets the scale for how far a single number from one harness can ever be carried toward a number from another.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The same comparison comes out wider at a different aggregation level. Averaged over four optimization levels, O0 through O3, least optimized to most, our reproduction reads 29.51% (O0 43.7 / O1 24.7 / O2 25.3 / O3 24.3) against their 45.37% (68.05 / 39.51 / 36.71 / 37.20), a roughly 16-point miss. Two residuals at two aggregation levels, and they do not belong in the same frame.&lt;/span&gt;
&lt;p&gt;We have three candidate causes and no weights for any of them: their exact re-executability scorer, full-object disassembly against our single-symbol disassembly, and their generation stack against ours. Reported open. Also worth stating plainly, since the whole comparison leans on it: identifying their published table’s checkpoint as the release we ran is an inference from matching numbers and matching release dates; the source paper prints no revision string at all.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A single horizontal axis carrying just two marks. The higher mark, their published rate at 36.71 percent, stands alone with no error bar of any kind. The lower mark, our matched corner at 27.2 percent, carries a Wilson confidence whisker. Between the two marks the roughly 9.5-point span is drawn as an unfilled void, an open gap with no bar, riser, or decomposition inside it, labelled as a cross-harness difference that is reported open and unexplained.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a2-nine-point-hole&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1064&quot; role=&quot;img&quot; aria-label=&quot;one percent axis carrying two positions: their published 36.71 percent cell above our matched 27.2 percent corner with its Wilson interval, and the 9.5 point gap between them drawn as a large unfilled void holding three unweighted candidate causes&quot;&gt;&lt;style&gt;#fig-fnf-a2-nine-point-hole [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a2-nine-point-hole [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a2-nine-point-hole [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a2-nine-point-hole [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a2-nine-point-hole [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a2-nine-point-hole [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a2-nine-point-hole [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a2-nine-point-hole [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a2-nine-point-hole [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a2-nine-point-hole [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1064&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#nh-root) text { font-family: var(--mono); fill: var(--fg); }
    .nh-title { font-size: 24px; font-weight: bold; }
    .nh-sub { font-size: 17px; fill: var(--comment); }
    .nh-armlab { font-size: 15px; font-weight: bold; }
    .nh-axlab { font-size: 16px; }
    .nh-tick { font-size: 16px; fill: var(--comment); }
    .nh-theirlab { font-size: 16px; font-weight: bold; fill: #e69f00; }
    .nh-theirsub { font-size: 14px; fill: #e69f00; }
    .nh-ourlab { font-size: 15px; fill: #56b4e9; }
    .nh-oursub { font-size: 14px; fill: var(--comment); }
    .nh-gapnum { font-size: 26px; font-weight: bold; }
    .nh-gaplab { font-size: 16px; font-weight: bold; }
    .nh-cause { font-size: 14px; fill: var(--comment); }
    .nh-nhead { font-size: 17px; font-weight: bold; }
    .nh-note { font-size: 15px; }
    .nh-caveat { font-size: 15px; fill: var(--comment); }
    .nh-slotlab { font-size: 14px; fill: var(--comment); }
    /* The three slot statuses are a VOCABULARY, not a list of what this figure
       happens to use: the class name is computed as -slot-{status} from the slot
       table. A status this figure has no instance of today therefore has no rendered
       element, and deleting its rule would make it paint with the SVG default (black
       fill) the moment a condition is flagged. Kept deliberately -- an unrendered
       rule here is a fallback, not dead craft. */
    .nh-slot-lit { font-size: 14px; fill: #56b4e9; }
    .nh-slot-grey { font-size: 14px; fill: var(--comment); }
    .nh-slot-verm { font-size: 14px; fill: #d55e00; }
    .nh-grid { stroke: var(--current-line); stroke-width: 1; }
    .nh-axis { stroke: var(--comment); stroke-width: 1.5; }
    .nh-theirs { stroke: #e69f00; stroke-width: 3.5; }
    .nh-ours { stroke: #56b4e9; stroke-width: 3.5; }
    .nh-whisk { stroke: #56b4e9; stroke-width: 1.6; opacity: 0.8; }
    .nh-dot { fill: #56b4e9; }
    .nh-void { fill: none; stroke: var(--comment); stroke-width: 1.6; stroke-dasharray: 7 6; }
    .nh-chip { fill: var(--bg); }
    .nh-rule { stroke: var(--current-line); stroke-width: 1; }
    .nh-prov { font-size: 14px; fill: var(--comment); }
&lt;/style&gt;
&lt;g id=&quot;nh-root&quot;&gt;
&lt;text class=&quot;nh-title&quot; x=&quot;24&quot; y=&quot;50&quot;&gt;The 9.5-point hole&lt;/text&gt;
&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;76&quot;&gt;Two positions on one axis, and the gap between them left open.&lt;/text&gt;
&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;98&quot;&gt;Their published cell against our matched corner. Nothing here is decomposed.&lt;/text&gt;
&lt;line class=&quot;nh-rule&quot; x1=&quot;24&quot; y1=&quot;118&quot; x2=&quot;904&quot; y2=&quot;118&quot;/&gt;
&lt;text class=&quot;nh-armlab&quot; x=&quot;24&quot; y=&quot;148&quot;&gt;THEIR HARNESS - LLM4Decompile, as published&lt;/text&gt;
&lt;text class=&quot;nh-slotlab&quot; x=&quot;24.0&quot; y=&quot;172.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;nh-slot-verm&quot; x=&quot;99.6&quot; y=&quot;172.0&quot;&gt;End-6.7B as published (v1.5 ASSUMED)&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;427.2&quot; y=&quot;172.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;nh-slot-verm&quot; x=&quot;486.0&quot; y=&quot;172.0&quot;&gt;unstated&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;578.4&quot; y=&quot;172.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;637.2&quot; y=&quot;172.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;24.0&quot; y=&quot;195.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;nh-slot-verm&quot; x=&quot;99.6&quot; y=&quot;195.0&quot;&gt;their toolchain; OLLVM version unrecorded&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;469.2&quot; y=&quot;195.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;578.4&quot; y=&quot;195.0&quot;&gt;GNU objdump&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;24.0&quot; y=&quot;218.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;nh-slot-verm&quot; x=&quot;133.2&quot; y=&quot;218.0&quot;&gt;raw aggregate; no firing rate, no truncation rate&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;570.0&quot; y=&quot;218.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;nh-slot-verm&quot; x=&quot;586.8&quot; y=&quot;218.0&quot;&gt;not published&lt;/text&gt;
&lt;text class=&quot;nh-armlab&quot; x=&quot;24&quot; y=&quot;248&quot;&gt;OUR HARNESS - the matched corner&lt;/text&gt;
&lt;text class=&quot;nh-slotlab&quot; x=&quot;24.0&quot; y=&quot;270.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;99.6&quot; y=&quot;270.0&quot;&gt;stock v1.5&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;208.8&quot; y=&quot;270.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;267.6&quot; y=&quot;270.0&quot;&gt;gcc-lenient&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;385.2&quot; y=&quot;270.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;444.0&quot; y=&quot;270.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;561.6&quot; y=&quot;270.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;637.2&quot; y=&quot;270.0&quot;&gt;stock-gcc x86 O2&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;24.0&quot; y=&quot;293.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;133.2&quot; y=&quot;293.0&quot;&gt;GNU objdump&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;250.8&quot; y=&quot;293.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;360.0&quot; y=&quot;293.0&quot;&gt;aggregate, truncation-excluded&lt;/text&gt;&lt;text class=&quot;nh-slotlab&quot; x=&quot;637.2&quot; y=&quot;293.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;nh-slot-lit&quot; x=&quot;654.0&quot; y=&quot;293.0&quot;&gt;162&lt;/text&gt;
&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;323&quot;&gt;floor, not ceiling; one stock 6.7B attacker; static/client-side tier.&lt;/text&gt;
&lt;text class=&quot;nh-axlab&quot; x=&quot;24&quot; y=&quot;358&quot;&gt;re-executability (%), O2, GNU objdump both sides&lt;/text&gt;
&lt;line class=&quot;nh-grid&quot; x1=&quot;170&quot; y1=&quot;660.0&quot; x2=&quot;280&quot; y2=&quot;660.0&quot;/&gt;&lt;text class=&quot;nh-tick&quot; text-anchor=&quot;end&quot; x=&quot;158&quot; y=&quot;666.0&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;nh-grid&quot; x1=&quot;170&quot; y1=&quot;590.0&quot; x2=&quot;280&quot; y2=&quot;590.0&quot;/&gt;&lt;text class=&quot;nh-tick&quot; text-anchor=&quot;end&quot; x=&quot;158&quot; y=&quot;596.0&quot;&gt;25&lt;/text&gt;&lt;line class=&quot;nh-grid&quot; x1=&quot;170&quot; y1=&quot;520.0&quot; x2=&quot;280&quot; y2=&quot;520.0&quot;/&gt;&lt;text class=&quot;nh-tick&quot; text-anchor=&quot;end&quot; x=&quot;158&quot; y=&quot;526.0&quot;&gt;30&lt;/text&gt;&lt;line class=&quot;nh-grid&quot; x1=&quot;170&quot; y1=&quot;450.0&quot; x2=&quot;280&quot; y2=&quot;450.0&quot;/&gt;&lt;text class=&quot;nh-tick&quot; text-anchor=&quot;end&quot; x=&quot;158&quot; y=&quot;456.0&quot;&gt;35&lt;/text&gt;&lt;line class=&quot;nh-grid&quot; x1=&quot;170&quot; y1=&quot;380.0&quot; x2=&quot;280&quot; y2=&quot;380.0&quot;/&gt;&lt;text class=&quot;nh-tick&quot; text-anchor=&quot;end&quot; x=&quot;158&quot; y=&quot;386.0&quot;&gt;40&lt;/text&gt;&lt;line class=&quot;nh-axis&quot; x1=&quot;170&quot; y1=&quot;380&quot; x2=&quot;170&quot; y2=&quot;660&quot;/&gt;&lt;line class=&quot;nh-axis&quot; x1=&quot;162&quot; y1=&quot;670&quot; x2=&quot;178&quot; y2=&quot;662&quot;/&gt;&lt;line class=&quot;nh-axis&quot; x1=&quot;162&quot; y1=&quot;678&quot; x2=&quot;178&quot; y2=&quot;670&quot;/&gt;

&lt;rect class=&quot;nh-void&quot; x=&quot;280&quot; y=&quot;426.1&quot; width=&quot;606&quot; height=&quot;133.1&quot;/&gt;
&lt;text class=&quot;nh-gapnum&quot; x=&quot;296&quot; y=&quot;462.1&quot;&gt;9.5 pt&lt;/text&gt;
&lt;text class=&quot;nh-gaplab&quot; x=&quot;296&quot; y=&quot;488.1&quot;&gt;cross-harness.&lt;/text&gt;
&lt;text class=&quot;nh-gaplab&quot; x=&quot;296&quot; y=&quot;510.1&quot;&gt;Unexplained.&lt;/text&gt;
&lt;text class=&quot;nh-gaplab&quot; x=&quot;296&quot; y=&quot;532.1&quot;&gt;Reported open.&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;452.1&quot;&gt;candidate causes, unweighted -&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;472.1&quot;&gt;no weights were measured, so no bars:&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;494.1&quot;&gt;- their exact re-executability scorer&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;514.1&quot;&gt;- full-object objdump -d vs our&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;532.1&quot;&gt;  single-symbol disassembly&lt;/text&gt;
&lt;text class=&quot;nh-cause&quot; x=&quot;460&quot; y=&quot;552.1&quot;&gt;- HuggingFace greedy vs vLLM&lt;/text&gt;


&lt;line class=&quot;nh-theirs&quot; x1=&quot;170&quot; y1=&quot;426.1&quot; x2=&quot;886&quot; y2=&quot;426.1&quot;/&gt;
&lt;text class=&quot;nh-theirlab&quot; x=&quot;174&quot; y=&quot;396.1&quot;&gt;36.71% - their published O2 x GNU-objdump cell&lt;/text&gt;
&lt;text class=&quot;nh-theirsub&quot; x=&quot;174&quot; y=&quot;416.1&quot;&gt;no CI published, no n published: upper reference only&lt;/text&gt;
&lt;line class=&quot;nh-ours&quot; x1=&quot;170&quot; y1=&quot;559.2&quot; x2=&quot;886&quot; y2=&quot;559.2&quot;/&gt;
&lt;line class=&quot;nh-whisk&quot; x1=&quot;228&quot; y1=&quot;647.4&quot; x2=&quot;228&quot; y2=&quot;457.0&quot;/&gt;
&lt;line class=&quot;nh-whisk&quot; x1=&quot;221&quot; y1=&quot;647.4&quot; x2=&quot;235&quot; y2=&quot;647.4&quot;/&gt;
&lt;line class=&quot;nh-whisk&quot; x1=&quot;221&quot; y1=&quot;457.0&quot; x2=&quot;235&quot; y2=&quot;457.0&quot;/&gt;
&lt;circle class=&quot;nh-dot&quot; cx=&quot;228&quot; cy=&quot;559.2&quot; r=&quot;7&quot;/&gt;
&lt;rect class=&quot;nh-chip&quot; x=&quot;168.0&quot; y=&quot;574.9&quot; width=&quot;669.0&quot; height=&quot;22.5&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;nh-ourlab&quot; text-anchor=&quot;start&quot; x=&quot;174.0&quot; y=&quot;592.5&quot;&gt;27.2% (44/162) [20.9, 34.5] - our matched corner, GNU objdump x opt-aware&lt;/text&gt;
&lt;rect class=&quot;nh-chip&quot; x=&quot;168.0&quot; y=&quot;597.7&quot; width=&quot;625.2&quot; height=&quot;21.0&quot; rx=&quot;2&quot;/&gt;&lt;text class=&quot;nh-oursub&quot; text-anchor=&quot;start&quot; x=&quot;174.0&quot; y=&quot;614.1&quot;&gt;Wilson 95%; n = 162 is the 164-function corpus minus func_ids 147 and 160&lt;/text&gt;

&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;706&quot;&gt;These are two positions on one axis, not two bars: no length is measured from a&lt;/text&gt;
&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;728&quot;&gt;zero baseline, and the axis is clipped to 20-40%. The void&apos;s own height is the one&lt;/text&gt;
&lt;text class=&quot;nh-sub&quot; x=&quot;24&quot; y=&quot;750&quot;&gt;length that IS proportional - it is the 9.5 pt, drawn to the axis scale.&lt;/text&gt;
&lt;line class=&quot;nh-rule&quot; x1=&quot;24&quot; y1=&quot;759.5&quot; x2=&quot;904&quot; y2=&quot;759.5&quot;/&gt;
&lt;text class=&quot;nh-nhead&quot; x=&quot;24&quot; y=&quot;776&quot;&gt;NOT DECOMPOSED. No waterfall, no risers, no bar: no weights were measured.&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;800&quot;&gt;Their cell publishes no interval and no denominator; ours is Wilson 95% over 162.&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;824&quot;&gt;So the gap has no test. It is reported open, not explained away.&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;848&quot;&gt;A different residual, at a different aggregation level - named here, deliberately not drawn:&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;872&quot;&gt;their O0-O3 average 45.37% (68.05 / 39.51 / 36.71 / 37.20) against our 29.51% (43.7 / 24.7 /&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;896&quot;&gt;25.3 / 24.3) = ~15.9 pt, &apos;a ~16-point miss&apos;. Two residuals at two aggregation levels are&lt;/text&gt;&lt;text class=&quot;nh-note&quot; x=&quot;24&quot; y=&quot;920&quot;&gt;not one bar, and this frame holds only the O2 cell gap.&lt;/text&gt;&lt;text class=&quot;nh-caveat&quot; x=&quot;24&quot; y=&quot;944&quot;&gt;v1.5 checkpoint ASSUMED: the source paper states no revision string. Identifying their&lt;/text&gt;&lt;text class=&quot;nh-caveat&quot; x=&quot;24&quot; y=&quot;968&quot;&gt;Table 5 checkpoint as v1.5 is the load-bearing assumption of this whole comparison.&lt;/text&gt;
&lt;text class=&quot;nh-prov&quot; x=&quot;24&quot; y=&quot;1008&quot;&gt;theirs: LLM4Decompile v1.5 model card / Table 1 series, O2 cell.&lt;/text&gt;
&lt;text class=&quot;nh-prov&quot; x=&quot;24&quot; y=&quot;1030&quot;&gt;ours: 44/162, gcc-lenient, native 4096, seed 0xC0FFEE (additivity corner).&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt;  &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;cell&lt;/th&gt;&lt;th&gt;harness&lt;/th&gt;&lt;th&gt;rate&lt;/th&gt;&lt;th&gt;k/n&lt;/th&gt;&lt;th&gt;CI 95%&lt;/th&gt;&lt;th&gt;disassembler&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;their published O2 cell&lt;/td&gt;&lt;td&gt;LLM4Decompile End-6.7B, as published&lt;/td&gt;&lt;td&gt;36.71%&lt;/td&gt;&lt;td&gt;not published&lt;/td&gt;&lt;td&gt;none published, upper reference only&lt;/td&gt;&lt;td&gt;GNU objdump&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;our matched corner&lt;/td&gt;&lt;td&gt;stock v1.5, our harness&lt;/td&gt;&lt;td&gt;27.2%&lt;/td&gt;&lt;td&gt;44/162&lt;/td&gt;&lt;td&gt;[20.9, 34.5] Wilson&lt;/td&gt;&lt;td&gt;GNU objdump&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;cross-harness gap&lt;/td&gt;&lt;td colspan=&quot;2&quot;&gt;36.71 - 27.1605&lt;/td&gt;&lt;td colspan=&quot;3&quot;&gt;= 9.5495 = ~9.5 pt, a measured difference of two positions, not decomposed&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;6&quot;&gt;Candidate causes, unweighted: their exact re-executability scorer; full-object objdump -d vs our single-symbol disassembly; HuggingFace greedy generation vs vLLM. The source paper prints no revision string; identifying their checkpoint as v1.5 is the load-bearing assumption of this comparison.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;h2 id=&quot;what-this-bounds-and-what-it-does-not&quot;&gt;What this bounds, and what it does not&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-this-bounds-and-what-it-does-not&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This is one leg, and the leg has walls. One model family at the 6.7B scale, x86 at O2, one re-executability scorer (gcc-lenient), one 4096-token native window, one seed for the factorial cells, and the denominators in the margin note above. Move any of those and every cell has to be recomputed from scratch, the truncation rates in particular are properties of a (window, disassembler, tokenizer) triple, and instances that overflow the window here are excluded from the denominator entirely, which is why 15 functions are missing from the paired 149.&lt;/p&gt;
&lt;p&gt;Every recovery number in this piece is re-executability: emitted C that compiles and behaves like the original. Re-executability has its own axis, recovering the shape of a function and recovering a working function are different measurements with different scales, and a structural or control-flow-similarity score from another paper cannot be read across to any cell here.&lt;/p&gt;
&lt;p&gt;And the claim is about the instrument: a published deterrence number carries a term nobody named, which is a statement about how the field measures. The attacker in this leg is stock and obfuscation-naive. These numbers bound the instrument, not any shipped product, and a better-resourced attacker only moves them up.&lt;/p&gt;
&lt;h2 id=&quot;what-a-controlled-comparison-has-to-show&quot;&gt;What a controlled comparison has to show&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-a-controlled-comparison-has-to-show&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;






























&lt;div class=&quot;table-scroll&quot;&gt;&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;what read true&lt;/th&gt;&lt;th&gt;what was actually true&lt;/th&gt;&lt;th&gt;the rule it became&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;one knob moved, so the metric moved because of the knob&lt;/td&gt;&lt;td&gt;the treatment arm was also a different toolchain: 27.5% vs 15.4% on 149 obfuscation-free functions&lt;/td&gt;&lt;td&gt;list every pipeline stage the treatment arm changed, then measure the ones you did not intend to change&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;three effects, three numbers, add them up&lt;/td&gt;&lt;td&gt;predicted corner 32.8%, measured 27.2%, ~5.6 points unaccounted&lt;/td&gt;&lt;td&gt;a decomposition owes you its residual as its own printed row, undistributed across the terms&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;the marginal term at p = 0.049 is a finding&lt;/td&gt;&lt;td&gt;it does not clear a Holm-corrected threshold, and one discordant flip erases it&lt;/td&gt;&lt;td&gt;correct for the family you actually ran, and keep the demoted row at full size&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;our reproduction matched the published number closely enough&lt;/td&gt;&lt;td&gt;27.2% here against 36.71% published, about 9.5 points, cross-harness&lt;/td&gt;&lt;td&gt;a gap you cannot decompose is a gap you cannot subtract&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;The null arm turned out to be the largest, best-attested effect in this leg. Two arms, the same functions, the same model, nothing done to either one except handing them to a different compiler, and it moved the metric further than the obfuscation-strength cells it was built to audit, 35 of whose 37 ship as one bare scalar. Run first rather than last, it would have put a provenance term on every obfuscation cell downstream from the beginning. The 12.1 points were sitting there the whole time, in every paper that ran clean-versus-obfuscated across a toolchain boundary, wearing the obfuscator’s name.&lt;/p&gt;
&lt;p&gt;The first piece conditioned the metric on whether the transform had changed the function at all; this one decomposed the environment. The next piece changes the attacker, and the number that had survived every correction so far does not survive that one.&lt;/p&gt;
&lt;p&gt;Coverage and provenance hide in the same place: a term sits inside the average and nobody prints it. Any eval that folds inputs a transform never touched into the same average, without reporting how often it fired, inherits this exact bug.&lt;/p&gt;</content:encoded><category>distribution-shift</category><category>evals</category><category>reproducibility</category><category>decompilation</category></item><item><title>Bigger didn&apos;t break it. Knowing did.</title><link>https://thepragmaticquant.com/bigger-didnt-break-it/</link><guid isPermaLink="true">https://thepragmaticquant.com/bigger-didnt-break-it/</guid><description>Obfuscation dropped this decompiler&apos;s recovery from 18.8% of clean functions (28/149) to 0.0-0.9% of the functions each transform fired on (0/97, 0/63, 1/106) — gcc-lenient scorer, native 4096-token window, paired and placebo-controlled. Tripling its parameters bought no monotonic gain in the largest obfuscated cell: three points at n = 151, intervals overlapping. Fine-tuning it on the same transform family bought 12-16% back, and the headline moved from hardening to brittleness — against one modest 6.7B attacker, where every number is a floor.</description><pubDate>Thu, 30 Jul 2026 00:00:00 GMT</pubDate><content:encoded>&lt;div class=&quot;tldr&quot;&gt;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt; — A neural decompiler, scored gcc-lenient at its native 4096-token window, recovered working code from &lt;strong&gt;18.8%&lt;/strong&gt; of clean functions and from &lt;strong&gt;0.0-0.9%&lt;/strong&gt; of the functions each transform actually fired on — its own denominator per cell, never the clean 149. That looked like hardening, so we upgraded the attacker twice. Scaling it from 6.7B to 22B parameters, evaluation held fixed, produced no monotonic gain in the widest-denominator cell — three overlapping points at &lt;em&gt;n&lt;/em&gt; = 151. Fine-tuning it on the same transform family recovered &lt;strong&gt;12-16%&lt;/strong&gt; — from the identical binaries. The leg stayed in the paper; the label changed from “hardening” to “brittleness against a naive attacker.” Preprint: &lt;a href=&quot;https://doi.org/10.5281/zenodo.21682266&quot;&gt;doi:10.5281/zenodo.21682266&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;An obfuscation result reads like a property of the binary. Turn the defence on, watch the AI decompiler’s success rate fall to zero, call the code protected.&lt;/p&gt;
&lt;p&gt;Then train that same decompiler on the same transforms. It reads 12 to 16% of the very same bytes straight back.&lt;/p&gt;
&lt;p&gt;So the zero measured what the attacker had never seen. The headline number describes the attacker at least as much as the defence.&lt;/p&gt;
&lt;p&gt;Both halves were measured here on one corpus. A &lt;em&gt;neural decompiler&lt;/em&gt; — a transformer that reads stripped assembly, machine instructions with the function and variable names thrown away, and writes back source code, recovered working C from 18.8% of clean functions, and from 0.0% of the 97 functions a constant-encryption pass actually fired on. The comparison was paired, function by function, with a negative control sitting beside it, and every cell in the piece is scored one way throughout: gcc-lenient, at the model’s native 4096-token window.&lt;/p&gt;
&lt;p&gt;Measured that way, obfuscation strength is a joint property of two things: what the transform does to the code, and what the attacker happens not to know. Only one of those was in the table.&lt;/p&gt;
&lt;p&gt;The cheap objection, that the attacker was simply too small, has a measurable answer, below. The expensive one is that the attacker was never told what had been done to the code. That is the one that landed, and it cost the word hardening in a results table.&lt;/p&gt;
&lt;h2 id=&quot;the-collapse-steelmanned&quot;&gt;The collapse, steelmanned&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-collapse-steelmanned&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The experiment is easy to state. Take 164 C functions, compile them for x86 at O2 (the optimization setting most shipped software is built with), disassemble them, and ask the model for source that compiles and reproduces the reference behaviour on its test inputs. That strict metric is &lt;em&gt;re-executable recovery&lt;/em&gt;, output that merely looks like the original scores zero. On clean binaries this attacker recovers 18.8% of them, 28 of 149.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The 149 is the shared non-truncated subset: 149 of the 164 functions, with 15 dropped because their disassembly did not fit the model’s native 4096-token window. It is the same 149 the previous article’s provenance leg scores on. That article reads a 27.5% clean rate (41/149) there, and the whole of the difference is in the attacker and the toolchain: that arm is the stock released v1.5 checkpoint on gcc-built binaries, this one is a fine-tuned clang-matched control on clang-built ones (its clang-arm counterpart there reads 15.4%). A clean rate is a property of the attacker and the toolchain, so the two never belong on one axis and must never be quoted as a range.&lt;/span&gt;
&lt;p&gt;Then run each transform and re-measure, counting only the functions where the transform actually changed the object’s bytes and the prompt still fit the window. That conditioning is &lt;em&gt;fired-only&lt;/em&gt;, and the first piece in this series spends its whole length arguing for it: a transform that never touched a function has no business collecting that function’s clean recovery rate on its behalf.&lt;/p&gt;
&lt;p&gt;Constant encryption: 0.0% (0 of 97). Control-flow flattening: 0.0% (0 of 63). Bogus control flow: 0.9% (1 of 106). Those cells are the original seed, &lt;code&gt;0xC0FFEE&lt;/code&gt;; two further held-out seeds reproduce them, with flattening firing on 64 functions instead of 63 in one of them. The scorer is the more permissive of the two re-executability scorers we ran, and the window is the model’s native 4096 tokens throughout.&lt;/p&gt;
&lt;p&gt;If you read the first piece, you will notice flattening and bogus control flow have swapped places since its raw aggregates. That swap is itself a finding: at these counts neither ordering is real, and which one you get depends on the regime you measured in. That piece’s fired-only cells sit in a 0-1.4% band against a 9.15% clean anchor, measured with the strict clang-side scorer at an 8192-token window, a separate measurement on a separate axis from these.&lt;/p&gt;
&lt;p&gt;Those three denominators come from one corpus of 164 functions, and they differ because the transforms differ. A pass that rewrites every function fires on more of them than a pass that rewrites string literals; a pass that inflates the instruction count pushes more of the surviving functions past the window, where they are scored as failures for reasons that have nothing to do with security. Each cell therefore ends at its own n, and putting a count from one beside a rate from another is its own defect.&lt;/p&gt;
&lt;p&gt;Against an 18.8% clean base, that is a collapse to roughly nothing, and it holds up under the checks that usually break this kind of result. The underlying effect survives a paired McNemar test, the standard test for a before/after flip measured on the same items, at p = 2.4e-4, with a placebo config as its negative control. That placebo is a backend-marker pass that perturbs 6 of the 164 objects and leaves every per-function outcome identical to clean; that outcome identity was established in the first article’s clang-strict arm, and what the placebo does here is show that the pipeline does not manufacture a drop when nothing meaningful was done to the code.&lt;/p&gt;
&lt;p&gt;So: a large drop, on matched functions, with a paired test and a control. Stopping there ships a deterrence claim with real statistics behind it.&lt;/p&gt;
&lt;h2 id=&quot;maybe-the-attacker-was-just-small&quot;&gt;Maybe the attacker was just small&lt;a class=&quot;heading-anchor&quot; href=&quot;#maybe-the-attacker-was-just-small&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;That is the first objection anyone sensible raises, and prose cannot answer it. A 6.7B-parameter decompiler failing on obfuscated input is compatible with two very different worlds: one where the transforms genuinely destroy recoverable structure, and one where the model was never big enough to read through anything harder than an unobfuscated function. Those worlds are distinguishable only by making the attacker bigger and holding everything else still.&lt;/p&gt;
&lt;p&gt;So we ran the same six configurations, clean, string encryption, constant encryption, control-flow flattening, bogus control flow, and the heavy stack of all three, against three obfuscation-naive attackers at 6.7B, 9B and 22B parameters, same evaluation, same seed 0xC0FFEE. All three are stock LLM4Decompile-v2 Ghidra-refinement checkpoints: one published family at three sizes, each reading a traditional decompiler’s pseudo-C rather than raw disassembly. Holding the evaluation fixed is the whole design, and it is the part that gets quietly dropped in scaling comparisons: change the model and the prompt and the window and the scorer together, and any difference you find belongs to the bundle rather than the parameter count. Here only the weights move. The cell to watch is bogus control flow, because it is the obfuscated configuration with the largest number of functions that both fired and survived the window, the widest denominator in the set, so the least noisy place to look for a scaling effect.&lt;/p&gt;
&lt;p&gt;It reads 18.5% [13.2, 25.5] at 6.7B, 15.9% (24 of 151) [10.9, 22.6] at 9B, and 19.9% (30 of 151) [14.3, 26.9] at 22B, brackets being Wilson 95% intervals, the interval you get for a proportion when the count is small enough that the textbook formula misbehaves. A 3.3x increase in parameters moves the middle rung down and the top rung barely above the bottom. Every interval overlaps every other interval.&lt;/p&gt;
&lt;span class=&quot;marginnote&quot; role=&quot;note&quot;&gt;The first minted version of the preprint labelled this three-rung series the “maximum” read-through per scale. That overstates it: at 9B the maximum across configurations is 16.7%, from string encryption on a 24-function fired subset, a different 24 from the 24 of 151 in the bogus-control-flow cell above. The series itself is correct and stays, and so does every digit in it; the word “maximum” is what goes.&lt;/span&gt;
&lt;p&gt;The obvious escape is a ceiling effect, perhaps the bigger models were not actually better at this task at all, so of course obfuscated recovery did not move. The clean bases refuse it: 32.5%, 33.8%, 31.8% across the three scales, already flat before any transform enters the picture. Nothing in this ladder rewards parameters, on clean input or obfuscated.&lt;/p&gt;
&lt;p&gt;Two numbers in this piece now sit in obvious tension. Section one reads bogus control flow at 0.9%; this section reads it at 18.5% at the same 6.7B parameter count. Both are correct, and each belongs to its own evaluation family. The ladder’s rungs are stock Ghidra-refinement models reading a traditional decompiler’s pseudo-C; the collapse leg’s attacker is the fine-tuned clang-matched control reading raw disassembly of clang-built objects. Two conditions differ at once, the checkpoint and the input representation, which is enough to establish that the two clean bases do not belong on one axis and not enough to say which of the two moves the number: 32.5% here, about 1.7x the 18.8% there, over 151 functions rather than 149. That 1.7x is left undecomposed. The ladder’s three rungs are comparable to each other and to nothing else in this piece, which is precisely why it can answer the scaling objection and no other question.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A dot plot with three obfuscated points read left to right at 6.7B, 9B and 22B parameters, each carrying a horizontal Wilson error bar; the middle point sits lower than its neighbours and all three bars share a common overlap band, so no rising or falling line is picked out. A paler, near-level clean-base series runs above them, and a faint dashed ghost line traces the steadily rising curve a naive scaling story would predict, a curve the actual points do not follow.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a3-scaling-dotplot&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1335&quot; role=&quot;img&quot; aria-label=&quot;a Cleveland dot plot of three attacker rungs, 6.7B, 9B and 22B, each with a fired-only recovery point and Wilson interval that all overlap inside a shaded common range of 14.3 to 22.6 percent, plus a paler second series of clean bases at 32.5, 33.8 and 31.8 percent that is itself level, and a dashed grey schematic line showing the monotone rise a reader would expect&quot;&gt;&lt;style&gt;#fig-fnf-a3-scaling-dotplot [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a3-scaling-dotplot [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a3-scaling-dotplot [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a3-scaling-dotplot [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a3-scaling-dotplot [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a3-scaling-dotplot [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a3-scaling-dotplot [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a3-scaling-dotplot [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a3-scaling-dotplot [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a3-scaling-dotplot [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1335&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#a3sd-root) text { font-family: var(--mono); fill: var(--fg); }
    .a3sd-title { font-size: 26px; font-weight: bold; letter-spacing: 0.03em; }
    .a3sd-sub { font-size: 15px; fill: var(--comment); }
    .a3sd-panlab { font-size: 18px; font-weight: bold; }
    .a3sd-pansub { font-size: 13px; fill: var(--comment); }
    .a3sd-rung { font-size: 19px; font-weight: bold; }
    .a3sd-rungsub { font-size: 13px; fill: var(--comment); }
    .a3sd-cell { font-size: 14px; }
    .a3sd-tick { font-size: 14px; fill: var(--comment); }
    .a3sd-axtitle { font-size: 14px; fill: var(--comment); }
    .a3sd-leg { font-size: 13px; fill: var(--comment); }
    .a3sd-ann { font-size: 13px; fill: var(--comment); }
    .a3sd-note { font-size: 15px; }
    .a3sd-noteb { font-size: 15px; font-weight: bold; }
    .a3sd-prov { font-size: 14px; fill: var(--comment); }
    .a3sd-kicker { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .a3sd-strike { font-size: 17px; font-weight: bold; fill: var(--comment); }
    .a3sd-repl { font-size: 17px; font-weight: bold; fill: #56b4e9; }
    .a3sd-slotlab { font-size: 14px; fill: var(--comment); }
    .a3sd-slot-lit { font-size: 14px; fill: #56b4e9; }
    .a3sd-slot-grey { font-size: 14px; fill: var(--comment); }
    .a3sd-rule { stroke: var(--current-line); stroke-width: 1; }
    .a3sd-band { fill: var(--comment); opacity: 0.13; }
    .a3sd-prim { fill: #56b4e9; }
    .a3sd-prim-w { stroke: #56b4e9; stroke-width: 1.6; }
    /* the clean base is the SAME blue -- both arms are ours -- told apart by SHAPE, not by
       an alpha ratio that dies on paper: a hollow ring with a dashed whisker. */
    .a3sd-clean { fill: none; stroke: #56b4e9; stroke-width: 2.2; }
    .a3sd-clean-w { stroke: #56b4e9; stroke-width: 1.6; stroke-dasharray: 4 3; }
    .a3sd-ghost { stroke: var(--comment); stroke-width: 1.6; stroke-dasharray: 6 5; }
    .a3sd-ghostdot { fill: none; stroke: var(--comment); stroke-width: 1.6; }
    .a3sd-axis { stroke: var(--comment); stroke-width: 1.3; }
    .a3sd-strikerule { stroke: #d55e00; stroke-width: 3; }
&lt;/style&gt;
&lt;g id=&quot;a3sd-root&quot;&gt;
&lt;rect class=&quot;a3sd-band&quot; x=&quot;327.1&quot; y=&quot;429.0&quot; width=&quot;73.8&quot; height=&quot;268.0&quot;/&gt;
&lt;text class=&quot;a3sd-title&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;Three rungs, one null&lt;/text&gt;&lt;text class=&quot;a3sd-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;80.0&quot;&gt;A 3.3-fold parameter increase, scored on the same six configs, against the same&lt;/text&gt;&lt;text class=&quot;a3sd-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;102.0&quot;&gt;obfuscated binaries. The intervals are drawn, and they overlap.&lt;/text&gt;&lt;line class=&quot;a3sd-rule&quot; x1=&quot;24&quot; y1=&quot;122.0&quot; x2=&quot;904&quot; y2=&quot;122.0&quot;/&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;24.0&quot; y=&quot;146.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;99.6&quot; y=&quot;146.0&quot;&gt;stock LLM4Decompile-Ref v2 at 6.7B / 9B / 22B (the VARIED axis)&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;24.0&quot; y=&quot;169.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;82.8&quot; y=&quot;169.0&quot;&gt;gcc-lenient re-exec&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;267.6&quot; y=&quot;169.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;326.4&quot; y=&quot;169.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;444.0&quot; y=&quot;169.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;a3sd-slot-grey&quot; x=&quot;519.6&quot; y=&quot;169.0&quot;&gt;clang x86/O2 (fixed)&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;24.0&quot; y=&quot;192.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;133.2&quot; y=&quot;192.0&quot;&gt;Ghidra 11.3.2 headless pseudo-C, NOT objdump text&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;24.0&quot; y=&quot;215.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;133.2&quot; y=&quot;215.0&quot;&gt;fired-only, truncation-excluded&lt;/text&gt;&lt;text class=&quot;a3sd-slotlab&quot; x=&quot;418.8&quot; y=&quot;215.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;a3sd-slot-lit&quot; x=&quot;435.6&quot; y=&quot;215.0&quot;&gt;151 per rung&lt;/text&gt;&lt;text class=&quot;a3sd-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;237.0&quot;&gt;All three rungs are the SAME Ghidra-refinement family and all obfuscation-NAIVE:&lt;/text&gt;&lt;text class=&quot;a3sd-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;257.0&quot;&gt;this bounds the SCALE axis inside one family. Floor, not ceiling.&lt;/text&gt;&lt;text class=&quot;a3sd-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;287.0&quot;&gt;1 &amp;#183; bogus_control_flow, fired-only recovery&lt;/text&gt;&lt;text class=&quot;a3sd-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;309.0&quot;&gt;the obfuscated config with the largest fired-and-non-truncated n, so it is the rung&lt;/text&gt;&lt;text class=&quot;a3sd-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;327.0&quot;&gt;with the most resolution to show a scaling effect if one existed.&lt;/text&gt;&lt;circle class=&quot;a3sd-prim&quot; cx=&quot;32&quot; cy=&quot;348.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;353.0&quot;&gt;obfuscated (bogus_control_flow), fired-only&lt;/text&gt;&lt;circle class=&quot;a3sd-clean&quot; cx=&quot;470&quot; cy=&quot;348.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-leg&quot; text-anchor=&quot;start&quot; x=&quot;484.0&quot; y=&quot;353.0&quot;&gt;clean base, same rung, same n&lt;/text&gt;&lt;text class=&quot;a3sd-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;373.0&quot;&gt;both series are OURS, so both are blue; they are told apart by SHAPE &amp;#8212; filled dot vs hollow ring,&lt;/text&gt;&lt;text class=&quot;a3sd-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;391.0&quot;&gt;solid vs dashed whisker &amp;#8212; because an opacity difference alone does not survive print or a phone.&lt;/text&gt;&lt;line class=&quot;a3sd-ghost&quot; x1=&quot;24&quot; y1=&quot;406.0&quot; x2=&quot;56&quot; y2=&quot;406.0&quot;/&gt;&lt;text class=&quot;a3sd-leg&quot; text-anchor=&quot;start&quot; x=&quot;64.0&quot; y=&quot;411.0&quot;&gt;schematic: recovery increasing with every rung &amp;#8212; the reader&amp;#8217;s prior, not a measurement&lt;/text&gt;&lt;text class=&quot;a3sd-rung&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;453.0&quot;&gt;6.7B&lt;/text&gt;&lt;text class=&quot;a3sd-rungsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;473.0&quot;&gt;k/n over 151&lt;/text&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;317.3&quot; y1=&quot;447.0&quot; x2=&quot;426.7&quot; y2=&quot;447.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;317.3&quot; y1=&quot;442.0&quot; x2=&quot;317.3&quot; y2=&quot;452.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;426.7&quot; y1=&quot;442.0&quot; x2=&quot;426.7&quot; y2=&quot;452.0&quot;/&gt;&lt;circle class=&quot;a3sd-prim&quot; cx=&quot;364.4&quot; cy=&quot;447.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;452.0&quot;&gt;obf   28/151 = 18.5% [13.2, 25.5]&lt;/text&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;426.7&quot; y1=&quot;477.0&quot; x2=&quot;558.2&quot; y2=&quot;477.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;426.7&quot; y1=&quot;472.0&quot; x2=&quot;426.7&quot; y2=&quot;482.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;558.2&quot; y1=&quot;472.0&quot; x2=&quot;558.2&quot; y2=&quot;482.0&quot;/&gt;&lt;circle class=&quot;a3sd-clean&quot; cx=&quot;488.9&quot; cy=&quot;477.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;482.0&quot;&gt;clean 49/151 = 32.5% [25.5, 40.3]&lt;/text&gt;&lt;text class=&quot;a3sd-rung&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;549.0&quot;&gt;9B&lt;/text&gt;&lt;text class=&quot;a3sd-rungsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;569.0&quot;&gt;k/n over 151&lt;/text&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;296.9&quot; y1=&quot;543.0&quot; x2=&quot;400.9&quot; y2=&quot;543.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;296.9&quot; y1=&quot;538.0&quot; x2=&quot;296.9&quot; y2=&quot;548.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;400.9&quot; y1=&quot;538.0&quot; x2=&quot;400.9&quot; y2=&quot;548.0&quot;/&gt;&lt;circle class=&quot;a3sd-prim&quot; cx=&quot;341.3&quot; cy=&quot;543.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;548.0&quot;&gt;obf   24/151 = 15.9% [10.9, 22.6]&lt;/text&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;437.3&quot; y1=&quot;573.0&quot; x2=&quot;569.8&quot; y2=&quot;573.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;437.3&quot; y1=&quot;568.0&quot; x2=&quot;437.3&quot; y2=&quot;578.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;569.8&quot; y1=&quot;568.0&quot; x2=&quot;569.8&quot; y2=&quot;578.0&quot;/&gt;&lt;circle class=&quot;a3sd-clean&quot; cx=&quot;500.4&quot; cy=&quot;573.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;578.0&quot;&gt;clean 51/151 = 33.8% [26.7, 41.6]&lt;/text&gt;&lt;text class=&quot;a3sd-rung&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;645.0&quot;&gt;22B&lt;/text&gt;&lt;text class=&quot;a3sd-rungsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;665.0&quot;&gt;k/n over 151&lt;/text&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;327.1&quot; y1=&quot;639.0&quot; x2=&quot;439.1&quot; y2=&quot;639.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;327.1&quot; y1=&quot;634.0&quot; x2=&quot;327.1&quot; y2=&quot;644.0&quot;/&gt;&lt;line class=&quot;a3sd-prim-w&quot; x1=&quot;439.1&quot; y1=&quot;634.0&quot; x2=&quot;439.1&quot; y2=&quot;644.0&quot;/&gt;&lt;circle class=&quot;a3sd-prim&quot; cx=&quot;376.9&quot; cy=&quot;639.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;644.0&quot;&gt;obf   30/151 = 19.9% [14.3, 26.9]&lt;/text&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;421.3&quot; y1=&quot;669.0&quot; x2=&quot;552.0&quot; y2=&quot;669.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;421.3&quot; y1=&quot;664.0&quot; x2=&quot;421.3&quot; y2=&quot;674.0&quot;/&gt;&lt;line class=&quot;a3sd-clean-w&quot; x1=&quot;552.0&quot; y1=&quot;664.0&quot; x2=&quot;552.0&quot; y2=&quot;674.0&quot;/&gt;&lt;circle class=&quot;a3sd-clean&quot; cx=&quot;482.7&quot; cy=&quot;669.0&quot; r=&quot;6.5&quot;/&gt;&lt;text class=&quot;a3sd-cell&quot; text-anchor=&quot;start&quot; x=&quot;620.0&quot; y=&quot;674.0&quot;&gt;clean 48/151 = 31.8% [24.9, 39.6]&lt;/text&gt;&lt;line class=&quot;a3sd-ghost&quot; x1=&quot;364.4&quot; y1=&quot;458.0&quot; x2=&quot;439.1&quot; y2=&quot;650.0&quot;/&gt;&lt;circle class=&quot;a3sd-ghostdot&quot; cx=&quot;439.1&quot; cy=&quot;650.0&quot; r=&quot;5&quot;/&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;200&quot; y1=&quot;691.0&quot; x2=&quot;600&quot; y2=&quot;691.0&quot;/&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;200.0&quot; y1=&quot;691.0&quot; x2=&quot;200.0&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;200.0&quot; y=&quot;715.0&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;244.4&quot; y1=&quot;691.0&quot; x2=&quot;244.4&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;244.4&quot; y=&quot;715.0&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;288.9&quot; y1=&quot;691.0&quot; x2=&quot;288.9&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;288.9&quot; y=&quot;715.0&quot;&gt;10&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;333.3&quot; y1=&quot;691.0&quot; x2=&quot;333.3&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;333.3&quot; y=&quot;715.0&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;377.8&quot; y1=&quot;691.0&quot; x2=&quot;377.8&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;377.8&quot; y=&quot;715.0&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;422.2&quot; y1=&quot;691.0&quot; x2=&quot;422.2&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;422.2&quot; y=&quot;715.0&quot;&gt;25&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;466.7&quot; y1=&quot;691.0&quot; x2=&quot;466.7&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;466.7&quot; y=&quot;715.0&quot;&gt;30&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;511.1&quot; y1=&quot;691.0&quot; x2=&quot;511.1&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;511.1&quot; y=&quot;715.0&quot;&gt;35&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;555.6&quot; y1=&quot;691.0&quot; x2=&quot;555.6&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;555.6&quot; y=&quot;715.0&quot;&gt;40&lt;/text&gt;&lt;line class=&quot;a3sd-axis&quot; x1=&quot;600.0&quot; y1=&quot;691.0&quot; x2=&quot;600.0&quot; y2=&quot;697.0&quot;/&gt;&lt;text class=&quot;a3sd-tick&quot; text-anchor=&quot;middle&quot; x=&quot;600.0&quot; y=&quot;715.0&quot;&gt;45&lt;/text&gt;&lt;text class=&quot;a3sd-axtitle&quot; text-anchor=&quot;middle&quot; x=&quot;400.0&quot; y=&quot;737.0&quot;&gt;fired-only re-executability (%), gcc-lenient, native-4096&lt;/text&gt;&lt;text class=&quot;a3sd-ann&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;765.0&quot;&gt;shaded: [14.3, 22.6] &amp;#8212; the range every rung&amp;#8217;s own OBFUSCATED interval contains.&lt;/text&gt;&lt;text class=&quot;a3sd-ann&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;784.0&quot;&gt;The observed order is 18.5% &amp;#8594; 15.9% &amp;#8594; 19.9%: down, then up. Rising, falling and level all&lt;/text&gt;&lt;text class=&quot;a3sd-ann&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;803.0&quot;&gt;sit inside these intervals, so this rung is compatible with many curves. A reader whose&lt;/text&gt;&lt;text class=&quot;a3sd-ann&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;822.0&quot;&gt;prior was the dashed line &amp;#8212; a monotone rise to 26.9%, the 22B cell&amp;#8217;s own upper bound &amp;#8212;&lt;/text&gt;&lt;text class=&quot;a3sd-ann&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;841.0&quot;&gt;has not been refuted either.&lt;/text&gt;&lt;line class=&quot;a3sd-rule&quot; x1=&quot;24&quot; y1=&quot;855.0&quot; x2=&quot;904&quot; y2=&quot;855.0&quot;/&gt;&lt;text class=&quot;a3sd-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;875.0&quot;&gt;2 &amp;#183; THE CEILING-EFFECT ESCAPE, CLOSED&lt;/text&gt;&lt;text class=&quot;a3sd-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;899.0&quot;&gt;The clean bases are already level: 32.5% &amp;#8594; 33.8% &amp;#8594; 31.8%, all over 151.&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;921.0&quot;&gt;The larger models are not saturating on obfuscated input while running out of&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;943.0&quot;&gt;headroom on clean input &amp;#8212; they gain nothing on either. Scale is not the axis&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;965.0&quot;&gt;the field thinks it is measuring here.&lt;/text&gt;&lt;line class=&quot;a3sd-rule&quot; x1=&quot;24&quot; y1=&quot;979.0&quot; x2=&quot;904&quot; y2=&quot;979.0&quot;/&gt;&lt;text class=&quot;a3sd-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1003.0&quot;&gt;RELABELLED, NOT RENUMBERED&lt;/text&gt;&lt;text class=&quot;a3sd-strike&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1029.0&quot;&gt;the maximum read-through across the scaling rungs&lt;/text&gt;&lt;line class=&quot;a3sd-strikerule&quot; x1=&quot;24&quot; y1=&quot;1023.0&quot; x2=&quot;527.8&quot; y2=&quot;1023.0&quot;/&gt;&lt;text class=&quot;a3sd-repl&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1055.0&quot;&gt;bogus_control_flow read-through across the scaling rungs&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1081.0&quot;&gt;The Zenodo v1 preprint labelled this series the &amp;#8220;maximum&amp;#8221;. At 9B the true maximum is&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1103.0&quot;&gt;16.7% (4/24) [6.7, 35.9], from string_encryption &amp;#8212; a cell with n = 24, whose interval spans&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1125.0&quot;&gt;nearly 30 points and cannot anchor anything. The word &amp;#8220;maximum&amp;#8221; goes. The series stays,&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1147.0&quot;&gt;unchanged, at 18.5 / 15.9 / 19.9.&lt;/text&gt;&lt;line class=&quot;a3sd-rule&quot; x1=&quot;24&quot; y1=&quot;1161.0&quot; x2=&quot;904&quot; y2=&quot;1161.0&quot;/&gt;&lt;text class=&quot;a3sd-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1181.0&quot;&gt;This rung is a THIRD denominator family.&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1203.0&quot;&gt;151 / 132 / 98 / 95 / 93 / 24 &amp;#8212; per config, not per rung. It never shares an axis&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1225.0&quot;&gt;with the 6.7B End leg&amp;#8217;s 149 / 106 / 97. The per-config truncation rates in the table&lt;/text&gt;&lt;text class=&quot;a3sd-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1247.0&quot;&gt;twin are EACH CONFIG&amp;#8217;S OWN: 26.2% is flatten_cfg&amp;#8217;s rate, never the rung&amp;#8217;s.&lt;/text&gt;&lt;line class=&quot;a3sd-rule&quot; x1=&quot;24&quot; y1=&quot;1261.0&quot; x2=&quot;904&quot; y2=&quot;1261.0&quot;/&gt;&lt;text class=&quot;a3sd-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1279.0&quot;&gt;Wilson 95% throughout,&lt;/text&gt;&lt;text class=&quot;a3sd-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1299.0&quot;&gt;recomputed from k/n at build time. Seed 0xC0FFEE.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The bogus-control-flow cell, the widest obfuscated denominator in the set (n = 151), read across an obfuscation-naive Ghidra-refinement family at 6.7B, 9B and 22B, gcc-lenient scorer at the model&apos;s native 4096-token window. Recovery reads 18.5% at 6.7B and 19.9% at 22B with a dip between; the clean bases are already level near 32%, so the parameter count buys no resolvable read-through. Wilson 95% intervals; three points with intervals this wide cannot order a curve.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;Rung&lt;/th&gt;&lt;th&gt;obfuscated k/n&lt;/th&gt;&lt;th&gt;Rate&lt;/th&gt;&lt;th&gt;Wilson 95%&lt;/th&gt;&lt;th&gt;clean-base k/n&lt;/th&gt;&lt;th&gt;clean Rate&lt;/th&gt;&lt;th&gt;clean Wilson 95%&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;6.7B&lt;/td&gt;&lt;td&gt;28/151&lt;/td&gt;&lt;td&gt;18.5%&lt;/td&gt;&lt;td&gt;[13.2, 25.5]&lt;/td&gt;&lt;td&gt;49/151&lt;/td&gt;&lt;td&gt;32.5%&lt;/td&gt;&lt;td&gt;[25.5, 40.3]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;9B&lt;/td&gt;&lt;td&gt;24/151&lt;/td&gt;&lt;td&gt;15.9%&lt;/td&gt;&lt;td&gt;[10.9, 22.6]&lt;/td&gt;&lt;td&gt;51/151&lt;/td&gt;&lt;td&gt;33.8%&lt;/td&gt;&lt;td&gt;[26.7, 41.6]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;22B&lt;/td&gt;&lt;td&gt;30/151&lt;/td&gt;&lt;td&gt;19.9%&lt;/td&gt;&lt;td&gt;[14.3, 26.9]&lt;/td&gt;&lt;td&gt;48/151&lt;/td&gt;&lt;td&gt;31.8%&lt;/td&gt;&lt;td&gt;[24.9, 39.6]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;7&quot;&gt;Denominator family: 151 (Ghidra-Ref, obfuscation-naive), a third family that never shares an axis with the End leg’s 149 / 106 / 97. The three obfuscated intervals share the whole range [14.3, 22.6].&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; &lt;script type=&quot;module&quot; src=&quot;https://thepragmaticquant.com/vercel/path0/src/components/Figure.astro?astro&amp;type=script&amp;index=0&amp;lang.ts&quot;&gt;&lt;/script&gt;
&lt;p&gt;The honest caption on that ladder avoids the word “flat.” Three points with intervals that wide are compatible with a rising curve, a falling curve and a level one; a reader whose intuition lands inside them has not been refuted. What the ladder does establish is narrower and sufficient: within this range, on this evaluation, parameter count does not buy read-through.&lt;/p&gt;
&lt;p&gt;Scale is not the variable this leg tests.&lt;/p&gt;
&lt;h2 id=&quot;tell-the-attacker-what-you-did&quot;&gt;Tell the attacker what you did&lt;a class=&quot;heading-anchor&quot; href=&quot;#tell-the-attacker-what-you-did&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Kerckhoffs published the principle in 1883 for ciphers, and it transfers without modification: a system has to stay secure when the adversary knows exactly how it works. Every number in section one was measured against an adversary who did not. The naive attacker had seen ordinary compiled code and had never seen a flattened control-flow graph or an encrypted constant pool in training. Its 0.0% is a measurement of that gap as much as of the transform.&lt;/p&gt;
&lt;p&gt;There is a mechanical reason to expect this to matter, and it is the least surprising thing in the article. These transforms are compiler passes. A pass emits the same idioms every time it runs, the same dispatcher shape for a flattened graph, the same decrypt-then-use sequence around a hidden constant, because that is what a pass is. Those idioms are precisely the kind of regularity a sequence model absorbs from examples. Withholding them from the attacker’s training set is a choice about the experiment, and the experiment then reports the consequences of that choice as a property of the binary.&lt;/p&gt;
&lt;p&gt;So we removed the gap. Fine-tune the attacker on the same transform family, then re-run the identical evaluation, same binaries, same functions, same window, same scorer, same 18.8% clean baseline. Only the attacker’s training distribution changed.&lt;/p&gt;
&lt;p&gt;Constant encryption: 14.4% (14 of 97) [8.8, 22.8]. Control-flow flattening: 14.3-15.6%. Bogus control flow: 12.3% (13 of 106) [7.3, 19.9]. The heavy composite, all transforms stacked: 16.0%.&lt;/p&gt;
&lt;p&gt;Read the constant-encryption cell twice. It is 0 of 97 for the naive attacker and 14 of 97 for the obfuscation-aware one. Same denominator, same functions, same bytes on disk. Nothing about the binary changed between those two numbers.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;One binary is drawn once at the top, then the same object fans into a row per transform below it. Each row is a ribbon carved into three segments, the functions the transform never fired on, the fired ones that overran the window, and the fired-and-scored remainder, and every config carries two strands: a naive strand hugging the zero floor and an obfuscation-aware strand standing well clear of it. A single clean-base rail runs across the top of the panel, above both strands. The picture is one set of bytes read two different distances, not two different binaries.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a3-two-attackers&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2097&quot; role=&quot;img&quot; aria-label=&quot;two stacked panels: the first carves a 164-function ribbon per obfuscation config into never-fired, fired-but-truncated and fired-and-scored strands, so each config ends at a different analysed n; the second scores those survivors with two attackers on one rate axis, the obfuscation-naive attacker at zero to under one percent and the obfuscation-aware attacker at twelve to sixteen percent, both beneath a dashed clean-base rail at 18.8 percent&quot;&gt;&lt;style&gt;#fig-fnf-a3-two-attackers [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a3-two-attackers [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a3-two-attackers [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a3-two-attackers [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a3-two-attackers [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a3-two-attackers [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a3-two-attackers [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a3-two-attackers [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a3-two-attackers [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a3-two-attackers [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2097&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;defs&gt;
  &lt;pattern id=&quot;a3ta-hatchpat&quot; width=&quot;7&quot; height=&quot;7&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;7&quot; stroke=&quot;#8a8f98&quot; stroke-width=&quot;1&quot;/&gt;
  &lt;/pattern&gt;
  &lt;!-- the fired-but-truncated strand: a denser cross-hatch over the page surface, so the
       exclusion reads as removed material and carries no data hue at all. --&gt;
  &lt;pattern id=&quot;a3ta-truncpat&quot; width=&quot;6&quot; height=&quot;6&quot; patternUnits=&quot;userSpaceOnUse&quot;&gt;
    &lt;rect width=&quot;6&quot; height=&quot;6&quot; fill=&quot;#1a1d23&quot;/&gt;
    &lt;path d=&quot;M -1 1 l 2 -2 M 0 6 l 6 -6 M 5 7 l 2 -2&quot; stroke=&quot;#8a8f98&quot; stroke-width=&quot;1.1&quot;/&gt;
    &lt;path d=&quot;M -1 5 l 2 2 M 0 0 l 6 6 M 5 -1 l 2 2&quot; stroke=&quot;#8a8f98&quot; stroke-width=&quot;1.1&quot;/&gt;
  &lt;/pattern&gt;
&lt;/defs&gt;
&lt;style&gt;
    :where(#a3ta-root) text { font-family: var(--mono); fill: var(--fg); }
    .a3ta-title { font-size: 26px; font-weight: bold; letter-spacing: 0.03em; }
    .a3ta-sub { font-size: 15px; fill: var(--comment); }
    .a3ta-panlab { font-size: 18px; font-weight: bold; }
    .a3ta-pansub { font-size: 13px; fill: var(--comment); }
    .a3ta-band { font-size: 15px; font-weight: bold; }
    .a3ta-bandsub { font-size: 13px; fill: var(--comment); }
    .a3ta-hash { font-size: 13px; fill: #56b4e9; }
    .a3ta-rowlab { font-size: 15px; }
    .a3ta-rowsub { font-size: 13px; fill: var(--comment); }
    .a3ta-rowstat { font-size: 14px; }
    .a3ta-seg { font-size: 13px; fill: var(--fg); font-weight: bold; }
    .a3ta-segout { font-size: 13px; fill: var(--fg); }
    .a3ta-cell { font-size: 14px; }
    .a3ta-tick { font-size: 14px; fill: var(--comment); }
    .a3ta-axtitle { font-size: 14px; fill: var(--comment); }
    .a3ta-raillab { font-size: 13px; fill: var(--comment); }
    .a3ta-leg { font-size: 13px; fill: var(--comment); }
    .a3ta-noop { font-size: 13px; fill: var(--comment); letter-spacing: 0.06em; }
    .a3ta-kicker { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .a3ta-strike { font-size: 20px; font-weight: bold; fill: var(--comment); }
    .a3ta-repl { font-size: 20px; font-weight: bold; fill: #56b4e9; }
    .a3ta-keep { font-size: 16px; }
    .a3ta-note { font-size: 15px; }
    .a3ta-noteb { font-size: 15px; font-weight: bold; }
    .a3ta-prov { font-size: 14px; fill: var(--comment); }
    .a3ta-slotlab { font-size: 14px; fill: var(--comment); }
    /* The three slot statuses are a VOCABULARY, not a list of what this figure
       happens to use: the class name is computed as -slot-{status} from the slot
       table. A status this figure has no instance of today therefore has no rendered
       element, and deleting its rule would make it paint with the SVG default (black
       fill) the moment a condition is flagged. Kept deliberately -- an unrendered
       rule here is a fallback, not dead craft. */
    .a3ta-slot-lit { font-size: 14px; fill: #56b4e9; }
    .a3ta-slot-grey { font-size: 14px; fill: var(--comment); }
    .a3ta-slot-verm { font-size: 14px; fill: #d55e00; }
    .a3ta-rule { stroke: var(--current-line); stroke-width: 1; }
    .a3ta-bandbox { fill: none; stroke: var(--current-line); stroke-width: 1.4; }
    .a3ta-never { fill: none; stroke: var(--comment); stroke-width: 1.2; stroke-dasharray: 3 3; }
    .a3ta-trunc { fill: url(#a3ta-truncpat); stroke: var(--comment); stroke-width: 1; }
    .a3ta-scored { fill: none; stroke: var(--fg); stroke-width: 1.6; }
    .a3ta-lead { stroke: var(--comment); stroke-width: 1; }
    .a3ta-naive { fill: #e69f00; }
    .a3ta-naive-w { stroke: #e69f00; stroke-width: 1.5; }
    .a3ta-aware { fill: #56b4e9; }
    .a3ta-aware-w { stroke: #56b4e9; stroke-width: 1.5; }
    .a3ta-axis { stroke: var(--comment); stroke-width: 1.3; }
    .a3ta-railline { stroke: var(--fg); stroke-width: 1.6; stroke-dasharray: 6 5; }
    .a3ta-hatch { fill: url(#a3ta-hatchpat); opacity: 0.22; }
    .a3ta-hatchbox { fill: none; stroke: var(--comment); stroke-width: 1; stroke-dasharray: 2 4; }
    .a3ta-strikerule { stroke: #d55e00; stroke-width: 3; }
&lt;/style&gt;
&lt;g id=&quot;a3ta-root&quot;&gt;
&lt;text class=&quot;a3ta-title&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;The same binaries, two attackers&lt;/text&gt;&lt;text class=&quot;a3ta-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;80.0&quot;&gt;One set of obfuscated binaries, two attackers, and a denominator that is carved&lt;/text&gt;&lt;text class=&quot;a3ta-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;102.0&quot;&gt;twice before either attacker is scored.&lt;/text&gt;&lt;line class=&quot;a3ta-rule&quot; x1=&quot;24&quot; y1=&quot;122.0&quot; x2=&quot;904&quot; y2=&quot;122.0&quot;/&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;24.0&quot; y=&quot;146.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;a3ta-slot-lit&quot; x=&quot;99.6&quot; y=&quot;146.0&quot;&gt;naive vs Kerckhoffs (the VARIED axis)&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;435.6&quot; y=&quot;146.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;a3ta-slot-lit&quot; x=&quot;494.4&quot; y=&quot;146.0&quot;&gt;gcc-lenient re-exec&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;679.2&quot; y=&quot;146.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;a3ta-slot-lit&quot; x=&quot;738.0&quot; y=&quot;146.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;24.0&quot; y=&quot;169.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;a3ta-slot-grey&quot; x=&quot;99.6&quot; y=&quot;169.0&quot;&gt;clang x86/O2 (fixed)&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;292.8&quot; y=&quot;169.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;a3ta-slot-grey&quot; x=&quot;402.0&quot; y=&quot;169.0&quot;&gt;llvm-objdump (fixed)&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;24.0&quot; y=&quot;192.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;a3ta-slot-lit&quot; x=&quot;133.2&quot; y=&quot;192.0&quot;&gt;fired-only, truncation-excluded&lt;/text&gt;&lt;text class=&quot;a3ta-slotlab&quot; x=&quot;418.8&quot; y=&quot;192.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;a3ta-slot-lit&quot; x=&quot;435.6&quot; y=&quot;192.0&quot;&gt;per config 23 / 97 / 63 / 106 / 25&lt;/text&gt;&lt;text class=&quot;a3ta-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;214.0&quot;&gt;floor, not ceiling; one modest 6.7B fine-tuned attacker; static / client-side tier.&lt;/text&gt;&lt;rect class=&quot;a3ta-bandbox&quot; x=&quot;24&quot; y=&quot;234.0&quot; width=&quot;880&quot; height=&quot;86&quot; rx=&quot;3&quot;/&gt;&lt;text class=&quot;a3ta-band&quot; text-anchor=&quot;start&quot; x=&quot;40.0&quot; y=&quot;260.0&quot;&gt;ONE SET OF BINARIES &amp;#8212; nothing below this line changes a byte.&lt;/text&gt;&lt;text class=&quot;a3ta-bandsub&quot; text-anchor=&quot;start&quot; x=&quot;40.0&quot; y=&quot;282.0&quot;&gt;Same 164 HumanEval-Decompile functions, same clang x86/O2 build, same seed 0xC0FFEE.&lt;/text&gt;&lt;text class=&quot;a3ta-hash&quot; text-anchor=&quot;start&quot; x=&quot;40.0&quot; y=&quot;306.0&quot;&gt;scored twice, unchanged: the same five obfuscated builds, identical across both arms.&lt;/text&gt;&lt;text class=&quot;a3ta-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;354.0&quot;&gt;1 &amp;#183; The denominator, carved twice&lt;/text&gt;&lt;text class=&quot;a3ta-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;376.0&quot;&gt;Every ribbon starts at 164 functions. Firing carves it once (Plank A); truncation&lt;/text&gt;&lt;text class=&quot;a3ta-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;394.0&quot;&gt;carves it again (Plank B). No two configs end at the same n &amp;#8212; that is the finding.&lt;/text&gt;&lt;rect class=&quot;a3ta-never&quot; x=&quot;24&quot; y=&quot;409.0&quot; width=&quot;16&quot; height=&quot;14&quot;/&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;420.0&quot;&gt;never fired&lt;/text&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;300&quot; y=&quot;409.0&quot; width=&quot;16&quot; height=&quot;14&quot;/&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;324.0&quot; y=&quot;420.0&quot;&gt;fired, but truncated&lt;/text&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;612&quot; y=&quot;409.0&quot; width=&quot;16&quot; height=&quot;14&quot;/&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;636.0&quot; y=&quot;420.0&quot;&gt;fired AND scored&lt;/text&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;438.0&quot;&gt;dashed: the transform never touched it   &amp;#183;   hatched: the prompt the model never saw,&lt;/text&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;455.0&quot;&gt;scored as deterrence &amp;#8212; an exclusion, so no data hue   &amp;#183;   outlined: the population that reaches an attacker&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;493.0&quot;&gt;string_encryption&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;511.0&quot;&gt;cfg 1&lt;/text&gt;&lt;rect class=&quot;a3ta-never&quot; x=&quot;210.0&quot; y=&quot;479.0&quot; width=&quot;477.4&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;448.7&quot; y=&quot;497.0&quot;&gt;135&lt;/text&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;687.4&quot; y=&quot;479.0&quot; width=&quot;21.2&quot; height=&quot;26&quot;/&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;708.7&quot; y=&quot;479.0&quot; width=&quot;81.3&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;749.3&quot; y=&quot;497.0&quot;&gt;23&lt;/text&gt;&lt;line class=&quot;a3ta-lead&quot; x1=&quot;698.0&quot; y1=&quot;505.0&quot; x2=&quot;698.0&quot; y2=&quot;513.0&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;698.0&quot; y=&quot;525.0&quot;&gt;6&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;491.0&quot;&gt;fired 29&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;511.0&quot;&gt;&amp;#8594; n = 23&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;555.0&quot;&gt;constant_encryption&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;573.0&quot;&gt;cfg 2&lt;/text&gt;&lt;rect class=&quot;a3ta-never&quot; x=&quot;210.0&quot; y=&quot;541.0&quot; width=&quot;24.8&quot; height=&quot;26&quot;/&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;234.8&quot; y=&quot;541.0&quot; width=&quot;212.2&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-seg&quot; text-anchor=&quot;middle&quot; x=&quot;340.9&quot; y=&quot;559.0&quot;&gt;60&lt;/text&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;447.0&quot; y=&quot;541.0&quot; width=&quot;343.0&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;618.5&quot; y=&quot;559.0&quot;&gt;97&lt;/text&gt;&lt;line class=&quot;a3ta-lead&quot; x1=&quot;222.4&quot; y1=&quot;567.0&quot; x2=&quot;222.4&quot; y2=&quot;575.0&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;222.4&quot; y=&quot;587.0&quot;&gt;7&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;553.0&quot;&gt;fired 157&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;573.0&quot;&gt;&amp;#8594; n = 97&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;617.0&quot;&gt;flatten_cfg&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;635.0&quot;&gt;cfg 4&lt;/text&gt;&lt;rect class=&quot;a3ta-never&quot; x=&quot;210.0&quot; y=&quot;603.0&quot; width=&quot;88.4&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;254.2&quot; y=&quot;621.0&quot;&gt;25&lt;/text&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;298.4&quot; y=&quot;603.0&quot; width=&quot;268.8&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-seg&quot; text-anchor=&quot;middle&quot; x=&quot;432.8&quot; y=&quot;621.0&quot;&gt;76&lt;/text&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;567.2&quot; y=&quot;603.0&quot; width=&quot;222.8&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;678.6&quot; y=&quot;621.0&quot;&gt;63&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;615.0&quot;&gt;fired 139&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;635.0&quot;&gt;&amp;#8594; n = 63&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;679.0&quot;&gt;bogus_control_flow&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;697.0&quot;&gt;cfg 8&lt;/text&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;210.0&quot; y=&quot;665.0&quot; width=&quot;205.1&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-seg&quot; text-anchor=&quot;middle&quot; x=&quot;312.6&quot; y=&quot;683.0&quot;&gt;58&lt;/text&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;415.1&quot; y=&quot;665.0&quot; width=&quot;374.9&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;602.6&quot; y=&quot;683.0&quot;&gt;106&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;677.0&quot;&gt;fired 164&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;697.0&quot;&gt;&amp;#8594; n = 106&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;741.0&quot;&gt;heavy (ce+cff+bcf)&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;759.0&quot;&gt;cfg 14&lt;/text&gt;&lt;rect class=&quot;a3ta-trunc&quot; x=&quot;210.0&quot; y=&quot;727.0&quot; width=&quot;491.6&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-seg&quot; text-anchor=&quot;middle&quot; x=&quot;455.8&quot; y=&quot;745.0&quot;&gt;139&lt;/text&gt;&lt;rect class=&quot;a3ta-scored&quot; x=&quot;701.6&quot; y=&quot;727.0&quot; width=&quot;88.4&quot; height=&quot;26&quot;/&gt;&lt;text class=&quot;a3ta-segout&quot; text-anchor=&quot;middle&quot; x=&quot;745.8&quot; y=&quot;745.0&quot;&gt;25&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;739.0&quot;&gt;fired 164&lt;/text&gt;&lt;text class=&quot;a3ta-rowstat&quot; text-anchor=&quot;start&quot; x=&quot;802.0&quot; y=&quot;759.0&quot;&gt;&amp;#8594; n = 25&lt;/text&gt;&lt;line class=&quot;a3ta-rule&quot; x1=&quot;24&quot; y1=&quot;773.0&quot; x2=&quot;904&quot; y2=&quot;773.0&quot;/&gt;&lt;text class=&quot;a3ta-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;807.0&quot;&gt;2 &amp;#183; The survivors, scored twice&lt;/text&gt;&lt;text class=&quot;a3ta-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;829.0&quot;&gt;Same binaries, same surviving functions, two attackers. Each cell owns its own&lt;/text&gt;&lt;text class=&quot;a3ta-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;847.0&quot;&gt;denominator: no arrow runs 164 &amp;#8594; 23, and none runs 149 &amp;#8594; 23.&lt;/text&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;32&quot; cy=&quot;868.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;873.0&quot;&gt;obfuscation-NAIVE attacker &amp;#8212; the arm the field scores&lt;/text&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;500&quot; cy=&quot;868.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-leg&quot; text-anchor=&quot;start&quot; x=&quot;514.0&quot; y=&quot;873.0&quot;&gt;obfuscation-AWARE attacker (Kerckhoffs)&lt;/text&gt;&lt;text class=&quot;a3ta-raillab&quot; text-anchor=&quot;middle&quot; x=&quot;444.7&quot; y=&quot;897.0&quot;&gt;clean base 18.8% (28/149) [13.3, 25.8]&lt;/text&gt;&lt;text class=&quot;a3ta-raillab&quot; text-anchor=&quot;middle&quot; x=&quot;444.7&quot; y=&quot;913.0&quot;&gt;the shared 149 non-truncated subset &amp;#8212; the SAME 149 Article 2 scores on&lt;/text&gt;&lt;text class=&quot;a3ta-raillab&quot; text-anchor=&quot;middle&quot; x=&quot;444.7&quot; y=&quot;928.0&quot;&gt;one population, a different attacker and a different arm (A2 reads 27.5% / 15.4% on it)&lt;/text&gt;&lt;text class=&quot;a3ta-raillab&quot; text-anchor=&quot;middle&quot; x=&quot;444.7&quot; y=&quot;943.0&quot;&gt;each OBFUSCATED cell below owns its own n: no arrow runs 149 &amp;#8594; 23&lt;/text&gt;&lt;rect class=&quot;a3ta-hatch&quot; x=&quot;256&quot; y=&quot;957.0&quot; width=&quot;648&quot; height=&quot;56&quot;/&gt;&lt;rect class=&quot;a3ta-hatchbox&quot; x=&quot;256&quot; y=&quot;957.0&quot; width=&quot;648&quot; height=&quot;56&quot;/&gt;&lt;text class=&quot;a3ta-noop&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1011.0&quot;&gt;NO OPINION AT THIS n&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;975.0&quot;&gt;string_encryption&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;993.0&quot;&gt;cfg 1  &amp;#183;  n = 23&lt;/text&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;973.0&quot; x2=&quot;401.4&quot; y2=&quot;973.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;968.0&quot; x2=&quot;264.0&quot; y2=&quot;978.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;401.4&quot; y1=&quot;968.0&quot; x2=&quot;401.4&quot; y2=&quot;978.0&quot;/&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;264.0&quot; cy=&quot;973.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;978.0&quot;&gt;naive 0/23 = 0.0% [0.0, 14.3]&lt;/text&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;271.7&quot; y1=&quot;997.0&quot; x2=&quot;465.8&quot; y2=&quot;997.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;271.7&quot; y1=&quot;992.0&quot; x2=&quot;271.7&quot; y2=&quot;1002.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;465.8&quot; y1=&quot;992.0&quot; x2=&quot;465.8&quot; y2=&quot;1002.0&quot;/&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;305.3&quot; cy=&quot;997.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1002.0&quot;&gt;aware 1/23 = 4.3% [0.8, 21.0]&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1043.0&quot;&gt;constant_encryption&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1061.0&quot;&gt;cfg 2  &amp;#183;  n = 97&lt;/text&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1041.0&quot; x2=&quot;300.5&quot; y2=&quot;1041.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1036.0&quot; x2=&quot;264.0&quot; y2=&quot;1046.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;300.5&quot; y1=&quot;1036.0&quot; x2=&quot;300.5&quot; y2=&quot;1046.0&quot;/&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;264.0&quot; cy=&quot;1041.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1046.0&quot;&gt;naive 0/97 = 0.0% [0.0, 3.8]&lt;/text&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;348.6&quot; y1=&quot;1065.0&quot; x2=&quot;483.1&quot; y2=&quot;1065.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;348.6&quot; y1=&quot;1060.0&quot; x2=&quot;348.6&quot; y2=&quot;1070.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;483.1&quot; y1=&quot;1060.0&quot; x2=&quot;483.1&quot; y2=&quot;1070.0&quot;/&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;402.4&quot; cy=&quot;1065.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1070.0&quot;&gt;aware 14/97 = 14.4% [8.8, 22.8]&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1111.0&quot;&gt;flatten_cfg&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1129.0&quot;&gt;cfg 4  &amp;#183;  n = 63&lt;/text&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1109.0&quot; x2=&quot;318.8&quot; y2=&quot;1109.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1104.0&quot; x2=&quot;264.0&quot; y2=&quot;1114.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;318.8&quot; y1=&quot;1104.0&quot; x2=&quot;318.8&quot; y2=&quot;1114.0&quot;/&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;264.0&quot; cy=&quot;1109.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1114.0&quot;&gt;naive 0/63 = 0.0% [0.0, 5.7]&lt;/text&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;338.0&quot; y1=&quot;1133.0&quot; x2=&quot;504.3&quot; y2=&quot;1133.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;338.0&quot; y1=&quot;1128.0&quot; x2=&quot;338.0&quot; y2=&quot;1138.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;504.3&quot; y1=&quot;1128.0&quot; x2=&quot;504.3&quot; y2=&quot;1138.0&quot;/&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;401.4&quot; cy=&quot;1133.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1138.0&quot;&gt;aware 9/63 = 14.3% [7.7, 25.0]&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1179.0&quot;&gt;bogus_control_flow&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1197.0&quot;&gt;cfg 8  &amp;#183;  n = 106&lt;/text&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;265.9&quot; y1=&quot;1177.0&quot; x2=&quot;314.0&quot; y2=&quot;1177.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;265.9&quot; y1=&quot;1172.0&quot; x2=&quot;265.9&quot; y2=&quot;1182.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;314.0&quot; y1=&quot;1172.0&quot; x2=&quot;314.0&quot; y2=&quot;1182.0&quot;/&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;272.6&quot; cy=&quot;1177.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1182.0&quot;&gt;naive 1/106 = 0.9% [0.2, 5.2]&lt;/text&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;334.2&quot; y1=&quot;1201.0&quot; x2=&quot;455.3&quot; y2=&quot;1201.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;334.2&quot; y1=&quot;1196.0&quot; x2=&quot;334.2&quot; y2=&quot;1206.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;455.3&quot; y1=&quot;1196.0&quot; x2=&quot;455.3&quot; y2=&quot;1206.0&quot;/&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;382.2&quot; cy=&quot;1201.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1206.0&quot;&gt;aware 13/106 = 12.3% [7.3, 19.9]&lt;/text&gt;&lt;rect class=&quot;a3ta-hatch&quot; x=&quot;256&quot; y=&quot;1229.0&quot; width=&quot;648&quot; height=&quot;56&quot;/&gt;&lt;rect class=&quot;a3ta-hatchbox&quot; x=&quot;256&quot; y=&quot;1229.0&quot; width=&quot;648&quot; height=&quot;56&quot;/&gt;&lt;text class=&quot;a3ta-noop&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1283.0&quot;&gt;NO OPINION AT THIS n&lt;/text&gt;&lt;text class=&quot;a3ta-rowlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1247.0&quot;&gt;heavy (ce+cff+bcf)&lt;/text&gt;&lt;text class=&quot;a3ta-rowsub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1265.0&quot;&gt;cfg 14  &amp;#183;  n = 25&lt;/text&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1245.0&quot; x2=&quot;391.8&quot; y2=&quot;1245.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;264.0&quot; y1=&quot;1240.0&quot; x2=&quot;264.0&quot; y2=&quot;1250.0&quot;/&gt;&lt;line class=&quot;a3ta-naive-w&quot; x1=&quot;391.8&quot; y1=&quot;1240.0&quot; x2=&quot;391.8&quot; y2=&quot;1250.0&quot;/&gt;&lt;circle class=&quot;a3ta-naive&quot; cx=&quot;264.0&quot; cy=&quot;1245.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1250.0&quot;&gt;naive 0/25 = 0.0% [0.0, 13.3]&lt;/text&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;325.5&quot; y1=&quot;1269.0&quot; x2=&quot;597.5&quot; y2=&quot;1269.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;325.5&quot; y1=&quot;1264.0&quot; x2=&quot;325.5&quot; y2=&quot;1274.0&quot;/&gt;&lt;line class=&quot;a3ta-aware-w&quot; x1=&quot;597.5&quot; y1=&quot;1264.0&quot; x2=&quot;597.5&quot; y2=&quot;1274.0&quot;/&gt;&lt;circle class=&quot;a3ta-aware&quot; cx=&quot;417.8&quot; cy=&quot;1269.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3ta-cell&quot; text-anchor=&quot;start&quot; x=&quot;622.0&quot; y=&quot;1274.0&quot;&gt;aware 4/25 = 16.0% [6.4, 34.7]&lt;/text&gt;&lt;line class=&quot;a3ta-railline&quot; x1=&quot;444.7&quot; y1=&quot;955.0&quot; x2=&quot;444.7&quot; y2=&quot;1305.0&quot;/&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;264&quot; y1=&quot;1305.0&quot; x2=&quot;610&quot; y2=&quot;1305.0&quot;/&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;264.0&quot; y1=&quot;1305.0&quot; x2=&quot;264.0&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;264.0&quot; y=&quot;1329.0&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;312.1&quot; y1=&quot;1305.0&quot; x2=&quot;312.1&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;312.1&quot; y=&quot;1329.0&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;360.1&quot; y1=&quot;1305.0&quot; x2=&quot;360.1&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;360.1&quot; y=&quot;1329.0&quot;&gt;10&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;408.2&quot; y1=&quot;1305.0&quot; x2=&quot;408.2&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;408.2&quot; y=&quot;1329.0&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;456.2&quot; y1=&quot;1305.0&quot; x2=&quot;456.2&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;456.2&quot; y=&quot;1329.0&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;504.3&quot; y1=&quot;1305.0&quot; x2=&quot;504.3&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;504.3&quot; y=&quot;1329.0&quot;&gt;25&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;552.3&quot; y1=&quot;1305.0&quot; x2=&quot;552.3&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;552.3&quot; y=&quot;1329.0&quot;&gt;30&lt;/text&gt;&lt;line class=&quot;a3ta-axis&quot; x1=&quot;600.4&quot; y1=&quot;1305.0&quot; x2=&quot;600.4&quot; y2=&quot;1311.0&quot;/&gt;&lt;text class=&quot;a3ta-tick&quot; text-anchor=&quot;middle&quot; x=&quot;600.4&quot; y=&quot;1329.0&quot;&gt;35&lt;/text&gt;&lt;text class=&quot;a3ta-axtitle&quot; text-anchor=&quot;middle&quot; x=&quot;437.0&quot; y=&quot;1351.0&quot;&gt;fired-only re-executability (%), gcc-lenient, native-4096&lt;/text&gt;&lt;line class=&quot;a3ta-rule&quot; x1=&quot;24&quot; y1=&quot;1365.0&quot; x2=&quot;904&quot; y2=&quot;1365.0&quot;/&gt;&lt;text class=&quot;a3ta-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1387.0&quot;&gt;THE CLAIM, RESTATED &amp;#8212; NOT RETRACTED&lt;/text&gt;&lt;text class=&quot;a3ta-strike&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1417.0&quot;&gt;hardening&lt;/text&gt;&lt;line class=&quot;a3ta-strikerule&quot; x1=&quot;24&quot; y1=&quot;1410.0&quot; x2=&quot;136.0&quot; y2=&quot;1410.0&quot;/&gt;&lt;text class=&quot;a3ta-repl&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1447.0&quot;&gt;brittleness against a naive attacker&lt;/text&gt;&lt;text class=&quot;a3ta-keep&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1473.0&quot;&gt;The leg was KEPT because the effect is real: paired McNemar p = 2.4e-4,&lt;/text&gt;&lt;text class=&quot;a3ta-keep&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1495.0&quot;&gt;placebo-controlled.&lt;/text&gt;&lt;text class=&quot;a3ta-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1525.0&quot;&gt;Absolute points only. No multiplier appears anywhere in this figure:&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1547.0&quot;&gt;the relative reduction degenerates to [100%, 100%] on the 0/97 cell.&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1569.0&quot;&gt;The published drop is +17.8 pt, Newcombe [+11.0, +24.9] pt &amp;#8212; clean 18.8% (28/149)&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1591.0&quot;&gt;against the WORST obfuscated cell, cfg 8 at 0.9% (1/106). That is an UNPAIRED&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1613.0&quot;&gt;cross-config contrast, and it is never attached to the constant_encryption cell.&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1635.0&quot;&gt;The genuinely paired figure sits on a different leg (clang-strict, 8192 window,&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1657.0&quot;&gt;config 2, |S| = 155 fired-and-non-truncated): +8.39 pt [5.0, 13.8], exact McNemar&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1679.0&quot;&gt;p = 2.4e-4. Two legs, two scorers, two windows: never one continuous ledger.&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1701.0&quot;&gt;That interval is RECOMPUTED, not reprinted: the source file gives [4.6, 8.4], which&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1723.0&quot;&gt;would put the point estimate 0.01 pt inside its own upper bound. With 13 discordant&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1745.0&quot;&gt;pairs for clean, 0 against and |S| = 155, the paired difference is 13/155, so its&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1767.0&quot;&gt;interval is Wilson on 13/155 = [5.0, 13.8] - the same interval that row already&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1789.0&quot;&gt;prints for its clean arm. Point estimate, p and verdict unchanged.&lt;/text&gt;&lt;text class=&quot;a3ta-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1811.0&quot;&gt;The clean-base rail is THE 149, the one shared non-truncated subset: the same 149&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1833.0&quot;&gt;Article 2 scores at 27.5% (gcc) and 15.4% (clang) with the stock v1.5 attacker. ONE&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1855.0&quot;&gt;construction, verified by set comparison of the per-function records - a different&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1877.0&quot;&gt;attacker and a different arm, so 18.8% and 27.5% are never a range. Each OBFUSCATED&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1899.0&quot;&gt;cell still owns its own n, which is why no arrow runs 149 to 23.&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1921.0&quot;&gt;flatten_cfg is the only cell that moves across the three held-out seeds:&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1943.0&quot;&gt;9/63 = 14.3% at 0xC0FFEE and 0x5EED5, 10/64 = 15.6% at 0xBADC0DE. Every&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1965.0&quot;&gt;checkpoint from 3600 to 4000 returns the same relabel verdict.&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1987.0&quot;&gt;heavy (cfg 14) fires on all 164 and keeps 25 after 84.8% truncation: its&lt;/text&gt;&lt;text class=&quot;a3ta-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2009.0&quot;&gt;[6.4, 34.7] spans the clean base, so it is a wide-CI outlier, not the anchor.&lt;/text&gt;&lt;line class=&quot;a3ta-rule&quot; x1=&quot;24&quot; y1=&quot;2025.0&quot; x2=&quot;904&quot; y2=&quot;2025.0&quot;/&gt;&lt;text class=&quot;a3ta-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2045.0&quot;&gt;Wilson 95% throughout,&lt;/text&gt;&lt;text class=&quot;a3ta-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2065.0&quot;&gt;recomputed from k/n at build time.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;One set of binaries scored by two attackers that differ only in what they were trained on. The obfuscation-naive control reads 0.0-0.9% of the functions each transform actually fired on; the obfuscation-aware Kerckhoffs control reads 12.3-16.0% of the identical bytes, gcc-lenient scorer, native 4096-token window, clang x86/O2, fired-only, each cell on its own denominator. One modest 6.7B fine-tuned attacker on the static client-side tier: a floor, not a ceiling.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;Config&lt;/th&gt;&lt;th&gt;cfg&lt;/th&gt;&lt;th&gt;Attacker&lt;/th&gt;&lt;th&gt;Firing count (/164)&lt;/th&gt;&lt;th&gt;Truncated&lt;/th&gt;&lt;th&gt;n&lt;/th&gt;&lt;th&gt;k&lt;/th&gt;&lt;th&gt;Rate&lt;/th&gt;&lt;th&gt;Wilson 95%&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;string_encryption&lt;/td&gt;&lt;td&gt;cfg 1&lt;/td&gt;&lt;td&gt;naive&lt;/td&gt;&lt;td&gt;29&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;23&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;td&gt;[0.0, 14.3]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;string_encryption&lt;/td&gt;&lt;td&gt;cfg 1&lt;/td&gt;&lt;td&gt;aware&lt;/td&gt;&lt;td&gt;29&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;23&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;4.3%&lt;/td&gt;&lt;td&gt;[0.8, 21.0]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;constant_encryption&lt;/td&gt;&lt;td&gt;cfg 2&lt;/td&gt;&lt;td&gt;naive&lt;/td&gt;&lt;td&gt;157&lt;/td&gt;&lt;td&gt;60&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;td&gt;[0.0, 3.8]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;constant_encryption&lt;/td&gt;&lt;td&gt;cfg 2&lt;/td&gt;&lt;td&gt;aware&lt;/td&gt;&lt;td&gt;157&lt;/td&gt;&lt;td&gt;60&lt;/td&gt;&lt;td&gt;97&lt;/td&gt;&lt;td&gt;14&lt;/td&gt;&lt;td&gt;14.4%&lt;/td&gt;&lt;td&gt;[8.8, 22.8]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;flatten_cfg&lt;/td&gt;&lt;td&gt;cfg 4&lt;/td&gt;&lt;td&gt;naive&lt;/td&gt;&lt;td&gt;139&lt;/td&gt;&lt;td&gt;76&lt;/td&gt;&lt;td&gt;63&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;td&gt;[0.0, 5.7]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;flatten_cfg&lt;/td&gt;&lt;td&gt;cfg 4&lt;/td&gt;&lt;td&gt;aware&lt;/td&gt;&lt;td&gt;139&lt;/td&gt;&lt;td&gt;76&lt;/td&gt;&lt;td&gt;63&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;14.3%&lt;/td&gt;&lt;td&gt;[7.7, 25.0]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;bogus_control_flow&lt;/td&gt;&lt;td&gt;cfg 8&lt;/td&gt;&lt;td&gt;naive&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;106&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;0.9%&lt;/td&gt;&lt;td&gt;[0.2, 5.2]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;bogus_control_flow&lt;/td&gt;&lt;td&gt;cfg 8&lt;/td&gt;&lt;td&gt;aware&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;58&lt;/td&gt;&lt;td&gt;106&lt;/td&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;12.3%&lt;/td&gt;&lt;td&gt;[7.3, 19.9]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;heavy composite (ce+cff+bcf)&lt;/td&gt;&lt;td&gt;cfg 14&lt;/td&gt;&lt;td&gt;naive&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;139&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;0&lt;/td&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;td&gt;[0.0, 13.3]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;heavy composite (ce+cff+bcf)&lt;/td&gt;&lt;td&gt;cfg 14&lt;/td&gt;&lt;td&gt;aware&lt;/td&gt;&lt;td&gt;164&lt;/td&gt;&lt;td&gt;139&lt;/td&gt;&lt;td&gt;25&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;td&gt;[6.4, 34.7]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;9&quot;&gt;Clean-base rail: 28/149 = 18.8% [13.3, 25.8], the one shared non-truncated subset (164 minus the 15 that truncate at the native-4096 window), never a superset the obfuscated cells are drawn from; each obfuscated cell owns its own firing-and-truncation denominator.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;A fine-tuned attacker recovering anything invites the accusation that it memorised the answers, so the robustness checks carry weight here. Three held-out seeds, disjoint from training, all give the same band. The read-through is stable across the last five training checkpoints, so where the run happened to halt does not drive it. The fine-tuning corpus runs to 815,000 records with the evaluation seeds held out. And the tell that settles it: recovery varies by configuration, 12.3% here, 16.0% there, where memorisation of a held-out evaluation would show up as a flat rate that ignores what the transform did.&lt;/p&gt;
&lt;p&gt;One thing the band does not do is reach the clean base. 12-16% against 18.8% means the transforms still cost the informed attacker something real. The base is computed over all 149 non-truncated functions and each cell over its own fired subset, which is why this bounds attribution but cannot rank transforms; the intervals on the two anchor cells ([8.8, 22.8] and [7.3, 19.9]) overlap almost entirely in any case. The finding is about attribution: most of what the first measurement credited to obfuscation belonged to the attacker’s training set.&lt;/p&gt;
&lt;h2 id=&quot;the-control-that-was-nearly-locked&quot;&gt;The control that was nearly locked&lt;a class=&quot;heading-anchor&quot; href=&quot;#the-control-that-was-nearly-locked&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;That comparison is worth exactly as much as its control model, and the control nearly broke.&lt;/p&gt;
&lt;p&gt;The obfuscation-aware attacker has to be compared against a matched naive one trained on the same schedule, or the whole contrast reduces to “we trained one model longer.” While that control was training, its held-out accuracy across three consecutive evaluation points read 23.5%, then 26.2%, then 22.1%, and I read that shape the way the shape invites: plateaued, stop training, lock the checkpoint. Nobody objected.&lt;/p&gt;
&lt;p&gt;Then the test got computed instead of the curve eyeballed. Chi-squared across the three points is 0.69, p is about 0.71, indistinguishable from noise. The sample behind each point was roughly one ninth of what would be needed to detect a real trend of that size. There was no plateau in that data, no trend either, and an irreversible decision was one step away from being made on it.&lt;/p&gt;
&lt;p&gt;Reading three overlapping estimates as convergence is the identical error this project spends its whole length documenting in other people’s papers, committed here on a training curve in the same month it was being catalogued in a census of ninety-six.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;A grid of twenty small three-point traces laid out as a visual-inference lineup. Nineteen are independent draws from a single fixed rate and one is the real training curve, and by eye none stands out, the real panel&apos;s position is unmarked, and the whole point is that a reader cannot pick it. Beside the grid a true-scale bar contrasts the roughly 149-sample eval against the far taller sample a real trend would require, and a final panel stacks five checkpoints to show the audited verdict, not any single percentage, holding steady across stopping points.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a3-early-stop-lineup&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 2744&quot; role=&quot;img&quot; aria-label=&quot;three panels: first a five-by-four lineup of twenty small line charts of three points each, nineteen of them simulated noise at one fixed rate and one the real training curve, all drawn identically so the real panel cannot be told apart; second two bars at true relative scale comparing a sample of 149 against the 1,280 per arm the read needed; third a five-checkpoint plot whose clean base rises from 10.1 to 18.8 percent with a dip at 3900, over a shaded read-through span&quot;&gt;&lt;style&gt;#fig-fnf-a3-early-stop-lineup [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a3-early-stop-lineup [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a3-early-stop-lineup [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a3-early-stop-lineup [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a3-early-stop-lineup [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a3-early-stop-lineup [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a3-early-stop-lineup [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a3-early-stop-lineup [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a3-early-stop-lineup [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a3-early-stop-lineup [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;2744&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;defs&gt;
  &lt;!-- PARTIAL is an INCOMPLETE measurement, so it hatches in the grey unmeasured register.
       It used to hatch in vermillion, which spent the series&apos; single failure hue on a cell
       that did not fail. --&gt;
  &lt;pattern id=&quot;a3es-hatchpat&quot; width=&quot;6&quot; height=&quot;6&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;6&quot; stroke=&quot;#8a8f98&quot; stroke-width=&quot;2&quot;/&gt;
  &lt;/pattern&gt;
  &lt;!-- The two read-through bands hatch in the HOLLOW-CIRCLE series&apos; own ink, in a gutter
       outside the plot, so neither can read as the blue clean-base line&apos;s envelope. --&gt;
  &lt;pattern id=&quot;a3es-bandpat&quot; width=&quot;5&quot; height=&quot;5&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;5&quot; stroke=&quot;#f4f5f7&quot; stroke-width=&quot;1&quot;/&gt;
  &lt;/pattern&gt;
  &lt;pattern id=&quot;a3es-bandpat2&quot; width=&quot;3&quot; height=&quot;3&quot; patternUnits=&quot;userSpaceOnUse&quot; patternTransform=&quot;rotate(45)&quot;&gt;
    &lt;line x1=&quot;0&quot; y1=&quot;0&quot; x2=&quot;0&quot; y2=&quot;3&quot; stroke=&quot;#f4f5f7&quot; stroke-width=&quot;1&quot;/&gt;
  &lt;/pattern&gt;
&lt;/defs&gt;
&lt;style&gt;
    :where(#a3es-root) text { font-family: var(--mono); fill: var(--fg); }
    .a3es-title { font-size: 26px; font-weight: bold; letter-spacing: 0.03em; }
    .a3es-sub { font-size: 15px; fill: var(--comment); }
    .a3es-panlab { font-size: 18px; font-weight: bold; }
    .a3es-pansub { font-size: 13px; fill: var(--comment); }
    .a3es-num { font-size: 13px; fill: var(--comment); }
    .a3es-tick { font-size: 13px; fill: var(--comment); }
    .a3es-axtitle { font-size: 14px; fill: var(--comment); }
    .a3es-leg { font-size: 13px; fill: var(--comment); }
    .a3es-ann { font-size: 13px; fill: var(--comment); }
    .a3es-cell { font-size: 14px; }
    .a3es-ckpt { font-size: 14px; }
    .a3es-note { font-size: 15px; }
    .a3es-noteb { font-size: 15px; font-weight: bold; }
    .a3es-house { font-size: 17px; fill: var(--comment); }
    .a3es-barlab { font-size: 15px; }
    .a3es-prov { font-size: 14px; fill: var(--comment); }
    .a3es-kicker { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    .a3es-slotlab { font-size: 14px; fill: var(--comment); }
    .a3es-slot-lit { font-size: 14px; fill: #56b4e9; }
    .a3es-slot-grey { font-size: 14px; fill: var(--comment); }
    .a3es-rule { stroke: var(--current-line); stroke-width: 1; }
    .a3es-mini { fill: none; stroke: var(--current-line); stroke-width: 1.2; }
    .a3es-ref { stroke: var(--comment); stroke-width: 1; stroke-dasharray: 2 4; }
    .a3es-trace { fill: none; stroke: var(--fg); stroke-width: 1.6; }
    .a3es-dot { fill: var(--fg); }
    .a3es-barhave { fill: #56b4e9; }
    .a3es-barneed { fill: var(--comment); }
    .a3es-grid { stroke: var(--current-line); stroke-width: 1; }
    .a3es-axis { stroke: var(--comment); stroke-width: 1.3; }
    .a3es-span { fill: url(#a3es-bandpat); }
    .a3es-conv { fill: url(#a3es-bandpat2); }
    .a3es-bracket { fill: none; stroke: var(--fg); stroke-width: 1.4; }
    .a3es-clean { fill: #56b4e9; }
    .a3es-cleanline { fill: none; stroke: #56b4e9; stroke-width: 1.8; }
    .a3es-cleanw { stroke: #56b4e9; stroke-width: 1.4; }
    .a3es-cfg { fill: none; stroke: var(--fg); stroke-width: 1.5; }
    .a3es-cfgpartial { fill: url(#a3es-hatchpat); stroke: var(--comment); stroke-width: 1.5; }
    .a3es-partiallead { stroke: var(--comment); stroke-width: 1; }
&lt;/style&gt;
&lt;g id=&quot;a3es-root&quot;&gt;
&lt;text class=&quot;a3es-title&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;The early stop, as a lineup&lt;/text&gt;&lt;text class=&quot;a3es-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;80.0&quot;&gt;Twenty panels. Nineteen are noise at a fixed rate. One is the held-out curve that&lt;/text&gt;&lt;text class=&quot;a3es-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;102.0&quot;&gt;stopped the training run. Pick the real one before reading on.&lt;/text&gt;&lt;line class=&quot;a3es-rule&quot; x1=&quot;24&quot; y1=&quot;122.0&quot; x2=&quot;904&quot; y2=&quot;122.0&quot;/&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;24.0&quot; y=&quot;146.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;a3es-slot-lit&quot; x=&quot;99.6&quot; y=&quot;146.0&quot;&gt;the clean opt-aware control, WHILE TRAINING&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;24.0&quot; y=&quot;169.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;a3es-slot-lit&quot; x=&quot;82.8&quot; y=&quot;169.0&quot;&gt;clang-clean re-exec on the held-out eval&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;24.0&quot; y=&quot;192.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;a3es-slot-grey&quot; x=&quot;82.8&quot; y=&quot;192.0&quot;&gt;n/a for this decision &amp;#8212; the read was a pass@1 rate&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;528.0&quot; y=&quot;192.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;a3es-slot-grey&quot; x=&quot;603.6&quot; y=&quot;192.0&quot;&gt;clang (fixed)&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;24.0&quot; y=&quot;215.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;a3es-slot-grey&quot; x=&quot;133.2&quot; y=&quot;215.0&quot;&gt;llvm-objdump (fixed)&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;326.4&quot; y=&quot;215.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;a3es-slot-lit&quot; x=&quot;435.6&quot; y=&quot;215.0&quot;&gt;held-out eval&lt;/text&gt;&lt;text class=&quot;a3es-slotlab&quot; x=&quot;570.0&quot; y=&quot;215.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;a3es-slot-lit&quot; x=&quot;586.8&quot; y=&quot;215.0&quot;&gt;149 at every point&lt;/text&gt;&lt;text class=&quot;a3es-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;237.0&quot;&gt;SECTION 3 below is a different leg: Kerckhoffs checkpoints, gcc-lenient, native-4096, fired-only.&lt;/text&gt;&lt;text class=&quot;a3es-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;267.0&quot;&gt;SECTION 1 &amp;#183; The lineup&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;289.0&quot;&gt;Every panel: the same three eval points, the same n = 149, the same y range 10&amp;#8211;40%.&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;307.0&quot;&gt;Nineteen are independent binomial draws at one fixed rate (23.9%, the pooled rate); one is real.&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;325.0&quot;&gt;All twenty are drawn in the same neutral register on purpose &amp;#8212; a lineup whose real panel&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;343.0&quot;&gt;is identifiable by colour or weight is not a lineup. The dotted line is the pooled rate.&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;24&quot; y=&quot;369.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;32&quot; y1=&quot;418.3&quot; x2=&quot;180&quot; y2=&quot;418.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;50.0,415.5 106.0,397.0 162.0,419.6&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;50.0&quot; cy=&quot;415.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;106.0&quot; cy=&quot;397.0&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;162.0&quot; cy=&quot;419.6&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;481.0&quot;&gt;panel 1&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;203&quot; y=&quot;369.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;211&quot; y1=&quot;418.3&quot; x2=&quot;359&quot; y2=&quot;418.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;229.0,419.6 285.0,421.7 341.0,438.2&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;229.0&quot; cy=&quot;419.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;285.0&quot; cy=&quot;421.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;341.0&quot; cy=&quot;438.2&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;203.0&quot; y=&quot;481.0&quot;&gt;panel 2&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;382&quot; y=&quot;369.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;390&quot; y1=&quot;418.3&quot; x2=&quot;538&quot; y2=&quot;418.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;408.0,423.7 464.0,415.5 520.0,415.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;408.0&quot; cy=&quot;423.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;464.0&quot; cy=&quot;415.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;520.0&quot; cy=&quot;415.5&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;382.0&quot; y=&quot;481.0&quot;&gt;panel 3&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;561&quot; y=&quot;369.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;569&quot; y1=&quot;418.3&quot; x2=&quot;717&quot; y2=&quot;418.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;587.0,401.1 643.0,417.6 699.0,425.8&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;587.0&quot; cy=&quot;401.1&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;643.0&quot; cy=&quot;417.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;699.0&quot; cy=&quot;425.8&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;561.0&quot; y=&quot;481.0&quot;&gt;panel 4&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;740&quot; y=&quot;369.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;748&quot; y1=&quot;418.3&quot; x2=&quot;896&quot; y2=&quot;418.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;766.0,425.8 822.0,429.9 878.0,413.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;766.0&quot; cy=&quot;425.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;822.0&quot; cy=&quot;429.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;878.0&quot; cy=&quot;413.5&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;740.0&quot; y=&quot;481.0&quot;&gt;panel 5&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;24&quot; y=&quot;507.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;32&quot; y1=&quot;556.3&quot; x2=&quot;180&quot; y2=&quot;556.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;50.0,545.3 106.0,541.2 162.0,547.3&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;50.0&quot; cy=&quot;545.3&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;106.0&quot; cy=&quot;541.2&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;162.0&quot; cy=&quot;547.3&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;619.0&quot;&gt;panel 6&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;203&quot; y=&quot;507.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;211&quot; y1=&quot;556.3&quot; x2=&quot;359&quot; y2=&quot;556.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;229.0,532.9 285.0,545.3 341.0,567.9&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;229.0&quot; cy=&quot;532.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;285.0&quot; cy=&quot;545.3&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;341.0&quot; cy=&quot;567.9&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;203.0&quot; y=&quot;619.0&quot;&gt;panel 7&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;382&quot; y=&quot;507.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;390&quot; y1=&quot;556.3&quot; x2=&quot;538&quot; y2=&quot;556.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;408.0,567.9 464.0,537.0 520.0,576.2&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;408.0&quot; cy=&quot;567.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;464.0&quot; cy=&quot;537.0&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;520.0&quot; cy=&quot;576.2&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;382.0&quot; y=&quot;619.0&quot;&gt;panel 8&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;561&quot; y=&quot;507.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;569&quot; y1=&quot;556.3&quot; x2=&quot;717&quot; y2=&quot;556.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;587.0,584.4 643.0,524.7 699.0,537.0&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;587.0&quot; cy=&quot;584.4&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;643.0&quot; cy=&quot;524.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;699.0&quot; cy=&quot;537.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;561.0&quot; y=&quot;619.0&quot;&gt;panel 9&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;740&quot; y=&quot;507.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;748&quot; y1=&quot;556.3&quot; x2=&quot;896&quot; y2=&quot;556.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;766.0,530.9 822.0,549.4 878.0,553.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;766.0&quot; cy=&quot;530.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;822.0&quot; cy=&quot;549.4&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;878.0&quot; cy=&quot;553.5&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;740.0&quot; y=&quot;619.0&quot;&gt;panel 10&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;24&quot; y=&quot;645.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;32&quot; y1=&quot;694.3&quot; x2=&quot;180&quot; y2=&quot;694.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;50.0,701.8 106.0,703.9 162.0,695.6&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;50.0&quot; cy=&quot;701.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;106.0&quot; cy=&quot;703.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;162.0&quot; cy=&quot;695.6&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;757.0&quot;&gt;panel 11&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;203&quot; y=&quot;645.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;211&quot; y1=&quot;694.3&quot; x2=&quot;359&quot; y2=&quot;694.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;229.0,701.8 285.0,699.7 341.0,699.7&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;229.0&quot; cy=&quot;701.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;285.0&quot; cy=&quot;699.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;341.0&quot; cy=&quot;699.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;203.0&quot; y=&quot;757.0&quot;&gt;panel 12&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;382&quot; y=&quot;645.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;390&quot; y1=&quot;694.3&quot; x2=&quot;538&quot; y2=&quot;694.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;408.0,703.9 464.0,708.0 520.0,708.0&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;408.0&quot; cy=&quot;703.9&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;464.0&quot; cy=&quot;708.0&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;520.0&quot; cy=&quot;708.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;382.0&quot; y=&quot;757.0&quot;&gt;panel 13&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;561&quot; y=&quot;645.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;569&quot; y1=&quot;694.3&quot; x2=&quot;717&quot; y2=&quot;694.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;587.0,697.7 643.0,701.8 699.0,705.9&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;587.0&quot; cy=&quot;697.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;643.0&quot; cy=&quot;701.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;699.0&quot; cy=&quot;705.9&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;561.0&quot; y=&quot;757.0&quot;&gt;panel 14&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;740&quot; y=&quot;645.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;748&quot; y1=&quot;694.3&quot; x2=&quot;896&quot; y2=&quot;694.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;766.0,693.6 822.0,712.1 878.0,703.9&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;766.0&quot; cy=&quot;693.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;822.0&quot; cy=&quot;712.1&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;878.0&quot; cy=&quot;703.9&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;740.0&quot; y=&quot;757.0&quot;&gt;panel 15&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;24&quot; y=&quot;783.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;32&quot; y1=&quot;832.3&quot; x2=&quot;180&quot; y2=&quot;832.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;50.0,854.2 106.0,833.6 162.0,835.7&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;50.0&quot; cy=&quot;854.2&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;106.0&quot; cy=&quot;833.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;162.0&quot; cy=&quot;835.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;895.0&quot;&gt;panel 16&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;203&quot; y=&quot;783.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;211&quot; y1=&quot;832.3&quot; x2=&quot;359&quot; y2=&quot;832.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;229.0,823.3 285.0,839.8 341.0,815.1&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;229.0&quot; cy=&quot;823.3&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;285.0&quot; cy=&quot;839.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;341.0&quot; cy=&quot;815.1&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;203.0&quot; y=&quot;895.0&quot;&gt;panel 17&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;382&quot; y=&quot;783.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;390&quot; y1=&quot;832.3&quot; x2=&quot;538&quot; y2=&quot;832.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;408.0,833.6 464.0,827.5 520.0,823.3&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;408.0&quot; cy=&quot;833.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;464.0&quot; cy=&quot;827.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;520.0&quot; cy=&quot;823.3&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;382.0&quot; y=&quot;895.0&quot;&gt;panel 18&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;561&quot; y=&quot;783.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;569&quot; y1=&quot;832.3&quot; x2=&quot;717&quot; y2=&quot;832.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;587.0,833.6 643.0,825.4 699.0,837.7&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;587.0&quot; cy=&quot;833.6&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;643.0&quot; cy=&quot;825.4&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;699.0&quot; cy=&quot;837.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;561.0&quot; y=&quot;895.0&quot;&gt;panel 19&lt;/text&gt;&lt;rect class=&quot;a3es-mini&quot; x=&quot;740&quot; y=&quot;783.0&quot; width=&quot;164&quot; height=&quot;92&quot;/&gt;&lt;line class=&quot;a3es-ref&quot; x1=&quot;748&quot; y1=&quot;832.3&quot; x2=&quot;896&quot; y2=&quot;832.3&quot;/&gt;&lt;polyline class=&quot;a3es-trace&quot; points=&quot;766.0,854.2 822.0,837.7 878.0,827.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;766.0&quot; cy=&quot;854.2&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;822.0&quot; cy=&quot;837.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-dot&quot; cx=&quot;878.0&quot; cy=&quot;827.5&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;start&quot; x=&quot;740.0&quot; y=&quot;895.0&quot;&gt;panel 20&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;931.0&quot;&gt;Which panel is the real training curve? The answer is in the data table, not here.&lt;/text&gt;&lt;text class=&quot;a3es-house&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;955.0&quot;&gt;You would have stopped too &amp;#8212; I did.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;981.0&quot;&gt;The real trace is 23.5% &amp;#8594; 26.2% &amp;#8594; 22.1% (35/149, 39/149, 33/149), and the three&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1003.0&quot;&gt;rates are homogeneous: chi-square(2) = 0.69, p = 0.71.&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1025.0&quot;&gt;Failing to pick the real panel supports ONE claim:&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1047.0&quot;&gt;&amp;#8220;indistinguishable from noise at this n.&amp;#8221;&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1069.0&quot;&gt;It does NOT support &amp;#8220;the rate is constant&amp;#8221;. The same three points are equally&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1091.0&quot;&gt;compatible with a real +5 pt-per-half-epoch rise: at a per-point standard error of&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1113.0&quot;&gt;3.5 pt, that trend is invisible here. Both readings survive.&lt;/text&gt;&lt;line class=&quot;a3es-rule&quot; x1=&quot;24&quot; y1=&quot;1127.0&quot; x2=&quot;904&quot; y2=&quot;1127.0&quot;/&gt;&lt;text class=&quot;a3es-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1145.0&quot;&gt;SECTION 2 &amp;#183; The sample the read needed&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1167.0&quot;&gt;Both bars at true relative scale, in frame. Nothing is cropped and nothing runs off the&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1185.0&quot;&gt;edge: at 80% power against a +5 pt effect the read needed 1,280 per arm.&lt;/text&gt;&lt;text class=&quot;a3es-barlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1215.0&quot;&gt;your n 149&lt;/text&gt;&lt;rect class=&quot;a3es-barhave&quot; x=&quot;24&quot; y=&quot;1225.0&quot; width=&quot;99.6&quot; height=&quot;34&quot;/&gt;&lt;text class=&quot;a3es-barlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1285.0&quot;&gt;required per arm 1,280&lt;/text&gt;&lt;rect class=&quot;a3es-barneed&quot; x=&quot;24&quot; y=&quot;1295.0&quot; width=&quot;856.0&quot; height=&quot;34&quot;/&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1355.0&quot;&gt;149 of 1,280 is roughly 1/9 (149/1280 = 0.116) of the sample. The minimal difference this eval&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1377.0&quot;&gt;could resolve is ~9-10 pt unpaired (~8 pt even with a paired McNemar at within-item correlation&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1399.0&quot;&gt;~0.6), against the +5 pt per additional half-epoch, at 80% power the run was being judged on.&lt;/text&gt;&lt;line class=&quot;a3es-rule&quot; x1=&quot;24&quot; y1=&quot;1413.0&quot; x2=&quot;904&quot; y2=&quot;1413.0&quot;/&gt;&lt;text class=&quot;a3es-panlab&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1431.0&quot;&gt;SECTION 3 &amp;#183; Every stopping point returns the same verdict&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1453.0&quot;&gt;Five saved checkpoints of the obfuscation-aware control. The clean base RISES BUT IS NOT&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1471.0&quot;&gt;MONOTONE &amp;#8212; it dips at 3900 &amp;#8212; so this is not a smooth ramp, and the read-through does not&lt;/text&gt;&lt;text class=&quot;a3es-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1489.0&quot;&gt;track it. Per-cell intervals are wide at these n; they are all in the data table.&lt;/text&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;32&quot; cy=&quot;1510.0&quot; r=&quot;6&quot;/&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;1515.0&quot;&gt;clean base (filled, blue line, whiskers drawn) &amp;#8212; 28/149 at 4000&lt;/text&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;560&quot; cy=&quot;1510.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;574.0&quot; y=&quot;1515.0&quot;&gt;FOUR obfuscated configs&amp;#8217; read-through&lt;/text&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;1534.0&quot;&gt;within each checkpoint, left to right, each on its OWN denominator:&lt;/text&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;1553.0&quot;&gt;constant_encryption n = 97 &amp;#183; flatten_cfg n = 63&lt;/text&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;1572.0&quot;&gt;bogus_control_flow n = 106 &amp;#183; heavy (ce+cff+bcf) n = 25&lt;/text&gt;&lt;text class=&quot;a3es-leg&quot; text-anchor=&quot;start&quot; x=&quot;46.0&quot; y=&quot;1591.0&quot;&gt;never pooled; the cfg8 cell at 3900 reduces over n = 80, not 106&lt;/text&gt;&lt;rect class=&quot;a3es-span&quot; x=&quot;704&quot; y=&quot;1683.0&quot; width=&quot;16&quot; height=&quot;131.7&quot;/&gt;&lt;path class=&quot;a3es-bracket&quot; d=&quot;M 709.0 1683.0 L 704.0 1683.0 L 704.0 1814.7 L 709.0 1814.7&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;755.0&quot; cy=&quot;1691.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ann&quot; text-anchor=&quot;start&quot; x=&quot;766.0&quot; y=&quot;1695.0&quot;&gt;span 8.2&amp;#8211;24.0%&lt;/text&gt;&lt;rect class=&quot;a3es-conv&quot; x=&quot;726&quot; y=&quot;1749.7&quot; width=&quot;16&quot; height=&quot;33.3&quot;/&gt;&lt;path class=&quot;a3es-bracket&quot; d=&quot;M 731.0 1749.7 L 726.0 1749.7 L 726.0 1783.0 L 731.0 1783.0&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;755.0&quot; cy=&quot;1757.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ann&quot; text-anchor=&quot;start&quot; x=&quot;766.0&quot; y=&quot;1761.7&quot;&gt;conv 12&amp;#8211;16%&lt;/text&gt;&lt;line class=&quot;a3es-axis&quot; x1=&quot;150&quot; y1=&quot;1883.0&quot; x2=&quot;690&quot; y2=&quot;1883.0&quot;/&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1883.0&quot; x2=&quot;690&quot; y2=&quot;1883.0&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1888.0&quot;&gt;0&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1841.3&quot; x2=&quot;690&quot; y2=&quot;1841.3&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1846.3&quot;&gt;5&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1799.7&quot; x2=&quot;690&quot; y2=&quot;1799.7&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1804.7&quot;&gt;10&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1758.0&quot; x2=&quot;690&quot; y2=&quot;1758.0&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1763.0&quot;&gt;15&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1716.3&quot; x2=&quot;690&quot; y2=&quot;1716.3&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1721.3&quot;&gt;20&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1674.7&quot; x2=&quot;690&quot; y2=&quot;1674.7&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1679.7&quot;&gt;25&lt;/text&gt;&lt;line class=&quot;a3es-grid&quot; x1=&quot;150&quot; y1=&quot;1633.0&quot; x2=&quot;690&quot; y2=&quot;1633.0&quot;/&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1638.0&quot;&gt;30&lt;/text&gt;&lt;text class=&quot;a3es-tick&quot; text-anchor=&quot;end&quot; x=&quot;138.0&quot; y=&quot;1617.0&quot;&gt;recovery %&lt;/text&gt;&lt;polyline class=&quot;a3es-cleanline&quot; points=&quot;204.0,1798.8 312.0,1771.3 420.0,1732.2 528.0,1743.0 636.0,1726.3&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;204.0&quot; y1=&quot;1831.3&quot; x2=&quot;204.0&quot; y2=&quot;1750.5&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;199.0&quot; y1=&quot;1831.3&quot; x2=&quot;209.0&quot; y2=&quot;1831.3&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;199.0&quot; y1=&quot;1750.5&quot; x2=&quot;209.0&quot; y2=&quot;1750.5&quot;/&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;204.0&quot; cy=&quot;1798.8&quot; r=&quot;6&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;180.0&quot; cy=&quot;1814.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;196.0&quot; cy=&quot;1790.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;212.0&quot; cy=&quot;1764.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;228.0&quot; cy=&quot;1683.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ckpt&quot; text-anchor=&quot;middle&quot; x=&quot;204.0&quot; y=&quot;1905.0&quot;&gt;3600&lt;/text&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;middle&quot; x=&quot;204.0&quot; y=&quot;1923.0&quot;&gt;ep 0.908&lt;/text&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;312.0&quot; y1=&quot;1808.8&quot; x2=&quot;312.0&quot; y2=&quot;1718.0&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;307.0&quot; y1=&quot;1808.8&quot; x2=&quot;317.0&quot; y2=&quot;1808.8&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;307.0&quot; y1=&quot;1718.0&quot; x2=&quot;317.0&quot; y2=&quot;1718.0&quot;/&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;312.0&quot; cy=&quot;1771.3&quot; r=&quot;6&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;288.0&quot; cy=&quot;1788.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;304.0&quot; cy=&quot;1790.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;320.0&quot; cy=&quot;1749.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;336.0&quot; cy=&quot;1683.0&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ckpt&quot; text-anchor=&quot;middle&quot; x=&quot;312.0&quot; y=&quot;1905.0&quot;&gt;3700&lt;/text&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;middle&quot; x=&quot;312.0&quot; y=&quot;1923.0&quot;&gt;ep 0.933&lt;/text&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;420.0&quot; y1=&quot;1776.3&quot; x2=&quot;420.0&quot; y2=&quot;1673.8&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;415.0&quot; y1=&quot;1776.3&quot; x2=&quot;425.0&quot; y2=&quot;1776.3&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;415.0&quot; y1=&quot;1673.8&quot; x2=&quot;425.0&quot; y2=&quot;1673.8&quot;/&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;420.0&quot; cy=&quot;1732.2&quot; r=&quot;6&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;396.0&quot; cy=&quot;1779.7&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;412.0&quot; cy=&quot;1763.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;428.0&quot; cy=&quot;1757.2&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;444.0&quot; cy=&quot;1749.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ckpt&quot; text-anchor=&quot;middle&quot; x=&quot;420.0&quot; y=&quot;1905.0&quot;&gt;3800&lt;/text&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;middle&quot; x=&quot;420.0&quot; y=&quot;1923.0&quot;&gt;ep 0.958&lt;/text&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;528.0&quot; y1=&quot;1786.3&quot; x2=&quot;528.0&quot; y2=&quot;1686.3&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;523.0&quot; y1=&quot;1786.3&quot; x2=&quot;533.0&quot; y2=&quot;1786.3&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;523.0&quot; y1=&quot;1686.3&quot; x2=&quot;533.0&quot; y2=&quot;1686.3&quot;/&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;528.0&quot; cy=&quot;1743.0&quot; r=&quot;6&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;504.0&quot; cy=&quot;1797.2&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;520.0&quot; cy=&quot;1763.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfgpartial&quot; cx=&quot;536.0&quot; cy=&quot;1695.5&quot; r=&quot;6&quot;/&gt;&lt;line class=&quot;a3es-partiallead&quot; x1=&quot;536.0&quot; y1=&quot;1687.5&quot; x2=&quot;536.0&quot; y2=&quot;1665.5&quot;/&gt;&lt;text class=&quot;a3es-ann&quot; text-anchor=&quot;start&quot; x=&quot;542.0&quot; y=&quot;1661.5&quot;&gt;PARTIAL&lt;/text&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;552.0&quot; cy=&quot;1749.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ckpt&quot; text-anchor=&quot;middle&quot; x=&quot;528.0&quot; y=&quot;1905.0&quot;&gt;3900&lt;/text&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;middle&quot; x=&quot;528.0&quot; y=&quot;1923.0&quot;&gt;ep 0.984&lt;/text&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;636.0&quot; y1=&quot;1772.2&quot; x2=&quot;636.0&quot; y2=&quot;1668.0&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;631.0&quot; y1=&quot;1772.2&quot; x2=&quot;641.0&quot; y2=&quot;1772.2&quot;/&gt;&lt;line class=&quot;a3es-cleanw&quot; x1=&quot;631.0&quot; y1=&quot;1668.0&quot; x2=&quot;641.0&quot; y2=&quot;1668.0&quot;/&gt;&lt;circle class=&quot;a3es-clean&quot; cx=&quot;636.0&quot; cy=&quot;1726.3&quot; r=&quot;6&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;612.0&quot; cy=&quot;1763.0&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;628.0&quot; cy=&quot;1763.8&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;644.0&quot; cy=&quot;1780.5&quot; r=&quot;4.5&quot;/&gt;&lt;circle class=&quot;a3es-cfg&quot; cx=&quot;660.0&quot; cy=&quot;1749.7&quot; r=&quot;4.5&quot;/&gt;&lt;text class=&quot;a3es-ckpt&quot; text-anchor=&quot;middle&quot; x=&quot;636.0&quot; y=&quot;1905.0&quot;&gt;4000&lt;/text&gt;&lt;text class=&quot;a3es-num&quot; text-anchor=&quot;middle&quot; x=&quot;636.0&quot; y=&quot;1923.0&quot;&gt;ep 1.009&lt;/text&gt;&lt;text class=&quot;a3es-axtitle&quot; text-anchor=&quot;middle&quot; x=&quot;420.0&quot; y=&quot;1945.0&quot;&gt;checkpoint (steps), obfuscation-aware control&lt;/text&gt;&lt;text class=&quot;a3es-cell&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1971.0&quot;&gt;3600 (epoch 0.9078): clean base 10.1% (15/149) [6.2, 15.9]&lt;/text&gt;&lt;text class=&quot;a3es-cell&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1991.0&quot;&gt;3700 (epoch 0.9330): clean base 13.4% (20/149) [8.9, 19.8]&lt;/text&gt;&lt;text class=&quot;a3es-cell&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2011.0&quot;&gt;3800 (epoch 0.9583): clean base 18.1% (27/149) [12.8, 25.1]&lt;/text&gt;&lt;text class=&quot;a3es-cell&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2031.0&quot;&gt;3900 (epoch 0.9835): clean base 16.8% (25/149) [11.6, 23.6]  &amp;#183; cfg8 cell PARTIAL&lt;/text&gt;&lt;text class=&quot;a3es-cell&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2051.0&quot;&gt;4000 (epoch 1.0086): clean base 18.8% (28/149) [13.3, 25.8]&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2083.0&quot;&gt;The invariant is the VERDICT at every stop, not a percentage.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2107.0&quot;&gt;The read-through span across the four informative configs is 8.2&amp;#8211;24.0% over the whole curve,&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2129.0&quot;&gt;and settles to 12&amp;#8211;16% only at the converged checkpoints 3800 and 4000. Do not over-tighten it:&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2151.0&quot;&gt;the source says so explicitly.&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2173.0&quot;&gt;BOTH BRACKETED RANGES DESCRIBE THE HOLLOW-CIRCLE CELLS, NOT THE BLUE CLEAN-BASE LINE. That is&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2195.0&quot;&gt;why they are hatched brackets in a gutter outside the plot instead of shaded bands behind the&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2217.0&quot;&gt;line: a band behind a line with error bars reads as that line&apos;s own envelope, and this one&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2239.0&quot;&gt;would be false. The clean base at the converged checkpoints reads 18.1% and 18.8% &amp;#8212; ABOVE the&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2261.0&quot;&gt;12&amp;#8211;16% band, not inside it.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2283.0&quot;&gt;The cfg8 cell at 3900 is flagged PARTIAL and drawn hatched in the grey unmeasured register &amp;#8212; an&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2305.0&quot;&gt;incomplete measurement, not a failed one: it reduces over n_total = 114, not 164, leaving 80&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2327.0&quot;&gt;fired-and-non-truncated, so it is never equal-weighted with the complete cells.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2349.0&quot;&gt;string_encryption is excluded from the span: 0/23 at four of the five stops and 1/23 at 4000.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2371.0&quot;&gt;NO OPINION AT THIS n, in either direction.&lt;/text&gt;&lt;line class=&quot;a3es-rule&quot; x1=&quot;24&quot; y1=&quot;2385.0&quot; x2=&quot;904&quot; y2=&quot;2385.0&quot;/&gt;&lt;text class=&quot;a3es-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2403.0&quot;&gt;THE RULE THAT REPLACED THE READ &amp;#8212; AND WHEN IT WAS WRITTEN&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2431.0&quot;&gt;&amp;#183; adjudication on held-out cross-entropy / per-token NLL, NEVER pass@1&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2454.0&quot;&gt;&amp;#183; a minimum budget of at least 1 full epoch (or at least g10400&apos;s ~3.1M example-visits)&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2477.0&quot;&gt;&amp;#183; one identical fixed schedule across arms&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2500.0&quot;&gt;&amp;#183; a selection/reporting firewall: select on held-out-loss argmin, report the clean base from a&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;42.0&quot; y=&quot;2521.0&quot;&gt;disjoint eval&lt;/text&gt;&lt;text class=&quot;a3es-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2548.0&quot;&gt;The rule is an AMENDMENT dated 2026-07-18, not an original protocol.&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2572.0&quot;&gt;It was written after this stop, and the paper says so. Panel-time early-stop figures are&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2594.0&quot;&gt;superseded and are not carried in the paper. Look order, disclosed: the single Kerckhoffs&lt;/text&gt;&lt;text class=&quot;a3es-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2616.0&quot;&gt;checkpoint (4000) came first, then the five-checkpoint curve, then two held-out seeds.&lt;/text&gt;&lt;line class=&quot;a3es-rule&quot; x1=&quot;24&quot; y1=&quot;2630.0&quot; x2=&quot;904&quot; y2=&quot;2630.0&quot;/&gt;&lt;text class=&quot;a3es-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2648.0&quot;&gt;Wilson 95% throughout,&lt;/text&gt;&lt;text class=&quot;a3es-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2668.0&quot;&gt;recomputed from k/n at build time; the chi-square and its p-value likewise. The 19 null draws&lt;/text&gt;&lt;text class=&quot;a3es-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2688.0&quot;&gt;are binomial(n = 149, p = 0.239374) from seed 0xC0FFEE &amp;#8212; reproducible, and listed in the&lt;/text&gt;&lt;text class=&quot;a3es-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;2708.0&quot;&gt;data table.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The held-out trace read 23.5%, 26.2%, 22.1% and invited a plateau reading; dropped among nineteen fixed-rate null draws it is not identifiable. The homogeneity chi-square is 0.69 (p about 0.71) and the eval carries roughly a ninth of the sample a +5-point-per-half-epoch trend would need at 80% power, indistinguishable from noise, which is not the same as the rate being constant. Clang-clean re-executable recovery on the held-out eval, N about 149.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;Quantity&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;real trace, step 500 / 1000 / 2200&lt;/td&gt;&lt;td&gt;35/149 (23.5%) / 39/149 (26.2%) / 33/149 (22.1%)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;chi-square of homogeneity, df = 2&lt;/td&gt;&lt;td&gt;0.69&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;p&lt;/td&gt;&lt;td&gt;0.71&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;pooled rate&lt;/td&gt;&lt;td&gt;107/447 = 23.9%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;the reader’s n&lt;/td&gt;&lt;td&gt;149&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;required per arm, 80% power vs +5 pt / half-epoch&lt;/td&gt;&lt;td&gt;1,280&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ratio&lt;/td&gt;&lt;td&gt;roughly 1/9 (149/1280 = 0.116)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;per-point standard error&lt;/td&gt;&lt;td&gt;3.5 pt&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;minimal detectable difference&lt;/td&gt;&lt;td&gt;~9-10 pt unpaired (~8 pt paired McNemar at within-item correlation ~0.6)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;Nineteen null panels are binomial(n = 149, p = 0.239); panel 19 is the real trace. The test supports “indistinguishable from noise at this n”, not “the rate is constant”, and is equally consistent with a rising curve.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;We reversed the early stop and retrained. The rule that now decides when a run ends adjudicates on held-out loss, requires a full epoch, and fixes one identical schedule across both arms, and it was adopted mid-flight, as an amendment, which is the sort of thing a paper should disclose about its own pre-registration: the stopping rules you commit to in advance, precisely so you cannot pick them after seeing the numbers.&lt;/p&gt;
&lt;h2 id=&quot;what-changed-and-what-stayed&quot;&gt;What changed, and what stayed&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-changed-and-what-stayed&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The relabelling is small to describe. “Hardening” and “deterrence” came out of the headline. “Brittleness against a naive attacker” went in, at the same type size, because a correction set smaller than the claim it replaces is not a correction.&lt;/p&gt;
&lt;p&gt;The leg itself stayed in the paper. That is the part people misread as soon as they hear the word relabel: the effect is real, it is paired at p = 2.4e-4, it is placebo-controlled, and it reproduces. The defect lived in the sentence attached to the measurement.&lt;/p&gt;
&lt;figure class=&quot;full&quot; data-astro-cid-bj3fsypb&gt; &lt;div class=&quot;svgfig svgfig-chart&quot; role=&quot;img&quot; aria-label=&quot;The superseded claim is set at full size with a rule struck through it, and its replacement sits immediately beneath at the identical size, neither shrunk nor greyed, so the correction reads as loud as the thing it corrects. The evidence that survived the relabel is set apart in blue. A short bar panel underneath shows the clean-arm floor: a single tall column standing for the clean functions this attacker cannot even compile, before any transform is applied.&quot; data-astro-cid-bj3fsypb&gt;&lt;svg aria-hidden=&quot;true&quot; focusable=&quot;false&quot; width=&quot;928&quot; id=&quot;fig-fnf-a3-strike-through&quot; xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 928 1337&quot; role=&quot;img&quot; aria-label=&quot;two panels: first the field&apos;s claim that generic client-side obfuscation hardens code against neural decompilation, struck through with a vermillion rule, and immediately beneath it at the same size the replacement claim that it exposes brittleness against a naive attacker; second a proportion bar showing that 84 of 164 clean functions, 51.2 percent, already fail to compile before any obfuscation is applied&quot;&gt;&lt;style&gt;#fig-fnf-a3-strike-through [fill=&quot;#1a1d23&quot; i]{fill:var(--bg)}#fig-fnf-a3-strike-through [stroke=&quot;#1a1d23&quot; i]{stroke:var(--bg)}#fig-fnf-a3-strike-through [fill=&quot;#18181b&quot; i]{fill:var(--bg-panel)}#fig-fnf-a3-strike-through [stroke=&quot;#18181b&quot; i]{stroke:var(--bg-panel)}#fig-fnf-a3-strike-through [fill=&quot;#2c2f37&quot; i]{fill:var(--current-line)}#fig-fnf-a3-strike-through [stroke=&quot;#2c2f37&quot; i]{stroke:var(--current-line)}#fig-fnf-a3-strike-through [fill=&quot;#f4f5f7&quot; i]{fill:var(--fg)}#fig-fnf-a3-strike-through [stroke=&quot;#f4f5f7&quot; i]{stroke:var(--fg)}#fig-fnf-a3-strike-through [fill=&quot;#8a8f98&quot; i]{fill:var(--comment)}#fig-fnf-a3-strike-through [stroke=&quot;#8a8f98&quot; i]{stroke:var(--comment)}&lt;/style&gt;
&lt;rect width=&quot;928&quot; height=&quot;1337&quot; fill=&quot;#1a1d23&quot;/&gt;
&lt;style&gt;
    :where(#a3st-root) text { font-family: var(--mono); fill: var(--fg); }
    .a3st-title { font-size: 26px; font-weight: bold; letter-spacing: 0.03em; }
    .a3st-sub { font-size: 15px; fill: var(--comment); }
    .a3st-pansub { font-size: 13px; fill: var(--comment); }
    .a3st-kicker { font-size: 13px; fill: var(--comment); letter-spacing: 0.14em; }
    /* Both claims read the theme-following ink; the epistemic hue rides the swatches and
       the strike rule, because a locked data hue on GLYPHS washes out on the light theme
       and this panel&apos;s own promise is that the replacement is &quot;not greyed&quot;. */
    .a3st-struck { font-size: 21px; font-weight: bold; fill: var(--fg); }
    .a3st-repl { font-size: 21px; font-weight: bold; fill: var(--fg); }
    .a3st-keep { font-size: 16px; }
    .a3st-note { font-size: 15px; }
    .a3st-noteb { font-size: 15px; font-weight: bold; }
    /* 51.2% is OUR controlled measurement (84/164, seed-invariant, from our own committed
       per-item records), so it is BLUE. It used to be vermillion, which put the surviving
       measured floor in the same hue as the strike rule that killed &quot;hardening&quot; -- and a
       reader then cannot tell a killed claim from a measured floor. That it is a FAILURE
       RATE is carried in words, not in the series&apos; single failure hue. */
    .a3st-big { font-size: 34px; font-weight: bold; fill: #56b4e9; }
    .a3st-swfield { fill: #e69f00; }
    .a3st-swours { fill: #56b4e9; }
    .a3st-seg { font-size: 15px; font-weight: bold; fill: var(--bg); }
    .a3st-segout { font-size: 14px; fill: var(--fg); }
    .a3st-prov { font-size: 14px; fill: var(--comment); }
    .a3st-slotlab { font-size: 14px; fill: var(--comment); }
    .a3st-slot-lit { font-size: 14px; fill: #56b4e9; }
    .a3st-slot-grey { font-size: 14px; fill: var(--comment); }
    .a3st-rule { stroke: var(--current-line); stroke-width: 1; }
    .a3st-strikerule { stroke: #d55e00; stroke-width: 3; }
    /* the 84 that do not compile are our measurement too, so the segment is blue, not the
       failure hue; the remainder stays a grey outline */
    .a3st-fail { fill: #56b4e9; }
    .a3st-ok { fill: none; stroke: var(--comment); stroke-width: 1.4; }
&lt;/style&gt;
&lt;g id=&quot;a3st-root&quot;&gt;
&lt;text class=&quot;a3st-title&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;52.0&quot;&gt;Restated, not retracted&lt;/text&gt;&lt;text class=&quot;a3st-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;80.0&quot;&gt;What the leg actually measured, and the floor the attacker was standing on before any&lt;/text&gt;&lt;text class=&quot;a3st-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;102.0&quot;&gt;obfuscation was applied at all.&lt;/text&gt;&lt;line class=&quot;a3st-rule&quot; x1=&quot;24&quot; y1=&quot;122.0&quot; x2=&quot;904&quot; y2=&quot;122.0&quot;/&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;24.0&quot; y=&quot;146.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;a3st-slot-lit&quot; x=&quot;99.6&quot; y=&quot;146.0&quot;&gt;naive provenance-matched control&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;393.6&quot; y=&quot;146.0&quot;&gt;SCORER&lt;/text&gt;&lt;text class=&quot;a3st-slot-lit&quot; x=&quot;452.4&quot; y=&quot;146.0&quot;&gt;gcc-lenient re-exec&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;637.2&quot; y=&quot;146.0&quot;&gt;WINDOW&lt;/text&gt;&lt;text class=&quot;a3st-slot-lit&quot; x=&quot;696.0&quot; y=&quot;146.0&quot;&gt;native 4096&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;24.0&quot; y=&quot;169.0&quot;&gt;COMPILER&lt;/text&gt;&lt;text class=&quot;a3st-slot-grey&quot; x=&quot;99.6&quot; y=&quot;169.0&quot;&gt;clang x86/O2 (fixed)&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;292.8&quot; y=&quot;169.0&quot;&gt;DISASSEMBLER&lt;/text&gt;&lt;text class=&quot;a3st-slot-grey&quot; x=&quot;402.0&quot; y=&quot;169.0&quot;&gt;llvm-objdump (fixed)&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;24.0&quot; y=&quot;192.0&quot;&gt;CONDITIONING&lt;/text&gt;&lt;text class=&quot;a3st-slot-lit&quot; x=&quot;133.2&quot; y=&quot;192.0&quot;&gt;panel 1 fired-only; panel 2 ALL 164 clean functions&lt;/text&gt;&lt;text class=&quot;a3st-slotlab&quot; x=&quot;24.0&quot; y=&quot;215.0&quot;&gt;n&lt;/text&gt;&lt;text class=&quot;a3st-slot-lit&quot; x=&quot;40.8&quot; y=&quot;215.0&quot;&gt;164 clean (panel 2); 106 (panel 1&amp;#8217;s naive maximum)&lt;/text&gt;&lt;text class=&quot;a3st-sub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;237.0&quot;&gt;floor, not ceiling; one modest 6.7B fine-tuned attacker; static / client-side tier.&lt;/text&gt;&lt;text class=&quot;a3st-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;271.0&quot;&gt;1 &amp;#183; THE CLAIM THAT FAILED&lt;/text&gt;&lt;rect class=&quot;a3st-swfield&quot; x=&quot;24&quot; y=&quot;291.0&quot; width=&quot;14&quot; height=&quot;14&quot;/&gt;&lt;text class=&quot;a3st-struck&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;305.0&quot;&gt;generic client-side obfuscation HARDENS code against neural&lt;/text&gt;&lt;line class=&quot;a3st-strikerule&quot; x1=&quot;48&quot; y1=&quot;298.0&quot; x2=&quot;795.4&quot; y2=&quot;298.0&quot;/&gt;&lt;text class=&quot;a3st-struck&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;335.0&quot;&gt;decompilation&lt;/text&gt;&lt;line class=&quot;a3st-strikerule&quot; x1=&quot;48&quot; y1=&quot;328.0&quot; x2=&quot;215.8&quot; y2=&quot;328.0&quot;/&gt;&lt;text class=&quot;a3st-repl&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;373.0&quot;&gt;&amp;#8595;&lt;/text&gt;&lt;rect class=&quot;a3st-swours&quot; x=&quot;24&quot; y=&quot;391.0&quot; width=&quot;14&quot; height=&quot;14&quot;/&gt;&lt;text class=&quot;a3st-repl&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;405.0&quot;&gt;generic client-side obfuscation exposes BRITTLENESS AGAINST A NAIVE&lt;/text&gt;&lt;text class=&quot;a3st-repl&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;435.0&quot;&gt;ATTACKER&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;471.0&quot;&gt;Same size. Not a footnote, not greyed, not smaller. The claim was renamed, not deleted.&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;491.0&quot;&gt;Both claims are set in the page ink so neither fades on paper. The amber swatch marks the field&apos;s&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;509.0&quot;&gt;reading, the blue swatch marks ours, and the vermillion rule marks the claim that failed.&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;539.0&quot;&gt;The obfuscation-aware attacker reads through at 12&amp;#8211;16% where the naive attacker reads ~0% &amp;#8212; its&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;561.0&quot;&gt;own maximum anywhere in the grid is 0.9% (1/106) [0.2, 5.2], on cfg8. That is a difference in&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;583.0&quot;&gt;percentage points. It is never a ratio: the relative reduction is undefined on the cells where&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;605.0&quot;&gt;the naive attacker recovers nothing.&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;627.0&quot;&gt;That band is four cells on four denominators, Wilson 95%, each on its own n and never pooled:&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;665.0&quot;&gt;transform&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;486.0&quot; y=&quot;665.0&quot;&gt;rate&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;604.0&quot; y=&quot;665.0&quot;&gt;k/n&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;712.0&quot; y=&quot;665.0&quot;&gt;Wilson 95%&lt;/text&gt;&lt;line class=&quot;a3st-rule&quot; x1=&quot;48&quot; y1=&quot;671.0&quot; x2=&quot;880&quot; y2=&quot;671.0&quot;/&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;693.0&quot;&gt;constant_encryption&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;486.0&quot; y=&quot;693.0&quot;&gt;14.4%&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;604.0&quot; y=&quot;693.0&quot;&gt;14/97&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;712.0&quot; y=&quot;693.0&quot;&gt;[8.8, 22.8]&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;719.0&quot;&gt;flatten_cfg&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;486.0&quot; y=&quot;719.0&quot;&gt;14.3%&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;604.0&quot; y=&quot;719.0&quot;&gt;9/63&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;712.0&quot; y=&quot;719.0&quot;&gt;[7.7, 25.0]&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;745.0&quot;&gt;bogus_control_flow&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;486.0&quot; y=&quot;745.0&quot;&gt;12.3%&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;604.0&quot; y=&quot;745.0&quot;&gt;13/106&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;712.0&quot; y=&quot;745.0&quot;&gt;[7.3, 19.9]&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;48.0&quot; y=&quot;771.0&quot;&gt;heavy&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;486.0&quot; y=&quot;771.0&quot;&gt;16.0%&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;604.0&quot; y=&quot;771.0&quot;&gt;4/25&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;712.0&quot; y=&quot;771.0&quot;&gt;[6.4, 34.7]&lt;/text&gt;&lt;text class=&quot;a3st-keep&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;807.0&quot;&gt;The leg was KEPT because the effect is real: exact McNemar p = 2.4e-4,&lt;/text&gt;&lt;text class=&quot;a3st-keep&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;829.0&quot;&gt;placebo-controlled. What changed is the name, not the measurement.&lt;/text&gt;&lt;line class=&quot;a3st-rule&quot; x1=&quot;24&quot; y1=&quot;843.0&quot; x2=&quot;904&quot; y2=&quot;843.0&quot;/&gt;&lt;text class=&quot;a3st-kicker&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;861.0&quot;&gt;2 &amp;#183; THE FLOOR IT WAS STANDING ON&lt;/text&gt;&lt;text class=&quot;a3st-big&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;895.0&quot;&gt;51.2%&lt;/text&gt;&lt;text class=&quot;a3st-noteb&quot; text-anchor=&quot;start&quot; x=&quot;142.0&quot; y=&quot;887.0&quot;&gt;of CLEAN functions &amp;#8212; 84/164&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;142.0&quot; y=&quot;909.0&quot;&gt;[43.6, 58.8], identical at all three seeds&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;935.0&quot;&gt;Before any obfuscation is applied, this attacker already fails to emit compiling C on more than&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;957.0&quot;&gt;half of the CLEAN functions. That is the floor. It is what makes the collapse under obfuscation&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;979.0&quot;&gt;brittleness rather than hardening.&lt;/text&gt;&lt;rect class=&quot;a3st-fail&quot; x=&quot;24&quot; y=&quot;1011.0&quot; width=&quot;438.4&quot; height=&quot;40&quot;/&gt;&lt;rect class=&quot;a3st-ok&quot; x=&quot;462.4&quot; y=&quot;1011.0&quot; width=&quot;417.6&quot; height=&quot;40&quot;/&gt;&lt;text class=&quot;a3st-seg&quot; text-anchor=&quot;middle&quot; x=&quot;243.2&quot; y=&quot;1037.0&quot;&gt;84 do not compile&lt;/text&gt;&lt;text class=&quot;a3st-segout&quot; text-anchor=&quot;middle&quot; x=&quot;671.2&quot; y=&quot;1037.0&quot;&gt;80 compile&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1077.0&quot;&gt;All 164 clean functions, config 0. A count, not a per-function map: the positions above&lt;/text&gt;&lt;text class=&quot;a3st-pansub&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1095.0&quot;&gt;are proportions, not func ids. Seeds 0xC0FFEE / 0xBADC0DE / 0x5EED5 all give 84.&lt;/text&gt;&lt;text class=&quot;a3st-noteb&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1125.0&quot;&gt;This is the CLEAN-arm floor.&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1147.0&quot;&gt;Read as an obfuscated-arm failure rate it inverts the finding: the obfuscated cells are&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1169.0&quot;&gt;measured against an attacker that was already failing this often with no transform applied at&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1191.0&quot;&gt;all.&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1225.0&quot;&gt;A second floor exists on a DIFFERENT arm and must not be merged with this one: 76.8% (126/164)&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1247.0&quot;&gt;on the D1C clang-strict control, clean config 0 &amp;#8212; a different attacker under a different&lt;/text&gt;&lt;text class=&quot;a3st-note&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1269.0&quot;&gt;scorer. Two arms, two floors, two slugs.&lt;/text&gt;&lt;line class=&quot;a3st-rule&quot; x1=&quot;24&quot; y1=&quot;1283.0&quot; x2=&quot;904&quot; y2=&quot;1283.0&quot;/&gt;&lt;text class=&quot;a3st-prov&quot; text-anchor=&quot;start&quot; x=&quot;24.0&quot; y=&quot;1301.0&quot;&gt;Wilson 95% throughout, recomputed from k/n at build time. Floor recomputed at all three seeds.&lt;/text&gt;
&lt;/g&gt;
&lt;/svg&gt;
&lt;/div&gt; &lt;figcaption data-astro-cid-bj3fsypb&gt;The results-table word hardening ruled through and replaced, at the same type size, by brittleness against a naive attacker, the leg kept, not retracted (paired McNemar p = 2.4e-4, placebo-controlled). The clean-arm floor is what fixes the reading: before any transform this one 6.7B naive control already fails to emit compiling C on 51.2% of clean functions (gcc-lenient, native 4096), so the collapse measures attacker weakness, not a property of the binary.&lt;/figcaption&gt; &lt;details class=&quot;data-table&quot; data-astro-cid-bj3fsypb&gt; &lt;summary data-astro-cid-bj3fsypb&gt;data table&lt;/summary&gt;  &lt;div class=&quot;data-table-scroll&quot; data-astro-cid-bj3fsypb&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;Clean-arm floor&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;k/n (clean functions, config 0)&lt;/td&gt;&lt;td&gt;84/164&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;rate&lt;/td&gt;&lt;td&gt;51.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Wilson 95%&lt;/td&gt;&lt;td&gt;[43.6, 58.8]&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;arm&lt;/td&gt;&lt;td&gt;obfuscation-naive control, clean&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;seed 0xC0FFEE / 0xBADC0DE / 0x5EED5&lt;/td&gt;&lt;td&gt;84/164 at all three&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;surviving test&lt;/td&gt;&lt;td&gt;exact McNemar p = 2.4e-4, placebo-controlled; aware band 12-16% vs naive maximum 0.9% (1/106)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;The bar is a count (84 of 164), not a per-function map. A different arm and scorer (D1C clang-strict) reads a 76.8% clean floor, do not merge it with the 51.2%.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt; &lt;/details&gt; &lt;/figure&gt; 
&lt;p&gt;The scoreboard has to include the rows that argue the other way, so: the middle rung of the Ghidra-refinement scaling ladder went down, 18.5% to 15.9%, which is exactly the shape a clean “bigger is better” story would have to explain away, and nothing here explains it. The preprint’s “maximum” label was wrong, and the corrected maximum of 16.7% on a 24-function fired subset is smaller than the number originally published. The naive-attacker collapse survived a deliberate attempt to demote it out of the paper entirely, which makes the reversal here narrower than the word “reversal” usually promises.&lt;/p&gt;
&lt;p&gt;Retrain the attacker and the deterrence number moves; the binary sat still the whole time.&lt;/p&gt;
&lt;h2 id=&quot;what-this-does-not-measure&quot;&gt;What this does not measure&lt;a class=&quot;heading-anchor&quot; href=&quot;#what-this-does-not-measure&quot; aria-label=&quot;Link to this section&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The scope is narrow and stating it narrowly is the point. Everything above is the static client-side tier: bytes shipped to a machine you do not control, read by a model, with no server in the loop that could refuse to answer. It is measured against obfuscation-naive attackers at 6.7B, 9B and 22B, and against one modest 6.7B fine-tuned attacker for the Kerckhoffs leg, all of them on the gcc-lenient scorer at the model’s native 4096-token window, with a fixed prompt and a single-shot budget: no tool use, no iteration, no human in the loop. Every number here is re-executability, emitted C that compiles and reproduces the reference behaviour; none of it sits on the same axis as a structural or control-flow-similarity score, and a shape number from another paper cannot be read across to any of these. A qualitatively stronger adversary is the obvious next experiment, and until it runs, every read-through number here is where an informed attacker starts, and the attacker that produced it is part of the number.&lt;/p&gt;
&lt;p&gt;Nor does any of it license the inverse claim. Nothing here says a shipped product is broken, and nothing here says client-side protection is worthless, a 12-16% read-through against an informed attacker leaves most of a binary unrecovered. What it buys, in either direction, is deterrence, and deterrence is the whole of what it buys.&lt;/p&gt;
&lt;p&gt;It is also worth being clear about who the target is, because a series that audits ninety-six papers reads like an accusation whether or not it is one. No published cell value in that corpus is disputed here, mine included; every number in every one of those papers may well be exactly what its authors measured. The presentation is what fails, a single scalar, published without the attacker, the window, the firing rate or the denominator that produced it, which no reader can take apart afterwards. One of those scalars was mine.&lt;/p&gt;
&lt;p&gt;The statistics are thin in the places where the transforms thinned them. The anchor cells rest on 13 and 14 successes; the composite’s 16.0% is the highest number in the band and the one with the thinnest support behind it. Three rungs do not make a scaling law, and the ladder’s intervals are wide enough to accommodate most people’s priors.&lt;/p&gt;
&lt;p&gt;What stays open is most of it. A qualitatively stronger attacker, iterative, tool-assisted, allowed more than one shot, has not been run, and the honest expectation is that the 12-16% band moves up. The second article’s additivity residual is still unexplained and still reported as open. And the census the first article is built on found essentially nobody publishing the conditions that would let a reader check any of this, which means the field’s obfuscation-strength numbers remain, one paper at a time, un-recomputable. That is the next measurement, and until somebody runs it, every number above stands where it was left.&lt;/p&gt;
&lt;div class=&quot;table-scroll&quot;&gt;&lt;table&gt;&lt;tr&gt;&lt;th&gt;#&lt;/th&gt;&lt;th&gt;CLAIM&lt;/th&gt;&lt;th&gt;AS REPORTED&lt;/th&gt;&lt;th&gt;DENOMINATOR&lt;/th&gt;&lt;th&gt;AS AUDITED&lt;/th&gt;&lt;th&gt;WHAT SURVIVED&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;our own grid’s transform ranking (bogus-control-flow crushes recovery, flattening barely dents it)&lt;/td&gt;&lt;td&gt;raw aggregates CFF 6.1% (10/164) vs BCF 0.6% (1/164), an ordering&lt;/td&gt;&lt;td&gt;/164 raw aggregate, and per-config firing denominators 139 / 164 / 157 / 29 once conditioned&lt;/td&gt;&lt;td&gt;fired-only CFF 1.4% (2/139), BCF 0.6% (1/164), const 0.0% (0/157): a 0-1.4% floor with no ordering supported (no pairwise Fisher p below 0.05; min p = 0.22 fired-only, p = 0.50 full-164)&lt;/td&gt;&lt;td&gt;the DISSOLUTION survived and became the finding: the ranking was a coverage artifact. Nothing was deleted, the aggregate is still real, it just does not mean what it appeared to mean.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;’hardening’ / ‘deterrence’ from generic IR obfuscation&lt;/td&gt;&lt;td&gt;~100% relative reduction: clean 18.8% (28/149) -&amp;gt; obfuscated max 0.9% (1/106)&lt;/td&gt;&lt;td&gt;gcc-lenient, native-4096, per-config n (23 / 97 / 63 / 106 / 25); the clean base is THE 149, the one shared non-truncated subset, which is the same 149 Article 2’s provenance leg scores on (verified 2026-07-29 by set comparison). One construction, not two.&lt;/td&gt;&lt;td&gt;RELABELLED to ‘brittleness against a naive attacker’: the obfuscation-aware Kerckhoffs attacker reads the same configs at 12.3-16.0% off the same 18.8% base&lt;/td&gt;&lt;td&gt;THE LEG WAS KEPT. The effect is real and paired (McNemar p = 2.4e-4, placebo-controlled). Only the LABEL changed, relabelled, not renumbered.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;the attacker-scaling series is the ‘maximum’ obfuscated read-through&lt;/td&gt;&lt;td&gt;18.5% -&amp;gt; 15.9% -&amp;gt; 19.9% at 6.7B / 9B / 22B, labelled ‘maximum’ in the Zenodo v1 preprint&lt;/td&gt;&lt;td&gt;/151 in every rung (bogus_control_flow’s fired-and-non-truncated n)&lt;/td&gt;&lt;td&gt;the series is the bogus-control-flow cell, not the maximum. At 9B the true maximum is 16.7% from string_encryption, n = 24&lt;/td&gt;&lt;td&gt;every number. RELABELLED, NOT RENUMBERED: the word ‘maximum’ goes, the series stays.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;the control model had ‘plateaued at step 1000’ and could be locked&lt;/td&gt;&lt;td&gt;held-out 23.5% -&amp;gt; 26.2% -&amp;gt; 22.1% read as a plateau; training stopped at under 0.4 epoch&lt;/td&gt;&lt;td&gt;N ~ 149 held-out PROMPTS, a coincidental eval size, NOT the corpus 149 of row 2 (the shared matched non-truncated subset). Two different objects that happen to share a number; successes ~ {35, 39, 33}&lt;/td&gt;&lt;td&gt;chi-square(2) = 0.69, p = 0.71, indistinguishable from noise, and equally consistent with a rising curve. Detecting +5 pt per half-epoch at 80% power needs N ~ 1,280, roughly 9x the eval&lt;/td&gt;&lt;td&gt;the decision was REVERSED and the control retrained to at least one full epoch; the pre-registration gained a stopping rule (amended 2026-07-18). The owned mistake became the protocol.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;Plank C (confidence intervals) is met by ‘12 papers (7 firmly + 5 weakly)‘&lt;/td&gt;&lt;td&gt;C = 12 (7 firmly + 5 weakly) over the 91 full-text papers&lt;/td&gt;&lt;td&gt;/91 full-text papers (tiers FT-self + FT-fan); NOT /96 and NOT /37&lt;/td&gt;&lt;td&gt;C = 12 (6 firmly + 6 weakly). The complete re-verification downgraded bcsd_lessons_kim_tse22’s Plank C to YES-weak: it reports fold standard deviations and per-fold ranges, not intervals or a significance test&lt;/td&gt;&lt;td&gt;the TOTAL (12) and the whole prevalence band. Only the sub-split moved, a one-paper overstatement of the CI-adoption trend.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;6&lt;/td&gt;&lt;td&gt;this series’ OWN figure A1-F1: ‘the committed prevalence_master.csv still carries the stale cell and was never fixed’&lt;/td&gt;&lt;td&gt;A1-F1 stated in three places of rendered text, a panel note, the footer and a gen.py docstring, that the master still read 7 firmly + 5 weakly and had never been corrected; data/census.json carried master_is_stale = true and gen.py PINNED it with assert SUB[‘master_is_stale’] is True&lt;/td&gt;&lt;td&gt;/91 full-text papers (tiers FT-self + FT-fan), row 5’s denominator, unchanged. This row corrects a claim about a FILE’S CONTENTS, not a measurement, so it adds no new denominator and none of the counts moved.&lt;/td&gt;&lt;td&gt;FALSE as of 2026-07-29. prevalence_master.csv carries plankC = YES-weak for bcsd_lessons_kim_tse22, and a tier-filtered recount over the 91 full-text rows gives 6 firmly + 6 weakly. The manuscript was corrected first and the data second, so the figure, built inside that window, transcribed the pre-correction state and shipped it as a live present-tense claim with a passing assertion holding it in place.&lt;/td&gt;&lt;td&gt;every number. The sub-split was 6 + 6 before and after and the TOTAL of 12 never moved; row 5 is untouched. What changed is the MECHANISM: A1-F1 now READS the CSV cell at build time instead of restating it, and the assertion is re-pinned so that passing means ‘the CSV agrees with the manuscript’, a regression of the cell now fails the build instead of satisfying it.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
&lt;p&gt;| what read true | what was actually true | the rule it became |
|, |, |, |
| an 18.8% -&amp;gt; 0.0% collapse with a paired test behind it | both numbers were right; the second was measuring what the attacker had never seen | report what the attacker was trained on in the same breath as the drop |
| the attacker is too small, so scale will shrink the gap | 3.3x the parameters moved the cell 18.5% -&amp;gt; 15.9% -&amp;gt; 19.9%, every interval overlapping | hold the evaluation fixed and print the intervals before calling three points a trend |
| held-out accuracy 23.5 -&amp;gt; 26.2 -&amp;gt; 22.1 has plateaued | chi-squared 0.69, p ~ 0.71, at roughly a ninth of the sample needed to see a trend | compute the test before acting on the shape of three numbers |
| a relabel is a retraction | the leg was kept and reproduces; only the claim was renamed | print the correction at the same size as the claim it replaces |&lt;/p&gt;
&lt;p&gt;The word in the results table was hardening, and the table was arithmetically correct in every cell. What it hid was that its most impressive number described the attacker’s training set. The 0.0% was not semantic hardening; it was attacker ignorance, and ignorance is the one property of an adversary you cannot ship.&lt;/p&gt;
&lt;p&gt;Attacker conditioning was the last term this series pulled out of the same average. Coverage was the first. &lt;em&gt;Any eval that folds inputs a transform never touched into the same average, without reporting how often it fired, inherits this exact bug.&lt;/em&gt;&lt;/p&gt;</content:encoded><category>obfuscation</category><category>decompilation</category><category>evals</category><category>threat-models</category></item></channel></rss>