提交 3572e147 编写于 作者: G Grygielski

Add oneDNN GRU docs

上级 d5e19b96
# Design Doc: oneDNN GRU operator
## Difference between PP and oneDNN GRU operator
### FC + GRU fuse pass implementation
PaddlePaddle framework has different meaning of GRU operator than oneDNN. In PP, Fully Connected layer is applied first to input data and then result is fed into GRU operator, where in oneDNN both operations are handled inside execution of GRU primitive.
To bypass this issue, PP `fusion_gru` operator is used as a base for oneDNN kernel. Therefore fuse pass is needed to convert `fc` + `gru` into `fusion_gru` operator. There are 2 such passes: `mul_gru_fuse_pass` and `fc_gru_fuse_pass` that handle both cases, with and without a bias.
![](images/fc_gru_fuse_pass.svg)
Note: `GRU` operator can have `h0` input which is optional. This input is not forwarded to `fusion_gru` inside these passes because it was not used in any evaluated model. However it should be implemented and handled properly inside `fusion_gru` oneDNN code in the future.
### Input/Output representation
The main difference between PP and oneDNN in terms of RNN is sentence data representation. This data for PP is stored in 2D LoD Tensors with dimensions: `[Words, Channels]` and correspondence of these words to sentences are coded inside LoD info. On the other hand, oneDNN expects data tensors to be 3-dimensional with shape: `[Words, Sentences, Channels]`. This creates assumption that all sentences are of equal length which is not true for PP data. Workaround for that is described later in this document.
![](images/input_difference.svg)
### Different tensor memory arrangement
Another difference is with memory arrangement of WeightH tensor. For PP `GRU` operator it has `[OC, 2*OC]` + `[OC, OC]` concatenated together. First part is responsible for `reset/update gate` and second for `output gate`. In oneDNN kernel, these weights are grouped together in `[OC, 3, OC]` tensor thus it needs custom reorder.
### Origin mode
In PaddlePaddle, `GRU` operator can operate in two modes with slightly different formulas for calculating new hidden state. It is managed by `origin_mode` attribute. However, oneDNN can only perform calculations for the formula with `origin_mode == true`.
* Origin mode == true:
![](images/eq_origin_mode_true.svg)
* Origin mode == false:
![](images/eq_origin_mode_false.svg)
This problem can be addressed by modifying particular parts of weights and bias. More precisely, we can multiply in `WeightX`, `WeightH` and `Bias` part responsible for `update gate` by `-1`. By doing that we get `origin_mode==false` formula from original weights.
Proof:
![](images/eq_proof.svg)
### Activation functions
PaddlePaddle allows user to choose activation functions for update/reset gate and output gate. However, oneDNN supports only default `sigmoid` activation for gates and `tanh` for output. Currently oneDNN operator throws an error when user tries to execute it with other activations.
## oneDNN GRU operator
oneDNN `GRU` operator is based on Paddle Paddle `fusion_gru` operator. It uses primitive/memory caching mechanism called `AcquireAPI`. Handler containg 2 caching key, one dependent on sentence length used in caching input/output and primitive. The other key (`memory_key`) depends only on other, not changing during inference, parameters and is used to cache weights and bias memory.
### Dimensions in oneDNN RNN primitives
* T - length of each sentence in a batch
* N - number of sentences in a batch
* IC - number of input channels
* OC - number of output channels
* L - number of layers (PaddlePaddle does not support stacked GRU layers, thus this dimension is always 1)
* D - number of directions (currently bidirectional GRU is not supported due to limitations described at the bottom of this document, therefore this dimension is always 1)
* G - number of gates in the recurrent unit (for GRU this dimension is 3)
### Input/Output Tensors
#### Inputs
* X - input with a batch of sentences \
**PP**: Original input tensor in PaddlePaddle is of size `(Words, IC)` with LoD information about belonging of words to consecutive sentences.\
**oneDNN**: Expects tensor of size `(T, N, IC)` with memory aligmnent either `TNC` or `NTC`. Name: `src_layer`
* H0 - initial hidden state (optional) \
**PP**: Tensor of size `(N, OC)`.\
**oneDNN**: Expects tensor of size `(L, D, N, OC)` which is `(1, 1, N, OC)` size in non-stacked, single direction case. Therefore it does not need reorder. Name: `src_iter`
* WeightX - input weights of each gate \
**PP**: Tensor of size `(IC, 3*OC)`.\
**oneDNN**: Expects tensor of size `(L, D, IC, G, OC)` which is `(1, 1, IC, 3, OC)` in non-stacked, single direction GRU case. Therefore it does not need reorder. Name: `weights_layer`
* WeightH - hidden weights of each gate \
**PP**: Tensor claimed to be of size `(OC, 3*OC)` which for real is `(OC, 2*OC)` + (OC, OC).\
**oneDNN**: Expects tensor of size `(L, D, OC, G, OC)` which is `(1, 1, OC, 3, OC)` in non-stacked, single direction GRU case. It needs custom reorder due to unusual data alignment in PP tensor. Name: `weights_iter`
* Bias - bias of each gate (optional)\
**PP**: Tensor of size `(1, 3*OC)`.\
**oneDNN**: Expects tensor of size `(L, D, G, OC)` which is `(1, 1, 3, OC)` in non-stacked, single direction GRU case. Therefore it does not need reorder. However, bias has to be passed to oneDNN kernel so it has to be initialized with 0s if user does not provide it. Name: `bias`
#### Outputs
* Hidden - main output of the GRU cell \
**oneDNN**: Tensor of size `(T, N, IC)` with memory alignment either `TNC` or `NTC`\
**PP**: PaddlePaddle LoD Tensor of size (Words, IC) and LoD information about sentences the same as for input. Name: `dst_layer`
* ReorderedH0 - not supported
* XX - not supported
* BatchedInput - not supported
* BatchedOut - not supported
### Attributes
* activation - activation function used in output gate. oneDNN kernel supports only `tanh`.
* gate_activation - activation function used in reset and update gate. oneDNN kernel supports only `sigmoid`.
* is_reverse - whether GRU should be computed from left to right (`is_reverse==false`) or right to left (`is_reverse==true`) on the sentence level.
* use_seq - not supported (not used anymore?).
* origin_mode - whether to use original GRU formula (https://arxiv.org/abs/1412.3555)
* use_mkldnn - switch on using oneDNN kernel instead of plain CPU kernel.
### Required reorders
* PaddlePaddle Input LoD -> oneDNN TNC/NTC\
Every time before executing `GRU`, each batch represented by PP tensor has to be converted into oneDNN tensor representation. It is done first by calculating length of the longest sentence in a batch to get `T` dimension and then creating oneDNN memory (or getting it from oneDNN cache). After that, based on the memory format chosen by oneDNN GRU primitive: `TNC` or `NTC` correct custom reorder is called.\
\
Because oneDNN assumes that all sentences are of equal length, before reorder, whole memory is set to 0 to add padding. Placement of this padding is also dependent on computation direction that is defined by `is_reverse` attribute. To get correct resuts, is computation is from left to right, the padding has to be on the right side of words. On the contrary, for right to left computation, it has to be on the left side.
![](images/input_is_reverse.svg)
* PaddlePaddle WeightX -> oneDNN WeightX\
WeightX does not need custom reorders because memory arrangement is the same for both PP and oneDNN. However, it has to be modified if `origin_mode==false` by mulitplying update gate part by `-1`. At the end, oneDNN reorder is called to convert weights to correct type and strides selected by primitive.
* PaddlePaddle WeightH -> oneDNN WeightH\
WeightH tensor has different representation in PP and oneDNN. PaddlePaddle stores it as 2 connected blocks of memory, where first contains reset and update gate recurrent weights, and second stores output gate recurrent weights. In oneDNN, these weights are stored in a single memory block of size `[OC, 3, OC]`. Therefore, custom reorder is needed here. After that, if `origin_mode==false`, update gate part is multiplied by `-1`. At the end, oneDNN reorder is called to convert weights to correct type and strides selected by primitive.
![](images/different_tensor_memory_arrangement.svg)
* PaddlePaddle Bias -> oneDNN Bias\
Bias does not require reorder from PP to oneDNN. However, if it is not provided by user, it has to be created and filled with `0.0f` because oneDNN requires it. If it was provided, it has to be modified when `origin_mode==false` by mulitplying update gate part by `-1`. Note: bias is always of `float` data type, even in `int8` and `bfloat16` kernels.
* oneDNN TNC/NTC -> PaddlePaddle Output LoD\
After execution of oneDNN GRU primitive, output tensor has to be converted back to PP representation. It is done in the same way as input reorder but in a reverse manner.
## Pass order problem
Generally, `mkldnn_placement_pass` is called at the beginning of all passes to set `use_mkldnn` attribute to true in all supported operator. However, standard PP `gru` operator does not have `use_mkldnn` attribute so it is not set and later, when fused to `fusion_gru` it also does not have it set. Current solution for that problem is to call `mkldnn_placement_pass` once again somewhere after pass fusing gru. Note: calling placement pass at the end can break other oparators that are conditionally used with oneDNN (`FC` for example) so be aware of that.
## Bidirectional GRU
oneDNN kernel supports `bidirectional` calculations with `sum` or `concat`. It means that primitive calculates both directions `right2left` and `left2right` and then sums/concatenates both outputs. It was implemented in PP as a PoC but had some harsh limitations. Both directions were calculated on the same input, therefore padding input with 0s yield to wrong results. The only scenario when this worked fine were if all sentences in a batch were of equal length or simply `BatchSize==1`. It happened to be so rare scenario that development of bidirectional gru has been postponed.
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1031px" height="1085px" viewBox="-0.5 -0.5 1031 1085" content="&lt;mxfile host=&quot;app.diagrams.net&quot; modified=&quot;2020-09-02T10:38:38.191Z&quot; agent=&quot;5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36&quot; etag=&quot;g4r9YL4v8rVObzV8KohK&quot; version=&quot;13.6.5&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;VHzR14PZYC2aSVYtKepw&quot; name=&quot;Page-1&quot;&gt;7Z1fj5s4EMA/TR5bYUMceNw/vbaq2u51VVXqy4kNToIKcY6QTfY+/RkCBIxJtikMFnhfNhkTE/ybwcPM2JmYd+HhfeRuVp+ZR4MJNrzDxLyfYIwNE/F/ieTlKEHIMY6SZeR7mewkePT/o5kwP2zne3RbOTBmLIj9TVU4Z+s1nccVmRtFbF89bMGC6lk37pLWBI9zN6hLf/hevDpK7alxkn+g/nKVnxkZWUvo5gdngu3K9di+JDLfTcy7iLH4+Co83NEgGb18XI6f+6uhtfhiEV3Hr/nAp5eb/T9/h/fvDg6mH2e39k/z5U3Wy7Mb7LILnmAS8P5un/iLZfIiFywYPw+/jPglGxvy747lDW+2KbkbfgD/TodTY96Lj74xlHfFv+Sxt+oZuLh0Vlw5GY7Ybu3R5FoQb96v/Jg+btx50rrnusdlqzgMsuaFHwR3LGBR+lnTm1Lbs7h8G0fsFy212PjJJKQ43zONYnpoHGBUYOMKT1lI4+iFH5J9wM5AZ6pevN+X9CYTrUoqk8vcTFOXRccnmPxFxvM32GJItnjYbBFRDK4JB/d7j4brUnsxl8Elc5s+LdqBiy3F4FqQcPuzXBC4JlYNbvOcm8PMvaAcF6qTKynEZfiWFP7DA2/6kV7yh/Q4Ge8G1RDUgOOJq6yrTNdsTQUFyERu4C/X/O2c46RcfpvA9rn/dZM1hL7nJaeRKtdJ/Yx2tEW4EyBcVxYTSbTF6kxbmmdxWG3huO6/fNF6ItUTIrmpFMfA6AmcQ4DH5smbpO8pA84hwKNz5funO4WjOzpfvn+6BJLuyJz5/unOwOiir/3ZLkX83jyT0XXIzHRbujNPlXtUsyHp9ma7MHSJoRpdB+7OPDrb7f3OnGdoYOiOzHb7p3s5iHYdzJqOfKNbmvS3dGOqQx8lppkqWFZdFYpHLJDQx7Q59NGyLnzfeKkWaGVoetxSQBuaYyUta8PXXbzZ6VvDGSdAAW2QxVaE4adr7yapFEnGMXC3W38ug5FXf5jFUFGvVjpycaBKAzGVjEMui2jgxv5ztXvZ4GRneGB+qtry6HRtGt6yXTSn2YdOI3ypH0vEFLvRksa1flJSxUX/Abzm0EnLpvxRmy9vmYk+vCT7JUtqdOflyaIrg7desY7IdN5ixyj+8LW2/Fvddm3azZGVtmdpbdoJbYE+cjh92zn9kZqly57nupunZbGYwVt6LeAp2KR1pa2T+i0E1LpzF09bN5DfTdS2boLHaN2iO3W1Gy52BO2HE7AAi/bD01bBDTd7dsNJc4ECbA3aBDcE1EemIJZY5CCJs4BWnxHANPjYqs+mfedaCGAWfHTVZ/3ThcuCj28lSe90Z3BZ8PEtJemfLtzyzeEXfYsB0v7pyp6addX3lXRV86pmgAs2Bj/vigGw/ukCrtgY/LxLlPOq4FZsDL/qW4xu9k8XbsXG8Ku+beW8KrhQ1fCrvm3lvCq4WNXwq74d5byq5lhV61XfbvJtQhqydETcKHLXSxqmI6eXwJcp58ohKRbDM4l2dJaEQEhnITrLQtiW8TYPN/Vl/gjpTER3mQg1COtsRHfZCCUI59OEzki0QFjMSKhBWGclOpuGHawCYAwJeGTTsBqEdXKiu2lYDcI6QdHdNKwGYZ2kaC8UJhYHqOFo6URFi4RVDHhgnazozobVuEvrhEV3NqwGYcCkhd6q5tzDMzIMqT7AbkmBzOYImN6vBni/GlVUAmw7K71pzSW3QBWVkAXZBAbDWzN7JmPxh5vXVLACLZxFpizKMniI4pMUH3ij9De9jqdY41tUloHBvLwMVu9q0OZcLejR7JXlRx3ek8Fceb0Q/njPrlq8I52YQdfCozP7C7YedBtbdhPJfm8H9mldumGgLjG60n7FfWkU4AsYMx9dZlMFvoA1oKPLa6rAFzBePvjpt7ZvmAJ8AX+UYfDzr7hwUgG+Z7YGbJ3v4OdfcemkCnwBiz8HP/+KiydV4Ivh/KvRVSSowBfwh8VHV4+gAl/Aus/B26+4/FkFvoA/Jjp4+xUXQKvAF+w3MfQS6Ff4Z1X1MGQ/A97SGmj+NmIJsaLtPb+q1Wfm0eSI/wE=&lt;/diagram&gt;&lt;/mxfile&gt;" style="background-color: rgb(255, 255, 255);"><defs/><g><rect x="70" y="164" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro1</font></b></div></div></div></foreignObject><text x="110" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro1</text></switch></g><rect x="150" y="164" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro2</font></b></div></div></div></foreignObject><text x="190" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro2</text></switch></g><rect x="230" y="164" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo1</font></b></div></div></div></foreignObject><text x="270" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo1</text></switch></g><rect x="310" y="164" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo2</font></b></div></div></div></foreignObject><text x="350" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo2</text></switch></g><rect x="30" y="4" width="310" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 308px; height: 1px; padding-top: 24px; margin-left: 31px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">PP WeightH:</b></font></div></div></div></foreignObject><text x="185" y="28" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">PP WeightH:</text></switch></g><rect x="30" y="564" width="240" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 238px; height: 1px; padding-top: 584px; margin-left: 31px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">oneDNN:</b></font></div></div></div></foreignObject><text x="150" y="588" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">oneDNN:</text></switch></g><rect x="70" y="244" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro1</font></b></div></div></div></foreignObject><text x="110" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro1</text></switch></g><rect x="150" y="244" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro2</font></b></div></div></div></foreignObject><text x="190" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro2</text></switch></g><rect x="230" y="244" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo1</font></b></div></div></div></foreignObject><text x="270" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo1</text></switch></g><rect x="310" y="244" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo2</font></b></div></div></div></foreignObject><text x="350" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo2</text></switch></g><rect x="510" y="164" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 511px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo1</font></b></div></div></div></foreignObject><text x="550" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo1</text></switch></g><rect x="590" y="164" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 204px; margin-left: 591px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo2</font></b></div></div></div></foreignObject><text x="630" y="208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo2</text></switch></g><rect x="510" y="244" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 511px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo1</font></b></div></div></div></foreignObject><text x="550" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo1</text></switch></g><rect x="590" y="244" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 284px; margin-left: 591px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo2</font></b></div></div></div></foreignObject><text x="630" y="288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo2</text></switch></g><rect x="70" y="324" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 344px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Reset gate</b></font></div></div></div></foreignObject><text x="150" y="348" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Reset gate</text></switch></g><rect x="230" y="324" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 344px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Update gate</b></font></div></div></div></foreignObject><text x="310" y="348" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Update gate</text></switch></g><rect x="510" y="324" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 344px; margin-left: 511px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Output gate</b></font></div></div></div></foreignObject><text x="590" y="348" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Output gate</text></switch></g><path d="M 30 164 L 30 313.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 30 320.65 L 25.5 311.65 L 30 313.9 L 34.5 311.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="710" y="204" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 244px; margin-left: 711px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>I</b></font></div></div></div></foreignObject><text x="730" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">I</text></switch></g><path d="M 70 123.29 L 379.9 123.29" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 386.65 123.29 L 377.65 127.79 L 379.9 123.29 L 377.65 118.79 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="190" y="83.29" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 103px; margin-left: 191px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>O</b></font></div></div></div></foreignObject><text x="230" y="107" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">O</text></switch></g><path d="M 510 123.29 L 659.9 123.02" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 666.65 123.01 L 657.65 127.52 L 659.9 123.02 L 657.64 118.52 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="550" y="83.29" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 103px; margin-left: 551px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>O</b></font></div></div></div></foreignObject><text x="590" y="107" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">O</text></switch></g><path d="M 710 164 L 710 313.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 710 320.65 L 705.5 311.65 L 710 313.9 L 714.5 311.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="0" y="214" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 254px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>I</b></font></div></div></div></foreignObject><text x="20" y="258" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">I</text></switch></g><rect x="430" y="224" width="40" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 244px; margin-left: 431px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">+</b></font></div></div></div></foreignObject><text x="450" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">+</text></switch></g><rect x="70" y="444" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro1</font></b></div></div></div></foreignObject><text x="110" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro1</text></switch></g><rect x="150" y="444" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro2</font></b></div></div></div></foreignObject><text x="190" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro2</text></switch></g><rect x="230" y="444" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo1</font></b></div></div></div></foreignObject><text x="270" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo1</text></switch></g><rect x="310" y="444" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo2</font></b></div></div></div></foreignObject><text x="350" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo2</text></switch></g><rect x="390" y="444" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 391px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro1</font></b></div></div></div></foreignObject><text x="430" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro1</text></switch></g><rect x="470" y="444" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 471px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro2</font></b></div></div></div></foreignObject><text x="510" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro2</text></switch></g><rect x="550" y="444" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 551px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo1</font></b></div></div></div></foreignObject><text x="590" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo1</text></switch></g><rect x="630" y="444" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 631px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo2</font></b></div></div></div></foreignObject><text x="670" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo2</text></switch></g><rect x="710" y="444" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 711px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo1</font></b></div></div></div></foreignObject><text x="750" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo1</text></switch></g><rect x="790" y="444" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 791px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo2</font></b></div></div></div></foreignObject><text x="830" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo2</text></switch></g><rect x="870" y="444" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 871px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo1</font></b></div></div></div></foreignObject><text x="910" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo1</text></switch></g><rect x="950" y="444" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 484px; margin-left: 951px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo2</font></b></div></div></div></foreignObject><text x="990" y="488" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo2</text></switch></g><rect x="70" y="404" width="270" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 268px; height: 1px; padding-top: 424px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Real memory arrangement:</b></font></div></div></div></foreignObject><text x="205" y="428" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Real memory arrangement:</text></switch></g><rect x="70" y="724.71" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro1</font></b></div></div></div></foreignObject><text x="110" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro1</text></switch></g><rect x="150" y="724.71" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro2</font></b></div></div></div></foreignObject><text x="190" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro2</text></switch></g><rect x="230" y="724.71" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo1</font></b></div></div></div></foreignObject><text x="270" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo1</text></switch></g><rect x="310" y="724.71" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo2</font></b></div></div></div></foreignObject><text x="350" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo2</text></switch></g><rect x="70" y="804.71" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro1</font></b></div></div></div></foreignObject><text x="110" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro1</text></switch></g><rect x="150" y="804.71" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro2</font></b></div></div></div></foreignObject><text x="190" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro2</text></switch></g><rect x="230" y="804.71" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo1</font></b></div></div></div></foreignObject><text x="270" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo1</text></switch></g><rect x="310" y="804.71" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo2</font></b></div></div></div></foreignObject><text x="350" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo2</text></switch></g><rect x="390" y="724.71" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 391px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo1</font></b></div></div></div></foreignObject><text x="430" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo1</text></switch></g><rect x="470" y="724.71" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 765px; margin-left: 471px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo2</font></b></div></div></div></foreignObject><text x="510" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo2</text></switch></g><rect x="390" y="804.71" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 391px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo1</font></b></div></div></div></foreignObject><text x="430" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo1</text></switch></g><rect x="470" y="804.71" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 845px; margin-left: 471px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo2</font></b></div></div></div></foreignObject><text x="510" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo2</text></switch></g><rect x="70" y="884.71" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Reset gate</b></font></div></div></div></foreignObject><text x="150" y="908" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Reset gate</text></switch></g><rect x="230" y="884.71" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Update gate</b></font></div></div></div></foreignObject><text x="310" y="908" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Update gate</text></switch></g><rect x="390" y="884.71" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 905px; margin-left: 391px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Output gate</b></font></div></div></div></foreignObject><text x="470" y="908" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Output gate</text></switch></g><path d="M 30 724.71 L 30 874.61" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 30 881.36 L 25.5 872.36 L 30 874.61 L 34.5 872.36 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><path d="M 70 684 L 539.9 684" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 546.65 684 L 537.65 688.5 L 539.9 684 L 537.65 679.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="270" y="644" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 664px; margin-left: 271px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>O</b></font></div></div></div></foreignObject><text x="310" y="668" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">O</text></switch></g><rect x="0" y="774.71" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 815px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>I</b></font></div></div></div></foreignObject><text x="20" y="818" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">I</text></switch></g><rect x="70" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro1</font></b></div></div></div></foreignObject><text x="110" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro1</text></switch></g><rect x="150" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 151px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Ro2</font></b></div></div></div></foreignObject><text x="190" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Ro2</text></switch></g><rect x="230" y="1004" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 231px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo1</font></b></div></div></div></foreignObject><text x="270" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo1</text></switch></g><rect x="310" y="1004" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 311px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Uo2</font></b></div></div></div></foreignObject><text x="350" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Uo2</text></switch></g><rect x="550" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 551px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro1</font></b></div></div></div></foreignObject><text x="590" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro1</text></switch></g><rect x="630" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 631px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Ro2</font></b></div></div></div></foreignObject><text x="670" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Ro2</text></switch></g><rect x="710" y="1004" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 711px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo1</font></b></div></div></div></foreignObject><text x="750" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo1</text></switch></g><rect x="790" y="1004" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 791px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Uo2</font></b></div></div></div></foreignObject><text x="830" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Uo2</text></switch></g><rect x="390" y="1004" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 391px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo1</font></b></div></div></div></foreignObject><text x="430" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo1</text></switch></g><rect x="470" y="1004" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 471px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i1Oo2</font></b></div></div></div></foreignObject><text x="510" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i1Oo2</text></switch></g><rect x="870" y="1004" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 871px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo1</font></b></div></div></div></foreignObject><text x="910" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo1</text></switch></g><rect x="950" y="1004" width="80" height="80" rx="12" ry="12" fill="#e1d5e7" stroke="#9673a6" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 951px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">i2Oo2</font></b></div></div></div></foreignObject><text x="990" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">i2Oo2</text></switch></g><rect x="70" y="964" width="270" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 268px; height: 1px; padding-top: 984px; margin-left: 71px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Real memory arrangement:</b></font></div></div></div></foreignObject><text x="205" y="988" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Real memory arrangement:</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://desk.draw.io/support/solutions/articles/16000042487" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg>
\ No newline at end of file
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.9.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='292.866929pt' height='87.151447pt' viewBox='-.239051 -.309026 292.866929 87.151447'>
<defs>
<path id='g5-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
<use id='g3-0' xlink:href='#g0-0' transform='scale(.694445)'/>
<path id='g0-0' d='M9.454143-3.299625C9.698028-3.299625 9.95626-3.299625 9.95626-3.586549S9.698028-3.873473 9.454143-3.873473H1.692851C1.448966-3.873473 1.190734-3.873473 1.190734-3.586549S1.448966-3.299625 1.692851-3.299625H9.454143Z'/>
<path id='g0-1' d='M2.75447-3.586549C2.75447-4.002589 2.410161-4.346897 1.994121-4.346897S1.233773-4.002589 1.233773-3.586549S1.578082-2.826201 1.994121-2.826201S2.75447-3.170509 2.75447-3.586549Z'/>
<path id='g0-3' d='M3.945204-6.125826C3.95955-6.326672 3.95955-6.670981 3.586549-6.670981C3.35701-6.670981 3.170509-6.48448 3.213548-6.29798V-6.111479L3.414395-3.887819L1.578082-5.222015C1.448966-5.293746 1.420273-5.322439 1.31985-5.322439C1.119003-5.322439 .932503-5.121592 .932503-4.920745C.932503-4.691206 1.075965-4.633821 1.219427-4.56209L3.256586-3.586549L1.276811-2.625354C1.047272-2.510584 .932503-2.453199 .932503-2.238007S1.119003-1.836313 1.31985-1.836313C1.420273-1.836313 1.448966-1.836313 1.807621-2.108891L3.414395-3.270933L3.199202-.860772C3.199202-.559502 3.457433-.487771 3.572203-.487771C3.744357-.487771 3.95955-.588194 3.95955-.860772L3.744357-3.270933L5.58067-1.936736C5.709786-1.865005 5.738478-1.836313 5.838902-1.836313C6.039748-1.836313 6.226249-2.03716 6.226249-2.238007C6.226249-2.453199 6.097133-2.52493 5.924979-2.611008C5.064207-3.041393 5.035515-3.041393 3.902165-3.572203L5.88194-4.533398C6.111479-4.648167 6.226249-4.705552 6.226249-4.920745S6.039748-5.322439 5.838902-5.322439C5.738478-5.322439 5.709786-5.322439 5.351131-5.049861L3.744357-3.887819L3.945204-6.125826Z'/>
<path id='g2-40' d='M4.662514 3.486126C4.662514 3.443087 4.662514 3.414395 4.418628 3.170509C2.984009 1.721543 2.180622-.645579 2.180622-3.572203C2.180622-6.355365 2.854893-8.751179 4.519052-10.44403C4.662514-10.573146 4.662514-10.601839 4.662514-10.644877C4.662514-10.730954 4.590783-10.759647 4.533398-10.759647C4.346897-10.759647 3.170509-9.726721 2.467546-8.320793C1.73589-6.871828 1.405927-5.336785 1.405927-3.572203C1.405927-2.295391 1.606774-.588194 2.352776 .946849C3.199202 2.668392 4.37559 3.600895 4.533398 3.600895C4.590783 3.600895 4.662514 3.572203 4.662514 3.486126Z'/>
<path id='g2-41' d='M4.045627-3.572203C4.045627-4.662514 3.902165-6.441442 3.098778-8.105601C2.252353-9.827144 1.075965-10.759647 .918157-10.759647C.860772-10.759647 .789041-10.730954 .789041-10.644877C.789041-10.601839 .789041-10.573146 1.032926-10.329261C2.467546-8.880295 3.270933-6.513173 3.270933-3.586549C3.270933-.803387 2.596661 1.592428 .932503 3.285279C.789041 3.414395 .789041 3.443087 .789041 3.486126C.789041 3.572203 .860772 3.600895 .918157 3.600895C1.104657 3.600895 2.281045 2.567969 2.984009 1.162042C3.715665-.30127 4.045627-1.850659 4.045627-3.572203Z'/>
<path id='g2-43' d='M5.724132-3.313971H9.683682C9.884529-3.313971 10.14276-3.313971 10.14276-3.572203C10.14276-3.84478 9.898875-3.84478 9.683682-3.84478H5.724132V-7.80433C5.724132-8.005177 5.724132-8.263409 5.465901-8.263409C5.193323-8.263409 5.193323-8.019523 5.193323-7.80433V-3.84478H1.233773C1.032926-3.84478 .774695-3.84478 .774695-3.586549C.774695-3.313971 1.01858-3.313971 1.233773-3.313971H5.193323V.645579C5.193323 .846426 5.193323 1.104657 5.451554 1.104657C5.724132 1.104657 5.724132 .860772 5.724132 .645579V-3.313971Z'/>
<path id='g2-49' d='M4.131704-9.195911C4.131704-9.525874 4.131704-9.54022 3.84478-9.54022C3.500472-9.152873 2.783162-8.622064 1.305504-8.622064V-8.206024C1.635466-8.206024 2.352776-8.206024 3.141817-8.579025V-1.104657C3.141817-.588194 3.098778-.41604 1.836313-.41604H1.391581V0C1.778928-.028692 3.170509-.028692 3.643934-.028692S5.494593-.028692 5.88194 0V-.41604H5.437208C4.174743-.41604 4.131704-.588194 4.131704-1.104657V-9.195911Z'/>
<path id='g2-61' d='M9.683682-4.648167C9.884529-4.648167 10.14276-4.648167 10.14276-4.906399C10.14276-5.178977 9.898875-5.178977 9.683682-5.178977H1.233773C1.032926-5.178977 .774695-5.178977 .774695-4.920745C.774695-4.648167 1.01858-4.648167 1.233773-4.648167H9.683682ZM9.683682-1.979775C9.884529-1.979775 10.14276-1.979775 10.14276-2.238007C10.14276-2.510584 9.898875-2.510584 9.683682-2.510584H1.233773C1.032926-2.510584 .774695-2.510584 .774695-2.252353C.774695-1.979775 1.01858-1.979775 1.233773-1.979775H9.683682Z'/>
<path id='g2-97' d='M5.537632-3.830434C5.537632-4.605129 5.537632-5.178977 4.906399-5.738478C4.404282-6.197557 3.758703-6.398403 3.127471-6.398403C1.951083-6.398403 1.047272-5.623709 1.047272-4.691206C1.047272-4.275166 1.31985-4.07432 1.649813-4.07432C1.994121-4.07432 2.238007-4.318205 2.238007-4.662514C2.238007-5.250708 1.721543-5.250708 1.506351-5.250708C1.836313-5.853248 2.52493-6.111479 3.098778-6.111479C3.758703-6.111479 4.605129-5.566324 4.605129-4.275166V-3.701318C1.721543-3.65828 .631233-2.453199 .631233-1.348542C.631233-.215193 1.951083 .143462 2.826201 .143462C3.773049 .143462 4.418628-.430386 4.691206-1.119003C4.748591-.444732 5.193323 .071731 5.810209 .071731C6.111479 .071731 6.943559-.129116 6.943559-1.276811V-2.080198H6.627942V-1.276811C6.627942-.459078 6.283634-.344309 6.082787-.344309C5.537632-.344309 5.537632-1.104657 5.537632-1.31985V-3.830434ZM4.605129-2.022814C4.605129-.616886 3.557857-.143462 2.94097-.143462C2.238007-.143462 1.649813-.659925 1.649813-1.348542C1.649813-3.24224 4.088666-3.414395 4.605129-3.443087V-2.022814Z'/>
<path id='g2-104' d='M6.384057-3.486126C6.384057-4.820322 6.384057-5.222015 6.054095-5.681093C5.638055-6.240595 4.963784-6.326672 4.476013-6.326672C3.24224-6.326672 2.668392-5.39417 2.467546-4.949438H2.453199V-9.95626L.459078-9.798452V-9.382412C1.43462-9.382412 1.549389-9.281989 1.549389-8.579025V-1.061618C1.549389-.41604 1.391581-.41604 .459078-.41604V0C.832079-.028692 1.606774-.028692 2.008467-.028692C2.424507-.028692 3.199202-.028692 3.572203 0V-.41604C2.654046-.41604 2.481892-.41604 2.481892-1.061618V-3.730011C2.481892-5.236361 3.471779-6.039748 4.361243-6.039748S5.451554-5.308092 5.451554-4.432974V-1.061618C5.451554-.41604 5.293746-.41604 4.361243-.41604V0C4.734245-.028692 5.508939-.028692 5.910633-.028692C6.326672-.028692 7.101367-.028692 7.474368 0V-.41604C6.757058-.41604 6.398403-.41604 6.384057-.846426V-3.486126Z'/>
<path id='g2-110' d='M6.384057-3.486126C6.384057-4.820322 6.384057-5.222015 6.054095-5.681093C5.638055-6.240595 4.963784-6.326672 4.476013-6.326672C3.084432-6.326672 2.539277-5.135938 2.424507-4.849014H2.410161V-6.326672L.459078-6.168864V-5.752824C1.43462-5.752824 1.549389-5.652401 1.549389-4.949438V-1.061618C1.549389-.41604 1.391581-.41604 .459078-.41604V0C.832079-.028692 1.606774-.028692 2.008467-.028692C2.424507-.028692 3.199202-.028692 3.572203 0V-.41604C2.654046-.41604 2.481892-.41604 2.481892-1.061618V-3.730011C2.481892-5.236361 3.471779-6.039748 4.361243-6.039748S5.451554-5.308092 5.451554-4.432974V-1.061618C5.451554-.41604 5.293746-.41604 4.361243-.41604V0C4.734245-.028692 5.508939-.028692 5.910633-.028692C6.326672-.028692 7.101367-.028692 7.474368 0V-.41604C6.757058-.41604 6.398403-.41604 6.384057-.846426V-3.486126Z'/>
<path id='g2-116' d='M2.410161-5.767171H4.432974V-6.18321H2.410161V-8.82291H2.094545C2.080198-7.474368 1.563735-6.097133 .258232-6.054095V-5.767171H1.477658V-1.778928C1.477658-.186501 2.539277 .143462 3.299625 .143462C4.203435 .143462 4.67686-.746002 4.67686-1.778928V-2.596661H4.361243V-1.807621C4.361243-.774695 3.945204-.172154 3.385702-.172154C2.410161-.172154 2.410161-1.506351 2.410161-1.750236V-5.767171Z'/>
<path id='g4-104' d='M2.859278-6.804483C2.859278-6.814446 2.859278-6.914072 2.729763-6.914072C2.500623-6.914072 1.77335-6.834371 1.514321-6.814446C1.43462-6.804483 1.325031-6.794521 1.325031-6.615193C1.325031-6.495641 1.414695-6.495641 1.564134-6.495641C2.042341-6.495641 2.062267-6.425903 2.062267-6.326276L2.032379-6.127024L.587796-.388543C.547945-.249066 .547945-.229141 .547945-.169365C.547945 .059776 .747198 .109589 .836862 .109589C.996264 .109589 1.155666-.009963 1.205479-.14944L1.39477-.9066L1.613948-1.803238C1.673724-2.022416 1.733499-2.241594 1.783313-2.470735C1.803238-2.530511 1.882939-2.859278 1.892902-2.919054C1.92279-3.008717 2.231631-3.566625 2.570361-3.835616C2.789539-3.995019 3.098381-4.184309 3.526775-4.184309S4.064757-3.845579 4.064757-3.486924C4.064757-2.948941 3.686177-1.863014 3.447073-1.255293C3.367372-1.026152 3.317559-.9066 3.317559-.707347C3.317559-.239103 3.666252 .109589 4.134496 .109589C5.070984 .109589 5.439601-1.344956 5.439601-1.424658C5.439601-1.524284 5.349938-1.524284 5.32005-1.524284C5.220423-1.524284 5.220423-1.494396 5.17061-1.344956C5.021171-.816936 4.702366-.109589 4.154421-.109589C3.985056-.109589 3.915318-.209215 3.915318-.438356C3.915318-.687422 4.004981-.926526 4.094645-1.145704C4.254047-1.574097 4.702366-2.759651 4.702366-3.337484C4.702366-3.985056 4.303861-4.403487 3.556663-4.403487C2.929016-4.403487 2.450809-4.094645 2.082192-3.636364L2.859278-6.804483Z'/>
<path id='g4-111' d='M4.672478-2.719801C4.672478-3.755915 3.975093-4.403487 3.078456-4.403487C1.743462-4.403487 .408468-2.988792 .408468-1.574097C.408468-.587796 1.075965 .109589 2.002491 .109589C3.327522 .109589 4.672478-1.265255 4.672478-2.719801ZM2.012453-.109589C1.58406-.109589 1.145704-.418431 1.145704-1.195517C1.145704-1.683686 1.404732-2.759651 1.723537-3.267746C2.221669-4.034869 2.789539-4.184309 3.068493-4.184309C3.646326-4.184309 3.945205-3.706102 3.945205-3.108344C3.945205-2.719801 3.745953-1.673724 3.367372-1.026152C3.01868-.448319 2.470735-.109589 2.012453-.109589Z'/>
<path id='g4-114' d='M.876712-.587796C.846824-.438356 .787049-.209215 .787049-.159402C.787049 .019925 .926526 .109589 1.075965 .109589C1.195517 .109589 1.374844 .029888 1.444583-.169365C1.464508-.209215 1.803238-1.564134 1.843088-1.743462C1.92279-2.072229 2.102117-2.769614 2.161893-3.038605C2.201743-3.16812 2.480697-3.636364 2.719801-3.855542C2.799502-3.92528 3.088418-4.184309 3.516812-4.184309C3.775841-4.184309 3.92528-4.064757 3.935243-4.064757C3.636364-4.014944 3.417186-3.775841 3.417186-3.516812C3.417186-3.35741 3.526775-3.16812 3.795766-3.16812S4.343711-3.39726 4.343711-3.755915C4.343711-4.104608 4.024907-4.403487 3.516812-4.403487C2.86924-4.403487 2.430884-3.915318 2.241594-3.636364C2.161893-4.084682 1.803238-4.403487 1.334994-4.403487C.876712-4.403487 .687422-4.014944 .597758-3.835616C.418431-3.496887 .288917-2.899128 .288917-2.86924C.288917-2.769614 .388543-2.769614 .408468-2.769614C.508095-2.769614 .518057-2.779577 .577833-2.998755C.747198-3.706102 .946451-4.184309 1.305106-4.184309C1.474471-4.184309 1.613948-4.104608 1.613948-3.726027C1.613948-3.516812 1.58406-3.407223 1.454545-2.889166L.876712-.587796Z'/>
<path id='g4-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
<path id='g4-117' d='M3.486924-.557908C3.596513-.14944 3.945205 .109589 4.373599 .109589C4.722291 .109589 4.951432-.119552 5.110834-.438356C5.280199-.797011 5.409714-1.404732 5.409714-1.424658C5.409714-1.524284 5.32005-1.524284 5.290162-1.524284C5.190535-1.524284 5.180573-1.484433 5.150685-1.344956C5.011208-.787049 4.821918-.109589 4.403487-.109589C4.194271-.109589 4.094645-.239103 4.094645-.56787C4.094645-.787049 4.214197-1.255293 4.293898-1.603985L4.572852-2.67995C4.60274-2.82939 4.702366-3.20797 4.742217-3.35741C4.79203-3.58655 4.891656-3.965131 4.891656-4.024907C4.891656-4.204234 4.752179-4.293898 4.60274-4.293898C4.552927-4.293898 4.293898-4.283935 4.214197-3.945205C4.024907-3.217933 3.58655-1.474471 3.466999-.946451C3.457036-.9066 3.058531-.109589 2.331258-.109589C1.8132-.109589 1.713574-.557908 1.713574-.926526C1.713574-1.484433 1.992528-2.271482 2.251557-2.958904C2.371108-3.257783 2.420922-3.39726 2.420922-3.58655C2.420922-4.034869 2.102117-4.403487 1.603985-4.403487C.657534-4.403487 .288917-2.958904 .288917-2.86924C.288917-2.769614 .388543-2.769614 .408468-2.769614C.508095-2.769614 .518057-2.789539 .56787-2.948941C.816936-3.815691 1.195517-4.184309 1.574097-4.184309C1.663761-4.184309 1.823163-4.174346 1.823163-3.855542C1.823163-3.616438 1.713574-3.327522 1.653798-3.178082C1.285181-2.191781 1.075965-1.574097 1.075965-1.085928C1.075965-.139477 1.763387 .109589 2.30137 .109589C2.958904 .109589 3.317559-.33873 3.486924-.557908Z'/>
<path id='g4-120' d='M3.327522-3.008717C3.387298-3.267746 3.616438-4.184309 4.313823-4.184309C4.363636-4.184309 4.60274-4.184309 4.811955-4.054795C4.533001-4.004981 4.333748-3.755915 4.333748-3.516812C4.333748-3.35741 4.443337-3.16812 4.712329-3.16812C4.931507-3.16812 5.250311-3.347447 5.250311-3.745953C5.250311-4.26401 4.662516-4.403487 4.323786-4.403487C3.745953-4.403487 3.39726-3.875467 3.277709-3.646326C3.028643-4.303861 2.49066-4.403487 2.201743-4.403487C1.165629-4.403487 .597758-3.118306 .597758-2.86924C.597758-2.769614 .697385-2.769614 .71731-2.769614C.797011-2.769614 .826899-2.789539 .846824-2.879203C1.185554-3.935243 1.843088-4.184309 2.181818-4.184309C2.371108-4.184309 2.719801-4.094645 2.719801-3.516812C2.719801-3.20797 2.550436-2.540473 2.181818-1.145704C2.022416-.52802 1.673724-.109589 1.235367-.109589C1.175592-.109589 .946451-.109589 .737235-.239103C.986301-.288917 1.205479-.498132 1.205479-.777086C1.205479-1.046077 .986301-1.125778 .836862-1.125778C.537983-1.125778 .288917-.86675 .288917-.547945C.288917-.089664 .787049 .109589 1.225405 .109589C1.882939 .109589 2.241594-.587796 2.271482-.647572C2.391034-.278954 2.749689 .109589 3.347447 .109589C4.373599 .109589 4.941469-1.175592 4.941469-1.424658C4.941469-1.524284 4.851806-1.524284 4.821918-1.524284C4.732254-1.524284 4.712329-1.484433 4.692403-1.414695C4.363636-.348692 3.686177-.109589 3.367372-.109589C2.978829-.109589 2.819427-.428394 2.819427-.767123C2.819427-.986301 2.879203-1.205479 2.988792-1.643836L3.327522-3.008717Z'/>
<path id='g1-27' d='M7.287867-5.408516C7.474368-5.408516 7.947792-5.408516 7.947792-5.867594C7.947792-6.18321 7.675215-6.18321 7.416983-6.18321H4.246474C2.094545-6.18321 .545155-3.787396 .545155-2.094545C.545155-.875118 1.334196 .143462 2.625354 .143462C4.318205 .143462 6.168864-1.678505 6.168864-3.830434C6.168864-4.389936 6.039748-4.935091 5.69544-5.408516H7.287867ZM2.6397-.143462C1.908044-.143462 1.377235-.702964 1.377235-1.692851C1.377235-2.553623 1.893698-5.408516 4.002589-5.408516C4.619475-5.408516 5.308092-5.107246 5.308092-4.002589C5.308092-3.500472 5.078553-2.295391 4.576436-1.463312C4.059973-.616886 3.285279-.143462 2.6397-.143462Z'/>
<path id='g1-66' d='M5.250708-8.82291C5.379823-9.35372 5.437208-9.382412 5.99671-9.382412H7.861715C9.482835-9.382412 9.482835-8.005177 9.482835-7.876061C9.482835-6.71402 8.320793-5.236361 6.427096-5.236361H4.361243L5.250708-8.82291ZM7.675215-5.121592C9.23895-5.408516 10.659223-6.498827 10.659223-7.818677C10.659223-8.93768 9.669336-9.798452 8.048216-9.798452H3.443087C3.170509-9.798452 3.041393-9.798452 3.041393-9.525874C3.041393-9.382412 3.170509-9.382412 3.385702-9.382412C4.26082-9.382412 4.26082-9.267642 4.26082-9.109834C4.26082-9.081142 4.26082-8.995065 4.203435-8.779872L2.266699-1.061618C2.137583-.559502 2.108891-.41604 1.104657-.41604C.832079-.41604 .688617-.41604 .688617-.157808C.688617 0 .774695 0 1.061618 0H5.982364C8.177332 0 9.870183-1.664159 9.870183-3.113124C9.870183-4.289513 8.837257-5.006822 7.675215-5.121592ZM5.638055-.41604H3.701318C3.500472-.41604 3.471779-.41604 3.385702-.430386C3.227894-.444732 3.213548-.473424 3.213548-.588194C3.213548-.688617 3.24224-.774695 3.270933-.90381L4.275166-4.949438H6.972251C8.665102-4.949438 8.665102-3.371356 8.665102-3.256586C8.665102-1.879352 7.416983-.41604 5.638055-.41604Z'/>
<path id='g1-87' d='M12.954615-8.206024C13.284577-8.765526 13.600193-9.296335 14.460965-9.382412C14.590081-9.396758 14.719197-9.411104 14.719197-9.640643C14.719197-9.798452 14.590081-9.798452 14.547042-9.798452C14.51835-9.798452 14.417927-9.769759 13.471078-9.769759C13.040692-9.769759 12.59596-9.798452 12.17992-9.798452C12.093843-9.798452 11.921689-9.798452 11.921689-9.525874C11.921689-9.396758 12.036458-9.382412 12.122535-9.382412C12.409459-9.368066 12.868538-9.281989 12.868538-8.837257C12.868538-8.650756 12.811153-8.550333 12.667691-8.306447L8.751179-1.448966L8.234716-8.923334C8.234716-9.095488 8.392524-9.368066 9.195911-9.382412C9.382412-9.382412 9.525874-9.382412 9.525874-9.65499C9.525874-9.798452 9.382412-9.798452 9.310681-9.798452C8.808564-9.798452 8.277755-9.769759 7.761292-9.769759H7.01529C6.800097-9.769759 6.541865-9.798452 6.326672-9.798452C6.240595-9.798452 6.068441-9.798452 6.068441-9.525874C6.068441-9.382412 6.168864-9.382412 6.412749-9.382412C7.072674-9.382412 7.072674-9.368066 7.130059-8.492948L7.173098-7.976485L3.457433-1.448966L2.926624-8.851603C2.926624-9.009411 2.926624-9.368066 3.902165-9.382412C4.059973-9.382412 4.217782-9.382412 4.217782-9.640643C4.217782-9.798452 4.088666-9.798452 4.002589-9.798452C3.500472-9.798452 2.969663-9.769759 2.453199-9.769759H1.707197C1.492004-9.769759 1.233773-9.798452 1.01858-9.798452C.932503-9.798452 .760348-9.798452 .760348-9.525874C.760348-9.382412 .875118-9.382412 1.075965-9.382412C1.750236-9.382412 1.764582-9.296335 1.793274-8.837257L2.424507-.028692C2.438853 .215193 2.453199 .30127 2.625354 .30127C2.768816 .30127 2.797508 .243885 2.926624 .028692L7.20179-7.445676L7.732599-.028692C7.746946 .215193 7.761292 .30127 7.933446 .30127C8.076908 .30127 8.119947 .229539 8.234716 .028692L12.954615-8.206024Z'/>
<path id='g1-104' d='M4.031281-9.597605C4.045627-9.65499 4.07432-9.741067 4.07432-9.812798C4.07432-9.95626 3.930858-9.95626 3.902165-9.95626C3.887819-9.95626 3.184855-9.898875 3.113124-9.884529C2.869239-9.870183 2.654046-9.84149 2.395815-9.827144C2.03716-9.798452 1.936736-9.784105 1.936736-9.525874C1.936736-9.382412 2.051506-9.382412 2.252353-9.382412C2.955316-9.382412 2.969663-9.253296 2.969663-9.109834C2.969663-9.023757 2.94097-8.908988 2.926624-8.865949L.846426-.559502C.789041-.344309 .789041-.315616 .789041-.229539C.789041 .086077 1.032926 .143462 1.176388 .143462C1.420273 .143462 1.606774-.043039 1.678505-.200847L2.324084-2.797508C2.395815-3.113124 2.481892-3.414395 2.553623-3.730011C2.711431-4.332551 2.711431-4.346897 2.984009-4.762937S3.902165-6.039748 5.006822-6.039748C5.58067-6.039748 5.781517-5.609363 5.781517-5.035515C5.781517-4.232128 5.222015-2.668392 4.906399-1.807621C4.777283-1.463312 4.705552-1.276811 4.705552-1.01858C4.705552-.373001 5.150284 .143462 5.838902 .143462C7.173098 .143462 7.675215-1.965429 7.675215-2.051506C7.675215-2.123237 7.61783-2.180622 7.531753-2.180622C7.402637-2.180622 7.388291-2.137583 7.31656-1.893698C6.986597-.746002 6.455788-.143462 5.88194-.143462C5.738478-.143462 5.508939-.157808 5.508939-.616886C5.508939-.989888 5.681093-1.448966 5.738478-1.606774C5.99671-2.295391 6.642289-3.988242 6.642289-4.820322C6.642289-5.681093 6.140172-6.326672 5.049861-6.326672C4.232128-6.326672 3.514818-5.939325 2.926624-5.193323L4.031281-9.597605Z'/>
<path id='g1-111' d='M6.541865-3.945204C6.541865-5.308092 5.652401-6.326672 4.346897-6.326672C2.453199-6.326672 .588194-4.26082 .588194-2.238007C.588194-.875118 1.477658 .143462 2.783162 .143462C4.691206 .143462 6.541865-1.92239 6.541865-3.945204ZM2.797508-.143462C2.080198-.143462 1.549389-.71731 1.549389-1.721543C1.549389-2.381468 1.893698-3.84478 2.295391-4.56209C2.94097-5.666747 3.744357-6.039748 4.332551-6.039748C5.035515-6.039748 5.58067-5.465901 5.58067-4.461667C5.58067-3.887819 5.2794-2.352776 4.734245-1.477658C4.146051-.516463 3.35701-.143462 2.797508-.143462Z'/>
<path id='g1-114' d='M5.58067-5.867594C5.135938-5.781517 4.906399-5.465901 4.906399-5.150284C4.906399-4.805976 5.178977-4.691206 5.379823-4.691206C5.781517-4.691206 6.111479-5.035515 6.111479-5.465901C6.111479-5.924979 5.666747-6.326672 4.949438-6.326672C4.37559-6.326672 3.715665-6.068441 3.113124-5.193323C3.012701-5.953671 2.438853-6.326672 1.865005-6.326672C1.305504-6.326672 1.01858-5.896286 .846426-5.58067C.60254-5.064207 .387347-4.203435 .387347-4.131704C.387347-4.07432 .444732-4.002589 .545155-4.002589C.659925-4.002589 .674271-4.016935 .760348-4.346897C.975541-5.207669 1.248119-6.039748 1.821967-6.039748C2.166276-6.039748 2.266699-5.795863 2.266699-5.379823C2.266699-5.064207 2.123237-4.504705 2.022814-4.059973L1.62112-2.510584C1.563735-2.238007 1.405927-1.592428 1.334196-1.334196C1.233773-.961195 1.075965-.286924 1.075965-.215193C1.075965-.014346 1.233773 .143462 1.448966 .143462C1.606774 .143462 1.879352 .043039 1.965429-.243885C2.008467-.358655 2.539277-2.52493 2.625354-2.854893C2.697085-3.170509 2.783162-3.471779 2.854893-3.787396C2.912278-3.988242 2.969663-4.217782 3.012701-4.404282C3.05574-4.533398 3.443087-5.236361 3.801742-5.551978C3.973896-5.709786 4.346897-6.039748 4.935091-6.039748C5.16463-6.039748 5.39417-5.99671 5.58067-5.867594Z'/>
<path id='g1-117' d='M4.892053-.832079C5.078553-.028692 5.767171 .143462 6.111479 .143462C6.570558 .143462 6.914866-.157808 7.144405-.645579C7.388291-1.162042 7.574791-2.008467 7.574791-2.051506C7.574791-2.123237 7.517407-2.180622 7.431329-2.180622C7.302214-2.180622 7.287867-2.108891 7.230483-1.893698C6.972251-.90381 6.71402-.143462 6.140172-.143462C5.709786-.143462 5.709786-.616886 5.709786-.803387C5.709786-1.133349 5.752824-1.276811 5.896286-1.879352C5.99671-2.266699 6.097133-2.654046 6.18321-3.05574L6.771404-5.39417C6.871828-5.752824 6.871828-5.781517 6.871828-5.824555C6.871828-6.039748 6.699673-6.18321 6.48448-6.18321C6.068441-6.18321 5.968017-5.824555 5.88194-5.465901C5.738478-4.906399 4.963784-1.821967 4.86336-1.31985C4.849014-1.31985 4.289513-.143462 3.24224-.143462C2.496238-.143462 2.352776-.789041 2.352776-1.31985C2.352776-2.137583 2.75447-3.285279 3.127471-4.246474C3.299625-4.705552 3.371356-4.892053 3.371356-5.178977C3.371356-5.795863 2.926624-6.326672 2.238007-6.326672C.918157-6.326672 .387347-4.246474 .387347-4.131704C.387347-4.07432 .444732-4.002589 .545155-4.002589C.674271-4.002589 .688617-4.059973 .746002-4.26082C1.090311-5.494593 1.649813-6.039748 2.194968-6.039748C2.33843-6.039748 2.567969-6.025402 2.567969-5.566324C2.567969-5.193323 2.410161-4.777283 2.194968-4.232128C1.563735-2.52493 1.492004-1.979775 1.492004-1.549389C1.492004-.086077 2.596661 .143462 3.184855 .143462C4.103012 .143462 4.605129-.487771 4.892053-.832079Z'/>
<path id='g1-120' d='M6.800097-5.853248C6.341018-5.767171 6.168864-5.422862 6.168864-5.150284C6.168864-4.805976 6.441442-4.691206 6.642289-4.691206C7.072674-4.691206 7.373945-5.064207 7.373945-5.451554C7.373945-6.054095 6.685327-6.326672 6.082787-6.326672C5.207669-6.326672 4.719898-5.465901 4.590783-5.193323C4.26082-6.269288 3.371356-6.326672 3.113124-6.326672C1.649813-6.326672 .875118-4.447321 .875118-4.131704C.875118-4.07432 .932503-4.002589 1.032926-4.002589C1.147696-4.002589 1.176388-4.088666 1.20508-4.146051C1.692851-5.738478 2.654046-6.039748 3.070086-6.039748C3.715665-6.039748 3.84478-5.437208 3.84478-5.092899C3.84478-4.777283 3.758703-4.447321 3.586549-3.758703L3.098778-1.793274C2.883585-.932503 2.467546-.143462 1.707197-.143462C1.635466-.143462 1.276811-.143462 .975541-.329963C1.492004-.430386 1.606774-.860772 1.606774-1.032926C1.606774-1.31985 1.391581-1.492004 1.119003-1.492004C.774695-1.492004 .401693-1.190734 .401693-.731656C.401693-.129116 1.075965 .143462 1.692851 .143462C2.381468 .143462 2.869239-.401693 3.170509-.989888C3.400048-.143462 4.117358 .143462 4.648167 .143462C6.111479 .143462 6.886174-1.73589 6.886174-2.051506C6.886174-2.123237 6.828789-2.180622 6.742712-2.180622C6.613596-2.180622 6.59925-2.108891 6.556211-1.994121C6.168864-.731656 5.336785-.143462 4.691206-.143462C4.189089-.143462 3.916511-.516463 3.916511-1.104657C3.916511-1.420273 3.973896-1.649813 4.203435-2.596661L4.705552-4.547744C4.920745-5.408516 5.408516-6.039748 6.068441-6.039748C6.097133-6.039748 6.498827-6.039748 6.800097-5.853248Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -82.716005)'>
<use x='56.413267' y='83.686177' xlink:href='#g1-117'/>
<use x='64.408191' y='85.838096' xlink:href='#g4-116'/>
<use x='72.488942' y='83.686177' xlink:href='#g2-61'/>
<use x='87.399514' y='83.686177' xlink:href='#g1-27'/>
<use x='95.89839' y='83.686177' xlink:href='#g2-40'/>
<use x='101.361178' y='83.686177' xlink:href='#g1-87'/>
<use x='114.622984' y='85.838096' xlink:href='#g4-117'/>
<use x='120.32618' y='85.838096' xlink:href='#g4-120'/>
<use x='129.706223' y='83.686177' xlink:href='#g0-1'/>
<use x='136.879286' y='83.686177' xlink:href='#g1-120'/>
<use x='144.861787' y='85.838096' xlink:href='#g4-116'/>
<use x='152.145538' y='83.686177' xlink:href='#g2-43'/>
<use x='166.259112' y='83.686177' xlink:href='#g1-87'/>
<use x='179.520918' y='85.838096' xlink:href='#g4-117'/>
<use x='185.224113' y='85.838096' xlink:href='#g4-104'/>
<use x='194.650294' y='83.686177' xlink:href='#g0-1'/>
<use x='201.823357' y='83.686177' xlink:href='#g1-104'/>
<use x='209.909619' y='85.838096' xlink:href='#g4-116'/>
<use x='213.507254' y='85.838096' xlink:href='#g3-0'/>
<use x='221.256001' y='85.838096' xlink:href='#g5-49'/>
<use x='229.92345' y='83.686177' xlink:href='#g2-43'/>
<use x='244.037023' y='83.686177' xlink:href='#g1-66'/>
<use x='254.708574' y='85.838096' xlink:href='#g4-117'/>
<use x='260.909898' y='83.686177' xlink:href='#g2-41'/>
<use x='56.413267' y='104.607721' xlink:href='#g1-114'/>
<use x='62.743633' y='106.75964' xlink:href='#g4-116'/>
<use x='70.824384' y='104.607721' xlink:href='#g2-61'/>
<use x='85.734956' y='104.607721' xlink:href='#g1-27'/>
<use x='94.233832' y='104.607721' xlink:href='#g2-40'/>
<use x='99.69662' y='104.607721' xlink:href='#g1-87'/>
<use x='112.958426' y='106.75964' xlink:href='#g4-114'/>
<use x='117.729914' y='106.75964' xlink:href='#g4-120'/>
<use x='127.109948' y='104.607721' xlink:href='#g0-1'/>
<use x='134.28301' y='104.607721' xlink:href='#g1-120'/>
<use x='142.265512' y='106.75964' xlink:href='#g4-116'/>
<use x='149.549263' y='104.607721' xlink:href='#g2-43'/>
<use x='163.662837' y='104.607721' xlink:href='#g1-87'/>
<use x='176.924642' y='106.75964' xlink:href='#g4-114'/>
<use x='181.69613' y='106.75964' xlink:href='#g4-104'/>
<use x='191.122301' y='104.607721' xlink:href='#g0-1'/>
<use x='198.295364' y='104.607721' xlink:href='#g1-104'/>
<use x='206.381627' y='106.75964' xlink:href='#g4-116'/>
<use x='209.979261' y='106.75964' xlink:href='#g3-0'/>
<use x='217.728009' y='106.75964' xlink:href='#g5-49'/>
<use x='226.395457' y='104.607721' xlink:href='#g2-43'/>
<use x='240.509031' y='104.607721' xlink:href='#g1-66'/>
<use x='251.180581' y='106.75964' xlink:href='#g4-114'/>
<use x='256.450188' y='104.607721' xlink:href='#g2-41'/>
<use x='56.413267' y='125.529265' xlink:href='#g1-111'/>
<use x='63.166189' y='127.681184' xlink:href='#g4-116'/>
<use x='71.24694' y='125.529265' xlink:href='#g2-61'/>
<use x='86.157512' y='125.529265' xlink:href='#g2-116'/>
<use x='91.620301' y='125.529265' xlink:href='#g2-97'/>
<use x='98.643886' y='125.529265' xlink:href='#g2-110'/>
<use x='106.44787' y='125.529265' xlink:href='#g2-104'/>
<use x='114.251805' y='125.529265' xlink:href='#g2-40'/>
<use x='119.714593' y='125.529265' xlink:href='#g1-87'/>
<use x='132.976399' y='127.681184' xlink:href='#g4-111'/>
<use x='137.805521' y='127.681184' xlink:href='#g4-120'/>
<use x='147.185566' y='125.529265' xlink:href='#g0-1'/>
<use x='154.358629' y='125.529265' xlink:href='#g1-120'/>
<use x='162.34113' y='127.681184' xlink:href='#g4-116'/>
<use x='169.624882' y='125.529265' xlink:href='#g2-43'/>
<use x='183.738455' y='125.529265' xlink:href='#g1-87'/>
<use x='197.000261' y='127.681184' xlink:href='#g4-111'/>
<use x='201.829383' y='127.681184' xlink:href='#g4-104'/>
<use x='211.255565' y='125.529265' xlink:href='#g0-1'/>
<use x='218.428628' y='125.529265' xlink:href='#g2-40'/>
<use x='223.891416' y='125.529265' xlink:href='#g1-114'/>
<use x='230.221782' y='127.681184' xlink:href='#g4-116'/>
<use x='237.505534' y='125.529265' xlink:href='#g0-3'/>
<use x='247.866655' y='125.529265' xlink:href='#g1-104'/>
<use x='255.952918' y='127.681184' xlink:href='#g4-116'/>
<use x='259.550553' y='127.681184' xlink:href='#g3-0'/>
<use x='267.2993' y='127.681184' xlink:href='#g5-49'/>
<use x='272.778752' y='125.529265' xlink:href='#g2-41'/>
<use x='281.429537' y='125.529265' xlink:href='#g2-43'/>
<use x='295.54311' y='125.529265' xlink:href='#g1-66'/>
<use x='306.214661' y='127.681184' xlink:href='#g4-111'/>
<use x='311.541913' y='125.529265' xlink:href='#g2-41'/>
<use x='56.413267' y='146.450809' xlink:href='#g1-104'/>
<use x='64.49953' y='148.602728' xlink:href='#g4-116'/>
<use x='72.58028' y='146.450809' xlink:href='#g2-61'/>
<use x='87.490853' y='146.450809' xlink:href='#g2-40'/>
<use x='92.953641' y='146.450809' xlink:href='#g2-49'/>
<use x='103.165223' y='146.450809' xlink:href='#g0-0'/>
<use x='117.511411' y='146.450809' xlink:href='#g1-117'/>
<use x='125.506335' y='148.602728' xlink:href='#g4-116'/>
<use x='129.60209' y='146.450809' xlink:href='#g2-41'/>
<use x='138.252875' y='146.450809' xlink:href='#g0-3'/>
<use x='148.613996' y='146.450809' xlink:href='#g1-104'/>
<use x='156.700259' y='148.602728' xlink:href='#g4-116'/>
<use x='160.297894' y='148.602728' xlink:href='#g3-0'/>
<use x='168.046641' y='148.602728' xlink:href='#g5-49'/>
<use x='176.714089' y='146.450809' xlink:href='#g2-43'/>
<use x='190.827663' y='146.450809' xlink:href='#g1-117'/>
<use x='198.822587' y='148.602728' xlink:href='#g4-116'/>
<use x='206.106338' y='146.450809' xlink:href='#g0-3'/>
<use x='216.46746' y='146.450809' xlink:href='#g1-111'/>
<use x='223.220382' y='148.602728' xlink:href='#g4-116'/>
</g>
</svg>
\ No newline at end of file
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.9.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='292.866929pt' height='87.151447pt' viewBox='-.239051 -.309026 292.866929 87.151447'>
<defs>
<path id='g5-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
<use id='g3-0' xlink:href='#g0-0' transform='scale(.694445)'/>
<path id='g0-0' d='M9.454143-3.299625C9.698028-3.299625 9.95626-3.299625 9.95626-3.586549S9.698028-3.873473 9.454143-3.873473H1.692851C1.448966-3.873473 1.190734-3.873473 1.190734-3.586549S1.448966-3.299625 1.692851-3.299625H9.454143Z'/>
<path id='g0-1' d='M2.75447-3.586549C2.75447-4.002589 2.410161-4.346897 1.994121-4.346897S1.233773-4.002589 1.233773-3.586549S1.578082-2.826201 1.994121-2.826201S2.75447-3.170509 2.75447-3.586549Z'/>
<path id='g0-3' d='M3.945204-6.125826C3.95955-6.326672 3.95955-6.670981 3.586549-6.670981C3.35701-6.670981 3.170509-6.48448 3.213548-6.29798V-6.111479L3.414395-3.887819L1.578082-5.222015C1.448966-5.293746 1.420273-5.322439 1.31985-5.322439C1.119003-5.322439 .932503-5.121592 .932503-4.920745C.932503-4.691206 1.075965-4.633821 1.219427-4.56209L3.256586-3.586549L1.276811-2.625354C1.047272-2.510584 .932503-2.453199 .932503-2.238007S1.119003-1.836313 1.31985-1.836313C1.420273-1.836313 1.448966-1.836313 1.807621-2.108891L3.414395-3.270933L3.199202-.860772C3.199202-.559502 3.457433-.487771 3.572203-.487771C3.744357-.487771 3.95955-.588194 3.95955-.860772L3.744357-3.270933L5.58067-1.936736C5.709786-1.865005 5.738478-1.836313 5.838902-1.836313C6.039748-1.836313 6.226249-2.03716 6.226249-2.238007C6.226249-2.453199 6.097133-2.52493 5.924979-2.611008C5.064207-3.041393 5.035515-3.041393 3.902165-3.572203L5.88194-4.533398C6.111479-4.648167 6.226249-4.705552 6.226249-4.920745S6.039748-5.322439 5.838902-5.322439C5.738478-5.322439 5.709786-5.322439 5.351131-5.049861L3.744357-3.887819L3.945204-6.125826Z'/>
<path id='g2-40' d='M4.662514 3.486126C4.662514 3.443087 4.662514 3.414395 4.418628 3.170509C2.984009 1.721543 2.180622-.645579 2.180622-3.572203C2.180622-6.355365 2.854893-8.751179 4.519052-10.44403C4.662514-10.573146 4.662514-10.601839 4.662514-10.644877C4.662514-10.730954 4.590783-10.759647 4.533398-10.759647C4.346897-10.759647 3.170509-9.726721 2.467546-8.320793C1.73589-6.871828 1.405927-5.336785 1.405927-3.572203C1.405927-2.295391 1.606774-.588194 2.352776 .946849C3.199202 2.668392 4.37559 3.600895 4.533398 3.600895C4.590783 3.600895 4.662514 3.572203 4.662514 3.486126Z'/>
<path id='g2-41' d='M4.045627-3.572203C4.045627-4.662514 3.902165-6.441442 3.098778-8.105601C2.252353-9.827144 1.075965-10.759647 .918157-10.759647C.860772-10.759647 .789041-10.730954 .789041-10.644877C.789041-10.601839 .789041-10.573146 1.032926-10.329261C2.467546-8.880295 3.270933-6.513173 3.270933-3.586549C3.270933-.803387 2.596661 1.592428 .932503 3.285279C.789041 3.414395 .789041 3.443087 .789041 3.486126C.789041 3.572203 .860772 3.600895 .918157 3.600895C1.104657 3.600895 2.281045 2.567969 2.984009 1.162042C3.715665-.30127 4.045627-1.850659 4.045627-3.572203Z'/>
<path id='g2-43' d='M5.724132-3.313971H9.683682C9.884529-3.313971 10.14276-3.313971 10.14276-3.572203C10.14276-3.84478 9.898875-3.84478 9.683682-3.84478H5.724132V-7.80433C5.724132-8.005177 5.724132-8.263409 5.465901-8.263409C5.193323-8.263409 5.193323-8.019523 5.193323-7.80433V-3.84478H1.233773C1.032926-3.84478 .774695-3.84478 .774695-3.586549C.774695-3.313971 1.01858-3.313971 1.233773-3.313971H5.193323V.645579C5.193323 .846426 5.193323 1.104657 5.451554 1.104657C5.724132 1.104657 5.724132 .860772 5.724132 .645579V-3.313971Z'/>
<path id='g2-49' d='M4.131704-9.195911C4.131704-9.525874 4.131704-9.54022 3.84478-9.54022C3.500472-9.152873 2.783162-8.622064 1.305504-8.622064V-8.206024C1.635466-8.206024 2.352776-8.206024 3.141817-8.579025V-1.104657C3.141817-.588194 3.098778-.41604 1.836313-.41604H1.391581V0C1.778928-.028692 3.170509-.028692 3.643934-.028692S5.494593-.028692 5.88194 0V-.41604H5.437208C4.174743-.41604 4.131704-.588194 4.131704-1.104657V-9.195911Z'/>
<path id='g2-61' d='M9.683682-4.648167C9.884529-4.648167 10.14276-4.648167 10.14276-4.906399C10.14276-5.178977 9.898875-5.178977 9.683682-5.178977H1.233773C1.032926-5.178977 .774695-5.178977 .774695-4.920745C.774695-4.648167 1.01858-4.648167 1.233773-4.648167H9.683682ZM9.683682-1.979775C9.884529-1.979775 10.14276-1.979775 10.14276-2.238007C10.14276-2.510584 9.898875-2.510584 9.683682-2.510584H1.233773C1.032926-2.510584 .774695-2.510584 .774695-2.252353C.774695-1.979775 1.01858-1.979775 1.233773-1.979775H9.683682Z'/>
<path id='g2-97' d='M5.537632-3.830434C5.537632-4.605129 5.537632-5.178977 4.906399-5.738478C4.404282-6.197557 3.758703-6.398403 3.127471-6.398403C1.951083-6.398403 1.047272-5.623709 1.047272-4.691206C1.047272-4.275166 1.31985-4.07432 1.649813-4.07432C1.994121-4.07432 2.238007-4.318205 2.238007-4.662514C2.238007-5.250708 1.721543-5.250708 1.506351-5.250708C1.836313-5.853248 2.52493-6.111479 3.098778-6.111479C3.758703-6.111479 4.605129-5.566324 4.605129-4.275166V-3.701318C1.721543-3.65828 .631233-2.453199 .631233-1.348542C.631233-.215193 1.951083 .143462 2.826201 .143462C3.773049 .143462 4.418628-.430386 4.691206-1.119003C4.748591-.444732 5.193323 .071731 5.810209 .071731C6.111479 .071731 6.943559-.129116 6.943559-1.276811V-2.080198H6.627942V-1.276811C6.627942-.459078 6.283634-.344309 6.082787-.344309C5.537632-.344309 5.537632-1.104657 5.537632-1.31985V-3.830434ZM4.605129-2.022814C4.605129-.616886 3.557857-.143462 2.94097-.143462C2.238007-.143462 1.649813-.659925 1.649813-1.348542C1.649813-3.24224 4.088666-3.414395 4.605129-3.443087V-2.022814Z'/>
<path id='g2-104' d='M6.384057-3.486126C6.384057-4.820322 6.384057-5.222015 6.054095-5.681093C5.638055-6.240595 4.963784-6.326672 4.476013-6.326672C3.24224-6.326672 2.668392-5.39417 2.467546-4.949438H2.453199V-9.95626L.459078-9.798452V-9.382412C1.43462-9.382412 1.549389-9.281989 1.549389-8.579025V-1.061618C1.549389-.41604 1.391581-.41604 .459078-.41604V0C.832079-.028692 1.606774-.028692 2.008467-.028692C2.424507-.028692 3.199202-.028692 3.572203 0V-.41604C2.654046-.41604 2.481892-.41604 2.481892-1.061618V-3.730011C2.481892-5.236361 3.471779-6.039748 4.361243-6.039748S5.451554-5.308092 5.451554-4.432974V-1.061618C5.451554-.41604 5.293746-.41604 4.361243-.41604V0C4.734245-.028692 5.508939-.028692 5.910633-.028692C6.326672-.028692 7.101367-.028692 7.474368 0V-.41604C6.757058-.41604 6.398403-.41604 6.384057-.846426V-3.486126Z'/>
<path id='g2-110' d='M6.384057-3.486126C6.384057-4.820322 6.384057-5.222015 6.054095-5.681093C5.638055-6.240595 4.963784-6.326672 4.476013-6.326672C3.084432-6.326672 2.539277-5.135938 2.424507-4.849014H2.410161V-6.326672L.459078-6.168864V-5.752824C1.43462-5.752824 1.549389-5.652401 1.549389-4.949438V-1.061618C1.549389-.41604 1.391581-.41604 .459078-.41604V0C.832079-.028692 1.606774-.028692 2.008467-.028692C2.424507-.028692 3.199202-.028692 3.572203 0V-.41604C2.654046-.41604 2.481892-.41604 2.481892-1.061618V-3.730011C2.481892-5.236361 3.471779-6.039748 4.361243-6.039748S5.451554-5.308092 5.451554-4.432974V-1.061618C5.451554-.41604 5.293746-.41604 4.361243-.41604V0C4.734245-.028692 5.508939-.028692 5.910633-.028692C6.326672-.028692 7.101367-.028692 7.474368 0V-.41604C6.757058-.41604 6.398403-.41604 6.384057-.846426V-3.486126Z'/>
<path id='g2-116' d='M2.410161-5.767171H4.432974V-6.18321H2.410161V-8.82291H2.094545C2.080198-7.474368 1.563735-6.097133 .258232-6.054095V-5.767171H1.477658V-1.778928C1.477658-.186501 2.539277 .143462 3.299625 .143462C4.203435 .143462 4.67686-.746002 4.67686-1.778928V-2.596661H4.361243V-1.807621C4.361243-.774695 3.945204-.172154 3.385702-.172154C2.410161-.172154 2.410161-1.506351 2.410161-1.750236V-5.767171Z'/>
<path id='g4-104' d='M2.859278-6.804483C2.859278-6.814446 2.859278-6.914072 2.729763-6.914072C2.500623-6.914072 1.77335-6.834371 1.514321-6.814446C1.43462-6.804483 1.325031-6.794521 1.325031-6.615193C1.325031-6.495641 1.414695-6.495641 1.564134-6.495641C2.042341-6.495641 2.062267-6.425903 2.062267-6.326276L2.032379-6.127024L.587796-.388543C.547945-.249066 .547945-.229141 .547945-.169365C.547945 .059776 .747198 .109589 .836862 .109589C.996264 .109589 1.155666-.009963 1.205479-.14944L1.39477-.9066L1.613948-1.803238C1.673724-2.022416 1.733499-2.241594 1.783313-2.470735C1.803238-2.530511 1.882939-2.859278 1.892902-2.919054C1.92279-3.008717 2.231631-3.566625 2.570361-3.835616C2.789539-3.995019 3.098381-4.184309 3.526775-4.184309S4.064757-3.845579 4.064757-3.486924C4.064757-2.948941 3.686177-1.863014 3.447073-1.255293C3.367372-1.026152 3.317559-.9066 3.317559-.707347C3.317559-.239103 3.666252 .109589 4.134496 .109589C5.070984 .109589 5.439601-1.344956 5.439601-1.424658C5.439601-1.524284 5.349938-1.524284 5.32005-1.524284C5.220423-1.524284 5.220423-1.494396 5.17061-1.344956C5.021171-.816936 4.702366-.109589 4.154421-.109589C3.985056-.109589 3.915318-.209215 3.915318-.438356C3.915318-.687422 4.004981-.926526 4.094645-1.145704C4.254047-1.574097 4.702366-2.759651 4.702366-3.337484C4.702366-3.985056 4.303861-4.403487 3.556663-4.403487C2.929016-4.403487 2.450809-4.094645 2.082192-3.636364L2.859278-6.804483Z'/>
<path id='g4-111' d='M4.672478-2.719801C4.672478-3.755915 3.975093-4.403487 3.078456-4.403487C1.743462-4.403487 .408468-2.988792 .408468-1.574097C.408468-.587796 1.075965 .109589 2.002491 .109589C3.327522 .109589 4.672478-1.265255 4.672478-2.719801ZM2.012453-.109589C1.58406-.109589 1.145704-.418431 1.145704-1.195517C1.145704-1.683686 1.404732-2.759651 1.723537-3.267746C2.221669-4.034869 2.789539-4.184309 3.068493-4.184309C3.646326-4.184309 3.945205-3.706102 3.945205-3.108344C3.945205-2.719801 3.745953-1.673724 3.367372-1.026152C3.01868-.448319 2.470735-.109589 2.012453-.109589Z'/>
<path id='g4-114' d='M.876712-.587796C.846824-.438356 .787049-.209215 .787049-.159402C.787049 .019925 .926526 .109589 1.075965 .109589C1.195517 .109589 1.374844 .029888 1.444583-.169365C1.464508-.209215 1.803238-1.564134 1.843088-1.743462C1.92279-2.072229 2.102117-2.769614 2.161893-3.038605C2.201743-3.16812 2.480697-3.636364 2.719801-3.855542C2.799502-3.92528 3.088418-4.184309 3.516812-4.184309C3.775841-4.184309 3.92528-4.064757 3.935243-4.064757C3.636364-4.014944 3.417186-3.775841 3.417186-3.516812C3.417186-3.35741 3.526775-3.16812 3.795766-3.16812S4.343711-3.39726 4.343711-3.755915C4.343711-4.104608 4.024907-4.403487 3.516812-4.403487C2.86924-4.403487 2.430884-3.915318 2.241594-3.636364C2.161893-4.084682 1.803238-4.403487 1.334994-4.403487C.876712-4.403487 .687422-4.014944 .597758-3.835616C.418431-3.496887 .288917-2.899128 .288917-2.86924C.288917-2.769614 .388543-2.769614 .408468-2.769614C.508095-2.769614 .518057-2.779577 .577833-2.998755C.747198-3.706102 .946451-4.184309 1.305106-4.184309C1.474471-4.184309 1.613948-4.104608 1.613948-3.726027C1.613948-3.516812 1.58406-3.407223 1.454545-2.889166L.876712-.587796Z'/>
<path id='g4-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
<path id='g4-117' d='M3.486924-.557908C3.596513-.14944 3.945205 .109589 4.373599 .109589C4.722291 .109589 4.951432-.119552 5.110834-.438356C5.280199-.797011 5.409714-1.404732 5.409714-1.424658C5.409714-1.524284 5.32005-1.524284 5.290162-1.524284C5.190535-1.524284 5.180573-1.484433 5.150685-1.344956C5.011208-.787049 4.821918-.109589 4.403487-.109589C4.194271-.109589 4.094645-.239103 4.094645-.56787C4.094645-.787049 4.214197-1.255293 4.293898-1.603985L4.572852-2.67995C4.60274-2.82939 4.702366-3.20797 4.742217-3.35741C4.79203-3.58655 4.891656-3.965131 4.891656-4.024907C4.891656-4.204234 4.752179-4.293898 4.60274-4.293898C4.552927-4.293898 4.293898-4.283935 4.214197-3.945205C4.024907-3.217933 3.58655-1.474471 3.466999-.946451C3.457036-.9066 3.058531-.109589 2.331258-.109589C1.8132-.109589 1.713574-.557908 1.713574-.926526C1.713574-1.484433 1.992528-2.271482 2.251557-2.958904C2.371108-3.257783 2.420922-3.39726 2.420922-3.58655C2.420922-4.034869 2.102117-4.403487 1.603985-4.403487C.657534-4.403487 .288917-2.958904 .288917-2.86924C.288917-2.769614 .388543-2.769614 .408468-2.769614C.508095-2.769614 .518057-2.789539 .56787-2.948941C.816936-3.815691 1.195517-4.184309 1.574097-4.184309C1.663761-4.184309 1.823163-4.174346 1.823163-3.855542C1.823163-3.616438 1.713574-3.327522 1.653798-3.178082C1.285181-2.191781 1.075965-1.574097 1.075965-1.085928C1.075965-.139477 1.763387 .109589 2.30137 .109589C2.958904 .109589 3.317559-.33873 3.486924-.557908Z'/>
<path id='g4-120' d='M3.327522-3.008717C3.387298-3.267746 3.616438-4.184309 4.313823-4.184309C4.363636-4.184309 4.60274-4.184309 4.811955-4.054795C4.533001-4.004981 4.333748-3.755915 4.333748-3.516812C4.333748-3.35741 4.443337-3.16812 4.712329-3.16812C4.931507-3.16812 5.250311-3.347447 5.250311-3.745953C5.250311-4.26401 4.662516-4.403487 4.323786-4.403487C3.745953-4.403487 3.39726-3.875467 3.277709-3.646326C3.028643-4.303861 2.49066-4.403487 2.201743-4.403487C1.165629-4.403487 .597758-3.118306 .597758-2.86924C.597758-2.769614 .697385-2.769614 .71731-2.769614C.797011-2.769614 .826899-2.789539 .846824-2.879203C1.185554-3.935243 1.843088-4.184309 2.181818-4.184309C2.371108-4.184309 2.719801-4.094645 2.719801-3.516812C2.719801-3.20797 2.550436-2.540473 2.181818-1.145704C2.022416-.52802 1.673724-.109589 1.235367-.109589C1.175592-.109589 .946451-.109589 .737235-.239103C.986301-.288917 1.205479-.498132 1.205479-.777086C1.205479-1.046077 .986301-1.125778 .836862-1.125778C.537983-1.125778 .288917-.86675 .288917-.547945C.288917-.089664 .787049 .109589 1.225405 .109589C1.882939 .109589 2.241594-.587796 2.271482-.647572C2.391034-.278954 2.749689 .109589 3.347447 .109589C4.373599 .109589 4.941469-1.175592 4.941469-1.424658C4.941469-1.524284 4.851806-1.524284 4.821918-1.524284C4.732254-1.524284 4.712329-1.484433 4.692403-1.414695C4.363636-.348692 3.686177-.109589 3.367372-.109589C2.978829-.109589 2.819427-.428394 2.819427-.767123C2.819427-.986301 2.879203-1.205479 2.988792-1.643836L3.327522-3.008717Z'/>
<path id='g1-27' d='M7.287867-5.408516C7.474368-5.408516 7.947792-5.408516 7.947792-5.867594C7.947792-6.18321 7.675215-6.18321 7.416983-6.18321H4.246474C2.094545-6.18321 .545155-3.787396 .545155-2.094545C.545155-.875118 1.334196 .143462 2.625354 .143462C4.318205 .143462 6.168864-1.678505 6.168864-3.830434C6.168864-4.389936 6.039748-4.935091 5.69544-5.408516H7.287867ZM2.6397-.143462C1.908044-.143462 1.377235-.702964 1.377235-1.692851C1.377235-2.553623 1.893698-5.408516 4.002589-5.408516C4.619475-5.408516 5.308092-5.107246 5.308092-4.002589C5.308092-3.500472 5.078553-2.295391 4.576436-1.463312C4.059973-.616886 3.285279-.143462 2.6397-.143462Z'/>
<path id='g1-66' d='M5.250708-8.82291C5.379823-9.35372 5.437208-9.382412 5.99671-9.382412H7.861715C9.482835-9.382412 9.482835-8.005177 9.482835-7.876061C9.482835-6.71402 8.320793-5.236361 6.427096-5.236361H4.361243L5.250708-8.82291ZM7.675215-5.121592C9.23895-5.408516 10.659223-6.498827 10.659223-7.818677C10.659223-8.93768 9.669336-9.798452 8.048216-9.798452H3.443087C3.170509-9.798452 3.041393-9.798452 3.041393-9.525874C3.041393-9.382412 3.170509-9.382412 3.385702-9.382412C4.26082-9.382412 4.26082-9.267642 4.26082-9.109834C4.26082-9.081142 4.26082-8.995065 4.203435-8.779872L2.266699-1.061618C2.137583-.559502 2.108891-.41604 1.104657-.41604C.832079-.41604 .688617-.41604 .688617-.157808C.688617 0 .774695 0 1.061618 0H5.982364C8.177332 0 9.870183-1.664159 9.870183-3.113124C9.870183-4.289513 8.837257-5.006822 7.675215-5.121592ZM5.638055-.41604H3.701318C3.500472-.41604 3.471779-.41604 3.385702-.430386C3.227894-.444732 3.213548-.473424 3.213548-.588194C3.213548-.688617 3.24224-.774695 3.270933-.90381L4.275166-4.949438H6.972251C8.665102-4.949438 8.665102-3.371356 8.665102-3.256586C8.665102-1.879352 7.416983-.41604 5.638055-.41604Z'/>
<path id='g1-87' d='M12.954615-8.206024C13.284577-8.765526 13.600193-9.296335 14.460965-9.382412C14.590081-9.396758 14.719197-9.411104 14.719197-9.640643C14.719197-9.798452 14.590081-9.798452 14.547042-9.798452C14.51835-9.798452 14.417927-9.769759 13.471078-9.769759C13.040692-9.769759 12.59596-9.798452 12.17992-9.798452C12.093843-9.798452 11.921689-9.798452 11.921689-9.525874C11.921689-9.396758 12.036458-9.382412 12.122535-9.382412C12.409459-9.368066 12.868538-9.281989 12.868538-8.837257C12.868538-8.650756 12.811153-8.550333 12.667691-8.306447L8.751179-1.448966L8.234716-8.923334C8.234716-9.095488 8.392524-9.368066 9.195911-9.382412C9.382412-9.382412 9.525874-9.382412 9.525874-9.65499C9.525874-9.798452 9.382412-9.798452 9.310681-9.798452C8.808564-9.798452 8.277755-9.769759 7.761292-9.769759H7.01529C6.800097-9.769759 6.541865-9.798452 6.326672-9.798452C6.240595-9.798452 6.068441-9.798452 6.068441-9.525874C6.068441-9.382412 6.168864-9.382412 6.412749-9.382412C7.072674-9.382412 7.072674-9.368066 7.130059-8.492948L7.173098-7.976485L3.457433-1.448966L2.926624-8.851603C2.926624-9.009411 2.926624-9.368066 3.902165-9.382412C4.059973-9.382412 4.217782-9.382412 4.217782-9.640643C4.217782-9.798452 4.088666-9.798452 4.002589-9.798452C3.500472-9.798452 2.969663-9.769759 2.453199-9.769759H1.707197C1.492004-9.769759 1.233773-9.798452 1.01858-9.798452C.932503-9.798452 .760348-9.798452 .760348-9.525874C.760348-9.382412 .875118-9.382412 1.075965-9.382412C1.750236-9.382412 1.764582-9.296335 1.793274-8.837257L2.424507-.028692C2.438853 .215193 2.453199 .30127 2.625354 .30127C2.768816 .30127 2.797508 .243885 2.926624 .028692L7.20179-7.445676L7.732599-.028692C7.746946 .215193 7.761292 .30127 7.933446 .30127C8.076908 .30127 8.119947 .229539 8.234716 .028692L12.954615-8.206024Z'/>
<path id='g1-104' d='M4.031281-9.597605C4.045627-9.65499 4.07432-9.741067 4.07432-9.812798C4.07432-9.95626 3.930858-9.95626 3.902165-9.95626C3.887819-9.95626 3.184855-9.898875 3.113124-9.884529C2.869239-9.870183 2.654046-9.84149 2.395815-9.827144C2.03716-9.798452 1.936736-9.784105 1.936736-9.525874C1.936736-9.382412 2.051506-9.382412 2.252353-9.382412C2.955316-9.382412 2.969663-9.253296 2.969663-9.109834C2.969663-9.023757 2.94097-8.908988 2.926624-8.865949L.846426-.559502C.789041-.344309 .789041-.315616 .789041-.229539C.789041 .086077 1.032926 .143462 1.176388 .143462C1.420273 .143462 1.606774-.043039 1.678505-.200847L2.324084-2.797508C2.395815-3.113124 2.481892-3.414395 2.553623-3.730011C2.711431-4.332551 2.711431-4.346897 2.984009-4.762937S3.902165-6.039748 5.006822-6.039748C5.58067-6.039748 5.781517-5.609363 5.781517-5.035515C5.781517-4.232128 5.222015-2.668392 4.906399-1.807621C4.777283-1.463312 4.705552-1.276811 4.705552-1.01858C4.705552-.373001 5.150284 .143462 5.838902 .143462C7.173098 .143462 7.675215-1.965429 7.675215-2.051506C7.675215-2.123237 7.61783-2.180622 7.531753-2.180622C7.402637-2.180622 7.388291-2.137583 7.31656-1.893698C6.986597-.746002 6.455788-.143462 5.88194-.143462C5.738478-.143462 5.508939-.157808 5.508939-.616886C5.508939-.989888 5.681093-1.448966 5.738478-1.606774C5.99671-2.295391 6.642289-3.988242 6.642289-4.820322C6.642289-5.681093 6.140172-6.326672 5.049861-6.326672C4.232128-6.326672 3.514818-5.939325 2.926624-5.193323L4.031281-9.597605Z'/>
<path id='g1-111' d='M6.541865-3.945204C6.541865-5.308092 5.652401-6.326672 4.346897-6.326672C2.453199-6.326672 .588194-4.26082 .588194-2.238007C.588194-.875118 1.477658 .143462 2.783162 .143462C4.691206 .143462 6.541865-1.92239 6.541865-3.945204ZM2.797508-.143462C2.080198-.143462 1.549389-.71731 1.549389-1.721543C1.549389-2.381468 1.893698-3.84478 2.295391-4.56209C2.94097-5.666747 3.744357-6.039748 4.332551-6.039748C5.035515-6.039748 5.58067-5.465901 5.58067-4.461667C5.58067-3.887819 5.2794-2.352776 4.734245-1.477658C4.146051-.516463 3.35701-.143462 2.797508-.143462Z'/>
<path id='g1-114' d='M5.58067-5.867594C5.135938-5.781517 4.906399-5.465901 4.906399-5.150284C4.906399-4.805976 5.178977-4.691206 5.379823-4.691206C5.781517-4.691206 6.111479-5.035515 6.111479-5.465901C6.111479-5.924979 5.666747-6.326672 4.949438-6.326672C4.37559-6.326672 3.715665-6.068441 3.113124-5.193323C3.012701-5.953671 2.438853-6.326672 1.865005-6.326672C1.305504-6.326672 1.01858-5.896286 .846426-5.58067C.60254-5.064207 .387347-4.203435 .387347-4.131704C.387347-4.07432 .444732-4.002589 .545155-4.002589C.659925-4.002589 .674271-4.016935 .760348-4.346897C.975541-5.207669 1.248119-6.039748 1.821967-6.039748C2.166276-6.039748 2.266699-5.795863 2.266699-5.379823C2.266699-5.064207 2.123237-4.504705 2.022814-4.059973L1.62112-2.510584C1.563735-2.238007 1.405927-1.592428 1.334196-1.334196C1.233773-.961195 1.075965-.286924 1.075965-.215193C1.075965-.014346 1.233773 .143462 1.448966 .143462C1.606774 .143462 1.879352 .043039 1.965429-.243885C2.008467-.358655 2.539277-2.52493 2.625354-2.854893C2.697085-3.170509 2.783162-3.471779 2.854893-3.787396C2.912278-3.988242 2.969663-4.217782 3.012701-4.404282C3.05574-4.533398 3.443087-5.236361 3.801742-5.551978C3.973896-5.709786 4.346897-6.039748 4.935091-6.039748C5.16463-6.039748 5.39417-5.99671 5.58067-5.867594Z'/>
<path id='g1-117' d='M4.892053-.832079C5.078553-.028692 5.767171 .143462 6.111479 .143462C6.570558 .143462 6.914866-.157808 7.144405-.645579C7.388291-1.162042 7.574791-2.008467 7.574791-2.051506C7.574791-2.123237 7.517407-2.180622 7.431329-2.180622C7.302214-2.180622 7.287867-2.108891 7.230483-1.893698C6.972251-.90381 6.71402-.143462 6.140172-.143462C5.709786-.143462 5.709786-.616886 5.709786-.803387C5.709786-1.133349 5.752824-1.276811 5.896286-1.879352C5.99671-2.266699 6.097133-2.654046 6.18321-3.05574L6.771404-5.39417C6.871828-5.752824 6.871828-5.781517 6.871828-5.824555C6.871828-6.039748 6.699673-6.18321 6.48448-6.18321C6.068441-6.18321 5.968017-5.824555 5.88194-5.465901C5.738478-4.906399 4.963784-1.821967 4.86336-1.31985C4.849014-1.31985 4.289513-.143462 3.24224-.143462C2.496238-.143462 2.352776-.789041 2.352776-1.31985C2.352776-2.137583 2.75447-3.285279 3.127471-4.246474C3.299625-4.705552 3.371356-4.892053 3.371356-5.178977C3.371356-5.795863 2.926624-6.326672 2.238007-6.326672C.918157-6.326672 .387347-4.246474 .387347-4.131704C.387347-4.07432 .444732-4.002589 .545155-4.002589C.674271-4.002589 .688617-4.059973 .746002-4.26082C1.090311-5.494593 1.649813-6.039748 2.194968-6.039748C2.33843-6.039748 2.567969-6.025402 2.567969-5.566324C2.567969-5.193323 2.410161-4.777283 2.194968-4.232128C1.563735-2.52493 1.492004-1.979775 1.492004-1.549389C1.492004-.086077 2.596661 .143462 3.184855 .143462C4.103012 .143462 4.605129-.487771 4.892053-.832079Z'/>
<path id='g1-120' d='M6.800097-5.853248C6.341018-5.767171 6.168864-5.422862 6.168864-5.150284C6.168864-4.805976 6.441442-4.691206 6.642289-4.691206C7.072674-4.691206 7.373945-5.064207 7.373945-5.451554C7.373945-6.054095 6.685327-6.326672 6.082787-6.326672C5.207669-6.326672 4.719898-5.465901 4.590783-5.193323C4.26082-6.269288 3.371356-6.326672 3.113124-6.326672C1.649813-6.326672 .875118-4.447321 .875118-4.131704C.875118-4.07432 .932503-4.002589 1.032926-4.002589C1.147696-4.002589 1.176388-4.088666 1.20508-4.146051C1.692851-5.738478 2.654046-6.039748 3.070086-6.039748C3.715665-6.039748 3.84478-5.437208 3.84478-5.092899C3.84478-4.777283 3.758703-4.447321 3.586549-3.758703L3.098778-1.793274C2.883585-.932503 2.467546-.143462 1.707197-.143462C1.635466-.143462 1.276811-.143462 .975541-.329963C1.492004-.430386 1.606774-.860772 1.606774-1.032926C1.606774-1.31985 1.391581-1.492004 1.119003-1.492004C.774695-1.492004 .401693-1.190734 .401693-.731656C.401693-.129116 1.075965 .143462 1.692851 .143462C2.381468 .143462 2.869239-.401693 3.170509-.989888C3.400048-.143462 4.117358 .143462 4.648167 .143462C6.111479 .143462 6.886174-1.73589 6.886174-2.051506C6.886174-2.123237 6.828789-2.180622 6.742712-2.180622C6.613596-2.180622 6.59925-2.108891 6.556211-1.994121C6.168864-.731656 5.336785-.143462 4.691206-.143462C4.189089-.143462 3.916511-.516463 3.916511-1.104657C3.916511-1.420273 3.973896-1.649813 4.203435-2.596661L4.705552-4.547744C4.920745-5.408516 5.408516-6.039748 6.068441-6.039748C6.097133-6.039748 6.498827-6.039748 6.800097-5.853248Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -82.716005)'>
<use x='56.413267' y='83.686177' xlink:href='#g1-117'/>
<use x='64.408191' y='85.838096' xlink:href='#g4-116'/>
<use x='72.488942' y='83.686177' xlink:href='#g2-61'/>
<use x='87.399514' y='83.686177' xlink:href='#g1-27'/>
<use x='95.89839' y='83.686177' xlink:href='#g2-40'/>
<use x='101.361178' y='83.686177' xlink:href='#g1-87'/>
<use x='114.622984' y='85.838096' xlink:href='#g4-117'/>
<use x='120.32618' y='85.838096' xlink:href='#g4-120'/>
<use x='129.706223' y='83.686177' xlink:href='#g0-1'/>
<use x='136.879286' y='83.686177' xlink:href='#g1-120'/>
<use x='144.861787' y='85.838096' xlink:href='#g4-116'/>
<use x='152.145538' y='83.686177' xlink:href='#g2-43'/>
<use x='166.259112' y='83.686177' xlink:href='#g1-87'/>
<use x='179.520918' y='85.838096' xlink:href='#g4-117'/>
<use x='185.224113' y='85.838096' xlink:href='#g4-104'/>
<use x='194.650294' y='83.686177' xlink:href='#g0-1'/>
<use x='201.823357' y='83.686177' xlink:href='#g1-104'/>
<use x='209.909619' y='85.838096' xlink:href='#g4-116'/>
<use x='213.507254' y='85.838096' xlink:href='#g3-0'/>
<use x='221.256001' y='85.838096' xlink:href='#g5-49'/>
<use x='229.92345' y='83.686177' xlink:href='#g2-43'/>
<use x='244.037023' y='83.686177' xlink:href='#g1-66'/>
<use x='254.708574' y='85.838096' xlink:href='#g4-117'/>
<use x='260.909898' y='83.686177' xlink:href='#g2-41'/>
<use x='56.413267' y='104.607721' xlink:href='#g1-114'/>
<use x='62.743633' y='106.75964' xlink:href='#g4-116'/>
<use x='70.824384' y='104.607721' xlink:href='#g2-61'/>
<use x='85.734956' y='104.607721' xlink:href='#g1-27'/>
<use x='94.233832' y='104.607721' xlink:href='#g2-40'/>
<use x='99.69662' y='104.607721' xlink:href='#g1-87'/>
<use x='112.958426' y='106.75964' xlink:href='#g4-114'/>
<use x='117.729914' y='106.75964' xlink:href='#g4-120'/>
<use x='127.109948' y='104.607721' xlink:href='#g0-1'/>
<use x='134.28301' y='104.607721' xlink:href='#g1-120'/>
<use x='142.265512' y='106.75964' xlink:href='#g4-116'/>
<use x='149.549263' y='104.607721' xlink:href='#g2-43'/>
<use x='163.662837' y='104.607721' xlink:href='#g1-87'/>
<use x='176.924642' y='106.75964' xlink:href='#g4-114'/>
<use x='181.69613' y='106.75964' xlink:href='#g4-104'/>
<use x='191.122301' y='104.607721' xlink:href='#g0-1'/>
<use x='198.295364' y='104.607721' xlink:href='#g1-104'/>
<use x='206.381627' y='106.75964' xlink:href='#g4-116'/>
<use x='209.979261' y='106.75964' xlink:href='#g3-0'/>
<use x='217.728009' y='106.75964' xlink:href='#g5-49'/>
<use x='226.395457' y='104.607721' xlink:href='#g2-43'/>
<use x='240.509031' y='104.607721' xlink:href='#g1-66'/>
<use x='251.180581' y='106.75964' xlink:href='#g4-114'/>
<use x='256.450188' y='104.607721' xlink:href='#g2-41'/>
<use x='56.413267' y='125.529265' xlink:href='#g1-111'/>
<use x='63.166189' y='127.681184' xlink:href='#g4-116'/>
<use x='71.24694' y='125.529265' xlink:href='#g2-61'/>
<use x='86.157512' y='125.529265' xlink:href='#g2-116'/>
<use x='91.620301' y='125.529265' xlink:href='#g2-97'/>
<use x='98.643886' y='125.529265' xlink:href='#g2-110'/>
<use x='106.44787' y='125.529265' xlink:href='#g2-104'/>
<use x='114.251805' y='125.529265' xlink:href='#g2-40'/>
<use x='119.714593' y='125.529265' xlink:href='#g1-87'/>
<use x='132.976399' y='127.681184' xlink:href='#g4-111'/>
<use x='137.805521' y='127.681184' xlink:href='#g4-120'/>
<use x='147.185566' y='125.529265' xlink:href='#g0-1'/>
<use x='154.358629' y='125.529265' xlink:href='#g1-120'/>
<use x='162.34113' y='127.681184' xlink:href='#g4-116'/>
<use x='169.624882' y='125.529265' xlink:href='#g2-43'/>
<use x='183.738455' y='125.529265' xlink:href='#g1-87'/>
<use x='197.000261' y='127.681184' xlink:href='#g4-111'/>
<use x='201.829383' y='127.681184' xlink:href='#g4-104'/>
<use x='211.255565' y='125.529265' xlink:href='#g0-1'/>
<use x='218.428628' y='125.529265' xlink:href='#g2-40'/>
<use x='223.891416' y='125.529265' xlink:href='#g1-114'/>
<use x='230.221782' y='127.681184' xlink:href='#g4-116'/>
<use x='237.505534' y='125.529265' xlink:href='#g0-3'/>
<use x='247.866655' y='125.529265' xlink:href='#g1-104'/>
<use x='255.952918' y='127.681184' xlink:href='#g4-116'/>
<use x='259.550553' y='127.681184' xlink:href='#g3-0'/>
<use x='267.2993' y='127.681184' xlink:href='#g5-49'/>
<use x='272.778752' y='125.529265' xlink:href='#g2-41'/>
<use x='281.429537' y='125.529265' xlink:href='#g2-43'/>
<use x='295.54311' y='125.529265' xlink:href='#g1-66'/>
<use x='306.214661' y='127.681184' xlink:href='#g4-111'/>
<use x='311.541913' y='125.529265' xlink:href='#g2-41'/>
<use x='56.413267' y='146.450809' xlink:href='#g1-104'/>
<use x='64.49953' y='148.602728' xlink:href='#g4-116'/>
<use x='72.58028' y='146.450809' xlink:href='#g2-61'/>
<use x='87.490853' y='146.450809' xlink:href='#g1-117'/>
<use x='95.485777' y='148.602728' xlink:href='#g4-116'/>
<use x='102.769528' y='146.450809' xlink:href='#g0-3'/>
<use x='113.13065' y='146.450809' xlink:href='#g1-104'/>
<use x='121.216912' y='148.602728' xlink:href='#g4-116'/>
<use x='124.814547' y='148.602728' xlink:href='#g3-0'/>
<use x='132.563294' y='148.602728' xlink:href='#g5-49'/>
<use x='141.230743' y='146.450809' xlink:href='#g2-43'/>
<use x='155.344316' y='146.450809' xlink:href='#g2-40'/>
<use x='160.807105' y='146.450809' xlink:href='#g2-49'/>
<use x='171.018686' y='146.450809' xlink:href='#g0-0'/>
<use x='185.364874' y='146.450809' xlink:href='#g1-117'/>
<use x='193.359798' y='148.602728' xlink:href='#g4-116'/>
<use x='197.455554' y='146.450809' xlink:href='#g2-41'/>
<use x='206.106338' y='146.450809' xlink:href='#g0-3'/>
<use x='216.46746' y='146.450809' xlink:href='#g1-111'/>
<use x='223.220382' y='148.602728' xlink:href='#g4-116'/>
</g>
</svg>
\ No newline at end of file
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.9.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='423.895012pt' height='134.440355pt' viewBox='-.239051 -.309026 423.895012 134.440355'>
<defs>
<path id='g0-49' d='M3.526775-6.206725C3.526775-6.425903 3.526775-6.525529 3.267746-6.525529C3.158157-6.525529 3.138232-6.525529 3.048568-6.455791C2.281445-5.88792 1.255293-5.88792 1.046077-5.88792H.846824V-5.419676H1.046077C1.205479-5.419676 1.753425-5.429639 2.34122-5.618929V-.468244H.956413V0C1.39477-.029888 2.450809-.029888 2.938979-.029888S4.483188-.029888 4.921544 0V-.468244H3.526775V-6.206725Z'/>
<path id='g0-116' d='M1.026152-3.955168V-1.225405C1.026152-.159402 1.892902 .059776 2.600249 .059776C3.35741 .059776 3.805729-.508095 3.805729-1.235367V-1.763387H3.337484V-1.255293C3.337484-.577833 3.01868-.33873 2.739726-.33873C2.161893-.33873 2.161893-.976339 2.161893-1.205479V-3.955168H3.616438V-4.423412H2.161893V-6.326276H1.693649C1.683686-5.330012 1.195517-4.343711 .209215-4.313823V-3.955168H1.026152Z'/>
<path id='g1-49' d='M4.963784-8.995065C4.963784-9.411104 4.935091-9.411104 4.476013-9.411104C3.414395-8.492948 1.821967-8.492948 1.506351-8.492948H1.233773V-7.876061H1.506351C2.008467-7.876061 2.768816-7.962139 3.342664-8.148639V-.616886H1.348542V0C1.951083-.028692 3.457433-.028692 4.131704-.028692S6.326672-.028692 6.929213 0V-.616886H4.963784V-8.995065Z'/>
<path id='g1-104' d='M7.61783-4.389936C7.61783-5.752824 7.029636-6.455788 5.451554-6.455788C4.002589-6.455788 3.299625-5.437208 3.098778-5.006822H3.084432V-9.95626L.60254-9.84149V-9.224604C1.492004-9.224604 1.592428-9.224604 1.592428-8.665102V-.616886H.60254V0C.932503-.028692 1.965429-.028692 2.367122-.028692S3.816088-.028692 4.146051 0V-.616886H3.156163V-3.672626C3.156163-5.222015 4.303859-5.982364 5.222015-5.982364C5.752824-5.982364 6.054095-5.638055 6.054095-4.547744V-.616886H5.064207V0C5.39417-.028692 6.427096-.028692 6.828789-.028692S8.277755-.028692 8.607717 0V-.616886H7.61783V-4.389936Z'/>
<path id='g1-111' d='M7.603484-3.141817C7.603484-5.078553 6.283634-6.498827 4.031281-6.498827C1.692851-6.498827 .444732-5.006822 .444732-3.141817C.444732-1.262465 1.764582 .086077 4.016935 .086077C6.355365 .086077 7.603484-1.334196 7.603484-3.141817ZM4.031281-.430386C2.166276-.430386 2.166276-2.108891 2.166276-3.285279C2.166276-3.95955 2.166276-4.67686 2.438853-5.193323C2.75447-5.767171 3.400048-6.025402 4.016935-6.025402C4.834668-6.025402 5.351131-5.638055 5.595016-5.236361C5.88194-4.719898 5.88194-3.973896 5.88194-3.285279C5.88194-2.094545 5.88194-.430386 4.031281-.430386Z'/>
<path id='g1-117' d='M5.064207-6.341018V-5.724132C5.953671-5.724132 6.054095-5.724132 6.054095-5.16463V-2.352776C6.054095-1.262465 5.408516-.387347 4.289513-.387347C3.213548-.387347 3.156163-.746002 3.156163-1.535043V-6.455788L.60254-6.341018V-5.724132C1.492004-5.724132 1.592428-5.724132 1.592428-5.16463V-1.764582C1.592428-.329963 2.553623 .086077 4.088666 .086077C4.432974 .086077 5.494593 .086077 6.111479-1.075965H6.125826V.086077L8.607717 0V-.616886C7.718253-.616886 7.61783-.616886 7.61783-1.176388V-6.455788L5.064207-6.341018Z'/>
<path id='g7-49' d='M2.929016-6.37609C2.929016-6.615193 2.929016-6.635118 2.699875-6.635118C2.082192-5.997509 1.205479-5.997509 .886675-5.997509V-5.688667C1.085928-5.688667 1.673724-5.688667 2.191781-5.947696V-.787049C2.191781-.428394 2.161893-.308842 1.265255-.308842H.946451V0C1.295143-.029888 2.161893-.029888 2.560399-.029888S3.825654-.029888 4.174346 0V-.308842H3.855542C2.958904-.308842 2.929016-.418431 2.929016-.787049V-6.37609Z'/>
<path id='g2-0' d='M9.454143-3.299625C9.698028-3.299625 9.95626-3.299625 9.95626-3.586549S9.698028-3.873473 9.454143-3.873473H1.692851C1.448966-3.873473 1.190734-3.873473 1.190734-3.586549S1.448966-3.299625 1.692851-3.299625H9.454143Z'/>
<path id='g2-1' d='M2.75447-3.586549C2.75447-4.002589 2.410161-4.346897 1.994121-4.346897S1.233773-4.002589 1.233773-3.586549S1.578082-2.826201 1.994121-2.826201S2.75447-3.170509 2.75447-3.586549Z'/>
<path id='g2-3' d='M3.945204-6.125826C3.95955-6.326672 3.95955-6.670981 3.586549-6.670981C3.35701-6.670981 3.170509-6.48448 3.213548-6.29798V-6.111479L3.414395-3.887819L1.578082-5.222015C1.448966-5.293746 1.420273-5.322439 1.31985-5.322439C1.119003-5.322439 .932503-5.121592 .932503-4.920745C.932503-4.691206 1.075965-4.633821 1.219427-4.56209L3.256586-3.586549L1.276811-2.625354C1.047272-2.510584 .932503-2.453199 .932503-2.238007S1.119003-1.836313 1.31985-1.836313C1.420273-1.836313 1.448966-1.836313 1.807621-2.108891L3.414395-3.270933L3.199202-.860772C3.199202-.559502 3.457433-.487771 3.572203-.487771C3.744357-.487771 3.95955-.588194 3.95955-.860772L3.744357-3.270933L5.58067-1.936736C5.709786-1.865005 5.738478-1.836313 5.838902-1.836313C6.039748-1.836313 6.226249-2.03716 6.226249-2.238007C6.226249-2.453199 6.097133-2.52493 5.924979-2.611008C5.064207-3.041393 5.035515-3.041393 3.902165-3.572203L5.88194-4.533398C6.111479-4.648167 6.226249-4.705552 6.226249-4.920745S6.039748-5.322439 5.838902-5.322439C5.738478-5.322439 5.709786-5.322439 5.351131-5.049861L3.744357-3.887819L3.945204-6.125826Z'/>
<path id='g2-41' d='M10.415338-4.691206C11.017878-4.174743 11.749534-3.801742 12.222959-3.586549C11.706496-3.35701 11.003532-2.984009 10.415338-2.481892H1.305504C1.061618-2.481892 .789041-2.481892 .789041-2.194968S1.047272-1.908044 1.291158-1.908044H9.769759C9.081142-1.248119 8.33514 .014346 8.33514 .200847C8.33514 .358655 8.52164 .358655 8.607717 .358655C8.722487 .358655 8.82291 .358655 8.880295 .243885C9.181565-.30127 9.583259-1.061618 10.515761-1.893698C11.505649-2.768816 12.466844-3.156163 13.212846-3.371356C13.456732-3.457433 13.471078-3.471779 13.49977-3.500472C13.528463-3.514818 13.528463-3.557857 13.528463-3.586549S13.528463-3.643934 13.514116-3.672626L13.471078-3.701318C13.442385-3.715665 13.428039-3.730011 13.155461-3.816088C11.218725-4.389936 9.784105-5.69544 8.980718-7.230483C8.82291-7.517407 8.808564-7.531753 8.607717-7.531753C8.52164-7.531753 8.33514-7.531753 8.33514-7.373945C8.33514-7.187444 9.066796-5.939325 9.769759-5.265054H1.291158C1.047272-5.265054 .789041-5.265054 .789041-4.97813S1.061618-4.691206 1.305504-4.691206H10.415338Z'/>
<path id='g2-94' d='M5.107246-8.277755C4.992476-8.52164 4.906399-8.579025 4.777283-8.579025C4.590783-8.579025 4.547744-8.478602 4.461667-8.277755L.889464-.258232C.803387-.071731 .789041-.043039 .789041 .028692C.789041 .186501 .918157 .315616 1.075965 .315616C1.176388 .315616 1.291158 .286924 1.405927 .014346L4.777283-7.589138L8.148639 .014346C8.277755 .315616 8.421217 .315616 8.478602 .315616C8.63641 .315616 8.765526 .186501 8.765526 .028692C8.765526 0 8.765526-.028692 8.679448-.200847L5.107246-8.277755Z'/>
<path id='g4-40' d='M4.662514 3.486126C4.662514 3.443087 4.662514 3.414395 4.418628 3.170509C2.984009 1.721543 2.180622-.645579 2.180622-3.572203C2.180622-6.355365 2.854893-8.751179 4.519052-10.44403C4.662514-10.573146 4.662514-10.601839 4.662514-10.644877C4.662514-10.730954 4.590783-10.759647 4.533398-10.759647C4.346897-10.759647 3.170509-9.726721 2.467546-8.320793C1.73589-6.871828 1.405927-5.336785 1.405927-3.572203C1.405927-2.295391 1.606774-.588194 2.352776 .946849C3.199202 2.668392 4.37559 3.600895 4.533398 3.600895C4.590783 3.600895 4.662514 3.572203 4.662514 3.486126Z'/>
<path id='g4-41' d='M4.045627-3.572203C4.045627-4.662514 3.902165-6.441442 3.098778-8.105601C2.252353-9.827144 1.075965-10.759647 .918157-10.759647C.860772-10.759647 .789041-10.730954 .789041-10.644877C.789041-10.601839 .789041-10.573146 1.032926-10.329261C2.467546-8.880295 3.270933-6.513173 3.270933-3.586549C3.270933-.803387 2.596661 1.592428 .932503 3.285279C.789041 3.414395 .789041 3.443087 .789041 3.486126C.789041 3.572203 .860772 3.600895 .918157 3.600895C1.104657 3.600895 2.281045 2.567969 2.984009 1.162042C3.715665-.30127 4.045627-1.850659 4.045627-3.572203Z'/>
<path id='g4-43' d='M5.724132-3.313971H9.683682C9.884529-3.313971 10.14276-3.313971 10.14276-3.572203C10.14276-3.84478 9.898875-3.84478 9.683682-3.84478H5.724132V-7.80433C5.724132-8.005177 5.724132-8.263409 5.465901-8.263409C5.193323-8.263409 5.193323-8.019523 5.193323-7.80433V-3.84478H1.233773C1.032926-3.84478 .774695-3.84478 .774695-3.586549C.774695-3.313971 1.01858-3.313971 1.233773-3.313971H5.193323V.645579C5.193323 .846426 5.193323 1.104657 5.451554 1.104657C5.724132 1.104657 5.724132 .860772 5.724132 .645579V-3.313971Z'/>
<path id='g4-49' d='M4.131704-9.195911C4.131704-9.525874 4.131704-9.54022 3.84478-9.54022C3.500472-9.152873 2.783162-8.622064 1.305504-8.622064V-8.206024C1.635466-8.206024 2.352776-8.206024 3.141817-8.579025V-1.104657C3.141817-.588194 3.098778-.41604 1.836313-.41604H1.391581V0C1.778928-.028692 3.170509-.028692 3.643934-.028692S5.494593-.028692 5.88194 0V-.41604H5.437208C4.174743-.41604 4.131704-.588194 4.131704-1.104657V-9.195911Z'/>
<path id='g4-61' d='M9.683682-4.648167C9.884529-4.648167 10.14276-4.648167 10.14276-4.906399C10.14276-5.178977 9.898875-5.178977 9.683682-5.178977H1.233773C1.032926-5.178977 .774695-5.178977 .774695-4.920745C.774695-4.648167 1.01858-4.648167 1.233773-4.648167H9.683682ZM9.683682-1.979775C9.884529-1.979775 10.14276-1.979775 10.14276-2.238007C10.14276-2.510584 9.898875-2.510584 9.683682-2.510584H1.233773C1.032926-2.510584 .774695-2.510584 .774695-2.252353C.774695-1.979775 1.01858-1.979775 1.233773-1.979775H9.683682Z'/>
<path id='g6-104' d='M2.859278-6.804483C2.859278-6.814446 2.859278-6.914072 2.729763-6.914072C2.500623-6.914072 1.77335-6.834371 1.514321-6.814446C1.43462-6.804483 1.325031-6.794521 1.325031-6.615193C1.325031-6.495641 1.414695-6.495641 1.564134-6.495641C2.042341-6.495641 2.062267-6.425903 2.062267-6.326276L2.032379-6.127024L.587796-.388543C.547945-.249066 .547945-.229141 .547945-.169365C.547945 .059776 .747198 .109589 .836862 .109589C.996264 .109589 1.155666-.009963 1.205479-.14944L1.39477-.9066L1.613948-1.803238C1.673724-2.022416 1.733499-2.241594 1.783313-2.470735C1.803238-2.530511 1.882939-2.859278 1.892902-2.919054C1.92279-3.008717 2.231631-3.566625 2.570361-3.835616C2.789539-3.995019 3.098381-4.184309 3.526775-4.184309S4.064757-3.845579 4.064757-3.486924C4.064757-2.948941 3.686177-1.863014 3.447073-1.255293C3.367372-1.026152 3.317559-.9066 3.317559-.707347C3.317559-.239103 3.666252 .109589 4.134496 .109589C5.070984 .109589 5.439601-1.344956 5.439601-1.424658C5.439601-1.524284 5.349938-1.524284 5.32005-1.524284C5.220423-1.524284 5.220423-1.494396 5.17061-1.344956C5.021171-.816936 4.702366-.109589 4.154421-.109589C3.985056-.109589 3.915318-.209215 3.915318-.438356C3.915318-.687422 4.004981-.926526 4.094645-1.145704C4.254047-1.574097 4.702366-2.759651 4.702366-3.337484C4.702366-3.985056 4.303861-4.403487 3.556663-4.403487C2.929016-4.403487 2.450809-4.094645 2.082192-3.636364L2.859278-6.804483Z'/>
<path id='g6-116' d='M2.052304-3.985056H2.988792C3.188045-3.985056 3.287671-3.985056 3.287671-4.184309C3.287671-4.293898 3.188045-4.293898 3.008717-4.293898H2.132005C2.49066-5.708593 2.540473-5.907846 2.540473-5.967621C2.540473-6.136986 2.420922-6.236613 2.251557-6.236613C2.221669-6.236613 1.942715-6.22665 1.853051-5.877958L1.464508-4.293898H.52802C.328767-4.293898 .229141-4.293898 .229141-4.104608C.229141-3.985056 .308842-3.985056 .508095-3.985056H1.384807C.667497-1.155666 .627646-.986301 .627646-.806974C.627646-.268991 1.006227 .109589 1.544209 .109589C2.560399 .109589 3.128269-1.344956 3.128269-1.424658C3.128269-1.524284 3.048568-1.524284 3.008717-1.524284C2.919054-1.524284 2.909091-1.494396 2.859278-1.384807C2.430884-.348692 1.902864-.109589 1.564134-.109589C1.354919-.109589 1.255293-.239103 1.255293-.56787C1.255293-.806974 1.275218-.876712 1.315068-1.046077L2.052304-3.985056Z'/>
<path id='g6-117' d='M3.486924-.557908C3.596513-.14944 3.945205 .109589 4.373599 .109589C4.722291 .109589 4.951432-.119552 5.110834-.438356C5.280199-.797011 5.409714-1.404732 5.409714-1.424658C5.409714-1.524284 5.32005-1.524284 5.290162-1.524284C5.190535-1.524284 5.180573-1.484433 5.150685-1.344956C5.011208-.787049 4.821918-.109589 4.403487-.109589C4.194271-.109589 4.094645-.239103 4.094645-.56787C4.094645-.787049 4.214197-1.255293 4.293898-1.603985L4.572852-2.67995C4.60274-2.82939 4.702366-3.20797 4.742217-3.35741C4.79203-3.58655 4.891656-3.965131 4.891656-4.024907C4.891656-4.204234 4.752179-4.293898 4.60274-4.293898C4.552927-4.293898 4.293898-4.283935 4.214197-3.945205C4.024907-3.217933 3.58655-1.474471 3.466999-.946451C3.457036-.9066 3.058531-.109589 2.331258-.109589C1.8132-.109589 1.713574-.557908 1.713574-.926526C1.713574-1.484433 1.992528-2.271482 2.251557-2.958904C2.371108-3.257783 2.420922-3.39726 2.420922-3.58655C2.420922-4.034869 2.102117-4.403487 1.603985-4.403487C.657534-4.403487 .288917-2.958904 .288917-2.86924C.288917-2.769614 .388543-2.769614 .408468-2.769614C.508095-2.769614 .518057-2.789539 .56787-2.948941C.816936-3.815691 1.195517-4.184309 1.574097-4.184309C1.663761-4.184309 1.823163-4.174346 1.823163-3.855542C1.823163-3.616438 1.713574-3.327522 1.653798-3.178082C1.285181-2.191781 1.075965-1.574097 1.075965-1.085928C1.075965-.139477 1.763387 .109589 2.30137 .109589C2.958904 .109589 3.317559-.33873 3.486924-.557908Z'/>
<path id='g6-120' d='M3.327522-3.008717C3.387298-3.267746 3.616438-4.184309 4.313823-4.184309C4.363636-4.184309 4.60274-4.184309 4.811955-4.054795C4.533001-4.004981 4.333748-3.755915 4.333748-3.516812C4.333748-3.35741 4.443337-3.16812 4.712329-3.16812C4.931507-3.16812 5.250311-3.347447 5.250311-3.745953C5.250311-4.26401 4.662516-4.403487 4.323786-4.403487C3.745953-4.403487 3.39726-3.875467 3.277709-3.646326C3.028643-4.303861 2.49066-4.403487 2.201743-4.403487C1.165629-4.403487 .597758-3.118306 .597758-2.86924C.597758-2.769614 .697385-2.769614 .71731-2.769614C.797011-2.769614 .826899-2.789539 .846824-2.879203C1.185554-3.935243 1.843088-4.184309 2.181818-4.184309C2.371108-4.184309 2.719801-4.094645 2.719801-3.516812C2.719801-3.20797 2.550436-2.540473 2.181818-1.145704C2.022416-.52802 1.673724-.109589 1.235367-.109589C1.175592-.109589 .946451-.109589 .737235-.239103C.986301-.288917 1.205479-.498132 1.205479-.777086C1.205479-1.046077 .986301-1.125778 .836862-1.125778C.537983-1.125778 .288917-.86675 .288917-.547945C.288917-.089664 .787049 .109589 1.225405 .109589C1.882939 .109589 2.241594-.587796 2.271482-.647572C2.391034-.278954 2.749689 .109589 3.347447 .109589C4.373599 .109589 4.941469-1.175592 4.941469-1.424658C4.941469-1.524284 4.851806-1.524284 4.821918-1.524284C4.732254-1.524284 4.712329-1.484433 4.692403-1.414695C4.363636-.348692 3.686177-.109589 3.367372-.109589C2.978829-.109589 2.819427-.428394 2.819427-.767123C2.819427-.986301 2.879203-1.205479 2.988792-1.643836L3.327522-3.008717Z'/>
<use id='g5-0' xlink:href='#g2-0' transform='scale(.694445)'/>
<use id='g5-3' xlink:href='#g2-3' transform='scale(.694445)'/>
<path id='g3-27' d='M7.287867-5.408516C7.474368-5.408516 7.947792-5.408516 7.947792-5.867594C7.947792-6.18321 7.675215-6.18321 7.416983-6.18321H4.246474C2.094545-6.18321 .545155-3.787396 .545155-2.094545C.545155-.875118 1.334196 .143462 2.625354 .143462C4.318205 .143462 6.168864-1.678505 6.168864-3.830434C6.168864-4.389936 6.039748-4.935091 5.69544-5.408516H7.287867ZM2.6397-.143462C1.908044-.143462 1.377235-.702964 1.377235-1.692851C1.377235-2.553623 1.893698-5.408516 4.002589-5.408516C4.619475-5.408516 5.308092-5.107246 5.308092-4.002589C5.308092-3.500472 5.078553-2.295391 4.576436-1.463312C4.059973-.616886 3.285279-.143462 2.6397-.143462Z'/>
<path id='g3-66' d='M5.250708-8.82291C5.379823-9.35372 5.437208-9.382412 5.99671-9.382412H7.861715C9.482835-9.382412 9.482835-8.005177 9.482835-7.876061C9.482835-6.71402 8.320793-5.236361 6.427096-5.236361H4.361243L5.250708-8.82291ZM7.675215-5.121592C9.23895-5.408516 10.659223-6.498827 10.659223-7.818677C10.659223-8.93768 9.669336-9.798452 8.048216-9.798452H3.443087C3.170509-9.798452 3.041393-9.798452 3.041393-9.525874C3.041393-9.382412 3.170509-9.382412 3.385702-9.382412C4.26082-9.382412 4.26082-9.267642 4.26082-9.109834C4.26082-9.081142 4.26082-8.995065 4.203435-8.779872L2.266699-1.061618C2.137583-.559502 2.108891-.41604 1.104657-.41604C.832079-.41604 .688617-.41604 .688617-.157808C.688617 0 .774695 0 1.061618 0H5.982364C8.177332 0 9.870183-1.664159 9.870183-3.113124C9.870183-4.289513 8.837257-5.006822 7.675215-5.121592ZM5.638055-.41604H3.701318C3.500472-.41604 3.471779-.41604 3.385702-.430386C3.227894-.444732 3.213548-.473424 3.213548-.588194C3.213548-.688617 3.24224-.774695 3.270933-.90381L4.275166-4.949438H6.972251C8.665102-4.949438 8.665102-3.371356 8.665102-3.256586C8.665102-1.879352 7.416983-.41604 5.638055-.41604Z'/>
<path id='g3-87' d='M12.954615-8.206024C13.284577-8.765526 13.600193-9.296335 14.460965-9.382412C14.590081-9.396758 14.719197-9.411104 14.719197-9.640643C14.719197-9.798452 14.590081-9.798452 14.547042-9.798452C14.51835-9.798452 14.417927-9.769759 13.471078-9.769759C13.040692-9.769759 12.59596-9.798452 12.17992-9.798452C12.093843-9.798452 11.921689-9.798452 11.921689-9.525874C11.921689-9.396758 12.036458-9.382412 12.122535-9.382412C12.409459-9.368066 12.868538-9.281989 12.868538-8.837257C12.868538-8.650756 12.811153-8.550333 12.667691-8.306447L8.751179-1.448966L8.234716-8.923334C8.234716-9.095488 8.392524-9.368066 9.195911-9.382412C9.382412-9.382412 9.525874-9.382412 9.525874-9.65499C9.525874-9.798452 9.382412-9.798452 9.310681-9.798452C8.808564-9.798452 8.277755-9.769759 7.761292-9.769759H7.01529C6.800097-9.769759 6.541865-9.798452 6.326672-9.798452C6.240595-9.798452 6.068441-9.798452 6.068441-9.525874C6.068441-9.382412 6.168864-9.382412 6.412749-9.382412C7.072674-9.382412 7.072674-9.368066 7.130059-8.492948L7.173098-7.976485L3.457433-1.448966L2.926624-8.851603C2.926624-9.009411 2.926624-9.368066 3.902165-9.382412C4.059973-9.382412 4.217782-9.382412 4.217782-9.640643C4.217782-9.798452 4.088666-9.798452 4.002589-9.798452C3.500472-9.798452 2.969663-9.769759 2.453199-9.769759H1.707197C1.492004-9.769759 1.233773-9.798452 1.01858-9.798452C.932503-9.798452 .760348-9.798452 .760348-9.525874C.760348-9.382412 .875118-9.382412 1.075965-9.382412C1.750236-9.382412 1.764582-9.296335 1.793274-8.837257L2.424507-.028692C2.438853 .215193 2.453199 .30127 2.625354 .30127C2.768816 .30127 2.797508 .243885 2.926624 .028692L7.20179-7.445676L7.732599-.028692C7.746946 .215193 7.761292 .30127 7.933446 .30127C8.076908 .30127 8.119947 .229539 8.234716 .028692L12.954615-8.206024Z'/>
<path id='g3-97' d='M4.318205-1.707197C4.246474-1.463312 4.246474-1.43462 4.045627-1.162042C3.730011-.760348 3.098778-.143462 2.424507-.143462C1.836313-.143462 1.506351-.674271 1.506351-1.520697C1.506351-2.309738 1.951083-3.916511 2.22366-4.519052C2.711431-5.523285 3.385702-6.039748 3.945204-6.039748C4.892053-6.039748 5.078553-4.86336 5.078553-4.748591C5.078553-4.734245 5.035515-4.547744 5.021168-4.519052L4.318205-1.707197ZM5.236361-5.379823C5.078553-5.752824 4.691206-6.326672 3.945204-6.326672C2.324084-6.326672 .573848-4.232128 .573848-2.108891C.573848-.688617 1.405927 .143462 2.381468 .143462C3.170509 .143462 3.84478-.473424 4.246474-.946849C4.389936-.100423 5.064207 .143462 5.494593 .143462S6.269288-.11477 6.527519-.631233C6.757058-1.119003 6.957905-1.994121 6.957905-2.051506C6.957905-2.123237 6.90052-2.180622 6.814443-2.180622C6.685327-2.180622 6.670981-2.108891 6.613596-1.893698C6.398403-1.047272 6.125826-.143462 5.537632-.143462C5.121592-.143462 5.092899-.516463 5.092899-.803387C5.092899-1.133349 5.135938-1.291158 5.265054-1.850659C5.365477-2.209314 5.437208-2.52493 5.551978-2.94097C6.082787-5.092899 6.211903-5.609363 6.211903-5.69544C6.211903-5.896286 6.054095-6.054095 5.838902-6.054095C5.379823-6.054095 5.265054-5.551978 5.236361-5.379823Z'/>
<path id='g3-104' d='M4.031281-9.597605C4.045627-9.65499 4.07432-9.741067 4.07432-9.812798C4.07432-9.95626 3.930858-9.95626 3.902165-9.95626C3.887819-9.95626 3.184855-9.898875 3.113124-9.884529C2.869239-9.870183 2.654046-9.84149 2.395815-9.827144C2.03716-9.798452 1.936736-9.784105 1.936736-9.525874C1.936736-9.382412 2.051506-9.382412 2.252353-9.382412C2.955316-9.382412 2.969663-9.253296 2.969663-9.109834C2.969663-9.023757 2.94097-8.908988 2.926624-8.865949L.846426-.559502C.789041-.344309 .789041-.315616 .789041-.229539C.789041 .086077 1.032926 .143462 1.176388 .143462C1.420273 .143462 1.606774-.043039 1.678505-.200847L2.324084-2.797508C2.395815-3.113124 2.481892-3.414395 2.553623-3.730011C2.711431-4.332551 2.711431-4.346897 2.984009-4.762937S3.902165-6.039748 5.006822-6.039748C5.58067-6.039748 5.781517-5.609363 5.781517-5.035515C5.781517-4.232128 5.222015-2.668392 4.906399-1.807621C4.777283-1.463312 4.705552-1.276811 4.705552-1.01858C4.705552-.373001 5.150284 .143462 5.838902 .143462C7.173098 .143462 7.675215-1.965429 7.675215-2.051506C7.675215-2.123237 7.61783-2.180622 7.531753-2.180622C7.402637-2.180622 7.388291-2.137583 7.31656-1.893698C6.986597-.746002 6.455788-.143462 5.88194-.143462C5.738478-.143462 5.508939-.157808 5.508939-.616886C5.508939-.989888 5.681093-1.448966 5.738478-1.606774C5.99671-2.295391 6.642289-3.988242 6.642289-4.820322C6.642289-5.681093 6.140172-6.326672 5.049861-6.326672C4.232128-6.326672 3.514818-5.939325 2.926624-5.193323L4.031281-9.597605Z'/>
<path id='g3-111' d='M6.541865-3.945204C6.541865-5.308092 5.652401-6.326672 4.346897-6.326672C2.453199-6.326672 .588194-4.26082 .588194-2.238007C.588194-.875118 1.477658 .143462 2.783162 .143462C4.691206 .143462 6.541865-1.92239 6.541865-3.945204ZM2.797508-.143462C2.080198-.143462 1.549389-.71731 1.549389-1.721543C1.549389-2.381468 1.893698-3.84478 2.295391-4.56209C2.94097-5.666747 3.744357-6.039748 4.332551-6.039748C5.035515-6.039748 5.58067-5.465901 5.58067-4.461667C5.58067-3.887819 5.2794-2.352776 4.734245-1.477658C4.146051-.516463 3.35701-.143462 2.797508-.143462Z'/>
<path id='g3-117' d='M4.892053-.832079C5.078553-.028692 5.767171 .143462 6.111479 .143462C6.570558 .143462 6.914866-.157808 7.144405-.645579C7.388291-1.162042 7.574791-2.008467 7.574791-2.051506C7.574791-2.123237 7.517407-2.180622 7.431329-2.180622C7.302214-2.180622 7.287867-2.108891 7.230483-1.893698C6.972251-.90381 6.71402-.143462 6.140172-.143462C5.709786-.143462 5.709786-.616886 5.709786-.803387C5.709786-1.133349 5.752824-1.276811 5.896286-1.879352C5.99671-2.266699 6.097133-2.654046 6.18321-3.05574L6.771404-5.39417C6.871828-5.752824 6.871828-5.781517 6.871828-5.824555C6.871828-6.039748 6.699673-6.18321 6.48448-6.18321C6.068441-6.18321 5.968017-5.824555 5.88194-5.465901C5.738478-4.906399 4.963784-1.821967 4.86336-1.31985C4.849014-1.31985 4.289513-.143462 3.24224-.143462C2.496238-.143462 2.352776-.789041 2.352776-1.31985C2.352776-2.137583 2.75447-3.285279 3.127471-4.246474C3.299625-4.705552 3.371356-4.892053 3.371356-5.178977C3.371356-5.795863 2.926624-6.326672 2.238007-6.326672C.918157-6.326672 .387347-4.246474 .387347-4.131704C.387347-4.07432 .444732-4.002589 .545155-4.002589C.674271-4.002589 .688617-4.059973 .746002-4.26082C1.090311-5.494593 1.649813-6.039748 2.194968-6.039748C2.33843-6.039748 2.567969-6.025402 2.567969-5.566324C2.567969-5.193323 2.410161-4.777283 2.194968-4.232128C1.563735-2.52493 1.492004-1.979775 1.492004-1.549389C1.492004-.086077 2.596661 .143462 3.184855 .143462C4.103012 .143462 4.605129-.487771 4.892053-.832079Z'/>
<path id='g3-120' d='M6.800097-5.853248C6.341018-5.767171 6.168864-5.422862 6.168864-5.150284C6.168864-4.805976 6.441442-4.691206 6.642289-4.691206C7.072674-4.691206 7.373945-5.064207 7.373945-5.451554C7.373945-6.054095 6.685327-6.326672 6.082787-6.326672C5.207669-6.326672 4.719898-5.465901 4.590783-5.193323C4.26082-6.269288 3.371356-6.326672 3.113124-6.326672C1.649813-6.326672 .875118-4.447321 .875118-4.131704C.875118-4.07432 .932503-4.002589 1.032926-4.002589C1.147696-4.002589 1.176388-4.088666 1.20508-4.146051C1.692851-5.738478 2.654046-6.039748 3.070086-6.039748C3.715665-6.039748 3.84478-5.437208 3.84478-5.092899C3.84478-4.777283 3.758703-4.447321 3.586549-3.758703L3.098778-1.793274C2.883585-.932503 2.467546-.143462 1.707197-.143462C1.635466-.143462 1.276811-.143462 .975541-.329963C1.492004-.430386 1.606774-.860772 1.606774-1.032926C1.606774-1.31985 1.391581-1.492004 1.119003-1.492004C.774695-1.492004 .401693-1.190734 .401693-.731656C.401693-.129116 1.075965 .143462 1.692851 .143462C2.381468 .143462 2.869239-.401693 3.170509-.989888C3.400048-.143462 4.117358 .143462 4.648167 .143462C6.111479 .143462 6.886174-1.73589 6.886174-2.051506C6.886174-2.123237 6.828789-2.180622 6.742712-2.180622C6.613596-2.180622 6.59925-2.108891 6.556211-1.994121C6.168864-.731656 5.336785-.143462 4.691206-.143462C4.189089-.143462 3.916511-.516463 3.916511-1.104657C3.916511-1.420273 3.973896-1.649813 4.203435-2.596661L4.705552-4.547744C4.920745-5.408516 5.408516-6.039748 6.068441-6.039748C6.097133-6.039748 6.498827-6.039748 6.800097-5.853248Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -82.716005)'>
<use x='56.413267' y='83.686177' xlink:href='#g3-117'/>
<use x='64.408191' y='77.762757' xlink:href='#g5-3'/>
<use x='64.408191' y='87.232798' xlink:href='#g6-116'/>
<use x='73.872654' y='83.686177' xlink:href='#g4-61'/>
<use x='88.783226' y='83.686177' xlink:href='#g3-27'/>
<use x='97.282101' y='83.686177' xlink:href='#g4-40'/>
<use x='102.74489' y='83.686177' xlink:href='#g4-40'/>
<use x='108.207679' y='83.686177' xlink:href='#g2-0'/>
<use x='119.36587' y='83.686177' xlink:href='#g4-49'/>
<use x='126.389456' y='83.686177' xlink:href='#g4-41'/>
<use x='131.852244' y='83.686177' xlink:href='#g3-87'/>
<use x='145.11405' y='85.838096' xlink:href='#g6-117'/>
<use x='150.817246' y='85.838096' xlink:href='#g6-120'/>
<use x='160.197289' y='83.686177' xlink:href='#g2-1'/>
<use x='167.370352' y='83.686177' xlink:href='#g3-120'/>
<use x='175.352853' y='85.838096' xlink:href='#g6-116'/>
<use x='182.636604' y='83.686177' xlink:href='#g4-43'/>
<use x='196.750178' y='83.686177' xlink:href='#g4-40'/>
<use x='202.212966' y='83.686177' xlink:href='#g2-0'/>
<use x='213.371158' y='83.686177' xlink:href='#g4-49'/>
<use x='220.394743' y='83.686177' xlink:href='#g4-41'/>
<use x='225.857532' y='83.686177' xlink:href='#g3-87'/>
<use x='239.119338' y='85.838096' xlink:href='#g6-117'/>
<use x='244.822534' y='85.838096' xlink:href='#g6-104'/>
<use x='254.248714' y='83.686177' xlink:href='#g2-1'/>
<use x='261.421777' y='83.686177' xlink:href='#g3-104'/>
<use x='269.508039' y='85.838096' xlink:href='#g6-116'/>
<use x='273.105674' y='85.838096' xlink:href='#g5-0'/>
<use x='280.854422' y='85.838096' xlink:href='#g7-49'/>
<use x='289.52187' y='83.686177' xlink:href='#g4-43'/>
<use x='303.635443' y='83.686177' xlink:href='#g4-40'/>
<use x='309.098232' y='83.686177' xlink:href='#g2-0'/>
<use x='320.256424' y='83.686177' xlink:href='#g4-49'/>
<use x='327.280009' y='83.686177' xlink:href='#g4-41'/>
<use x='332.742797' y='83.686177' xlink:href='#g3-66'/>
<use x='343.414348' y='85.838096' xlink:href='#g6-117'/>
<use x='349.615672' y='83.686177' xlink:href='#g4-41'/>
<use x='56.413267' y='104.607721' xlink:href='#g3-117'/>
<use x='64.408191' y='98.684301' xlink:href='#g5-3'/>
<use x='64.408191' y='108.154342' xlink:href='#g6-116'/>
<use x='73.872654' y='104.607721' xlink:href='#g4-61'/>
<use x='88.783226' y='104.607721' xlink:href='#g3-27'/>
<use x='97.282101' y='104.607721' xlink:href='#g4-40'/>
<use x='102.74489' y='104.607721' xlink:href='#g2-0'/>
<use x='113.903082' y='104.607721' xlink:href='#g4-40'/>
<use x='119.36587' y='104.607721' xlink:href='#g3-87'/>
<use x='132.627676' y='106.75964' xlink:href='#g6-117'/>
<use x='138.330872' y='106.75964' xlink:href='#g6-120'/>
<use x='147.710915' y='104.607721' xlink:href='#g2-1'/>
<use x='154.883978' y='104.607721' xlink:href='#g3-120'/>
<use x='162.866479' y='106.75964' xlink:href='#g6-116'/>
<use x='170.150231' y='104.607721' xlink:href='#g4-43'/>
<use x='184.263804' y='104.607721' xlink:href='#g3-87'/>
<use x='197.52561' y='106.75964' xlink:href='#g6-117'/>
<use x='203.228805' y='106.75964' xlink:href='#g6-104'/>
<use x='212.654986' y='104.607721' xlink:href='#g2-1'/>
<use x='219.828049' y='104.607721' xlink:href='#g3-104'/>
<use x='227.914311' y='106.75964' xlink:href='#g6-116'/>
<use x='231.511946' y='106.75964' xlink:href='#g5-0'/>
<use x='239.260694' y='106.75964' xlink:href='#g7-49'/>
<use x='247.928142' y='104.607721' xlink:href='#g4-43'/>
<use x='262.041715' y='104.607721' xlink:href='#g3-66'/>
<use x='272.713266' y='106.75964' xlink:href='#g6-117'/>
<use x='278.91459' y='104.607721' xlink:href='#g4-41'/>
<use x='284.377379' y='104.607721' xlink:href='#g4-41'/>
<use x='293.028163' y='104.607721' xlink:href='#g2-94'/>
<use x='305.780322' y='104.607721' xlink:href='#g4-40'/>
<use x='311.24311' y='104.607721' xlink:href='#g4-49'/>
<use x='321.454692' y='104.607721' xlink:href='#g2-0'/>
<use x='335.80088' y='104.607721' xlink:href='#g3-27'/>
<use x='344.299755' y='104.607721' xlink:href='#g4-40'/>
<use x='349.762544' y='104.607721' xlink:href='#g3-97'/>
<use x='357.136474' y='104.607721' xlink:href='#g4-41'/>
<use x='362.599262' y='104.607721' xlink:href='#g4-41'/>
<use x='372.047046' y='104.607721' xlink:href='#g4-61'/>
<use x='386.957619' y='104.607721' xlink:href='#g3-27'/>
<use x='395.456494' y='104.607721' xlink:href='#g4-40'/>
<use x='400.919283' y='104.607721' xlink:href='#g2-0'/>
<use x='412.077474' y='104.607721' xlink:href='#g3-97'/>
<use x='419.451404' y='104.607721' xlink:href='#g4-41'/>
<use x='56.413267' y='125.529265' xlink:href='#g3-117'/>
<use x='64.408191' y='119.605845' xlink:href='#g5-3'/>
<use x='64.408191' y='129.075887' xlink:href='#g6-116'/>
<use x='73.872654' y='125.529265' xlink:href='#g4-61'/>
<use x='88.783226' y='125.529265' xlink:href='#g3-27'/>
<use x='97.282101' y='125.529265' xlink:href='#g4-40'/>
<use x='102.74489' y='125.529265' xlink:href='#g2-0'/>
<use x='113.903082' y='125.529265' xlink:href='#g4-40'/>
<use x='119.36587' y='125.529265' xlink:href='#g3-87'/>
<use x='132.627676' y='127.681184' xlink:href='#g6-117'/>
<use x='138.330872' y='127.681184' xlink:href='#g6-120'/>
<use x='147.710915' y='125.529265' xlink:href='#g2-1'/>
<use x='154.883978' y='125.529265' xlink:href='#g3-120'/>
<use x='162.866479' y='127.681184' xlink:href='#g6-116'/>
<use x='170.150231' y='125.529265' xlink:href='#g4-43'/>
<use x='184.263804' y='125.529265' xlink:href='#g3-87'/>
<use x='197.52561' y='127.681184' xlink:href='#g6-117'/>
<use x='203.228805' y='127.681184' xlink:href='#g6-104'/>
<use x='212.654986' y='125.529265' xlink:href='#g2-1'/>
<use x='219.828049' y='125.529265' xlink:href='#g3-104'/>
<use x='227.914311' y='127.681184' xlink:href='#g6-116'/>
<use x='231.511946' y='127.681184' xlink:href='#g5-0'/>
<use x='239.260694' y='127.681184' xlink:href='#g7-49'/>
<use x='247.928142' y='125.529265' xlink:href='#g4-43'/>
<use x='262.041715' y='125.529265' xlink:href='#g3-66'/>
<use x='272.713266' y='127.681184' xlink:href='#g6-117'/>
<use x='278.91459' y='125.529265' xlink:href='#g4-41'/>
<use x='284.377379' y='125.529265' xlink:href='#g4-41'/>
<use x='56.413267' y='146.450809' xlink:href='#g3-117'/>
<use x='64.408191' y='140.527389' xlink:href='#g5-3'/>
<use x='64.408191' y='149.997431' xlink:href='#g6-116'/>
<use x='73.872654' y='146.450809' xlink:href='#g4-61'/>
<use x='88.783226' y='146.450809' xlink:href='#g4-49'/>
<use x='98.994808' y='146.450809' xlink:href='#g2-0'/>
<use x='113.340996' y='146.450809' xlink:href='#g3-27'/>
<use x='121.839871' y='146.450809' xlink:href='#g4-40'/>
<use x='127.302659' y='146.450809' xlink:href='#g3-87'/>
<use x='140.564465' y='148.602728' xlink:href='#g6-117'/>
<use x='146.267661' y='148.602728' xlink:href='#g6-120'/>
<use x='155.647704' y='146.450809' xlink:href='#g2-1'/>
<use x='162.820767' y='146.450809' xlink:href='#g3-120'/>
<use x='170.803268' y='148.602728' xlink:href='#g6-116'/>
<use x='178.08702' y='146.450809' xlink:href='#g4-43'/>
<use x='192.200593' y='146.450809' xlink:href='#g3-87'/>
<use x='205.462399' y='148.602728' xlink:href='#g6-117'/>
<use x='211.165595' y='148.602728' xlink:href='#g6-104'/>
<use x='220.591775' y='146.450809' xlink:href='#g2-1'/>
<use x='227.764838' y='146.450809' xlink:href='#g3-104'/>
<use x='235.8511' y='148.602728' xlink:href='#g6-116'/>
<use x='239.448735' y='148.602728' xlink:href='#g5-0'/>
<use x='247.197483' y='148.602728' xlink:href='#g7-49'/>
<use x='255.864931' y='146.450809' xlink:href='#g4-43'/>
<use x='269.978504' y='146.450809' xlink:href='#g3-66'/>
<use x='280.650055' y='148.602728' xlink:href='#g6-117'/>
<use x='286.851379' y='146.450809' xlink:href='#g4-41'/>
<use x='56.413267' y='167.372354' xlink:href='#g3-117'/>
<use x='64.408191' y='161.448934' xlink:href='#g5-3'/>
<use x='64.408191' y='170.918975' xlink:href='#g6-116'/>
<use x='73.872654' y='167.372354' xlink:href='#g4-61'/>
<use x='88.783226' y='167.372354' xlink:href='#g4-49'/>
<use x='98.994808' y='167.372354' xlink:href='#g2-0'/>
<use x='113.340996' y='167.372354' xlink:href='#g3-117'/>
<use x='121.33592' y='169.524272' xlink:href='#g6-116'/>
<use x='129.41667' y='167.372354' xlink:href='#g2-41'/>
<use x='147.747902' y='167.372354' xlink:href='#g3-117'/>
<use x='155.742826' y='169.524272' xlink:href='#g6-116'/>
<use x='163.823577' y='167.372354' xlink:href='#g4-61'/>
<use x='178.734149' y='167.372354' xlink:href='#g4-40'/>
<use x='184.196938' y='167.372354' xlink:href='#g4-49'/>
<use x='194.408519' y='167.372354' xlink:href='#g2-0'/>
<use x='208.754707' y='167.372354' xlink:href='#g3-117'/>
<use x='216.749631' y='161.448934' xlink:href='#g5-3'/>
<use x='216.749631' y='170.918975' xlink:href='#g6-116'/>
<use x='222.229099' y='167.372354' xlink:href='#g4-41'/>
<use x='56.413267' y='188.293898' xlink:href='#g3-104'/>
<use x='64.49953' y='190.445817' xlink:href='#g6-116'/>
<use x='72.58028' y='188.293898' xlink:href='#g4-61'/>
<use x='87.490853' y='188.293898' xlink:href='#g3-117'/>
<use x='95.485777' y='190.445817' xlink:href='#g6-116'/>
<use x='102.769528' y='188.293898' xlink:href='#g2-3'/>
<use x='113.13065' y='188.293898' xlink:href='#g3-104'/>
<use x='121.216912' y='190.445817' xlink:href='#g6-116'/>
<use x='124.814547' y='190.445817' xlink:href='#g5-0'/>
<use x='132.563294' y='190.445817' xlink:href='#g7-49'/>
<use x='141.230743' y='188.293898' xlink:href='#g4-43'/>
<use x='155.344316' y='188.293898' xlink:href='#g4-40'/>
<use x='160.807105' y='188.293898' xlink:href='#g4-49'/>
<use x='171.018686' y='188.293898' xlink:href='#g2-0'/>
<use x='185.364874' y='188.293898' xlink:href='#g3-117'/>
<use x='193.359798' y='190.445817' xlink:href='#g6-116'/>
<use x='197.455554' y='188.293898' xlink:href='#g4-41'/>
<use x='206.106338' y='188.293898' xlink:href='#g2-3'/>
<use x='216.46746' y='188.293898' xlink:href='#g3-111'/>
<use x='223.220382' y='190.445817' xlink:href='#g6-116'/>
<use x='231.301133' y='188.293898' xlink:href='#g2-41'/>
<use x='249.632365' y='188.293898' xlink:href='#g1-104'/>
<use x='258.598737' y='190.445817' xlink:href='#g0-116'/>
<use x='267.537354' y='188.293898' xlink:href='#g4-61'/>
<use x='282.447927' y='188.293898' xlink:href='#g4-40'/>
<use x='287.910715' y='188.293898' xlink:href='#g1-49'/>
<use x='299.168447' y='188.293898' xlink:href='#g2-0'/>
<use x='313.514635' y='188.293898' xlink:href='#g1-117'/>
<use x='322.481007' y='182.370478' xlink:href='#g5-3'/>
<use x='322.481007' y='191.840519' xlink:href='#g0-116'/>
<use x='327.960474' y='188.293898' xlink:href='#g4-41'/>
<use x='336.611259' y='188.293898' xlink:href='#g2-3'/>
<use x='346.97238' y='188.293898' xlink:href='#g1-104'/>
<use x='355.938753' y='190.445817' xlink:href='#g0-116'/>
<use x='360.394243' y='190.445817' xlink:href='#g5-0'/>
<use x='368.142991' y='190.445817' xlink:href='#g0-49'/>
<use x='377.557603' y='188.293898' xlink:href='#g4-43'/>
<use x='391.671176' y='188.293898' xlink:href='#g1-117'/>
<use x='400.637548' y='182.370478' xlink:href='#g5-3'/>
<use x='400.637548' y='191.840519' xlink:href='#g0-116'/>
<use x='409.305012' y='188.293898' xlink:href='#g2-3'/>
<use x='419.666133' y='188.293898' xlink:href='#g1-111'/>
<use x='427.735868' y='190.445817' xlink:href='#g0-116'/>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="856px" height="151px" viewBox="-0.5 -0.5 856 151" content="&lt;mxfile host=&quot;app.diagrams.net&quot; modified=&quot;2020-09-14T09:24:02.522Z&quot; agent=&quot;5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36&quot; etag=&quot;_RcO9KvzqcjCvySRpY60&quot; version=&quot;13.6.9&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;NsjXDhV1Pig3SFaJPkKC&quot; name=&quot;Page-1&quot;&gt;7VvLcpswFP0az7SLZoTEc5k4j246faSdJKsOAWEzxZYLcmz36ytAMiAgdimgpK7TBbqSrpDu0dGRRCdoutjexO5q/oH4OJpA4G8n6HICoaZDOEn/AX+XW2yEcsMsDn1eqDDchr8wNwJuXYc+TioFKSERDVdVo0eWS+zRis2NY7KpFgtIVG115c5wzXDruVHdehf6dM57YYDC/h6Hs7loWQM8Z+GKwtyQzF2fbEomdDVB05gQmj8ttlMcpYMnxiWvd92Su3+xGC/pMRWSzd3n1fnN/Xr6Y/39o/Z1sSPoHffy5EZr3uEJNCPm7+KRPczSB2EICGuHdYPu+NiYP9dEZLxLssidswLQWG2LTOHleir8sDfMXVXdM3OpSVhpCcZkvfRx2hGNZW/mIcW3K9dLczcMd8w2p4uIZwdhFE1JROKsLvINbPs6syc0Jj9wKceGj8g09+094ZjibevoavuYMbBjssA03rEiooLJw8xxDnWe3hSo0QQU5iXECCS5HKizvesiluyBh/MPQquPFdqbL9+UxdbFduA1xdb0bPwY9BNb9OJiazTEVhpWvPTPU/5jKS9ykyT0qiOJtyG9Lz0/sGdwZvDUZdp1IBI7kViyl78vJ0q10mRRLUuJevnLYb9GtVIEWAfIOvbwYcKibjzD9BD66xEtRcx4JmAxjlwaPlVftymKvIVPJMxmEAeMblcBo1sSEPJu8lplzpYcGUhyBCVH+TjUHGWg2ne7O87MHnA2OGYOYqFldo+DhT0xCPIwjW5Y0A21WLDUcE6P3PGiOAFazllHJBiHIDUwEuw+WaEggocKDzSzgkBQgZqHEp4GR5D2KpYfKDEFBB2XH9WUo7VvT46VrJrdJFnvskFP3rfq1r/RqDGhLHpkyeEnSdbASP8aJWv2410o2fPfMFJWc46UsmgoKavBgWKc7jjBRche+NSCLO9FkaY8yKg/8VClfvAs9bctM/slaIQNCzxyyVCqUnXQ045F+ZLRx5ZFsciwlIoH+bBD64gEKKtUfWQkNG1YehQP9ye/rqgXD3AogZidaZ6mepAlonr1ICj8BNXD0WdcSjecZm/qQVoz0MjqATbp1GHuw9ZJOv8hUHh7EgTY9BpvT3zLeQSgHz6xUIsOKPOJ8ww4++eTpquxzgdYwxxrK5vKjhQtUz+zu03mWuDrroaezoruyV56kJ3aAbJ+ZprdouzI+4UGX0OH2Wll7WTlLrurwDfZGdIEXuQ8/bYuCXP//7oktPQjJKE1piQUjk9REjoqqUMDwKhgobPWs2HVEXTG1Xqoae/YWQW8qmssBFVCqKYLul5POaBFWY6FoKZ96f/rqb9YaGxpoVF/woT6uLl4pSyh9EzBkL+X6MoSlnwbPjZLtH+I+f8cuhNLyHvUF8ASPWw086EUH5lnHyzP3VVaOYjwlleVAwGy3yvYctamc9fP4Ez9gKPO05kli6/x8+LF/2lAV78B&lt;/diagram&gt;&lt;/mxfile&gt;" style="background-color: rgb(255, 255, 255);"><defs/><g><rect x="47" y="50" width="120" height="50" rx="7.5" ry="7.5" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 75px; margin-left: 48px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 25px">FC</font></b></div></div></div></foreignObject><text x="107" y="79" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">FC</text></switch></g><rect x="247" y="50" width="120" height="50" rx="7.5" ry="7.5" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 75px; margin-left: 248px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 25px">GRU</font></b></div></div></div></foreignObject><text x="307" y="79" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">GRU</text></switch></g><path d="M 167 75 L 240.63 75" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 245.88 75 L 238.88 78.5 L 240.63 75 L 238.88 71.5 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 7 75 L 40.63 75" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 45.88 75 L 38.88 78.5 L 40.63 75 L 38.88 71.5 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 367 75 L 400.63 75" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 405.88 75 L 398.88 78.5 L 400.63 75 L 398.88 71.5 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 307 30 L 307 43.63" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 307 48.88 L 303.5 41.88 L 307 43.63 L 310.5 41.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="247" y="0" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 15px; margin-left: 248px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">WeightsH</font></div></div></div></foreignObject><text x="307" y="19" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">WeightsH</text></switch></g><rect x="47" y="120" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 135px; margin-left: 48px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">FC Bias</font></div></div></div></foreignObject><text x="107" y="139" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">FC Bias</text></switch></g><path d="M 107 120 L 107 106.37" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 107 101.12 L 110.5 108.12 L 107 106.37 L 103.5 108.12 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 107 30 L 107 43.63" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 107 48.88 L 103.5 41.88 L 107 43.63 L 110.5 41.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="47" y="0" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 15px; margin-left: 48px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">WeightsX</font></div></div></div></foreignObject><text x="107" y="19" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">WeightsX</text></switch></g><rect x="247" y="120" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 135px; margin-left: 248px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">GRU Bias</font></div></div></div></foreignObject><text x="307" y="139" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">GRU Bias</text></switch></g><path d="M 307 120 L 307 106.37" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 307 101.12 L 310.5 108.12 L 307 106.37 L 303.5 108.12 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="617" y="50" width="190" height="50" rx="7.5" ry="7.5" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 188px; height: 1px; padding-top: 75px; margin-left: 618px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 25px">Fusion GRU</font></b></div></div></div></foreignObject><text x="712" y="79" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Fusion GRU</text></switch></g><path d="M 577 74.8 L 610.63 74.8" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 615.88 74.8 L 608.88 78.3 L 610.63 74.8 L 608.88 71.3 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 807 74.66 L 840.63 74.66" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 845.88 74.66 L 838.88 78.16 L 840.63 74.66 L 838.88 71.16 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="627" y="120" width="170" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 135px; margin-left: 628px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><span style="font-size: 18px">(FC + GRU) Bias</span></div></div></div></foreignObject><text x="712" y="139" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">(FC + GRU) Bias</text></switch></g><path d="M 712 120 L 712 106.37" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 712 101.12 L 715.5 108.12 L 712 106.37 L 708.5 108.12 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><path d="M 787 30 L 787 43.63" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 787 48.88 L 783.5 41.88 L 787 43.63 L 790.5 41.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="727" y="0" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 15px; margin-left: 728px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">WeightsH</font></div></div></div></foreignObject><text x="787" y="19" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">WeightsH</text></switch></g><path d="M 637 30 L 637 43.63" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 637 48.88 L 633.5 41.88 L 637 43.63 L 640.5 41.88 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all"/><rect x="577" y="0" width="120" height="30" rx="4.5" ry="4.5" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 15px; margin-left: 578px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 18px">WeightsX</font></div></div></div></foreignObject><text x="637" y="19" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">WeightsX</text></switch></g><path d="M 469 81.5 L 469 68.5 L 503 68.5 L 503 56.5 L 525 75 L 503 93.5 L 503 81.5 Z" fill="#000000" stroke="#000000" stroke-width="4" stroke-linejoin="round" stroke-miterlimit="10" pointer-events="all"/></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://desk.draw.io/support/solutions/articles/16000042487" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1090px" height="814px" viewBox="-0.5 -0.5 1090 814" content="&lt;mxfile host=&quot;app.diagrams.net&quot; modified=&quot;2020-09-02T10:18:33.390Z&quot; agent=&quot;5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36&quot; etag=&quot;pNu05oTcyT5i5cOeK5TV&quot; version=&quot;13.6.5&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;6owbDszavJQ_PCLGBCEO&quot; name=&quot;Page-1&quot;&gt;7VxRd6I4FP41Ps4eIBDxsa3d6cNsT/d0zunM05wIUdlF4mCsur9+gyQgIag9xYSDPhVuQoD73fvl5iN2AB4W268pWs7/IiGOB44VbgdgPHAcGw4B+5NZdtxiAT+3zNIo5LbS8Br9h0VHbl1HIV5VOlJCYhotq8aAJAkOaMWG0pRsqt2mJK7edYlmuGZ4DVBct75FIZ3nVt+zSvsTjmZzcWfb4i0LJDpzw2qOQrI5MIHHAXhICaH50WL7gOPMe8Iv+XV/NrQWD5bihJ5zwROD5+n5p/Pj6+9fNqVvf6fx+Asf5R3Fa/7CAwfGbLz7CTuYZQfCMCXsPuw16I77Bv5eE9HwZbVH7o51YM+0LRvFKG+2GIc9YT5UdXhmPrilU7mTk5J1EuLsRWzWvJlHFL8uUZC1bljgMducLmLePI3i+IHEJN1fC0KE/WnA7Cuakn/xQQsMfDyZFvd7xynF20bv2gVmLNoxWWCa7lgXcYGAmQc6EOebg6jhpvlBwAgb4nE6K0YuoWQHHM0PIOtoQ9bpN7KO1TFkgTZkQc+R9TuGrKsNWdcYsh72Q1eFrO9MAITtIAtgx5D1tCHr9RtZ1+0YslAbsrDfyHpdq6CG2pAd9htZ2LUKyteGrG8K2ekUw0BZQYXD0YQB0g6yXaugRtqQHfUb2WHXKighCOmQKixz2E6dBmzhBHot8bHftRrK1ihDGdOh9GA76loVZesTomxjSpQebG2ra4WUrU+L6rJ+XEj7LU2+sphcFNDGcNanTF2ZmmweWn3S1JXJyeah1adN9VxPrhGybxpafeJUzwXlGiEbh1afOtVzRblGyMah1SdP9VxSlj/wGYfW0bfM7bmmLM+1hRJpDFp9i9yei8ryXGseWn2Ln76LynLaFiKzMWz1rX76LirLeWseW33Ln76LynKRbBxboJpuJbfiJLzLNnezsyBGq1UUVD2Ze0xs2AaFp3BY2+190k8HfvAUfhC2FMeIRu/V4VXO4Xd4IdE+Lhvo04OSf1dknQaYX1W6uDaQvEGqNhBF6QzT2kB7rIrX/gR8zVPq5zKxluDf1RnYkKxSBLGEoaqYEVmWkARLKclNKI5mSRZ4LHAws99n6RcFKL7jDYsoDLPbKNO9JIS2aioZ7zO/CbkXy1/VvNv7/G3Sfj+avtI4xedcXdnbPLG2nL3Pt+wd1JJ3qEheV+fk6zbvxGgZ/29knD1MMiX7y26xUCsBHMX3IxvqpHLvnFKMUfIrPyUpnZMZSVD8WFolR5V9vhGy5Ij9gynd8R//oTUlx2YD5sF75tF09yMb8Q9PnP7kN9ifjLeVs10FpdOzCHvDPV8fyxTuipyQj3RsAP1j8w2bLdHuoMMymwBWzdMRkFZsgjGaph0bHu3PDvInaHWyES48Qjbi96CCTuyjzHKanGyoIifrM/zzoSVeZaeItN6boMAPgWq95wDX9cLLrPdULKOaci5HMqq9JV0gmTbJApxJFq4RspD3g1rHycKVt6FZOsiiWYXXSxbgisgCnFGS6CULlbrQBbLoQkXinkkyvhGSkeedExXJUA49LRVJ8z5HvSQzvCaSkWtP4yRzjoJ1rSTjnUky+e91dLOMK7MGPM4yvsxKUAfLnJbI9bDM6IpYRi5azbOMSmrtAsu0yRawDRKoqxWN/21Hk0zuNu8t0JvBla/TvU9ht2sp3LxVt2W1fIwouunkVThF7p+5YeFyUdC8q/dSZOAqo+blhTV9x8kqA+8WK4pYsRXf1/RSBjz9gU1PsDC4xs/PtzhRxomr2E7eVpyw0/KfPuYFSfm/M8Hj/w==&lt;/diagram&gt;&lt;/mxfile&gt;" style="background-color: rgb(255, 255, 255);"><defs/><g><rect x="80" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="120" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="160" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="200" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="240" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="280" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="320" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="360" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="400" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="440" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="480" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="520" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="560" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 561px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="600" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="640" y="204" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 641px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="680" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="720" y="204" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="760" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="800" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="840" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="880" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="920" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="960" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="1000" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><rect x="80" y="484" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 524px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="120" y="528" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="160" y="484" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 524px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="200" y="528" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="240" y="484" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 524px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="280" y="528" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="80" y="564" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="120" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="160" y="564" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="200" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="240" y="564" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="280" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="320" y="564" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="360" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="80" y="644" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="120" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="160" y="644" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="200" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="80" y="724" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="120" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="160" y="724" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="200" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="240" y="724" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="280" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><path d="M 80 444 L 389.9 444" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 396.65 444 L 387.65 448.5 L 389.9 444 L 387.65 439.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="200" y="404" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 424px; margin-left: 201px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>T</b></font></div></div></div></foreignObject><text x="240" y="428" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">T</text></switch></g><path d="M 40 484 L 40 793.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 40 800.65 L 35.5 791.65 L 40 793.9 L 44.5 791.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="0" y="604" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 644px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>N</b></font></div></div></div></foreignObject><text x="20" y="648" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">N</text></switch></g><rect x="80" y="84" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 104px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>LoD info:</b></font></div></div></div></foreignObject><text x="160" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">LoD info:</text></switch></g><path d="M 260.06 124 L 260.06 164 L 120.06 164 L 120.01 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 120 201.76 L 116.02 193.76 L 120.01 195.76 L 124.02 193.77 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="240" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">0</b></font></div></div></div></foreignObject><text x="260" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><path d="M 300.06 124 L 300.06 184 L 360.06 184 L 360.06 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 360.06 201.76 L 356.06 193.76 L 360.06 195.76 L 364.06 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="280" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 281px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">3</b></font></div></div></div></foreignObject><text x="300" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">3</text></switch></g><path d="M 340.06 124 L 340.06 164 L 680.06 164 L 680.01 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 680 201.76 L 676.02 193.76 L 680.01 195.76 L 684.02 193.77 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="320" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">7</b></font></div></div></div></foreignObject><text x="340" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">7</text></switch></g><path d="M 380.06 124 L 380.06 144 L 839.94 144 L 839.99 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 840 201.76 L 835.99 193.77 L 839.99 195.76 L 843.99 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="360" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 361px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">9</b></font></div></div></div></foreignObject><text x="380" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">9</text></switch></g><path d="M 440 104 L 1079.94 104 L 1080 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1080 201.76 L 1075.99 193.77 L 1080 195.76 L 1083.99 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="400" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">12</b></font></div></div></div></foreignObject><text x="420" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">12</text></switch></g><rect x="0" y="224" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Data:</b></font></div></div></div></foreignObject><text x="40" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Data:</text></switch></g><rect x="0" y="4" width="240" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 238px; height: 1px; padding-top: 24px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">PP Tensor:</b></font></div></div></div></foreignObject><text x="120" y="28" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">PP Tensor:</text></switch></g><rect x="0" y="364" width="240" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 238px; height: 1px; padding-top: 384px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">oneDNN:</b></font></div></div></div></foreignObject><text x="120" y="388" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">oneDNN:</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://desk.draw.io/support/solutions/articles/16000042487" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1090px" height="1334px" viewBox="-0.5 -0.5 1090 1334" content="&lt;mxfile host=&quot;app.diagrams.net&quot; modified=&quot;2020-09-14T13:27:03.857Z&quot; agent=&quot;5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36&quot; etag=&quot;grRClLhjBl6cG-l3HCyO&quot; version=&quot;13.6.9&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;6owbDszavJQ_PCLGBCEO&quot; name=&quot;Page-1&quot;&gt;7V1dd5s4EP01eWwPX8bksXW66TnbZrub7En71EOMbLNLrBRIE++vXxEj20jCJmsxo5VJH2oLLGzdmdFwNVec+ZP758s8flh8pgnJzjwneT7zL848z3N8l/1XtazWLa4XOuuWeZ4mddu24Tr9h9SN/LTHNCFF48SS0qxMH5qNU7pckmnZaIvznD41T5vRrHnVh3hOpIbraZzJrbdpUi7WrdHI2bZ/JOl8wa/sOvWR+5ifXDcUizihTztN/oczf5JTWq5f3T9PSFaNHh+X9ed+aTm6+WI5WZZdPvCRwfPx6pv39fLHd7csb3/Ps4s3dS8/4+yx/sFnXpix/t7fsRfz6gVvmFF2HfYzylU9NuGPR8oPvClekHvHTmDf6Xl7kPdy6/J+2Ddcd9XsnjXvXNJrXMnL6eMyIdUPcdnhp0VakuuHeFodfWKGx9oW5X1WH56lWTahGc1fPusnMYlmU9ZelDn9m+wcCacRuZttrrc7lHxcSF6S552memgvCb0nZb5ip/CjHOba0H3+/mnHauqmxY7B8La4ttP5puctlOxFjeYrkPXAkPXsRtZzDEPWB0PWtxzZyDBkAzBkAzRkRyRKAhWykXfnh6EeZP3QMGRHYMiO7EY2CAxDNgRDNrQb2ZFpGdQYDNmx3ciGpmVQERiyERaysxkJp8oMKhmf3zFA9CBrWgZ1Dobsud3Ijk3LoDghBEFVOHjYzrwWbMO7cKQpHkem5VAuIA2FxkPBYHtuWhblwhFRLhoTBYOt65iWSLlwXJTJ/PGG2tc0+YrE1CbNQsMZjpmynE0WmSl8aOGoKcvpZJGawocWjpuynE8WA/Lm7ggNWjhyynJCWQzI+NDCsVOWM8piQMaHFo6espxSFhcL0KH14G5zLeeUxbl2w1ahQQt3k2s5qSzOtfjQwt382E4qi257js1NeXB3P7aTyqLf4mMLd/tjO6ksJsno2Pqq6VYYVrJM3lXF3ezdNIuLIp02R3I9Yrxg2983UiRpFIDL47QzDiPFOPC2nGRxmf4kjc5Vg1Nf4QtNX+yyjfINhPEt6GM+JfWntkMsdSQWW0gdlXE+J6XU0QtWm599BHztU+pxnig5+I3aA1ucVbAg5h2lyma4ly3pkgguWTfFWTpfVobHLImw9veVr6XTOHtXH7hPk6S6jNLdtwFBU04ViHg73fxXNAt9/quad+333zby97X+K3a0XfSDcuD2uVWzA18NDnwm6wsihQMHkBNw0F6NodkAPtGL6sssZ/TlY4MxSDIiT2EMbggZzkdd0jEWg6/rtzQvF3ROl3H2YdsqDNT2nE+UPtSI/UXKclULAOPHku6bEdgIvmeDnK++Vj2+HfG33+oLvLy5eG68Wx1CaR2h9zlG/cvXAXjPiV2nptfNOWzGjFc7JzxUM0DRPiX5QmDhEaNt5nHDveezF+tvoHW24WO6J9hwTSgPJ+7eyHI4OLmhKjg5x8SfV93mNapFhHu+u3gaJb7qns/zg2CU9MPVqKKMasrpL8io6ktMCDJHBAu/Y7AIzAgWYk2osz9YiLcdwvk9BYt2Jh42WPgnFCz8DikJbLBQMQwmBAuEjCToGGQiM4KMOO8cyEjGoumBZCTttY6wQWZ8SkFGzD3Rg0wXFutEgsyoY5DhEh3kKBOIUSPcH2UiMSqFEFHmME0OE2XOTyjKiEkrfpRRca0mRJkjokXYSxCQ2YrWHXeAePKgvb4A1oMbK9TWu3Bgmgu3l+tqZssv4jIeePImnNz3OxaS9WcF7ZW9fQWDQGk1X76wQzdkWVTgDbaisBVXUeACGzLCwwtsMMbC4Lq4uhrsRGkngUK+1Zud/Hrz6Y/06UPhT1a/Ze7Xm8mfRbJnc8biIV52mlmCbgvxN5MDFrC+4P/AAiS4FUbRagFi5blq8dWFtACv1QIkkE5LXn0czIhCTSXMcAIDz2CYNSAr7n6Bjiycbt58cfVRyEp7X6BDCycdMV9cfRS04lZTkFo+JbJwwhHztdVaJ1p0ZOFkI+ZLq7VOtOjIwonmzVdW651o0aGFE82br6zW6rSQ8ls1weGAQWu+slqv1+JjC7ino4MHbkeJptY0ClKiqcYWkJcyX1qtNSbjYwu4pSMaGwWDrRSU8cHtUmf/H7WZQsFHp4GC0WaKBEMYOG+dnT+v2WFXpabryJrtff3qq0dRYzsIr2EXi0T0AYXXagPoUXhtsHPLlL8O5xa77VOGrUZzkGGDurP4KAtIGbbaAA4XlumuElGXC6TF95ywsS0IO6X6eNWDU+bsWw2GI0eKkYIv8/uSbKstB4wxw7vxHlX/VAl8+PJX/4Cd9vWfHsjF3SfR1yL59xkQ7wlxsewYnV7zwOi1E0Vc9HF8xMFItwFxM9gaD6x66EQRF4l1fB8HKyo6UcRFKhAfcbBiowFxQ6I6WBHSgLghd2dmMzmzOCsGKqc6uuGkOZUzxqZyPLjip1NSgIhKH1clCoSVgMCVQnkGA90HtiqJOCy2cKVQlqtAZGyx53YfjJWxXQYibgFlQEyGK4WyXAgiYYsfk+GUeZZLQWRs0WMynDTPcjGIhK2PLQZRPl1iUINoWNI0YL6Fk+dZLgeRsMWfb+EEerbLQcR1SgMcF5ClslwPIoGL7rk8lAyCkB7AxU6Vlc/6EcbVvppxiUZy9BSNi8/eO9RvzyXkHZ6tMpSQa1w+ErcXdh3AbSnVFtDjszQNdm/FnY0O95b6DUTg+nbow48mGCReOteDRYf2FA4NKgrZs2285j0hb66GPSF3odxnArCbQip3nLY+qItVPbpyNknFi5y0ddhJekjaepTx4idt3NBPzL8VrFYvQl7opK3Dbt9D0tajkBc/aQvb78M1M2gnWvErJWnoy5QhWOnIiUIuUan4kA9qrX4hlxc1sdnzcJBrAUOO7uVjVXI+FOQfC7R0d4++7DmGK9r2DAa6F2yx4/YYLCG3vSBfwhY/QMMVbVtekC+q4/HrjMZwRduWF+RL2OLPt3BF25YX5MvYos+3cEXblhfkS9jiz7dwRduWF+SLW4Eb4LdwRduWF+RL2OL7LWDNtuUF+dI+7/jZFO94qMjvA13suBwBPlsFjZzCQhc9Mkdg7NSJripIpBU6sRENy8X9Qi67OT7mw3pxv5hLOTc+5MN6MTDkPSbi7G1Oq0HfHLtkg7P4TBNSnfEv&lt;/diagram&gt;&lt;/mxfile&gt;" style="background-color: rgb(255, 255, 255);"><defs/><g><rect x="80" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="120" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="160" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="200" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="240" y="204" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="280" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="320" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="360" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="400" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="440" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="480" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="520" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="560" y="204" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 561px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="600" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="640" y="204" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 641px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="680" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="720" y="204" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="760" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="800" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="840" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="880" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="920" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="960" y="204" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="1000" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><rect x="240" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="280" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="320" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="360" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="400" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="440" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="240" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="280" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="320" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="360" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="400" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="440" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="480" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="520" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="240" y="724" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="280" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="320" y="724" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="360" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="240" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="280" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="320" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="360" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="400" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="440" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><path d="M 240 524 L 549.9 524" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 556.65 524 L 547.65 528.5 L 549.9 524 L 547.65 519.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="360" y="484" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 504px; margin-left: 361px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>T</b></font></div></div></div></foreignObject><text x="400" y="508" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">T</text></switch></g><path d="M 200 564 L 200 873.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 200 880.65 L 195.5 871.65 L 200 873.9 L 204.5 871.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="160" y="684" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 724px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>N</b></font></div></div></div></foreignObject><text x="180" y="728" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">N</text></switch></g><rect x="80" y="84" width="160" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 158px; height: 1px; padding-top: 104px; margin-left: 81px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>LoD info:</b></font></div></div></div></foreignObject><text x="160" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">LoD info:</text></switch></g><path d="M 260 124 L 260 164 L 120 164 L 120 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 120 201.76 L 116 193.76 L 120 195.76 L 124 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="240" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">0</b></font></div></div></div></foreignObject><text x="260" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><path d="M 300 124 L 300 184 L 360 184 L 360 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 360 201.76 L 356 193.76 L 360 195.76 L 364 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="280" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 281px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">3</b></font></div></div></div></foreignObject><text x="300" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">3</text></switch></g><path d="M 340 124 L 340 164 L 680 164 L 680 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 680 201.76 L 676 193.76 L 680 195.76 L 684 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="320" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">7</b></font></div></div></div></foreignObject><text x="340" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">7</text></switch></g><path d="M 380 124 L 380 144 L 840 144 L 840 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 840 201.76 L 836 193.76 L 840 195.76 L 844 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="360" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 361px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">9</b></font></div></div></div></foreignObject><text x="380" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">9</text></switch></g><path d="M 440 104 L 1080 104 L 1080 195.76" fill="none" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1080 201.76 L 1076 193.76 L 1080 195.76 L 1084 193.76 Z" fill="#000000" stroke="#000000" stroke-width="2" stroke-miterlimit="10" pointer-events="all"/><rect x="400" y="84" width="40" height="40" rx="6" ry="6" fill="#bac8d3" stroke="#23445d" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 104px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 16px">12</b></font></div></div></div></foreignObject><text x="420" y="108" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">12</text></switch></g><rect x="0" y="224" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 244px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>Data:</b></font></div></div></div></foreignObject><text x="40" y="248" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Data:</text></switch></g><rect x="0" y="4" width="240" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 238px; height: 1px; padding-top: 24px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">PP Tensor:</b></font></div></div></div></foreignObject><text x="120" y="28" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">PP Tensor:</text></switch></g><rect x="0" y="364" width="240" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 238px; height: 1px; padding-top: 384px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 40px">oneDNN:</b></font></div></div></div></foreignObject><text x="120" y="388" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">oneDNN:</text></switch></g><rect x="40" y="684" width="110" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 108px; height: 1px; padding-top: 704px; margin-left: 41px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><span style="font-size: 24px"><b>NTC</b></span></div></div></div></foreignObject><text x="95" y="708" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">NTC</text></switch></g><rect x="800" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="840" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="880" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="920" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="960" y="564" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="1000" y="608" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="720" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="760" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="800" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="840" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="880" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="920" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="960" y="644" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 684px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="1000" y="688" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="880" y="724" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="920" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="960" y="724" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="1000" y="768" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="800" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="840" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="880" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="920" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="960" y="804" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="1000" y="848" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><path d="M 720 524 L 1029.9 524" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1036.65 524 L 1027.65 528.5 L 1029.9 524 L 1027.65 519.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="840" y="484" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 504px; margin-left: 841px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>T</b></font></div></div></div></foreignObject><text x="880" y="508" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">T</text></switch></g><path d="M 680 564 L 680 873.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 680 880.65 L 675.5 871.65 L 680 873.9 L 684.5 871.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="640" y="684" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 724px; margin-left: 641px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>N</b></font></div></div></div></foreignObject><text x="660" y="728" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">N</text></switch></g><rect x="680" y="444" width="360" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 358px; height: 1px; padding-top: 464px; margin-left: 681px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 24px">is_reverse == true</b></font></div></div></div></foreignObject><text x="860" y="468" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">is_reverse == true</text></switch></g><rect x="480" y="564" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="520" y="608" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="400" y="724" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="440" y="768" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="480" y="724" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="520" y="768" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="480" y="804" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="520" y="848" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="800" y="724" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="840" y="768" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="720" y="724" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 764px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="760" y="768" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="720" y="804" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 844px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="760" y="848" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="720" y="564" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 604px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="760" y="608" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="210" y="454" width="360" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 358px; height: 1px; padding-top: 474px; margin-left: 211px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font size="1"><b style="font-size: 24px">is_reverse == false</b></font></div></div></div></foreignObject><text x="390" y="478" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">is_reverse == false</text></switch></g><rect x="240" y="1004" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="280" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="240" y="1084" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="280" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="240" y="1164" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="280" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="320" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="360" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="320" y="1084" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="360" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="320" y="1164" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="360" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="320" y="1244" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 321px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="360" y="1288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="400" y="1004" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="440" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="400" y="1084" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="440" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="480" y="1004" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="520" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="480" y="1084" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="520" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="480" y="1164" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="520" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><path d="M 240 964 L 549.9 964" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 556.65 964 L 547.65 968.5 L 549.9 964 L 547.65 959.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="360" y="924" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 944px; margin-left: 361px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>N</b></font></div></div></div></foreignObject><text x="400" y="948" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">N</text></switch></g><path d="M 200 1004 L 200 1313.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 200 1320.65 L 195.5 1311.65 L 200 1313.9 L 204.5 1311.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="160" y="1124" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 1164px; margin-left: 161px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>T</b></font></div></div></div></foreignObject><text x="180" y="1168" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">T</text></switch></g><rect x="40" y="1124" width="110" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 108px; height: 1px; padding-top: 1144px; margin-left: 41px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><span style="font-size: 24px"><b>TNC</b></span></div></div></div></foreignObject><text x="95" y="1148" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">TNC</text></switch></g><path d="M 720 964 L 1029.9 964" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 1036.65 964 L 1027.65 968.5 L 1029.9 964 L 1027.65 959.5 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="840" y="924" width="80" height="40" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 944px; margin-left: 841px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>N</b></font></div></div></div></foreignObject><text x="880" y="948" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">N</text></switch></g><path d="M 680 1004 L 680 1313.9" fill="none" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 680 1320.65 L 675.5 1311.65 L 680 1313.9 L 684.5 1311.65 Z" fill="#000000" stroke="#000000" stroke-width="3" stroke-miterlimit="10" pointer-events="all"/><rect x="640" y="1124" width="40" height="80" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 38px; height: 1px; padding-top: 1164px; margin-left: 641px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><font style="font-size: 20px"><b>T</b></font></div></div></div></foreignObject><text x="660" y="1168" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">T</text></switch></g><rect x="240" y="1244" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 241px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="280" y="1288" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="480" y="1244" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 481px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="520" y="1288" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="400" y="1164" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="440" y="1208" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="400" y="1244" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 401px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="440" y="1288" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="720" y="1084" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W1</font></b></div></div></div></foreignObject><text x="760" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W1</text></switch></g><rect x="720" y="1164" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W2</font></b></div></div></div></foreignObject><text x="760" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W2</text></switch></g><rect x="720" y="1244" width="80" height="80" rx="12" ry="12" fill="#dae8fc" stroke="#6c8ebf" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W3</font></b></div></div></div></foreignObject><text x="760" y="1288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W3</text></switch></g><rect x="800" y="1004" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W4</font></b></div></div></div></foreignObject><text x="840" y="1048" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W4</text></switch></g><rect x="800" y="1084" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W5</font></b></div></div></div></foreignObject><text x="840" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W5</text></switch></g><rect x="800" y="1164" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W6</font></b></div></div></div></foreignObject><text x="840" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W6</text></switch></g><rect x="800" y="1244" width="80" height="80" rx="12" ry="12" fill="#d5e8d4" stroke="#82b366" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 801px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W7</font></b></div></div></div></foreignObject><text x="840" y="1288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W7</text></switch></g><rect x="880" y="1164" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W8</font></b></div></div></div></foreignObject><text x="920" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W8</text></switch></g><rect x="880" y="1244" width="80" height="80" rx="12" ry="12" fill="#ffe6cc" stroke="#d79b00" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W9</font></b></div></div></div></foreignObject><text x="920" y="1288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W9</text></switch></g><rect x="960" y="1084" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W10</font></b></div></div></div></foreignObject><text x="1000" y="1128" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W10</text></switch></g><rect x="960" y="1164" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1204px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W11</font></b></div></div></div></foreignObject><text x="1000" y="1208" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W11</text></switch></g><rect x="960" y="1244" width="80" height="80" rx="12" ry="12" fill="#fff2cc" stroke="#d6b656" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1284px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">W12</font></b></div></div></div></foreignObject><text x="1000" y="1288" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">W12</text></switch></g><rect x="720" y="1004" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 721px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="760" y="1048" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="960" y="1004" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 961px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="1000" y="1048" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="880" y="1004" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1044px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="920" y="1048" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g><rect x="880" y="1084" width="80" height="80" rx="12" ry="12" fill="#f5f5f5" stroke="#666666" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1124px; margin-left: 881px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #333333; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; "><b><font style="font-size: 20px">0</font></b></div></div></div></foreignObject><text x="920" y="1128" fill="#333333" font-family="Helvetica" font-size="12px" text-anchor="middle">0</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://desk.draw.io/support/solutions/articles/16000042487" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg>
\ No newline at end of file
oneDNN GRU operator
--------------------------------------
.. toctree::
:maxdepth: 1
gru.md
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册