> ## Documentation Index
> Fetch the complete documentation index at: https://tsim.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Logical magic state distillation

```python theme={null}
import tsim
import numpy as np
from typing import Literal
import matplotlib.pyplot as plt
from tsim.utils.encoder import ColorEncoder5
```

In this tutorial, we will simulate a magic state distillation protocol using Tsim. We will simulate the magic state distillation circuit with 85 qubits introduced in [Rodriguez et al. (2025)](https://www.nature.com/articles/s41586-025-09367-3). This showcases Tsim's ability to simulate large non-Clifford circuits that would be impossible to simulate using a state vector simulator.

### Magic states

We start by preparing a particular magic state, the eigenstate of the "SH" operator. To simulate noise, we add a depolarizing channel after state preparation:

```python theme={null}
theta = -np.arccos(np.sqrt(1 / 3)) / np.pi  # Distillation angle

c = tsim.Circuit(f"R 0 \n R_X({theta}) 0 \n T_DAG 0 \n DEPOLARIZE1(0.05) 0 \n")
c.diagram("timeline-svg", height=100)
```

<iframe
  srcDoc="<!doctype html><html><head><meta charset=&#x22;utf-8&#x22;><style>html,body{margin:0;padding:0;height:100%;overflow:hidden;}</style></head><body><div data-tsim-zoom=&#x22;tsim-zoom-001&#x22; style=&#x22;width:100%; height:100%; box-sizing:border-box; font-size:0; line-height:0; overflow:auto; background:white; border:none; position:relative;&#x22;>
<div style=&#x22;display:inline-block; overflow:hidden; width:220.0px; height:100.0px;&#x22;>
<div style=&#x22;transform-origin:0 0; display:block; width:352.0px; height:160.0px; transform:scale(0.625);&#x22;>
<svg width=&#x22;352.0&#x22; height=&#x22;160.0&#x22; xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 352 160&#x22; version=&#x22;1.1&#x22;>
<g id=&#x22;qubit_lines&#x22;>
<path id=&#x22;qubit_line:0&#x22; d=&#x22;M64,64 L320,64 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;64&#x22;>q0</text>
</g>
<rect x=&#x22;80&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;144&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;64&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;84&#x22;>-0.3041π</text>
<rect x=&#x22;208&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;64&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;272&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;84&#x22;>0.05</text>
</svg>
</div>
</div>
</div>
<script>
(function() {
var wrap = document.querySelector('[data-tsim-zoom=&#x22;tsim-zoom-001&#x22;]');
if (!wrap || wrap.dataset.tsimZoomInit) return;
wrap.dataset.tsimZoomInit = &#x22;1&#x22;;
var size = wrap.firstElementChild;
var xform = size.firstElementChild;
var natW = 352.0;
var natH = 160.0;
var scale = 0.625;
var cw = wrap.clientWidth;
if (cw > 0 && natW > 0) {
/* keep height-fit initial scale */
}
function apply() {
xform.style.transform = 'scale(' + scale + ')';
size.style.width = (natW * scale) + 'px';
size.style.height = (natH * scale) + 'px';
}
apply();
wrap.addEventListener('wheel', function(e) {
if (e.ctrlKey || e.metaKey) {
e.preventDefault();
var rect = wrap.getBoundingClientRect();
var mx = e.clientX - rect.left + wrap.scrollLeft;
var my = e.clientY - rect.top + wrap.scrollTop;
var factor = Math.exp(-e.deltaY * 0.01);
var newScale = Math.min(Math.max(0.02, scale * factor), 40);
var ratio = newScale / scale;
scale = newScale;
apply();
wrap.scrollLeft = mx * ratio - (e.clientX - rect.left);
wrap.scrollTop = my * ratio - (e.clientY - rect.top);
}
}, { passive: false });
})();
</script></body></html>"
  width="100%"
  height="104"
  style={{border: "1px solid #eee", borderRadius: "0.5rem"}}
  title="Circuit diagram 1"
  loading="lazy"
/>

By undoing the state preparation at the end, we can measure the infidelity:

```python theme={null}
p = 0.05
c = tsim.Circuit(f"""
    R 0 
    R_X({theta}) 0
    T_DAG 0
    DEPOLARIZE1({p}) 0
    T 0
    R_X({-theta}) 0
    M 0
    """)
sampler = c.compile_sampler()
samples = sampler.sample(100_000, batch_size=100_000)
print(f"Infidelity: {np.count_nonzero(samples) / len(samples)}")
c.diagram("timeline-svg", height=100)
```

```text title="Output" theme={null}
Infidelity: 0.0325
```

<iframe
  srcDoc="<!doctype html><html><head><meta charset=&#x22;utf-8&#x22;><style>html,body{margin:0;padding:0;height:100%;overflow:hidden;}</style></head><body><div data-tsim-zoom=&#x22;tsim-zoom-002&#x22; style=&#x22;width:100%; height:100%; box-sizing:border-box; font-size:0; line-height:0; overflow:auto; background:white; border:none; position:relative;&#x22;>
<div style=&#x22;display:inline-block; overflow:hidden; width:340.0px; height:100.0px;&#x22;>
<div style=&#x22;transform-origin:0 0; display:block; width:544.0px; height:160.0px; transform:scale(0.625);&#x22;>
<svg width=&#x22;544.0&#x22; height=&#x22;160.0&#x22; xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 544 160&#x22; version=&#x22;1.1&#x22;>
<g id=&#x22;qubit_lines&#x22;>
<path id=&#x22;qubit_line:0&#x22; d=&#x22;M64,64 L512,64 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;64&#x22;>q0</text>
</g>
<rect x=&#x22;80&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;144&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;64&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;84&#x22;>-0.3041π</text>
<rect x=&#x22;208&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;64&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;272&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;84&#x22;>0.05</text>
<rect x=&#x22;336&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;352&#x22; y=&#x22;64&#x22;>T</text><rect x=&#x22;400&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;416&#x22; y=&#x22;64&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;416&#x22; y=&#x22;84&#x22;>0.3041π</text>
<rect x=&#x22;464&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;480&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;480&#x22; y=&#x22;44&#x22;>rec[0]</text>
</svg>
</div>
</div>
</div>
<script>
(function() {
var wrap = document.querySelector('[data-tsim-zoom=&#x22;tsim-zoom-002&#x22;]');
if (!wrap || wrap.dataset.tsimZoomInit) return;
wrap.dataset.tsimZoomInit = &#x22;1&#x22;;
var size = wrap.firstElementChild;
var xform = size.firstElementChild;
var natW = 544.0;
var natH = 160.0;
var scale = 0.625;
var cw = wrap.clientWidth;
if (cw > 0 && natW > 0) {
/* keep height-fit initial scale */
}
function apply() {
xform.style.transform = 'scale(' + scale + ')';
size.style.width = (natW * scale) + 'px';
size.style.height = (natH * scale) + 'px';
}
apply();
wrap.addEventListener('wheel', function(e) {
if (e.ctrlKey || e.metaKey) {
e.preventDefault();
var rect = wrap.getBoundingClientRect();
var mx = e.clientX - rect.left + wrap.scrollLeft;
var my = e.clientY - rect.top + wrap.scrollTop;
var factor = Math.exp(-e.deltaY * 0.01);
var newScale = Math.min(Math.max(0.02, scale * factor), 40);
var ratio = newScale / scale;
scale = newScale;
apply();
wrap.scrollLeft = mx * ratio - (e.clientX - rect.left);
wrap.scrollTop = my * ratio - (e.clientY - rect.top);
}
}, { passive: false });
})();
</script></body></html>"
  width="100%"
  height="104"
  style={{border: "1px solid #eee", borderRadius: "0.5rem"}}
  title="Circuit diagram 2"
  loading="lazy"
/>

The noisy state preparation process produces a magic state with 97% fidelity.

### Magic state distillation: The ideal case

Given multiple noisy magic states of low fidelity, we can distill a single high-fidelity magic state using a distillation circuit:

```python theme={null}
def make_logical_distillation_circuit(angle: float):
    return tsim.Circuit(f"""
        # initial state
        R 0 1 2 3 4
        R_X({angle}) 0 1 2 3 4
        T_DAG 0 1 2 3 4
        DEPOLARIZE1({p}) 0 1 2 3 4


        # distillation
        SQRT_X 0 1 4
        CZ 0 1 2 3
        SQRT_Y 0 3
        CZ 0 2 3 4
        TICK
        SQRT_X_DAG 0
        CZ 0 4 1 3
        TICK
        SQRT_X_DAG 0 1 2 3 4

        # undo
        T 0
        R_X({-angle}) 0

        M 0 1 2 3 4
        """)


c = make_logical_distillation_circuit(theta)
c.diagram("timeline-svg", height=240)
```

<iframe
  srcDoc="<!doctype html><html><head><meta charset=&#x22;utf-8&#x22;><style>html,body{margin:0;padding:0;height:100%;overflow:hidden;}</style></head><body><div data-tsim-zoom=&#x22;tsim-zoom-003&#x22; style=&#x22;width:100%; height:100%; box-sizing:border-box; font-size:0; line-height:0; overflow:auto; background:white; border:none; position:relative;&#x22;>
<div style=&#x22;display:inline-block; overflow:hidden; width:609.2307692307692px; height:239.99999999999997px;&#x22;>
<div style=&#x22;transform-origin:0 0; display:block; width:1056.0px; height:416.0px; transform:scale(0.5769230769230769);&#x22;>
<svg width=&#x22;1056.0&#x22; height=&#x22;416.0&#x22; xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 1056 416&#x22; version=&#x22;1.1&#x22;>
<g id=&#x22;qubit_lines&#x22;>
<path id=&#x22;qubit_line:0&#x22; d=&#x22;M64,64 L1024,64 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;64&#x22;>q0</text>
<path id=&#x22;qubit_line:1&#x22; d=&#x22;M64,128 L1024,128 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;128&#x22;>q1</text>
<path id=&#x22;qubit_line:2&#x22; d=&#x22;M64,192 L1024,192 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;192&#x22;>q2</text>
<path id=&#x22;qubit_line:3&#x22; d=&#x22;M64,256 L1024,256 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;256&#x22;>q3</text>
<path id=&#x22;qubit_line:4&#x22; d=&#x22;M64,320 L1024,320 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;320&#x22;>q4</text>
</g>
<rect x=&#x22;80&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;128&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;192&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;256&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;320&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;144&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;64&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;84&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;128&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;148&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;192&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;212&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;256&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;276&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;320&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;340&#x22;>-0.3041π</text>
<rect x=&#x22;208&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;64&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;128&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;192&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;256&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;320&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;272&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;84&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;148&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;212&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;276&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;340&#x22;>0.05</text>
<rect x=&#x22;336&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;64&#x22;>√X</text>
<rect x=&#x22;336&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;128&#x22;>√X</text>
<rect x=&#x22;336&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;320&#x22;>√X</text>
<path d=&#x22;M416,64 L416,128 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,192 L416,256 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<rect x=&#x22;464&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;480&#x22; y=&#x22;64&#x22;>√Y</text>
<rect x=&#x22;464&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;480&#x22; y=&#x22;256&#x22;>√Y</text>
<path d=&#x22;M544,64 L544,192 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;544&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;544&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M544,256 L544,320 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;544&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;544&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M68,40 L68,32 L572,32 L572,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M68,376 L68,384 L572,384 L572,376 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;592&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;608&#x22; y=&#x22;64&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<path d=&#x22;M672,64 L672,320 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;672&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;672&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,128 L736,256 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M580,40 L580,32 L764,32 L764,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M580,376 L580,384 L764,384 L764,376 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;784&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;800&#x22; y=&#x22;64&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;784&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;800&#x22; y=&#x22;128&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;784&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;800&#x22; y=&#x22;192&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;784&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;800&#x22; y=&#x22;256&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;784&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;800&#x22; y=&#x22;320&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;848&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;864&#x22; y=&#x22;64&#x22;>T</text><rect x=&#x22;912&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;928&#x22; y=&#x22;64&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;928&#x22; y=&#x22;84&#x22;>0.3041π</text>
<rect x=&#x22;976&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;992&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;992&#x22; y=&#x22;44&#x22;>rec[0]</text>
<rect x=&#x22;976&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;992&#x22; y=&#x22;128&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;992&#x22; y=&#x22;108&#x22;>rec[1]</text>
<rect x=&#x22;976&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;992&#x22; y=&#x22;192&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;992&#x22; y=&#x22;172&#x22;>rec[2]</text>
<rect x=&#x22;976&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;992&#x22; y=&#x22;256&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;992&#x22; y=&#x22;236&#x22;>rec[3]</text>
<rect x=&#x22;976&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;992&#x22; y=&#x22;320&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;992&#x22; y=&#x22;300&#x22;>rec[4]</text>
<path d=&#x22;M772,40 L772,32 L1020,32 L1020,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M772,376 L772,384 L1020,384 L1020,376 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
</svg>
</div>
</div>
</div>
<script>
(function() {
var wrap = document.querySelector('[data-tsim-zoom=&#x22;tsim-zoom-003&#x22;]');
if (!wrap || wrap.dataset.tsimZoomInit) return;
wrap.dataset.tsimZoomInit = &#x22;1&#x22;;
var size = wrap.firstElementChild;
var xform = size.firstElementChild;
var natW = 1056.0;
var natH = 416.0;
var scale = 0.5769230769230769;
var cw = wrap.clientWidth;
if (cw > 0 && natW > 0) {
/* keep height-fit initial scale */
}
function apply() {
xform.style.transform = 'scale(' + scale + ')';
size.style.width = (natW * scale) + 'px';
size.style.height = (natH * scale) + 'px';
}
apply();
wrap.addEventListener('wheel', function(e) {
if (e.ctrlKey || e.metaKey) {
e.preventDefault();
var rect = wrap.getBoundingClientRect();
var mx = e.clientX - rect.left + wrap.scrollLeft;
var my = e.clientY - rect.top + wrap.scrollTop;
var factor = Math.exp(-e.deltaY * 0.01);
var newScale = Math.min(Math.max(0.02, scale * factor), 40);
var ratio = newScale / scale;
scale = newScale;
apply();
wrap.scrollLeft = mx * ratio - (e.clientX - rect.left);
wrap.scrollTop = my * ratio - (e.clientY - rect.top);
}
}, { passive: false });
})();
</script></body></html>"
  width="100%"
  height="244"
  style={{border: "1px solid #eee", borderRadius: "0.5rem"}}
  title="Circuit diagram 3"
  loading="lazy"
/>

In this distillation circuit, qubits \[q1, q2, q3, q4] are the distillation syndrome.
If we measure them in the state \[1,0,1,1], we know that distillation was successful and the first qubit q0 is in a magic state with higher fidelity.

We can simulate this using Tsim. To measure the fidelity, we undo the magic state preparation on the first qubit and perform a measurement in the Z basis.

```python theme={null}
sampler = c.compile_sampler(seed=0)
samples = sampler.sample(50_000, batch_size=10_000)


def post_select(samples: np.ndarray):
    distilled_output = samples[:, 0]
    distillation_syndromes = samples[:, 1:]
    sel = np.all(distillation_syndromes == np.array([1, 0, 1, 1]), axis=1)
    return distilled_output[sel]


post_selected_samples = post_select(samples)
print(
    f"Infidelity: {np.count_nonzero(post_selected_samples) / len(post_selected_samples):.5f}"
)
print(
    f"Percentage of post-selected samples: {len(post_selected_samples) / len(samples) * 100:.2f}%"
)
```

```text title="Output" theme={null}
Infidelity: 0.00616
Percentage of post-selected samples: 14.28%
```

After distillation, the fidelity has increased to 99.3%. This is much better than the original 97% of the individual input magic states. A downside is that the distillation process is only successful 14% of the time. This means we have to repeat the distillation process multiple times until we get a good output state.

With Tsim, we can study other properties of the distillation circuit. For example, we can analyze the dependence of the fidelity on the rotation angle of the `R_X` gate:

```python theme={null}
angles = np.linspace(-0.4, 0.4, 7) + theta
fidelities = []
post_selection_rate = []
for angle in angles:
    c = make_logical_distillation_circuit(angle)
    sampler = c.compile_sampler(seed=0)
    samples = sampler.sample(4_096, batch_size=4_096)

    post_selected_samples = post_select(samples)
    post_selection_rate.append(len(post_selected_samples) / len(samples))
    f = np.count_nonzero(post_selected_samples) / len(post_selected_samples)
    fidelities.append(1 - f)
```

```python theme={null}
fig, ax1 = plt.subplots()

(line1,) = ax1.semilogy(
    angles - theta, 1 - np.array(fidelities), "*-", c="g", lw=0.5, label="Infidelity"
)
ax1.axvline(0, linestyle="--", lw=0.5)
ax1.set_xlabel(r"$(\theta - \theta^*)/\pi$")
ax1.set_ylabel("Infidelity")

ax2 = ax1.twinx()
(line2,) = ax2.plot(
    angles - theta,
    post_selection_rate,
    ".-",
    c="orange",
    lw=0.5,
    label="Post-selection rate",
)
ax2.set_ylabel("Post-selection rate")
ax2.legend(handles=[line1, line2], loc="lower right");
```

<img src="https://mintcdn.com/tsim/FBxDnuddY8LTse3r/images/tutorials/magic_state_distillation/cell_14_0.svg?fit=max&auto=format&n=FBxDnuddY8LTse3r&q=85&s=31827a8c36a285fd0f59b6487715e848" alt="Notebook output figure" width="612" height="416" data-path="images/tutorials/magic_state_distillation/cell_14_0.svg" />

We see that the output fidelity and post-selection rate are peaked at the distillation angle $\theta^*$.

### Magic state distillation: The realistic case (with noise)

On a real quantum computer, the distillation circuit is noisy itself. Here, the benefit of distillation is
generally outweighed by the noise in the distillation circuit.

We can explicitly see this using a simulation, where we add noise to the distillation circuit. Note that we consider two different noise scales:

* `p` is the noise that captures the magic state preparation process.
* `noise` is the strength of the depolarizing noise in the distillation circuit.

```python theme={null}
noise = p / 5
c = tsim.Circuit(f"""
# initial state
R 0 1 2 3 4
R_X({theta}) 0 1 2 3 4
T_DAG 0 1 2 3 4
DEPOLARIZE1({p}) 0 1 2 3 4


# distillation
DEPOLARIZE1({noise}) 0 1 2 3 4
SQRT_X 0 1 4
DEPOLARIZE1({noise}) 0 1 4
CZ 0 1 2 3
DEPOLARIZE2({noise}) 0 1 2 3
SQRT_Y 0 3
DEPOLARIZE1({noise}) 0 3
CZ 0 2 3 4
DEPOLARIZE2({noise}) 0 2 3 4
TICK
SQRT_X_DAG 0
DEPOLARIZE1({noise}) 0
CZ 0 4 1 3
DEPOLARIZE2({noise}) 0 4 1 3
TICK
SQRT_X_DAG 0 1 2 3 4
DEPOLARIZE1({noise}) 0 1 2 3 4

# undo
T 0
R_X({-theta}) 0

M 0 1 2 3 4
""")
samples = c.compile_sampler(seed=0).sample(shots=40_000, batch_size=10_000)


def post_select(samples: np.ndarray):
    distilled_output = samples[:, 0]
    distillation_syndromes = samples[:, 1:]
    sel = np.all(distillation_syndromes == np.array([1, 0, 1, 1]), axis=1)
    return distilled_output[sel]


post_selected_samples = post_select(samples)
print(
    f"Infidelity: {np.count_nonzero(post_selected_samples) / len(post_selected_samples):.5f}"
)
print(
    f"Percentage of post-selected samples: {len(post_selected_samples) / len(samples) * 100:.2f}%"
)
```

```text title="Output" theme={null}
Infidelity: 0.04152
Percentage of post-selected samples: 12.83%
```

We see that the addition of noise has reduced the output fidelity to \~96%. This is worse than the input state!

# Encoding the distillation circuit

To address this issue, we need to make our distillation circuit resilient to noise.
We do this by encoding it using a quantum error correction code, specifically the \[17,1,5] color code. The helper class `ColorEncoder5` provides a convenient way to encode the distillation circuit. Each qubit will be encoded into 17 physical qubits using an encoding circuit. After that, each gate of the distillation circuit will be applied transversally to the encoded qubits.

```python theme={null}
def make_circuit(basis: Literal["X", "Y", "Z"], p_prep: float, noise: float = 0):
    encoder = ColorEncoder5()
    encoder.initialize(
        f"""
        R 0 1 2 3 4
        R_X({theta}) 0 1 2 3 4
        T_DAG 0 1 2 3 4
        DEPOLARIZE1({p_prep}) 0 1 2 3 4
        """,
    )
    encoder.encode_transversally(
        f"""
        SQRT_X 0 1 4
        DEPOLARIZE1({noise}) 0 1 4
        CZ 0 1 2 3
        DEPOLARIZE2({noise}) 0 1 2 3
        SQRT_Y 0 3
        DEPOLARIZE1({noise}) 0 3
        CZ 0 2 3 4
        DEPOLARIZE2({noise}) 0 2 3 4
        TICK
        SQRT_X_DAG 0
        DEPOLARIZE1({noise}) 0
        CZ 0 4
        DEPOLARIZE2({noise}) 0 4
        TICK
        CZ 1 3
        DEPOLARIZE2({noise}) 1 3
        TICK
        SQRT_X_DAG 0 1 2 3 4
        DEPOLARIZE1({noise}) 0 1 2 3 4
        """
        + ("H 0" if basis == "X" else "H_YZ 0" if basis == "Y" else "")
        + """
        M 0 1 2 3 4
        DETECTOR rec[-5]
        DETECTOR rec[-4]
        DETECTOR rec[-3]
        DETECTOR rec[-2]
        DETECTOR rec[-1]
        OBSERVABLE_INCLUDE(0) rec[-5]
        OBSERVABLE_INCLUDE(1) rec[-4]
        OBSERVABLE_INCLUDE(2) rec[-3]
        OBSERVABLE_INCLUDE(3) rec[-2]
        OBSERVABLE_INCLUDE(4) rec[-1]
        """
    )
    return encoder.circuit


c = make_circuit("Z", p_prep=p, noise=p / 10)
print(f"""Qubits: {c.num_qubits}
Detectors: {c.num_detectors}
Observables: {c.num_observables}""")
c.diagram("timeline-svg", height=500)
```

```text title="Output" theme={null}
Qubits: 85
Detectors: 40
Observables: 5
```

<iframe
  srcDoc="<!doctype html><html><head><meta charset=&#x22;utf-8&#x22;><style>html,body{margin:0;padding:0;height:100%;overflow:hidden;}</style></head><body><div data-tsim-zoom=&#x22;tsim-zoom-004&#x22; style=&#x22;width:100%; height:100%; box-sizing:border-box; font-size:0; line-height:0; overflow:auto; background:white; border:none; position:relative;&#x22;>
<div style=&#x22;display:inline-block; overflow:hidden; width:1644.5086705202314px; height:500.0px;&#x22;>
<div style=&#x22;transform-origin:0 0; display:block; width:18208.0px; height:5536.0px; transform:scale(0.09031791907514451);&#x22;>
<svg width=&#x22;18208.0&#x22; height=&#x22;5536.0&#x22; xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 18208 5536&#x22; version=&#x22;1.1&#x22;>
<g id=&#x22;qubit_lines&#x22;>
<path id=&#x22;qubit_line:0&#x22; d=&#x22;M64,64 L18176,64 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;64&#x22;>q0</text>
<path id=&#x22;qubit_line:1&#x22; d=&#x22;M64,128 L18176,128 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;128&#x22;>q1</text>
<path id=&#x22;qubit_line:2&#x22; d=&#x22;M64,192 L18176,192 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;192&#x22;>q2</text>
<path id=&#x22;qubit_line:3&#x22; d=&#x22;M64,256 L18176,256 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;256&#x22;>q3</text>
<path id=&#x22;qubit_line:4&#x22; d=&#x22;M64,320 L18176,320 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;320&#x22;>q4</text>
<path id=&#x22;qubit_line:5&#x22; d=&#x22;M64,384 L18176,384 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;384&#x22;>q5</text>
<path id=&#x22;qubit_line:6&#x22; d=&#x22;M64,448 L18176,448 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;448&#x22;>q6</text>
<path id=&#x22;qubit_line:7&#x22; d=&#x22;M64,512 L18176,512 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;512&#x22;>q7</text>
<path id=&#x22;qubit_line:8&#x22; d=&#x22;M64,576 L18176,576 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;576&#x22;>q8</text>
<path id=&#x22;qubit_line:9&#x22; d=&#x22;M64,640 L18176,640 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;640&#x22;>q9</text>
<path id=&#x22;qubit_line:10&#x22; d=&#x22;M64,704 L18176,704 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;704&#x22;>q10</text>
<path id=&#x22;qubit_line:11&#x22; d=&#x22;M64,768 L18176,768 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;768&#x22;>q11</text>
<path id=&#x22;qubit_line:12&#x22; d=&#x22;M64,832 L18176,832 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;832&#x22;>q12</text>
<path id=&#x22;qubit_line:13&#x22; d=&#x22;M64,896 L18176,896 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;896&#x22;>q13</text>
<path id=&#x22;qubit_line:14&#x22; d=&#x22;M64,960 L18176,960 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;960&#x22;>q14</text>
<path id=&#x22;qubit_line:15&#x22; d=&#x22;M64,1024 L18176,1024 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1024&#x22;>q15</text>
<path id=&#x22;qubit_line:16&#x22; d=&#x22;M64,1088 L18176,1088 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1088&#x22;>q16</text>
<path id=&#x22;qubit_line:17&#x22; d=&#x22;M64,1152 L18176,1152 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1152&#x22;>q17</text>
<path id=&#x22;qubit_line:18&#x22; d=&#x22;M64,1216 L18176,1216 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1216&#x22;>q18</text>
<path id=&#x22;qubit_line:19&#x22; d=&#x22;M64,1280 L18176,1280 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1280&#x22;>q19</text>
<path id=&#x22;qubit_line:20&#x22; d=&#x22;M64,1344 L18176,1344 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1344&#x22;>q20</text>
<path id=&#x22;qubit_line:21&#x22; d=&#x22;M64,1408 L18176,1408 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1408&#x22;>q21</text>
<path id=&#x22;qubit_line:22&#x22; d=&#x22;M64,1472 L18176,1472 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1472&#x22;>q22</text>
<path id=&#x22;qubit_line:23&#x22; d=&#x22;M64,1536 L18176,1536 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1536&#x22;>q23</text>
<path id=&#x22;qubit_line:24&#x22; d=&#x22;M64,1600 L18176,1600 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1600&#x22;>q24</text>
<path id=&#x22;qubit_line:25&#x22; d=&#x22;M64,1664 L18176,1664 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1664&#x22;>q25</text>
<path id=&#x22;qubit_line:26&#x22; d=&#x22;M64,1728 L18176,1728 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1728&#x22;>q26</text>
<path id=&#x22;qubit_line:27&#x22; d=&#x22;M64,1792 L18176,1792 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1792&#x22;>q27</text>
<path id=&#x22;qubit_line:28&#x22; d=&#x22;M64,1856 L18176,1856 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1856&#x22;>q28</text>
<path id=&#x22;qubit_line:29&#x22; d=&#x22;M64,1920 L18176,1920 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1920&#x22;>q29</text>
<path id=&#x22;qubit_line:30&#x22; d=&#x22;M64,1984 L18176,1984 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;1984&#x22;>q30</text>
<path id=&#x22;qubit_line:31&#x22; d=&#x22;M64,2048 L18176,2048 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2048&#x22;>q31</text>
<path id=&#x22;qubit_line:32&#x22; d=&#x22;M64,2112 L18176,2112 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2112&#x22;>q32</text>
<path id=&#x22;qubit_line:33&#x22; d=&#x22;M64,2176 L18176,2176 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2176&#x22;>q33</text>
<path id=&#x22;qubit_line:34&#x22; d=&#x22;M64,2240 L18176,2240 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2240&#x22;>q34</text>
<path id=&#x22;qubit_line:35&#x22; d=&#x22;M64,2304 L18176,2304 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2304&#x22;>q35</text>
<path id=&#x22;qubit_line:36&#x22; d=&#x22;M64,2368 L18176,2368 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2368&#x22;>q36</text>
<path id=&#x22;qubit_line:37&#x22; d=&#x22;M64,2432 L18176,2432 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2432&#x22;>q37</text>
<path id=&#x22;qubit_line:38&#x22; d=&#x22;M64,2496 L18176,2496 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2496&#x22;>q38</text>
<path id=&#x22;qubit_line:39&#x22; d=&#x22;M64,2560 L18176,2560 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2560&#x22;>q39</text>
<path id=&#x22;qubit_line:40&#x22; d=&#x22;M64,2624 L18176,2624 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2624&#x22;>q40</text>
<path id=&#x22;qubit_line:41&#x22; d=&#x22;M64,2688 L18176,2688 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2688&#x22;>q41</text>
<path id=&#x22;qubit_line:42&#x22; d=&#x22;M64,2752 L18176,2752 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2752&#x22;>q42</text>
<path id=&#x22;qubit_line:43&#x22; d=&#x22;M64,2816 L18176,2816 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2816&#x22;>q43</text>
<path id=&#x22;qubit_line:44&#x22; d=&#x22;M64,2880 L18176,2880 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2880&#x22;>q44</text>
<path id=&#x22;qubit_line:45&#x22; d=&#x22;M64,2944 L18176,2944 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;2944&#x22;>q45</text>
<path id=&#x22;qubit_line:46&#x22; d=&#x22;M64,3008 L18176,3008 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3008&#x22;>q46</text>
<path id=&#x22;qubit_line:47&#x22; d=&#x22;M64,3072 L18176,3072 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3072&#x22;>q47</text>
<path id=&#x22;qubit_line:48&#x22; d=&#x22;M64,3136 L18176,3136 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3136&#x22;>q48</text>
<path id=&#x22;qubit_line:49&#x22; d=&#x22;M64,3200 L18176,3200 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3200&#x22;>q49</text>
<path id=&#x22;qubit_line:50&#x22; d=&#x22;M64,3264 L18176,3264 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3264&#x22;>q50</text>
<path id=&#x22;qubit_line:51&#x22; d=&#x22;M64,3328 L18176,3328 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3328&#x22;>q51</text>
<path id=&#x22;qubit_line:52&#x22; d=&#x22;M64,3392 L18176,3392 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3392&#x22;>q52</text>
<path id=&#x22;qubit_line:53&#x22; d=&#x22;M64,3456 L18176,3456 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3456&#x22;>q53</text>
<path id=&#x22;qubit_line:54&#x22; d=&#x22;M64,3520 L18176,3520 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3520&#x22;>q54</text>
<path id=&#x22;qubit_line:55&#x22; d=&#x22;M64,3584 L18176,3584 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3584&#x22;>q55</text>
<path id=&#x22;qubit_line:56&#x22; d=&#x22;M64,3648 L18176,3648 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3648&#x22;>q56</text>
<path id=&#x22;qubit_line:57&#x22; d=&#x22;M64,3712 L18176,3712 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3712&#x22;>q57</text>
<path id=&#x22;qubit_line:58&#x22; d=&#x22;M64,3776 L18176,3776 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3776&#x22;>q58</text>
<path id=&#x22;qubit_line:59&#x22; d=&#x22;M64,3840 L18176,3840 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3840&#x22;>q59</text>
<path id=&#x22;qubit_line:60&#x22; d=&#x22;M64,3904 L18176,3904 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3904&#x22;>q60</text>
<path id=&#x22;qubit_line:61&#x22; d=&#x22;M64,3968 L18176,3968 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;3968&#x22;>q61</text>
<path id=&#x22;qubit_line:62&#x22; d=&#x22;M64,4032 L18176,4032 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4032&#x22;>q62</text>
<path id=&#x22;qubit_line:63&#x22; d=&#x22;M64,4096 L18176,4096 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4096&#x22;>q63</text>
<path id=&#x22;qubit_line:64&#x22; d=&#x22;M64,4160 L18176,4160 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4160&#x22;>q64</text>
<path id=&#x22;qubit_line:65&#x22; d=&#x22;M64,4224 L18176,4224 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4224&#x22;>q65</text>
<path id=&#x22;qubit_line:66&#x22; d=&#x22;M64,4288 L18176,4288 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4288&#x22;>q66</text>
<path id=&#x22;qubit_line:67&#x22; d=&#x22;M64,4352 L18176,4352 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4352&#x22;>q67</text>
<path id=&#x22;qubit_line:68&#x22; d=&#x22;M64,4416 L18176,4416 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4416&#x22;>q68</text>
<path id=&#x22;qubit_line:69&#x22; d=&#x22;M64,4480 L18176,4480 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4480&#x22;>q69</text>
<path id=&#x22;qubit_line:70&#x22; d=&#x22;M64,4544 L18176,4544 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4544&#x22;>q70</text>
<path id=&#x22;qubit_line:71&#x22; d=&#x22;M64,4608 L18176,4608 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4608&#x22;>q71</text>
<path id=&#x22;qubit_line:72&#x22; d=&#x22;M64,4672 L18176,4672 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4672&#x22;>q72</text>
<path id=&#x22;qubit_line:73&#x22; d=&#x22;M64,4736 L18176,4736 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4736&#x22;>q73</text>
<path id=&#x22;qubit_line:74&#x22; d=&#x22;M64,4800 L18176,4800 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4800&#x22;>q74</text>
<path id=&#x22;qubit_line:75&#x22; d=&#x22;M64,4864 L18176,4864 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4864&#x22;>q75</text>
<path id=&#x22;qubit_line:76&#x22; d=&#x22;M64,4928 L18176,4928 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4928&#x22;>q76</text>
<path id=&#x22;qubit_line:77&#x22; d=&#x22;M64,4992 L18176,4992 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;4992&#x22;>q77</text>
<path id=&#x22;qubit_line:78&#x22; d=&#x22;M64,5056 L18176,5056 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5056&#x22;>q78</text>
<path id=&#x22;qubit_line:79&#x22; d=&#x22;M64,5120 L18176,5120 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5120&#x22;>q79</text>
<path id=&#x22;qubit_line:80&#x22; d=&#x22;M64,5184 L18176,5184 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5184&#x22;>q80</text>
<path id=&#x22;qubit_line:81&#x22; d=&#x22;M64,5248 L18176,5248 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5248&#x22;>q81</text>
<path id=&#x22;qubit_line:82&#x22; d=&#x22;M64,5312 L18176,5312 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5312&#x22;>q82</text>
<path id=&#x22;qubit_line:83&#x22; d=&#x22;M64,5376 L18176,5376 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5376&#x22;>q83</text>
<path id=&#x22;qubit_line:84&#x22; d=&#x22;M64,5440 L18176,5440 &#x22; stroke=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;end&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;64&#x22; y=&#x22;5440&#x22;>q84</text>
</g>
<rect x=&#x22;80&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;512&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;1600&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;2688&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;3776&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;80&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;96&#x22; y=&#x22;4864&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;144&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;512&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;532&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;1600&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;1620&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;2688&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;2708&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;3776&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;3796&#x22;>-0.3041π</text>
<rect x=&#x22;144&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;160&#x22; y=&#x22;4864&#x22;>R<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;14&#x22;>X</tspan></text><text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;black&#x22; x=&#x22;160&#x22; y=&#x22;4884&#x22;>-0.3041π</text>
<rect x=&#x22;208&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;512&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;1600&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;2688&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;3776&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;208&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;224&#x22; y=&#x22;4864&#x22;>T<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text><rect x=&#x22;272&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;532&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;1600&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;1620&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;2688&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;2708&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;3796&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;288&#x22; y=&#x22;4864&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;288&#x22; y=&#x22;4884&#x22;>0.05</text>
<rect x=&#x22;272&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1152&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2240&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3328&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4416&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;128&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1216&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2304&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3392&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4480&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;192&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1280&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2368&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3456&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4544&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;256&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1344&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2432&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3520&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4608&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;320&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1408&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2496&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3584&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4672&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;384&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1472&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2560&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3648&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4736&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;448&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1536&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2624&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3712&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4800&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;576&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1664&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2752&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3840&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4928&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;640&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1728&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2816&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3904&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4992&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;704&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1792&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2880&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3968&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5056&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;768&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1856&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2944&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4032&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5120&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;832&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1920&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3008&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4096&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5184&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;896&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1984&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3072&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4160&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5248&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;960&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2048&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3136&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4224&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5312&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1024&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2112&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3200&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4288&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5376&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;1088&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;2176&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;3264&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;4352&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;272&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;288&#x22; y=&#x22;5440&#x22; fill=&#x22;white&#x22;>R</text>
<rect x=&#x22;336&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;64&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1152&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2240&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3328&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4416&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;128&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1216&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2304&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3392&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4480&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;192&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1280&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2368&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3456&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4544&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;256&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1344&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2432&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3520&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4608&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;320&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1408&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2496&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3584&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4672&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;384&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1472&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2560&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3648&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4736&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;448&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1536&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2624&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3712&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4800&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;576&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1664&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2752&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3840&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4928&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;640&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1728&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2816&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3904&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4992&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;704&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1792&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2880&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3968&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5056&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;768&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1856&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2944&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4032&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5120&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;832&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1920&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3008&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4096&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5184&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;896&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1984&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3072&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4160&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5248&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;960&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2048&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3136&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4224&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5312&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1024&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2112&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3200&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4288&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5376&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;1088&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;2176&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;3264&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;4352&#x22;>√Y</text>
<rect x=&#x22;336&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;352&#x22; y=&#x22;5440&#x22;>√Y</text>
<path d=&#x22;M68,40 L68,32 L380,32 L380,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M68,5496 L68,5504 L380,5504 L380,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M416,128 L416,256 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,1216 L416,1344 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;1216&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;1344&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,2304 L416,2432 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;2304&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;2432&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,3392 L416,3520 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3392&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,4480 L416,4608 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;4480&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;4608&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,512 L416,704 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,1600 L416,1792 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,2688 L416,2880 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,3776 L416,3968 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,4864 L416,5056 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,832 L416,960 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,1920 L416,2048 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;1920&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;2048&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,3008 L416,3136 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3008&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;3136&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,4096 L416,4224 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M416,5184 L416,5312 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;5184&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;416&#x22; cy=&#x22;5312&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M480,896 L480,1088 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M480,1984 L480,2176 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;1984&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;2176&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M480,3072 L480,3264 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;3072&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;3264&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M480,4160 L480,4352 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M480,5248 L480,5440 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;5248&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;480&#x22; cy=&#x22;5440&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M388,40 L388,32 L508,32 L508,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M388,5496 L388,5504 L508,5504 L508,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;528&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;512&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;1600&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;2688&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;3776&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;4864&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;1088&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;2176&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;3264&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;4352&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;528&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;544&#x22; y=&#x22;5440&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<path d=&#x22;M608,320 L608,512 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,1408 L608,1600 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1408&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,2496 L608,2688 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2496&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,3584 L608,3776 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,4672 L608,4864 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4672&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,576 L608,704 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,1664 L608,1792 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,2752 L608,2880 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,3840 L608,3968 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,4928 L608,5056 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,768 L608,960 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;768&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,1856 L608,2048 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1856&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2048&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,2944 L608,3136 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2944&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3136&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,4032 L608,4224 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4032&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,5120 L608,5312 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;5120&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;5312&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,1024 L608,1088 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1024&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,2112 L608,2176 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2112&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;2176&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,3200 L608,3264 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3200&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;3264&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,4288 L608,4352 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4288&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M608,5376 L608,5440 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;5376&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;608&#x22; cy=&#x22;5440&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<rect x=&#x22;656&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;320&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;1408&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;2496&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;3584&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;4672&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;704&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;1792&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;2880&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;3968&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;5056&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;960&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;2048&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;3136&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;4224&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;5312&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;1088&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;2176&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;3264&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;4352&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;656&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;672&#x22; y=&#x22;5440&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<path d=&#x22;M736,192 L736,320 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,1280 L736,1408 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;1280&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;1408&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,2368 L736,2496 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;2368&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;2496&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,3456 L736,3584 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,4544 L736,4672 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;4544&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;4672&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,448 L736,576 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,1536 L736,1664 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;1536&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,2624 L736,2752 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;2624&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,3712 L736,3840 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M736,4800 L736,4928 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;4800&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;736&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,512 L800,640 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;640&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,1600 L800,1728 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;1728&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,2688 L800,2816 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;2816&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,3776 L800,3904 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3904&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,4864 L800,4992 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;4992&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,704 L800,896 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,1792 L800,1984 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;1984&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,2880 L800,3072 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3072&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,3968 L800,4160 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,5056 L800,5248 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;5248&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,960 L800,1088 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,2048 L800,2176 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;2048&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;2176&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,3136 L800,3264 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3136&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;3264&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,4224 L800,4352 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M800,5312 L800,5440 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;5312&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;800&#x22; cy=&#x22;5440&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M708,40 L708,32 L828,32 L828,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M708,5496 L708,5504 L828,5504 L828,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;848&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;256&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1344&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;2432&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3520&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;4608&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;448&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1536&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;2624&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3712&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;4800&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;640&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1728&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;2816&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3904&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;4992&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;704&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1792&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;2880&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3968&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;5056&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;832&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1920&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3008&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;4096&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;5184&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;896&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;1984&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;3072&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;4160&#x22;>√Y</text>
<rect x=&#x22;848&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;864&#x22; y=&#x22;5248&#x22;>√Y</text>
<path d=&#x22;M928,64 L928,192 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,1152 L928,1280 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;1152&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;1280&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,2240 L928,2368 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;2240&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;2368&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,3328 L928,3456 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;3328&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,4416 L928,4544 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;4416&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;4544&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,256 L928,448 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,1344 L928,1536 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;1344&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;1536&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,2432 L928,2624 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;2432&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;2624&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,3520 L928,3712 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M928,4608 L928,4800 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;4608&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;928&#x22; cy=&#x22;4800&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,384 L992,576 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;384&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,1472 L992,1664 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;1472&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,2560 L992,2752 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;2560&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,3648 L992,3840 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;3648&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,4736 L992,4928 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;4736&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,704 L992,832 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,1792 L992,1920 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;1920&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,2880 L992,3008 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;3008&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,3968 L992,4096 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M992,5056 L992,5184 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;992&#x22; cy=&#x22;5184&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1056,768 L1056,896 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;768&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1056,1856 L1056,1984 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;1856&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;1984&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1056,2944 L1056,3072 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;2944&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;3072&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1056,4032 L1056,4160 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;4032&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1056,5120 L1056,5248 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;5120&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1056&#x22; cy=&#x22;5248&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M900,40 L900,32 L1084,32 L1084,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M900,5496 L900,5504 L1084,5504 L1084,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;1104&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;128&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1216&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2304&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3392&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4480&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;192&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1280&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2368&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3456&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4544&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;256&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1344&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2432&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3520&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4608&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;320&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1408&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2496&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3584&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4672&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;448&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1536&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2624&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3712&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4800&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;512&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1600&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2688&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3776&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4864&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;576&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1664&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2752&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3840&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4928&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;640&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1728&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2816&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3904&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4992&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;768&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1856&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2944&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4032&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;5120&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;832&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;1920&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3008&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4096&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;5184&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;960&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;2048&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;3136&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;4224&#x22;>√Y</text>
<rect x=&#x22;1104&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1120&#x22; y=&#x22;5312&#x22;>√Y</text>
<path d=&#x22;M1184,64 L1184,128 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1152 L1184,1216 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1152&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1216&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,2240 L1184,2304 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2240&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2304&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3328 L1184,3392 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3328&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3392&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4416 L1184,4480 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4416&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4480&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,192 L1184,256 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1280 L1184,1344 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1280&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1344&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,2368 L1184,2432 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2368&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2432&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3456 L1184,3520 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4544 L1184,4608 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4544&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4608&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,320 L1184,384 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;384&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1408 L1184,1472 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1408&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1472&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,2496 L1184,2560 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2496&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2560&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3584 L1184,3648 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3648&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4672 L1184,4736 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4672&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4736&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,448 L1184,512 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1536 L1184,1600 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1536&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,2624 L1184,2688 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2624&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3712 L1184,3776 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4800 L1184,4864 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4800&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,576 L1184,640 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;640&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1664 L1184,1728 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1728&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,2752 L1184,2816 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2816&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3840 L1184,3904 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3904&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4928 L1184,4992 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4992&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,832 L1184,1024 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1024&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,1920 L1184,2112 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;1920&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;2112&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,3008 L1184,3200 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3008&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;3200&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,4096 L1184,4288 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;4288&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1184,5184 L1184,5376 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;5184&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1184&#x22; cy=&#x22;5376&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<rect x=&#x22;1232&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;64&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1152&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2240&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3328&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4416&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;192&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1280&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2368&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3456&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4544&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;384&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1472&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2560&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3648&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4736&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;448&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1536&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2624&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3712&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4800&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;576&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1664&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2752&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3840&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4928&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;704&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1792&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;2880&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3968&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;5056&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;832&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;1920&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;3008&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;4096&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;1248&#x22; y=&#x22;5184&#x22;>√Y<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;1232&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;960&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;2048&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;3136&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;4224&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;5312&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;512&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;1600&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;2688&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;3776&#x22;>X</text>
<rect x=&#x22;1232&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1248&#x22; y=&#x22;4864&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;384&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1472&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2560&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;3648&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4736&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;192&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1280&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2368&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;3456&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4544&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;128&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1216&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2304&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;3392&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4480&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;320&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1408&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2496&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;3584&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4672&#x22;>X</text>
<rect x=&#x22;1296&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;768&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1856&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2944&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4032&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;5120&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;448&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;1536&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;2624&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;3712&#x22;>Z</text>
<rect x=&#x22;1296&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1312&#x22; y=&#x22;4800&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;320&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;1408&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;2496&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;3584&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;4672&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;192&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;1280&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;2368&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;3456&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;1376&#x22; y=&#x22;4544&#x22;>Z</text>
<rect x=&#x22;1360&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1376&#x22; y=&#x22;64&#x22;>√X</text>
<rect x=&#x22;1360&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1376&#x22; y=&#x22;128&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;192&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;256&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;320&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;384&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;448&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;512&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;576&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;640&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;704&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;768&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;832&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;896&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;960&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1024&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1088&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1152&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1216&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1280&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1344&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1408&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1472&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1536&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1600&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1664&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1728&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1792&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1856&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1920&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;1984&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;2048&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;2112&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;2176&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4416&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4480&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4544&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4608&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4672&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4736&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4800&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4864&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4928&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;4992&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5056&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5120&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5184&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5248&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5312&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5376&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;1440&#x22; y=&#x22;5440&#x22;>√X</text>
<rect x=&#x22;1424&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1440&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1440&#x22; y=&#x22;84&#x22;>0.005</text>
<rect x=&#x22;1424&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1440&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1440&#x22; y=&#x22;148&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;212&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;276&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;340&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;404&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;468&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;532&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;596&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;660&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;724&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;788&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;852&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;916&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;980&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1044&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1108&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1152&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1172&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1216&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1236&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1280&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1300&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1344&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1364&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1408&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1428&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1472&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1492&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1536&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1556&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1600&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1620&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1664&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1684&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1728&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1748&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1792&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1812&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1856&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1876&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1920&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;1940&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;1984&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;2004&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;2048&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;2068&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;2112&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;2132&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;2176&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;2196&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4416&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4436&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4480&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4500&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4544&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4564&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4608&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4628&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4672&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4692&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4736&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4756&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4800&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4820&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4864&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4884&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4928&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;4948&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;4992&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5012&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5056&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5076&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5120&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5140&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5184&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5204&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5248&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5268&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5312&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5332&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5376&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5396&#x22;>0.005</text>
<rect x=&#x22;1488&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;1504&#x22; y=&#x22;5440&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;1504&#x22; y=&#x22;5460&#x22;>0.005</text>
<path d=&#x22;M1568,64 L1568,1152 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1568&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1568&#x22; cy=&#x22;1152&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1632,128 L1632,1216 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1632&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1632&#x22; cy=&#x22;1216&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1696,192 L1696,1280 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1696&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1696&#x22; cy=&#x22;1280&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1760,256 L1760,1344 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1760&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1760&#x22; cy=&#x22;1344&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1824,320 L1824,1408 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1824&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1824&#x22; cy=&#x22;1408&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1888,384 L1888,1472 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1888&#x22; cy=&#x22;384&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1888&#x22; cy=&#x22;1472&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M1952,448 L1952,1536 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;1952&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;1952&#x22; cy=&#x22;1536&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2016,512 L2016,1600 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2016&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2016&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2080,576 L2080,1664 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2080&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2080&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2144,640 L2144,1728 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2144&#x22; cy=&#x22;640&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2144&#x22; cy=&#x22;1728&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2208,704 L2208,1792 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2208&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2208&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2272,768 L2272,1856 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2272&#x22; cy=&#x22;768&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2272&#x22; cy=&#x22;1856&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2336,832 L2336,1920 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2336&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2336&#x22; cy=&#x22;1920&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2400,896 L2400,1984 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2400&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2400&#x22; cy=&#x22;1984&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2464,960 L2464,2048 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2464&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2464&#x22; cy=&#x22;2048&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2528,1024 L2528,2112 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2528&#x22; cy=&#x22;1024&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2528&#x22; cy=&#x22;2112&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2592,1088 L2592,2176 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2592&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2592&#x22; cy=&#x22;2176&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2592,2240 L2592,3328 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2592&#x22; cy=&#x22;2240&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2592&#x22; cy=&#x22;3328&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2656,2304 L2656,3392 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2656&#x22; cy=&#x22;2304&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2656&#x22; cy=&#x22;3392&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2720,2368 L2720,3456 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2720&#x22; cy=&#x22;2368&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2720&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2784,2432 L2784,3520 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2784&#x22; cy=&#x22;2432&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2784&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2848,2496 L2848,3584 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2848&#x22; cy=&#x22;2496&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2848&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2912,2560 L2912,3648 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2912&#x22; cy=&#x22;2560&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2912&#x22; cy=&#x22;3648&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M2976,2624 L2976,3712 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;2976&#x22; cy=&#x22;2624&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;2976&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3040,2688 L3040,3776 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3040&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3040&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3104,2752 L3104,3840 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3104&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3104&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3168,2816 L3168,3904 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3168&#x22; cy=&#x22;2816&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3168&#x22; cy=&#x22;3904&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3232,2880 L3232,3968 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3232&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3232&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3296,2944 L3296,4032 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3296&#x22; cy=&#x22;2944&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3296&#x22; cy=&#x22;4032&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3360,3008 L3360,4096 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3360&#x22; cy=&#x22;3008&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3360&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3424,3072 L3424,4160 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3424&#x22; cy=&#x22;3072&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3424&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3488,3136 L3488,4224 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3488&#x22; cy=&#x22;3136&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3488&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3552,3200 L3552,4288 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3552&#x22; cy=&#x22;3200&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3552&#x22; cy=&#x22;4288&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3616,3264 L3616,4352 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;3616&#x22; cy=&#x22;3264&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;3616&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M3616,64 L3616,1152 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3600&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3616&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3600&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3616&#x22; y=&#x22;1152&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3616&#x22; y=&#x22;1172&#x22;>0.005</text>
<path d=&#x22;M3680,128 L3680,1216 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3664&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3680&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3664&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3680&#x22; y=&#x22;1216&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3680&#x22; y=&#x22;1236&#x22;>0.005</text>
<path d=&#x22;M3744,192 L3744,1280 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3728&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3744&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3728&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3744&#x22; y=&#x22;1280&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3744&#x22; y=&#x22;1300&#x22;>0.005</text>
<path d=&#x22;M3808,256 L3808,1344 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3792&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3808&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3792&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3808&#x22; y=&#x22;1344&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3808&#x22; y=&#x22;1364&#x22;>0.005</text>
<path d=&#x22;M3872,320 L3872,1408 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3856&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3872&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3856&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3872&#x22; y=&#x22;1408&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3872&#x22; y=&#x22;1428&#x22;>0.005</text>
<path d=&#x22;M3936,384 L3936,1472 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3920&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3936&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3920&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;3936&#x22; y=&#x22;1472&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;3936&#x22; y=&#x22;1492&#x22;>0.005</text>
<path d=&#x22;M4000,448 L4000,1536 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;3984&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4000&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;3984&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4000&#x22; y=&#x22;1536&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4000&#x22; y=&#x22;1556&#x22;>0.005</text>
<path d=&#x22;M4064,512 L4064,1600 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4048&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4064&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4048&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4064&#x22; y=&#x22;1600&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4064&#x22; y=&#x22;1620&#x22;>0.005</text>
<path d=&#x22;M4128,576 L4128,1664 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4112&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4128&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4112&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4128&#x22; y=&#x22;1664&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4128&#x22; y=&#x22;1684&#x22;>0.005</text>
<path d=&#x22;M4192,640 L4192,1728 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4176&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4192&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4176&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4192&#x22; y=&#x22;1728&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4192&#x22; y=&#x22;1748&#x22;>0.005</text>
<path d=&#x22;M4256,704 L4256,1792 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4240&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4256&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4240&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4256&#x22; y=&#x22;1792&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4256&#x22; y=&#x22;1812&#x22;>0.005</text>
<path d=&#x22;M4320,768 L4320,1856 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4304&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4320&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4304&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4320&#x22; y=&#x22;1856&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4320&#x22; y=&#x22;1876&#x22;>0.005</text>
<path d=&#x22;M4384,832 L4384,1920 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4368&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4384&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4368&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4384&#x22; y=&#x22;1920&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4384&#x22; y=&#x22;1940&#x22;>0.005</text>
<path d=&#x22;M4448,896 L4448,1984 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4432&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4448&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4432&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4448&#x22; y=&#x22;1984&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4448&#x22; y=&#x22;2004&#x22;>0.005</text>
<path d=&#x22;M4512,960 L4512,2048 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4496&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4512&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4496&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4512&#x22; y=&#x22;2048&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4512&#x22; y=&#x22;2068&#x22;>0.005</text>
<path d=&#x22;M4576,1024 L4576,2112 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4560&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4576&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4560&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4576&#x22; y=&#x22;2112&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4576&#x22; y=&#x22;2132&#x22;>0.005</text>
<path d=&#x22;M4640,1088 L4640,2176 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4624&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4640&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4624&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4640&#x22; y=&#x22;2176&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4640&#x22; y=&#x22;2196&#x22;>0.005</text>
<path d=&#x22;M4640,2240 L4640,3328 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4624&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4640&#x22; y=&#x22;2240&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4624&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4640&#x22; y=&#x22;3328&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4640&#x22; y=&#x22;3348&#x22;>0.005</text>
<path d=&#x22;M4704,2304 L4704,3392 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4688&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4704&#x22; y=&#x22;2304&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4688&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4704&#x22; y=&#x22;3392&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4704&#x22; y=&#x22;3412&#x22;>0.005</text>
<path d=&#x22;M4768,2368 L4768,3456 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4752&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4768&#x22; y=&#x22;2368&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4752&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4768&#x22; y=&#x22;3456&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4768&#x22; y=&#x22;3476&#x22;>0.005</text>
<path d=&#x22;M4832,2432 L4832,3520 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4816&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4832&#x22; y=&#x22;2432&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4816&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4832&#x22; y=&#x22;3520&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4832&#x22; y=&#x22;3540&#x22;>0.005</text>
<path d=&#x22;M4896,2496 L4896,3584 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4880&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4896&#x22; y=&#x22;2496&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4880&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4896&#x22; y=&#x22;3584&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4896&#x22; y=&#x22;3604&#x22;>0.005</text>
<path d=&#x22;M4960,2560 L4960,3648 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;4944&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4960&#x22; y=&#x22;2560&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;4944&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;4960&#x22; y=&#x22;3648&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;4960&#x22; y=&#x22;3668&#x22;>0.005</text>
<path d=&#x22;M5024,2624 L5024,3712 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5008&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5024&#x22; y=&#x22;2624&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5008&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5024&#x22; y=&#x22;3712&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5024&#x22; y=&#x22;3732&#x22;>0.005</text>
<path d=&#x22;M5088,2688 L5088,3776 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5072&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5088&#x22; y=&#x22;2688&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5072&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5088&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5088&#x22; y=&#x22;3796&#x22;>0.005</text>
<path d=&#x22;M5152,2752 L5152,3840 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5136&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5152&#x22; y=&#x22;2752&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5136&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5152&#x22; y=&#x22;3840&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5152&#x22; y=&#x22;3860&#x22;>0.005</text>
<path d=&#x22;M5216,2816 L5216,3904 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5200&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5216&#x22; y=&#x22;2816&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5200&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5216&#x22; y=&#x22;3904&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5216&#x22; y=&#x22;3924&#x22;>0.005</text>
<path d=&#x22;M5280,2880 L5280,3968 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5264&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5280&#x22; y=&#x22;2880&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5264&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5280&#x22; y=&#x22;3968&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5280&#x22; y=&#x22;3988&#x22;>0.005</text>
<path d=&#x22;M5344,2944 L5344,4032 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5328&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5344&#x22; y=&#x22;2944&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5328&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5344&#x22; y=&#x22;4032&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5344&#x22; y=&#x22;4052&#x22;>0.005</text>
<path d=&#x22;M5408,3008 L5408,4096 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5392&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5408&#x22; y=&#x22;3008&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5392&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5408&#x22; y=&#x22;4096&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5408&#x22; y=&#x22;4116&#x22;>0.005</text>
<path d=&#x22;M5472,3072 L5472,4160 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5456&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5472&#x22; y=&#x22;3072&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5456&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5472&#x22; y=&#x22;4160&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5472&#x22; y=&#x22;4180&#x22;>0.005</text>
<path d=&#x22;M5536,3136 L5536,4224 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5520&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5536&#x22; y=&#x22;3136&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5520&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5536&#x22; y=&#x22;4224&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5536&#x22; y=&#x22;4244&#x22;>0.005</text>
<path d=&#x22;M5600,3200 L5600,4288 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5584&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5600&#x22; y=&#x22;3200&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5584&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5600&#x22; y=&#x22;4288&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5600&#x22; y=&#x22;4308&#x22;>0.005</text>
<path d=&#x22;M5664,3264 L5664,4352 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;5648&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5664&#x22; y=&#x22;3264&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;5648&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5664&#x22; y=&#x22;4352&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5664&#x22; y=&#x22;4372&#x22;>0.005</text>
<rect x=&#x22;5648&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;64&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;128&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;192&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;256&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;320&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;384&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;448&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;512&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;576&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;640&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;704&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;768&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;832&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;896&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;960&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;1024&#x22;>√Y</text>
<rect x=&#x22;5648&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5664&#x22; y=&#x22;1088&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3328&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3392&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3456&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3520&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3584&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3648&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3712&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3776&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3840&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3904&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;3968&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4032&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4096&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4160&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4224&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4288&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;24&#x22; x=&#x22;5728&#x22; y=&#x22;4352&#x22;>√Y</text>
<rect x=&#x22;5712&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;84&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;148&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;212&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;276&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;340&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;404&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;468&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;532&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;596&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;660&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;724&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;788&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;852&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;916&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;980&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;1044&#x22;>0.005</text>
<rect x=&#x22;5712&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5728&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5728&#x22; y=&#x22;1108&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3328&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3348&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3392&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3412&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3456&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3476&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3520&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3540&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3584&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3604&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3648&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3668&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3712&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3732&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3796&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3840&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3860&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3904&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3924&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;3968&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;3988&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4032&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4052&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4096&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4116&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4160&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4180&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4224&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4244&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4288&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4308&#x22;>0.005</text>
<rect x=&#x22;5776&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;5792&#x22; y=&#x22;4352&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;5792&#x22; y=&#x22;4372&#x22;>0.005</text>
<path d=&#x22;M5792,64 L5792,2240 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;5792&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;5792&#x22; cy=&#x22;2240&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M5856,128 L5856,2304 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;5856&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;5856&#x22; cy=&#x22;2304&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M5920,192 L5920,2368 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;5920&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;5920&#x22; cy=&#x22;2368&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M5984,256 L5984,2432 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;5984&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;5984&#x22; cy=&#x22;2432&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6048,320 L6048,2496 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6048&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6048&#x22; cy=&#x22;2496&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6112,384 L6112,2560 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6112&#x22; cy=&#x22;384&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6112&#x22; cy=&#x22;2560&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6176,448 L6176,2624 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6176&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6176&#x22; cy=&#x22;2624&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6240,512 L6240,2688 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6240&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6240&#x22; cy=&#x22;2688&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6304,576 L6304,2752 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6304&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6304&#x22; cy=&#x22;2752&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6368,640 L6368,2816 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6368&#x22; cy=&#x22;640&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6368&#x22; cy=&#x22;2816&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6432,704 L6432,2880 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6432&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6432&#x22; cy=&#x22;2880&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6496,768 L6496,2944 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6496&#x22; cy=&#x22;768&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6496&#x22; cy=&#x22;2944&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6560,832 L6560,3008 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6560&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6560&#x22; cy=&#x22;3008&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6624,896 L6624,3072 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6624&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6624&#x22; cy=&#x22;3072&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6688,960 L6688,3136 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6688&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6688&#x22; cy=&#x22;3136&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6752,1024 L6752,3200 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6752&#x22; cy=&#x22;1024&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6752&#x22; cy=&#x22;3200&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6816,1088 L6816,3264 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6816&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6816&#x22; cy=&#x22;3264&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6816,3328 L6816,4416 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6816&#x22; cy=&#x22;3328&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6816&#x22; cy=&#x22;4416&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6880,3392 L6880,4480 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6880&#x22; cy=&#x22;3392&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6880&#x22; cy=&#x22;4480&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M6944,3456 L6944,4544 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;6944&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;6944&#x22; cy=&#x22;4544&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7008,3520 L7008,4608 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7008&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7008&#x22; cy=&#x22;4608&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7072,3584 L7072,4672 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7072&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7072&#x22; cy=&#x22;4672&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7136,3648 L7136,4736 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7136&#x22; cy=&#x22;3648&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7136&#x22; cy=&#x22;4736&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7200,3712 L7200,4800 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7200&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7200&#x22; cy=&#x22;4800&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7264,3776 L7264,4864 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7264&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7264&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7328,3840 L7328,4928 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7328&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7328&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7392,3904 L7392,4992 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7392&#x22; cy=&#x22;3904&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7392&#x22; cy=&#x22;4992&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7456,3968 L7456,5056 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7456&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7456&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7520,4032 L7520,5120 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7520&#x22; cy=&#x22;4032&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7520&#x22; cy=&#x22;5120&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7584,4096 L7584,5184 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7584&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7584&#x22; cy=&#x22;5184&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7648,4160 L7648,5248 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7648&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7648&#x22; cy=&#x22;5248&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7712,4224 L7712,5312 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7712&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7712&#x22; cy=&#x22;5312&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7776,4288 L7776,5376 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7776&#x22; cy=&#x22;4288&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7776&#x22; cy=&#x22;5376&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7840,4352 L7840,5440 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;7840&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;7840&#x22; cy=&#x22;5440&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M7840,64 L7840,2240 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;7824&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7840&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;7824&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7840&#x22; y=&#x22;2240&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;7840&#x22; y=&#x22;2260&#x22;>0.005</text>
<path d=&#x22;M7904,128 L7904,2304 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;7888&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7904&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;7888&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7904&#x22; y=&#x22;2304&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;7904&#x22; y=&#x22;2324&#x22;>0.005</text>
<path d=&#x22;M7968,192 L7968,2368 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;7952&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7968&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;7952&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;7968&#x22; y=&#x22;2368&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;7968&#x22; y=&#x22;2388&#x22;>0.005</text>
<path d=&#x22;M8032,256 L8032,2432 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8016&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8032&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8016&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8032&#x22; y=&#x22;2432&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8032&#x22; y=&#x22;2452&#x22;>0.005</text>
<path d=&#x22;M8096,320 L8096,2496 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8080&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8096&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8080&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8096&#x22; y=&#x22;2496&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8096&#x22; y=&#x22;2516&#x22;>0.005</text>
<path d=&#x22;M8160,384 L8160,2560 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8144&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8160&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8144&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8160&#x22; y=&#x22;2560&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8160&#x22; y=&#x22;2580&#x22;>0.005</text>
<path d=&#x22;M8224,448 L8224,2624 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8208&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8224&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8208&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8224&#x22; y=&#x22;2624&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8224&#x22; y=&#x22;2644&#x22;>0.005</text>
<path d=&#x22;M8288,512 L8288,2688 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8272&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8288&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8272&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8288&#x22; y=&#x22;2688&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8288&#x22; y=&#x22;2708&#x22;>0.005</text>
<path d=&#x22;M8352,576 L8352,2752 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8336&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8352&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8336&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8352&#x22; y=&#x22;2752&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8352&#x22; y=&#x22;2772&#x22;>0.005</text>
<path d=&#x22;M8416,640 L8416,2816 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8400&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8416&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8400&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8416&#x22; y=&#x22;2816&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8416&#x22; y=&#x22;2836&#x22;>0.005</text>
<path d=&#x22;M8480,704 L8480,2880 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8464&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8480&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8464&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8480&#x22; y=&#x22;2880&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8480&#x22; y=&#x22;2900&#x22;>0.005</text>
<path d=&#x22;M8544,768 L8544,2944 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8528&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8544&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8528&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8544&#x22; y=&#x22;2944&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8544&#x22; y=&#x22;2964&#x22;>0.005</text>
<path d=&#x22;M8608,832 L8608,3008 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8592&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8608&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8592&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8608&#x22; y=&#x22;3008&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8608&#x22; y=&#x22;3028&#x22;>0.005</text>
<path d=&#x22;M8672,896 L8672,3072 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8656&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8672&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8656&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8672&#x22; y=&#x22;3072&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8672&#x22; y=&#x22;3092&#x22;>0.005</text>
<path d=&#x22;M8736,960 L8736,3136 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8720&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8736&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8720&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8736&#x22; y=&#x22;3136&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8736&#x22; y=&#x22;3156&#x22;>0.005</text>
<path d=&#x22;M8800,1024 L8800,3200 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8784&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8800&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8784&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8800&#x22; y=&#x22;3200&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8800&#x22; y=&#x22;3220&#x22;>0.005</text>
<path d=&#x22;M8864,1088 L8864,3264 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8848&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8864&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8848&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8864&#x22; y=&#x22;3264&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8864&#x22; y=&#x22;3284&#x22;>0.005</text>
<path d=&#x22;M8864,3328 L8864,4416 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8848&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8864&#x22; y=&#x22;3328&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8848&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8864&#x22; y=&#x22;4416&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8864&#x22; y=&#x22;4436&#x22;>0.005</text>
<path d=&#x22;M8928,3392 L8928,4480 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8912&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8928&#x22; y=&#x22;3392&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8912&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8928&#x22; y=&#x22;4480&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8928&#x22; y=&#x22;4500&#x22;>0.005</text>
<path d=&#x22;M8992,3456 L8992,4544 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;8976&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8992&#x22; y=&#x22;3456&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;8976&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;8992&#x22; y=&#x22;4544&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;8992&#x22; y=&#x22;4564&#x22;>0.005</text>
<path d=&#x22;M9056,3520 L9056,4608 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9040&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9056&#x22; y=&#x22;3520&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9040&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9056&#x22; y=&#x22;4608&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9056&#x22; y=&#x22;4628&#x22;>0.005</text>
<path d=&#x22;M9120,3584 L9120,4672 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9104&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9120&#x22; y=&#x22;3584&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9104&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9120&#x22; y=&#x22;4672&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9120&#x22; y=&#x22;4692&#x22;>0.005</text>
<path d=&#x22;M9184,3648 L9184,4736 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9168&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9184&#x22; y=&#x22;3648&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9168&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9184&#x22; y=&#x22;4736&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9184&#x22; y=&#x22;4756&#x22;>0.005</text>
<path d=&#x22;M9248,3712 L9248,4800 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9232&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9248&#x22; y=&#x22;3712&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9232&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9248&#x22; y=&#x22;4800&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9248&#x22; y=&#x22;4820&#x22;>0.005</text>
<path d=&#x22;M9312,3776 L9312,4864 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9296&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9312&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9296&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9312&#x22; y=&#x22;4864&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9312&#x22; y=&#x22;4884&#x22;>0.005</text>
<path d=&#x22;M9376,3840 L9376,4928 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9360&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9376&#x22; y=&#x22;3840&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9360&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9376&#x22; y=&#x22;4928&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9376&#x22; y=&#x22;4948&#x22;>0.005</text>
<path d=&#x22;M9440,3904 L9440,4992 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9424&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9440&#x22; y=&#x22;3904&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9424&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9440&#x22; y=&#x22;4992&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9440&#x22; y=&#x22;5012&#x22;>0.005</text>
<path d=&#x22;M9504,3968 L9504,5056 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9488&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9504&#x22; y=&#x22;3968&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9488&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9504&#x22; y=&#x22;5056&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9504&#x22; y=&#x22;5076&#x22;>0.005</text>
<path d=&#x22;M9568,4032 L9568,5120 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9552&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9568&#x22; y=&#x22;4032&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9552&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9568&#x22; y=&#x22;5120&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9568&#x22; y=&#x22;5140&#x22;>0.005</text>
<path d=&#x22;M9632,4096 L9632,5184 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9616&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9632&#x22; y=&#x22;4096&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9616&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9632&#x22; y=&#x22;5184&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9632&#x22; y=&#x22;5204&#x22;>0.005</text>
<path d=&#x22;M9696,4160 L9696,5248 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9680&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9696&#x22; y=&#x22;4160&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9680&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9696&#x22; y=&#x22;5248&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9696&#x22; y=&#x22;5268&#x22;>0.005</text>
<path d=&#x22;M9760,4224 L9760,5312 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9744&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9760&#x22; y=&#x22;4224&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9744&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9760&#x22; y=&#x22;5312&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9760&#x22; y=&#x22;5332&#x22;>0.005</text>
<path d=&#x22;M9824,4288 L9824,5376 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9808&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9824&#x22; y=&#x22;4288&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9808&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9824&#x22; y=&#x22;5376&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9824&#x22; y=&#x22;5396&#x22;>0.005</text>
<path d=&#x22;M9888,4352 L9888,5440 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;9872&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9888&#x22; y=&#x22;4352&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;9872&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;9888&#x22; y=&#x22;5440&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;9888&#x22; y=&#x22;5460&#x22;>0.005</text>
<path d=&#x22;M1220,40 L1220,32 L9916,32 L9916,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M1220,5496 L1220,5504 L9916,5504 L9916,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;9936&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;64&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;128&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;192&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;256&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;320&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;384&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;448&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;512&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;576&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;640&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;704&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;768&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;832&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;896&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;960&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;1024&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;9936&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;9952&#x22; y=&#x22;1088&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;10000&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;84&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;148&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;212&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;276&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;340&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;404&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;468&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;532&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;596&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;660&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;724&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;788&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;852&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;916&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;980&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;1044&#x22;>0.005</text>
<rect x=&#x22;10000&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;10016&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;10016&#x22; y=&#x22;1108&#x22;>0.005</text>
<path d=&#x22;M10080,64 L10080,4416 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10080&#x22; cy=&#x22;64&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10080&#x22; cy=&#x22;4416&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10144,128 L10144,4480 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10144&#x22; cy=&#x22;128&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10144&#x22; cy=&#x22;4480&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10208,192 L10208,4544 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10208&#x22; cy=&#x22;192&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10208&#x22; cy=&#x22;4544&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10272,256 L10272,4608 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10272&#x22; cy=&#x22;256&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10272&#x22; cy=&#x22;4608&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10336,320 L10336,4672 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10336&#x22; cy=&#x22;320&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10336&#x22; cy=&#x22;4672&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10400,384 L10400,4736 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10400&#x22; cy=&#x22;384&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10400&#x22; cy=&#x22;4736&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10464,448 L10464,4800 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10464&#x22; cy=&#x22;448&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10464&#x22; cy=&#x22;4800&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10528,512 L10528,4864 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10528&#x22; cy=&#x22;512&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10528&#x22; cy=&#x22;4864&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10592,576 L10592,4928 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10592&#x22; cy=&#x22;576&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10592&#x22; cy=&#x22;4928&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10656,640 L10656,4992 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10656&#x22; cy=&#x22;640&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10656&#x22; cy=&#x22;4992&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10720,704 L10720,5056 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10720&#x22; cy=&#x22;704&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10720&#x22; cy=&#x22;5056&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10784,768 L10784,5120 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10784&#x22; cy=&#x22;768&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10784&#x22; cy=&#x22;5120&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10848,832 L10848,5184 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10848&#x22; cy=&#x22;832&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10848&#x22; cy=&#x22;5184&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10912,896 L10912,5248 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10912&#x22; cy=&#x22;896&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10912&#x22; cy=&#x22;5248&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M10976,960 L10976,5312 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;10976&#x22; cy=&#x22;960&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;10976&#x22; cy=&#x22;5312&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M11040,1024 L11040,5376 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;11040&#x22; cy=&#x22;1024&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;11040&#x22; cy=&#x22;5376&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M11104,1088 L11104,5440 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;11104&#x22; cy=&#x22;1088&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;11104&#x22; cy=&#x22;5440&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M11168,64 L11168,4416 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11152&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11168&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11152&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11168&#x22; y=&#x22;4416&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11168&#x22; y=&#x22;4436&#x22;>0.005</text>
<path d=&#x22;M11232,128 L11232,4480 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11216&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11232&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11216&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11232&#x22; y=&#x22;4480&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11232&#x22; y=&#x22;4500&#x22;>0.005</text>
<path d=&#x22;M11296,192 L11296,4544 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11280&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11296&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11280&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11296&#x22; y=&#x22;4544&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11296&#x22; y=&#x22;4564&#x22;>0.005</text>
<path d=&#x22;M11360,256 L11360,4608 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11344&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11360&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11344&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11360&#x22; y=&#x22;4608&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11360&#x22; y=&#x22;4628&#x22;>0.005</text>
<path d=&#x22;M11424,320 L11424,4672 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11408&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11424&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11408&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11424&#x22; y=&#x22;4672&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11424&#x22; y=&#x22;4692&#x22;>0.005</text>
<path d=&#x22;M11488,384 L11488,4736 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11472&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11488&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11472&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11488&#x22; y=&#x22;4736&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11488&#x22; y=&#x22;4756&#x22;>0.005</text>
<path d=&#x22;M11552,448 L11552,4800 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11536&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11552&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11536&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11552&#x22; y=&#x22;4800&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11552&#x22; y=&#x22;4820&#x22;>0.005</text>
<path d=&#x22;M11616,512 L11616,4864 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11600&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11616&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11600&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11616&#x22; y=&#x22;4864&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11616&#x22; y=&#x22;4884&#x22;>0.005</text>
<path d=&#x22;M11680,576 L11680,4928 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11664&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11680&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11664&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11680&#x22; y=&#x22;4928&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11680&#x22; y=&#x22;4948&#x22;>0.005</text>
<path d=&#x22;M11744,640 L11744,4992 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11728&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11744&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11728&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11744&#x22; y=&#x22;4992&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11744&#x22; y=&#x22;5012&#x22;>0.005</text>
<path d=&#x22;M11808,704 L11808,5056 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11792&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11808&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11792&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11808&#x22; y=&#x22;5056&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11808&#x22; y=&#x22;5076&#x22;>0.005</text>
<path d=&#x22;M11872,768 L11872,5120 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11856&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11872&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11856&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11872&#x22; y=&#x22;5120&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11872&#x22; y=&#x22;5140&#x22;>0.005</text>
<path d=&#x22;M11936,832 L11936,5184 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11920&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11936&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11920&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;11936&#x22; y=&#x22;5184&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;11936&#x22; y=&#x22;5204&#x22;>0.005</text>
<path d=&#x22;M12000,896 L12000,5248 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;11984&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12000&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;11984&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12000&#x22; y=&#x22;5248&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;12000&#x22; y=&#x22;5268&#x22;>0.005</text>
<path d=&#x22;M12064,960 L12064,5312 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;12048&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12064&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;12048&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12064&#x22; y=&#x22;5312&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;12064&#x22; y=&#x22;5332&#x22;>0.005</text>
<path d=&#x22;M12128,1024 L12128,5376 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;12112&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12128&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;12112&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12128&#x22; y=&#x22;5376&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;12128&#x22; y=&#x22;5396&#x22;>0.005</text>
<path d=&#x22;M12192,1088 L12192,5440 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;12176&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12192&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;12176&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;12192&#x22; y=&#x22;5440&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;12192&#x22; y=&#x22;5460&#x22;>0.005</text>
<path d=&#x22;M9924,40 L9924,32 L12220,32 L12220,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M9924,5496 L9924,5504 L12220,5504 L12220,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M12256,1152 L12256,3328 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12256&#x22; cy=&#x22;1152&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12256&#x22; cy=&#x22;3328&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12320,1216 L12320,3392 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12320&#x22; cy=&#x22;1216&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12320&#x22; cy=&#x22;3392&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12384,1280 L12384,3456 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12384&#x22; cy=&#x22;1280&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12384&#x22; cy=&#x22;3456&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12448,1344 L12448,3520 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12448&#x22; cy=&#x22;1344&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12448&#x22; cy=&#x22;3520&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12512,1408 L12512,3584 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12512&#x22; cy=&#x22;1408&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12512&#x22; cy=&#x22;3584&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12576,1472 L12576,3648 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12576&#x22; cy=&#x22;1472&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12576&#x22; cy=&#x22;3648&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12640,1536 L12640,3712 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12640&#x22; cy=&#x22;1536&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12640&#x22; cy=&#x22;3712&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12704,1600 L12704,3776 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12704&#x22; cy=&#x22;1600&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12704&#x22; cy=&#x22;3776&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12768,1664 L12768,3840 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12768&#x22; cy=&#x22;1664&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12768&#x22; cy=&#x22;3840&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12832,1728 L12832,3904 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12832&#x22; cy=&#x22;1728&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12832&#x22; cy=&#x22;3904&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12896,1792 L12896,3968 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12896&#x22; cy=&#x22;1792&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12896&#x22; cy=&#x22;3968&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M12960,1856 L12960,4032 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;12960&#x22; cy=&#x22;1856&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;12960&#x22; cy=&#x22;4032&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13024,1920 L13024,4096 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;13024&#x22; cy=&#x22;1920&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;13024&#x22; cy=&#x22;4096&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13088,1984 L13088,4160 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;13088&#x22; cy=&#x22;1984&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;13088&#x22; cy=&#x22;4160&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13152,2048 L13152,4224 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;13152&#x22; cy=&#x22;2048&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;13152&#x22; cy=&#x22;4224&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13216,2112 L13216,4288 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;13216&#x22; cy=&#x22;2112&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;13216&#x22; cy=&#x22;4288&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13280,2176 L13280,4352 &#x22; stroke=&#x22;black&#x22;/>
<circle cx=&#x22;13280&#x22; cy=&#x22;2176&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<circle cx=&#x22;13280&#x22; cy=&#x22;4352&#x22; r=&#x22;12&#x22; stroke=&#x22;none&#x22; fill=&#x22;black&#x22;/>
<path d=&#x22;M13344,1152 L13344,3328 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13328&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13344&#x22; y=&#x22;1152&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13328&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13344&#x22; y=&#x22;3328&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13344&#x22; y=&#x22;3348&#x22;>0.005</text>
<path d=&#x22;M13408,1216 L13408,3392 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13392&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13408&#x22; y=&#x22;1216&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13392&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13408&#x22; y=&#x22;3392&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13408&#x22; y=&#x22;3412&#x22;>0.005</text>
<path d=&#x22;M13472,1280 L13472,3456 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13456&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13472&#x22; y=&#x22;1280&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13456&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13472&#x22; y=&#x22;3456&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13472&#x22; y=&#x22;3476&#x22;>0.005</text>
<path d=&#x22;M13536,1344 L13536,3520 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13520&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13536&#x22; y=&#x22;1344&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13520&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13536&#x22; y=&#x22;3520&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13536&#x22; y=&#x22;3540&#x22;>0.005</text>
<path d=&#x22;M13600,1408 L13600,3584 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13584&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13600&#x22; y=&#x22;1408&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13584&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13600&#x22; y=&#x22;3584&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13600&#x22; y=&#x22;3604&#x22;>0.005</text>
<path d=&#x22;M13664,1472 L13664,3648 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13648&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13664&#x22; y=&#x22;1472&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13648&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13664&#x22; y=&#x22;3648&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13664&#x22; y=&#x22;3668&#x22;>0.005</text>
<path d=&#x22;M13728,1536 L13728,3712 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13712&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13728&#x22; y=&#x22;1536&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13712&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13728&#x22; y=&#x22;3712&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13728&#x22; y=&#x22;3732&#x22;>0.005</text>
<path d=&#x22;M13792,1600 L13792,3776 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13776&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13792&#x22; y=&#x22;1600&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13776&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13792&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13792&#x22; y=&#x22;3796&#x22;>0.005</text>
<path d=&#x22;M13856,1664 L13856,3840 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13840&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13856&#x22; y=&#x22;1664&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13840&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13856&#x22; y=&#x22;3840&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13856&#x22; y=&#x22;3860&#x22;>0.005</text>
<path d=&#x22;M13920,1728 L13920,3904 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13904&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13920&#x22; y=&#x22;1728&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13904&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13920&#x22; y=&#x22;3904&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13920&#x22; y=&#x22;3924&#x22;>0.005</text>
<path d=&#x22;M13984,1792 L13984,3968 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;13968&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13984&#x22; y=&#x22;1792&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;13968&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;13984&#x22; y=&#x22;3968&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;13984&#x22; y=&#x22;3988&#x22;>0.005</text>
<path d=&#x22;M14048,1856 L14048,4032 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14032&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14048&#x22; y=&#x22;1856&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14032&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14048&#x22; y=&#x22;4032&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14048&#x22; y=&#x22;4052&#x22;>0.005</text>
<path d=&#x22;M14112,1920 L14112,4096 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14096&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14112&#x22; y=&#x22;1920&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14096&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14112&#x22; y=&#x22;4096&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14112&#x22; y=&#x22;4116&#x22;>0.005</text>
<path d=&#x22;M14176,1984 L14176,4160 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14160&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14176&#x22; y=&#x22;1984&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14160&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14176&#x22; y=&#x22;4160&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14176&#x22; y=&#x22;4180&#x22;>0.005</text>
<path d=&#x22;M14240,2048 L14240,4224 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14224&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14240&#x22; y=&#x22;2048&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14224&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14240&#x22; y=&#x22;4224&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14240&#x22; y=&#x22;4244&#x22;>0.005</text>
<path d=&#x22;M14304,2112 L14304,4288 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14288&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14304&#x22; y=&#x22;2112&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14288&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14304&#x22; y=&#x22;4288&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14304&#x22; y=&#x22;4308&#x22;>0.005</text>
<path d=&#x22;M14368,2176 L14368,4352 &#x22; stroke=&#x22;black&#x22;/>
<rect x=&#x22;14352&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14368&#x22; y=&#x22;2176&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<rect x=&#x22;14352&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14368&#x22; y=&#x22;4352&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>2</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14368&#x22; y=&#x22;4372&#x22;>0.005</text>
<path d=&#x22;M12228,40 L12228,32 L14396,32 L14396,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M12228,5496 L12228,5504 L14396,5504 L14396,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<rect x=&#x22;14416&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;64&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;128&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;192&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;256&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;320&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;384&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;448&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;512&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;576&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;640&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;704&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;768&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;832&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;896&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;960&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1024&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1088&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1152&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1216&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1280&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1344&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1408&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1472&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1536&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1600&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1664&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1728&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1792&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1856&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1920&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;1984&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2048&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2112&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2176&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2240&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2304&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2368&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2432&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2496&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2560&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2624&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2688&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2752&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2816&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2880&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;2944&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3008&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3072&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3136&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3200&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3264&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3328&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3392&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3456&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3520&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3584&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3648&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3712&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3776&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3840&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3904&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;3968&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4032&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4096&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4160&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4224&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4288&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4352&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4416&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4480&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4544&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4608&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4672&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4736&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4800&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4864&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4928&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;4992&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5056&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5120&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5184&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5248&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5312&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5376&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14416&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;white&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;18&#x22; x=&#x22;14432&#x22; y=&#x22;5440&#x22;>√X<tspan baseline-shift=&#x22;super&#x22; font-size=&#x22;14&#x22;>†</tspan></text>
<rect x=&#x22;14480&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;64&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;84&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;128&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;148&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;192&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;212&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;256&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;276&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;320&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;340&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;384&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;404&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;448&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;468&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;512&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;532&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;576&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;596&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;640&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;660&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;704&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;724&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;768&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;788&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;832&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;852&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;896&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;916&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;960&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;980&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1024&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1044&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1088&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1108&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1152&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1172&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1216&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1236&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1280&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1300&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1344&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1364&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1408&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1428&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1472&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1492&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1536&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1556&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1600&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1620&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1664&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1684&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1728&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1748&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1792&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1812&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1856&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1876&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1920&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;1940&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;1984&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2004&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2048&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2068&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2112&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2132&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2176&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2196&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2240&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2260&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2304&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2324&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2368&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2388&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2432&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2452&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2496&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2516&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2560&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2580&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2624&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2644&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2688&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2708&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2752&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2772&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2816&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2836&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2880&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2900&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;2944&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;2964&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3008&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3028&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3072&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3092&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3136&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3156&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3200&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3220&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3264&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3284&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3328&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3348&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3392&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3412&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3456&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3476&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3520&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3540&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3584&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3604&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3648&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3668&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3712&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3732&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3776&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3796&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3840&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3860&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3904&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3924&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;3968&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;3988&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4032&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4052&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4096&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4116&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4160&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4180&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4224&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4244&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4288&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4308&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4352&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4372&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4416&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4436&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4480&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4500&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4544&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4564&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4608&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4628&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4672&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4692&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4736&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4756&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4800&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4820&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4864&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4884&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4928&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;4948&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;4992&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5012&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5056&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5076&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5120&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5140&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5184&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5204&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5248&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5268&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5312&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5332&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5376&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5396&#x22;>0.005</text>
<rect x=&#x22;14480&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;pink&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;12&#x22; x=&#x22;14496&#x22; y=&#x22;5440&#x22;>DEP<tspan baseline-shift=&#x22;sub&#x22; font-size=&#x22;10&#x22;>1</tspan></text>
<text dominant-baseline=&#x22;hanging&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;10&#x22; stroke=&#x22;red&#x22; x=&#x22;14496&#x22; y=&#x22;5460&#x22;>0.005</text>
<rect x=&#x22;14544&#x22; y=&#x22;48&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;64&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;44&#x22;>rec[0]</text>
<rect x=&#x22;14544&#x22; y=&#x22;112&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;128&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;108&#x22;>rec[1]</text>
<rect x=&#x22;14544&#x22; y=&#x22;176&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;192&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;172&#x22;>rec[2]</text>
<rect x=&#x22;14544&#x22; y=&#x22;240&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;256&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;236&#x22;>rec[3]</text>
<rect x=&#x22;14544&#x22; y=&#x22;304&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;320&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;300&#x22;>rec[4]</text>
<rect x=&#x22;14544&#x22; y=&#x22;368&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;384&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;364&#x22;>rec[5]</text>
<rect x=&#x22;14544&#x22; y=&#x22;432&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;448&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;428&#x22;>rec[6]</text>
<rect x=&#x22;14544&#x22; y=&#x22;496&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;512&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;492&#x22;>rec[7]</text>
<rect x=&#x22;14544&#x22; y=&#x22;560&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;576&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;556&#x22;>rec[8]</text>
<rect x=&#x22;14544&#x22; y=&#x22;624&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;640&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;620&#x22;>rec[9]</text>
<rect x=&#x22;14544&#x22; y=&#x22;688&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;704&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;684&#x22;>rec[10]</text>
<rect x=&#x22;14544&#x22; y=&#x22;752&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;768&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;748&#x22;>rec[11]</text>
<rect x=&#x22;14544&#x22; y=&#x22;816&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;832&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;812&#x22;>rec[12]</text>
<rect x=&#x22;14544&#x22; y=&#x22;880&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;896&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;876&#x22;>rec[13]</text>
<rect x=&#x22;14544&#x22; y=&#x22;944&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;960&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;940&#x22;>rec[14]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1008&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1024&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1004&#x22;>rec[15]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1072&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1088&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1068&#x22;>rec[16]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1136&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1152&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1132&#x22;>rec[17]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1200&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1216&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1196&#x22;>rec[18]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1264&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1280&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1260&#x22;>rec[19]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1328&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1344&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1324&#x22;>rec[20]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1392&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1408&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1388&#x22;>rec[21]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1456&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1472&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1452&#x22;>rec[22]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1520&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1536&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1516&#x22;>rec[23]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1584&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1600&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1580&#x22;>rec[24]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1648&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1664&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1644&#x22;>rec[25]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1712&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1728&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1708&#x22;>rec[26]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1776&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1792&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1772&#x22;>rec[27]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1840&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1856&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1836&#x22;>rec[28]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1904&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1920&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1900&#x22;>rec[29]</text>
<rect x=&#x22;14544&#x22; y=&#x22;1968&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;1984&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;1964&#x22;>rec[30]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2032&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2048&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2028&#x22;>rec[31]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2096&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2112&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2092&#x22;>rec[32]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2160&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2176&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2156&#x22;>rec[33]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2224&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2240&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2220&#x22;>rec[34]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2288&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2304&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2284&#x22;>rec[35]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2352&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2368&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2348&#x22;>rec[36]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2416&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2432&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2412&#x22;>rec[37]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2480&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2496&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2476&#x22;>rec[38]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2544&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2560&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2540&#x22;>rec[39]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2608&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2624&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2604&#x22;>rec[40]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2672&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2688&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2668&#x22;>rec[41]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2736&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2752&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2732&#x22;>rec[42]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2800&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2816&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2796&#x22;>rec[43]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2864&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2880&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2860&#x22;>rec[44]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2928&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;2944&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2924&#x22;>rec[45]</text>
<rect x=&#x22;14544&#x22; y=&#x22;2992&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3008&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;2988&#x22;>rec[46]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3056&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3072&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3052&#x22;>rec[47]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3120&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3136&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3116&#x22;>rec[48]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3184&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3200&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3180&#x22;>rec[49]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3248&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3264&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3244&#x22;>rec[50]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3312&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3328&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3308&#x22;>rec[51]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3376&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3392&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3372&#x22;>rec[52]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3440&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3456&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3436&#x22;>rec[53]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3504&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3520&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3500&#x22;>rec[54]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3568&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3584&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3564&#x22;>rec[55]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3632&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3648&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3628&#x22;>rec[56]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3696&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3712&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3692&#x22;>rec[57]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3760&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3776&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3756&#x22;>rec[58]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3824&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3840&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3820&#x22;>rec[59]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3888&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3904&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3884&#x22;>rec[60]</text>
<rect x=&#x22;14544&#x22; y=&#x22;3952&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;3968&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;3948&#x22;>rec[61]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4016&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4032&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4012&#x22;>rec[62]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4080&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4096&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4076&#x22;>rec[63]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4144&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4160&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4140&#x22;>rec[64]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4208&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4224&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4204&#x22;>rec[65]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4272&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4288&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4268&#x22;>rec[66]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4336&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4352&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4332&#x22;>rec[67]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4400&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4416&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4396&#x22;>rec[68]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4464&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4480&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4460&#x22;>rec[69]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4528&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4544&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4524&#x22;>rec[70]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4592&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4608&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4588&#x22;>rec[71]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4656&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4672&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4652&#x22;>rec[72]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4720&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4736&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4716&#x22;>rec[73]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4784&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4800&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4780&#x22;>rec[74]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4848&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4864&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4844&#x22;>rec[75]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4912&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4928&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4908&#x22;>rec[76]</text>
<rect x=&#x22;14544&#x22; y=&#x22;4976&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;4992&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;4972&#x22;>rec[77]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5040&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5056&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5036&#x22;>rec[78]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5104&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5120&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5100&#x22;>rec[79]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5168&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5184&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5164&#x22;>rec[80]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5232&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5248&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5228&#x22;>rec[81]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5296&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5312&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5292&#x22;>rec[82]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5360&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5376&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5356&#x22;>rec[83]</text>
<rect x=&#x22;14544&#x22; y=&#x22;5424&#x22; width=&#x22;32&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;black&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;30&#x22; x=&#x22;14560&#x22; y=&#x22;5440&#x22; fill=&#x22;white&#x22;>M</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14560&#x22; y=&#x22;5420&#x22;>rec[84]</text>
<rect x=&#x22;14608&#x22; y=&#x22;48&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;14784&#x22; y=&#x22;64&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;14784&#x22; y=&#x22;44&#x22;>D0 = rec[0]*rec[1]*rec[2]*rec[3]</text>
<rect x=&#x22;14992&#x22; y=&#x22;48&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;64&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;44&#x22;>D1 = rec[0]*rec[2]*rec[4]*rec[5]</text>
<rect x=&#x22;14992&#x22; y=&#x22;304&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;320&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;300&#x22;>D2 = rec[4]*rec[5]*rec[6]*rec[7]</text>
<rect x=&#x22;14992&#x22; y=&#x22;432&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;448&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;428&#x22;>D3 = rec[6]*rec[7]*rec[8]*rec[9]</text>
<rect x=&#x22;14992&#x22; y=&#x22;752&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;768&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;748&#x22;>D4 = rec[11]*rec[13]*rec[14]*rec[16]</text>
<rect x=&#x22;14992&#x22; y=&#x22;688&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;704&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;684&#x22;>D5 = rec[10]*rec[11]*rec[12]*rec[14]</text>
<rect x=&#x22;14992&#x22; y=&#x22;816&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;832&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;812&#x22;>D6 = rec[12]*rec[14]*rec[15]*rec[16]</text>
<rect x=&#x22;14992&#x22; y=&#x22;176&#x22; width=&#x22;608&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15296&#x22; y=&#x22;192&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15296&#x22; y=&#x22;172&#x22;>D7 = rec[2]*rec[3]*rec[5]*rec[6]*rec[8]*rec[10]*rec[11]*rec[13]</text>
<rect x=&#x22;14992&#x22; y=&#x22;1136&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15168&#x22; y=&#x22;1152&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15168&#x22; y=&#x22;1132&#x22;>D8 = rec[17]*rec[18]*rec[19]*rec[20]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1136&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1152&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1132&#x22;>D9 = rec[17]*rec[19]*rec[21]*rec[22]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1392&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1408&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1388&#x22;>D10 = rec[21]*rec[22]*rec[23]*rec[24]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1520&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1536&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1516&#x22;>D11 = rec[23]*rec[24]*rec[25]*rec[26]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1840&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1856&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1836&#x22;>D12 = rec[28]*rec[30]*rec[31]*rec[33]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1776&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1792&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1772&#x22;>D13 = rec[27]*rec[28]*rec[29]*rec[31]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1904&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;1920&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;1900&#x22;>D14 = rec[29]*rec[31]*rec[32]*rec[33]</text>
<rect x=&#x22;15632&#x22; y=&#x22;1264&#x22; width=&#x22;608&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15936&#x22; y=&#x22;1280&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15936&#x22; y=&#x22;1260&#x22;>D15 = rec[19]*rec[20]*rec[22]*rec[23]*rec[25]*rec[27]*rec[28]*rec[30]</text>
<rect x=&#x22;15632&#x22; y=&#x22;2224&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;15808&#x22; y=&#x22;2240&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;15808&#x22; y=&#x22;2220&#x22;>D16 = rec[34]*rec[35]*rec[36]*rec[37]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2224&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;2240&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2220&#x22;>D17 = rec[34]*rec[36]*rec[38]*rec[39]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2480&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;2496&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2476&#x22;>D18 = rec[38]*rec[39]*rec[40]*rec[41]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2608&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;2624&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2604&#x22;>D19 = rec[40]*rec[41]*rec[42]*rec[43]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2928&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;2944&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2924&#x22;>D20 = rec[45]*rec[47]*rec[48]*rec[50]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2864&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;2880&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2860&#x22;>D21 = rec[44]*rec[45]*rec[46]*rec[48]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2992&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;3008&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;2988&#x22;>D22 = rec[46]*rec[48]*rec[49]*rec[50]</text>
<rect x=&#x22;16272&#x22; y=&#x22;2352&#x22; width=&#x22;608&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16576&#x22; y=&#x22;2368&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16576&#x22; y=&#x22;2348&#x22;>D23 = rec[36]*rec[37]*rec[39]*rec[40]*rec[42]*rec[44]*rec[45]*rec[47]</text>
<rect x=&#x22;16272&#x22; y=&#x22;3312&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;16448&#x22; y=&#x22;3328&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;16448&#x22; y=&#x22;3308&#x22;>D24 = rec[51]*rec[52]*rec[53]*rec[54]</text>
<rect x=&#x22;16912&#x22; y=&#x22;3312&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;3328&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;3308&#x22;>D25 = rec[51]*rec[53]*rec[55]*rec[56]</text>
<rect x=&#x22;16912&#x22; y=&#x22;3568&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;3584&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;3564&#x22;>D26 = rec[55]*rec[56]*rec[57]*rec[58]</text>
<rect x=&#x22;16912&#x22; y=&#x22;3696&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;3712&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;3692&#x22;>D27 = rec[57]*rec[58]*rec[59]*rec[60]</text>
<rect x=&#x22;16912&#x22; y=&#x22;4016&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;4032&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;4012&#x22;>D28 = rec[62]*rec[64]*rec[65]*rec[67]</text>
<rect x=&#x22;16912&#x22; y=&#x22;3952&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;3968&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;3948&#x22;>D29 = rec[61]*rec[62]*rec[63]*rec[65]</text>
<rect x=&#x22;16912&#x22; y=&#x22;4080&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;4096&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;4076&#x22;>D30 = rec[63]*rec[65]*rec[66]*rec[67]</text>
<rect x=&#x22;16912&#x22; y=&#x22;3440&#x22; width=&#x22;608&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17216&#x22; y=&#x22;3456&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17216&#x22; y=&#x22;3436&#x22;>D31 = rec[53]*rec[54]*rec[56]*rec[57]*rec[59]*rec[61]*rec[62]*rec[64]</text>
<rect x=&#x22;16912&#x22; y=&#x22;4400&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17088&#x22; y=&#x22;4416&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17088&#x22; y=&#x22;4396&#x22;>D32 = rec[68]*rec[69]*rec[70]*rec[71]</text>
<rect x=&#x22;17552&#x22; y=&#x22;4400&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;4416&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;4396&#x22;>D33 = rec[68]*rec[70]*rec[72]*rec[73]</text>
<rect x=&#x22;17552&#x22; y=&#x22;4656&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;4672&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;4652&#x22;>D34 = rec[72]*rec[73]*rec[74]*rec[75]</text>
<rect x=&#x22;17552&#x22; y=&#x22;4784&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;4800&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;4780&#x22;>D35 = rec[74]*rec[75]*rec[76]*rec[77]</text>
<rect x=&#x22;17552&#x22; y=&#x22;5104&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;5120&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;5100&#x22;>D36 = rec[79]*rec[81]*rec[82]*rec[84]</text>
<rect x=&#x22;17552&#x22; y=&#x22;5040&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;5056&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;5036&#x22;>D37 = rec[78]*rec[79]*rec[80]*rec[82]</text>
<rect x=&#x22;17552&#x22; y=&#x22;5168&#x22; width=&#x22;352&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17728&#x22; y=&#x22;5184&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17728&#x22; y=&#x22;5164&#x22;>D38 = rec[80]*rec[82]*rec[83]*rec[84]</text>
<rect x=&#x22;17552&#x22; y=&#x22;4528&#x22; width=&#x22;608&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17856&#x22; y=&#x22;4544&#x22;>DETECTOR</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17856&#x22; y=&#x22;4524&#x22;>D39 = rec[70]*rec[71]*rec[73]*rec[74]*rec[76]*rec[78]*rec[79]*rec[81]</text>
<rect x=&#x22;17552&#x22; y=&#x22;112&#x22; width=&#x22;416&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17760&#x22; y=&#x22;128&#x22;>OBS_INCLUDE(0)</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17760&#x22; y=&#x22;108&#x22;>L0 *= rec[1]*rec[3]*rec[10]*rec[12]*rec[15]</text>
<rect x=&#x22;17552&#x22; y=&#x22;1200&#x22; width=&#x22;416&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17760&#x22; y=&#x22;1216&#x22;>OBS_INCLUDE(1)</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17760&#x22; y=&#x22;1196&#x22;>L1 *= rec[18]*rec[20]*rec[27]*rec[29]*rec[32]</text>
<rect x=&#x22;17552&#x22; y=&#x22;2288&#x22; width=&#x22;416&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17760&#x22; y=&#x22;2304&#x22;>OBS_INCLUDE(2)</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17760&#x22; y=&#x22;2284&#x22;>L2 *= rec[35]*rec[37]*rec[44]*rec[46]*rec[49]</text>
<rect x=&#x22;17552&#x22; y=&#x22;3376&#x22; width=&#x22;416&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17760&#x22; y=&#x22;3392&#x22;>OBS_INCLUDE(3)</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17760&#x22; y=&#x22;3372&#x22;>L3 *= rec[52]*rec[54]*rec[61]*rec[63]*rec[66]</text>
<rect x=&#x22;17552&#x22; y=&#x22;4464&#x22; width=&#x22;416&#x22; height=&#x22;32&#x22; stroke=&#x22;black&#x22; fill=&#x22;lightgray&#x22;/>
<text dominant-baseline=&#x22;central&#x22; text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;16&#x22; x=&#x22;17760&#x22; y=&#x22;4480&#x22;>OBS_INCLUDE(4)</text>
<text text-anchor=&#x22;middle&#x22; font-family=&#x22;monospace&#x22; font-size=&#x22;8&#x22; x=&#x22;17760&#x22; y=&#x22;4460&#x22;>L4 *= rec[69]*rec[71]*rec[78]*rec[80]*rec[83]</text>
<path d=&#x22;M14404,40 L14404,32 L18172,32 L18172,40 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
<path d=&#x22;M14404,5496 L14404,5504 L18172,5504 L18172,5496 &#x22; stroke=&#x22;black&#x22; fill=&#x22;none&#x22;/>
</svg>
</div>
</div>
</div>
<script>
(function() {
var wrap = document.querySelector('[data-tsim-zoom=&#x22;tsim-zoom-004&#x22;]');
if (!wrap || wrap.dataset.tsimZoomInit) return;
wrap.dataset.tsimZoomInit = &#x22;1&#x22;;
var size = wrap.firstElementChild;
var xform = size.firstElementChild;
var natW = 18208.0;
var natH = 5536.0;
var scale = 0.09031791907514451;
var cw = wrap.clientWidth;
if (cw > 0 && natW > 0) {
/* keep height-fit initial scale */
}
function apply() {
xform.style.transform = 'scale(' + scale + ')';
size.style.width = (natW * scale) + 'px';
size.style.height = (natH * scale) + 'px';
}
apply();
wrap.addEventListener('wheel', function(e) {
if (e.ctrlKey || e.metaKey) {
e.preventDefault();
var rect = wrap.getBoundingClientRect();
var mx = e.clientX - rect.left + wrap.scrollLeft;
var my = e.clientY - rect.top + wrap.scrollTop;
var factor = Math.exp(-e.deltaY * 0.01);
var newScale = Math.min(Math.max(0.02, scale * factor), 40);
var ratio = newScale / scale;
scale = newScale;
apply();
wrap.scrollLeft = mx * ratio - (e.clientX - rect.left);
wrap.scrollTop = my * ratio - (e.clientY - rect.top);
}
}, { passive: false });
})();
</script></body></html>"
  width="100%"
  height="504"
  style={{border: "1px solid #eee", borderRadius: "0.5rem"}}
  title="Circuit diagram 4"
  loading="lazy"
/>

## The fully encoded protocol

The full circuit now contains 85 qubits: 5 logical qubits, constructed from 17 physical qubits each.

Let us summarize the protocol we are going to simulate:

* **Prepare 5 encoded magic states at 97% fidelity.** The input magic states are noisy, and we assume the encoding process to be noiseless. While this is a simplification for this tutorial, it does not introduce any qualitative changes. We can think of this as an abstract preparation protocol that produces 5 encoded magic states, each with 97% fidelity.
* **Distill 5 encoded magic states into a single logical qubit.** We use the transversal encoding of the distillation circuit shown above. This includes depolarization noise with strength `noise`.
* **Perform post-selection** We will perform two stages of post-selection: (a) post-select on perfect stabilizers, and (b) post-select on the \[1,0,1,1] distillation syndrome of logical bits.
* **Quantum state tomography** We will perform quantum state tomography on the output logical qubit to estimate its magic state fidelity.

```python theme={null}
def sample_and_post_select(circ: tsim.Circuit, shots: int = 35_000):
    sampler = circ.compile_detector_sampler(seed=42)

    det_samples, obs_samples = sampler.sample(
        shots=shots, batch_size=shots, separate_observables=True
    )

    # post-select on perfect stabilizers
    perfect_stabilizers = np.all(det_samples == 0, axis=1)
    obs_samples = obs_samples[perfect_stabilizers]

    post_selected_observables = post_select(obs_samples)
    p1 = np.count_nonzero(post_selected_observables) / len(post_selected_observables)
    eval = 1 - 2 * p1
    print(
        f"Expectation value: {eval:.4f}, percentage kept: {len(post_selected_observables) / shots * 100:.2f}%"
    )
    return eval
```

```python theme={null}
circ_x, circ_y, circ_z = (
    make_circuit("X", p, p / 5),
    make_circuit("Y", p, p / 5),
    make_circuit("Z", p, p / 5),
)
vx = sample_and_post_select(circ_x)
vy = sample_and_post_select(circ_y)
vz = sample_and_post_select(circ_z)
```

```text title="Output" theme={null}
Expectation value: 0.5935, percentage kept: 1.05%


Expectation value: 0.5625, percentage kept: 1.19%


Expectation value: 0.5869, percentage kept: 1.13%
```

It would be impossible to simulate an 85-qubit circuit using a state vector simulator. But with Tsim, we can compute hundreds of thousands of shots in a few seconds.

Finally, we construct a density matrix from the measured logical expectation values:

```python theme={null}
id = np.eye(2)
x = np.array([[0, 1], [1, 0]])
y = np.array([[0, -1j], [1j, 0]])
z = np.array([[1, 0], [0, -1]])

rho = (id + vx * x + vy * y + vz * z) / 2
```

Next, we compute a statevector for the expected magic state:

```python theme={null}
a = theta * np.pi
rx = np.array(
    [[np.cos(a / 2), -1j * np.sin(a / 2)], [-1j * np.sin(a / 2), np.cos(a / 2)]]
)
t_dag = np.array([[1, 0], [0, np.exp(-1j * np.pi / 4)]])
psi_expected = t_dag @ rx @ np.array([1, 0])
```

Then, we compute the fidelity as $\langle\psi_{expected}|\rho|\psi_{expected}\rangle$:

```python theme={null}
fidelity = psi_expected.conj().T @ rho @ psi_expected
print(f"Infidelity: {1 - fidelity.real:.5f}")
```

```text title="Output" theme={null}
Infidelity: -0.00313
```

We find that the overall fidelity has been increased from 97% of the individual encoded magic states to 99% of the output logical qubit, despite the presence of noise in the distillation circuit. This is an exciting result of quantum error correction!

This concludes our tutorial. We have learned:

* how to model noisy magic states and **simulate fidelities** using Tsim
* how to perform **magic state distillation** and **post-selection**
* how to **encode a distillation circuit** using the \[17,1,5] color code
* how to **simulate hundreds of thousands of shots** of this 85-qubit circuit within seconds on a laptop
* how magic state distillation can improve the fidelity of noisy magic states, **even when the distillation circuit is noisy itself**
