Машина Тьюринга
Неформально, Машина Тьюринга (далее МТ) представляет собой автомат с конечным числом состояний и неограниченной памятью, представленной набором одной или более лент, бесконечных в обоих направлениях. Ленты поделены на соответственно бесконечное число ячеек, и на каждой ленте выделена стартовая (нулевая) ячейка. В каждой ячейке может быть записан только один символ из некоторого конечного алфавита , где предусмотрен символ «*» для обозначения пустой ячейки.
На каждой ленте имеется головка чтения-записи, и все они подсоединены к «управляющему модулю» МТ — автомату с конечным множеством состояний .
Имеется выделенное стартовое состояние (например, «START») и состояние (или набор состояний) завершения (например «STOP»).
Перед запуском МТ находится в состоянии «START», а все головки позиционированы на нулевые ячейки соответствующих лент. На каждом шаге все головки считывают информацию из своих текущих ячеек и посылают ее управляющему модулю МТ. В зависимости от этих символов и собственного состояния управляющий модуль производит следующие операции:
- Посылает каждой головке символ для записи в текущую ячейку каждой ленты;
- Посылает каждой головке одну из команд «LEFT»,"RIGHT","STAY";
- Выполняет переход в новое состояние (которое, впрочем, может совпадать с предыдущим).
Теперь то же самое более формально.
Машина Тьюринга это набор , где
- k
- натуральное число,
- конечные множества входного алфавита и состояний соответственно,
- символ-пробел,
- выделенные состояния,
- произвольные отображения:
- (задает новое состояние);
- (задает символы для записи на ленты);
- (определяет, как двигать головки).
Удобно считать, что алфавит содержит кроме «пробела» («*») два выделенных символа, «0» и «1» (Обычно вовсе ограничиваются ).
Под входом для МТ подразумевается набор из k слов (k-кортеж слов из ), записанных на k лентах начиная с нулевых позиций. Обычно, на входные данные записывают только на первую ленту, и под входом x подразумевают k-кортеж .
{\it Результатом} работы МТ на некоем входе является также k-кортеж слов из , оставшихся на лентах. Для простоты также удобно считать, что результатом является только слово на последней ленте, а все остальное — просто мусор.
Также считается, что входное слово не содержит пробелов — действительно, иначе было бы невозможно определить, где кончается входное слово (Можно конечно разрешить пробелы, но тогда придется зарезервировать еще один символ — «конец ввода»).
Существуют следующие обобщения машины Тьюринга:
ПримерыПравить
Если что-то осталось непонятным, можно рассмотреть симулятор работы МТ на языке Python, который мы будем использовать, чтобы проиллюстрировать процесс работы машин Тьюринга.
def execute_MT(MT,input):
T=MT["program"]
tape=["*"]+input
state=MT["start"]
position=1
history=[{"state":state, "position":position, "tape": []+tape}]
step=0
while 1:
step=step+1
if position>=len(tape):
tape.append("*")
symbol_under_head=tape[position]
action=T[(state,(symbol_under_head))]
state=action[0]
symbol_to_write=action[1][0]
tape[position]=symbol_to_write
move=action[1][1]
if move=="L": position=position-1
if move=="R": position=position+1
history.append({"state":state, "position":position, "tape": []+tape})
if state==MT["stop"] or step>1000:
break
return history
Он принимает на вход описание машины Тьюринга в виде хэш-таблицы — рассмотрим пример машины тьюринга для задачи удвоения входной строки (алфавит состоит только из «1»).
Табличное описание МТ:
<latex> \begin{tabular}{|cc|c|ccc|} \hline
<\textcolor{blue}{s1}> & * & $\Rightarrow$ & [\textcolor{red}{q}] & * & \\ \hline <\textcolor{blue}{s1}> & 1 & $\Rightarrow$ & s2 & * & R \\ \hline s2 & * & $\Rightarrow$ & s3 & * & R \\ \hline s2 & 1 & $\Rightarrow$ & s2 & 1 & R \\ \hline s3 & * & $\Rightarrow$ & s4 & 1 & L \\ \hline s3 & 1 & $\Rightarrow$ & s3 & 1 & R \\ \hline s4 & * & $\Rightarrow$ & s5 & * & L \\ \hline s4 & 1 & $\Rightarrow$ & s4 & 1 & L \\ \hline s5 & * & $\Rightarrow$ & <\textcolor{blue}{s1}> & 1 & R \\ \hline s5 & 1 & $\Rightarrow$ & s5 & 1 & L \\ \hline
\end{tabular} </latex>
Таблица МТ в виде Python-структуры для вышеприведенного симулятора:
MT={
'k': 1,
'start': 's1',
'stop': 'q',
'program': {
#(Состояние, символы на лентах) -> (новое состояние, (действия по каждой ленте))
('s1', ('1')): ('s2', (('*','R'))),
('s2', ('1')): ('s2', (('1','R'))),
('s2', ('*')): ('s3', (('*','R'))),
('s3', ('*')): ('s4', (('1','L'))),
('s3', ('1')): ('s3', (('1','R'))),
('s4', ('1')): ('s4', (('1','L'))),
('s4', ('*')): ('s5', (('*','L'))),
('s5', ('1')): ('s5', (('1','L'))),
('s5', ('*')): ('s1', (('1','R'))),
('s1', ('*')): ('q', (('*','')))
}
}
Обратите также внимание на альтернативное представление машины Тьюринга в виде ориентированных графа, где вершинами являются состояниями, возможные переходы между ними — ребрами, причем начало ребра помечено символом, который должен быть на ленте для активации перехода, а конец ребра помечен символом, который пишется на ленту, и командой перемещения головки («L», «R», «_» ):
Симулятор возвращает историю выполнения — последовательность конфигураций (состояние, лента, положение головки) — МТ на данном входе.
Например, вот три запуска симулируемой «удваивающей» МТ на строках «1», «11», «111»:
<svg height=100 width=100> <ellipse cx="50.0px" cy="30.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="50.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="70.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="90.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="110.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="130.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="150.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > s1</text> <rect width="20px" height="18.0px" x="100px" y="20px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" > s2</text> <rect width="20px" height="18.0px" x="120px" y="40px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" > s3</text> <rect width="20px" height="18.0px" x="140px" y="60px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" > s4</text> <rect width="20px" height="18.0px" x="120px" y="80px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" > s5</text> <rect width="20px" height="18.0px" x="100px" y="100px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > s1</text> <rect width="20px" height="18.0px" x="120px" y="120px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > q</text> <rect width="20px" height="18.0px" x="120px" y="140px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > 1</text> </svg>
<svg>
<ellipse
cx="50.0px"
cy="30.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="20px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="50.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="40px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="70.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="60px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="90.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="80px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="110.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="100px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="130.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="120px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="150.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="140px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="170.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="160px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="190.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="180px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="210.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="200px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="230.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="220px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="250.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="240px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="270.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="260px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="290.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="280px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="310.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="300px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<ellipse
cx="50.0px"
cy="330.0px"
rx="28px"
ry="8px"
style="fill:yellow;stroke:black;stroke-width:1"
/>
<g>
<rect
width="20px"
height="18.0px"
x="80px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="100px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="120px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="140px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="160px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
<rect
width="20px"
height="18.0px"
x="180px"
y="320px"
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
/>
</g>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
s1</text>
<rect
width="20px"
height="18.0px"
x="100px"
y="20px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
1</text>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
s2</text>
<rect
width="20px"
height="18.0px"
x="120px"
y="40px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
s2</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="60px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
s3</text>
<rect
width="20px"
height="18.0px"
x="160px"
y="80px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
s4</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="100px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
s5</text>
<rect
width="20px"
height="18.0px"
x="120px"
y="120px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
s5</text>
<rect
width="20px"
height="18.0px"
x="100px"
y="140px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
s1</text>
<rect
width="20px"
height="18.0px"
x="120px"
y="160px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
1</text>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
s2</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="180px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
s3</text>
<rect
width="20px"
height="18.0px"
x="160px"
y="200px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
s3</text>
<rect
width="20px"
height="18.0px"
x="180px"
y="220px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
s4</text>
<rect
width="20px"
height="18.0px"
x="160px"
y="240px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
1</text>
<text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
s4</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="260px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
1</text>
<text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
s5</text>
<rect
width="20px"
height="18.0px"
x="120px"
y="280px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
1</text>
<text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
s1</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="300px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
1</text>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
1</text>
<text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
1</text>
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
q</text>
<rect
width="20px"
height="18.0px"
x="140px"
y="320px"
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
/>
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
1</text>
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
1</text>
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
1</text>
<text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
1</text>
</svg>
<svg> <ellipse cx="50.0px" cy="30.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="20px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="50.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="40px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="70.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="60px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="90.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="80px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="110.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="100px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="130.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="120px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="150.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="140px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="170.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="160px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="190.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="180px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="210.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="200px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="230.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="220px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="250.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="240px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="270.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="260px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="290.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="280px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="310.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="300px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="330.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="320px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="350.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="340px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="370.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="360px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="390.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="380px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="410.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="400px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="430.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="420px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="450.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="440px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="470.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="460px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="490.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="480px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="510.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="500px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="530.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="520px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="550.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="540px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="570.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="560px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <ellipse cx="50.0px" cy="590.0px" rx="28px" ry="8px" style="fill:yellow;stroke:black;stroke-width:1" /> <g> <rect width="20px" height="18.0px" x="80px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="100px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="120px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="140px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="160px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="180px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="200px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> <rect width="20px" height="18.0px" x="220px" y="580px" style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;" /> </g> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > s1</text> <rect width="20px" height="18.0px" x="100px" y="20px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" > s2</text> <rect width="20px" height="18.0px" x="120px" y="40px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" > s2</text> <rect width="20px" height="18.0px" x="140px" y="60px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" > s2</text> <rect width="20px" height="18.0px" x="160px" y="80px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" > s3</text> <rect width="20px" height="18.0px" x="180px" y="100px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > s4</text> <rect width="20px" height="18.0px" x="160px" y="120px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > s5</text> <rect width="20px" height="18.0px" x="140px" y="140px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" > s5</text> <rect width="20px" height="18.0px" x="120px" y="160px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" > s5</text> <rect width="20px" height="18.0px" x="100px" y="180px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" > s1</text> <rect width="20px" height="18.0px" x="120px" y="200px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" > s2</text> <rect width="20px" height="18.0px" x="140px" y="220px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" > s2</text> <rect width="20px" height="18.0px" x="160px" y="240px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" > s3</text> <rect width="20px" height="18.0px" x="180px" y="260px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" > s3</text> <rect width="20px" height="18.0px" x="200px" y="280px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" > s4</text> <rect width="20px" height="18.0px" x="180px" y="300px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" > s4</text> <rect width="20px" height="18.0px" x="160px" y="320px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" > s5</text> <rect width="20px" height="18.0px" x="140px" y="340px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" > s5</text> <rect width="20px" height="18.0px" x="120px" y="360px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > s1</text> <rect width="20px" height="18.0px" x="140px" y="380px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" > s2</text> <rect width="20px" height="18.0px" x="160px" y="400px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" > s3</text> <rect width="20px" height="18.0px" x="180px" y="420px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" > s3</text> <rect width="20px" height="18.0px" x="200px" y="440px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" > s3</text> <rect width="20px" height="18.0px" x="220px" y="460px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > s4</text> <rect width="20px" height="18.0px" x="200px" y="480px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > s4</text> <rect width="20px" height="18.0px" x="180px" y="500px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > s4</text> <rect width="20px" height="18.0px" x="160px" y="520px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > s5</text> <rect width="20px" height="18.0px" x="140px" y="540px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="555px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > s1</text> <rect width="20px" height="18.0px" x="160px" y="560px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="575px" > 1</text> <text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > q</text> <rect width="20px" height="18.0px" x="160px" y="580px" style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;" /> <text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> <text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> <text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> <text x="190.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> <text x="210.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> <text x="230.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="595px" > 1</text> </svg>
Можно рассмотреть другие примеры МТ: