Created
November 7, 2025 19:32
-
-
Save skeeto/e9be81bb6357a65ce2908e643fdbf188 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Ref: https://old.reddit.com/r/C_Programming/comments/1oqxeeq | |
| // This is free and unencumbered software released into the public domain. | |
| #include <math.h> | |
| #include <stdio.h> | |
| #define lenof(a) (int)(sizeof(a) / sizeof(*(a))) | |
| typedef struct { float x, y; } V2; | |
| typedef struct { float x, y, z; } V3; | |
| static V2 mul(V2 v, float s) | |
| { | |
| v.x *= s; | |
| v.y *= s; | |
| return v; | |
| } | |
| static V2 add(V2 a, V2 b) | |
| { | |
| a.x += b.x; | |
| a.y += b.y; | |
| return a; | |
| } | |
| static V2 translate(V2 p, V3 *v, int len, float t) | |
| { | |
| for (int i = 0; i < len; i++) { | |
| p.x += v[i].x * cosf(t*v[i].y + v[i].z); | |
| p.y += v[i].x * sinf(t*v[i].y + v[i].z); | |
| } | |
| return p; | |
| } | |
| static void line(V2 a, V2 b, int color) | |
| { | |
| printf( | |
| " <line x1='%.3g' y1='%.3g' x2='%.3g' y2='%.3g'" | |
| " style='stroke: #%06x; stroke-width: 2px;'/>\n", | |
| (double)a.x, (double)a.y, (double)b.x, (double)b.y, color | |
| ); | |
| } | |
| int main() | |
| { | |
| V3 adobe[] = { // magnitude, angular velocity, phase | |
| {1.0f, -1.0f, 0.0f}, | |
| {1.0f, 2.0f, 0.0f}, | |
| {0.5f, -1.0f, 0.0f}, | |
| }; | |
| enum { size=1000, end=1000, div=100 }; | |
| V2 center = {size/2, size/2}; | |
| float scale = 100; | |
| printf( | |
| "<svg" | |
| " version='1.1'" | |
| " xmlns='http://www.w3.org/2000/svg'" | |
| " width='%d'" | |
| " height='%d'" | |
| ">\n", size, size | |
| ); | |
| V2 prev = translate((V2){}, adobe, lenof(adobe), 0); | |
| for (int t = 0; t < end; t++) { | |
| V2 next = translate((V2){}, adobe, lenof(adobe), (float)t/div); | |
| line( | |
| add(center, mul(prev, scale)), | |
| add(center, mul(next, scale)), | |
| 0x000000 | |
| ); | |
| prev = next; | |
| } | |
| puts("</svg>"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg version='1.1' xmlns='http://www.w3.org/2000/svg' width='1000' height='1000'> | |
| <line x1='750' y1='500' x2='750' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='500' x2='750' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='500' x2='750' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='501' x2='750' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='501' x2='750' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='502' x2='749' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='502' x2='749' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='503' x2='749' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='503' x2='748' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='504' x2='748' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='504' x2='747' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='747' y1='505' x2='747' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='747' y1='505' x2='746' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='746' y1='506' x2='745' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='745' y1='506' x2='745' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='745' y1='507' x2='744' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='744' y1='507' x2='743' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='743' y1='508' x2='742' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='742' y1='508' x2='741' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='741' y1='508' x2='740' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='740' y1='509' x2='739' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='739' y1='509' x2='738' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='738' y1='510' x2='737' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='737' y1='510' x2='736' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='736' y1='510' x2='734' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='734' y1='511' x2='733' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='733' y1='511' x2='732' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='732' y1='511' x2='730' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='730' y1='511' x2='729' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='729' y1='512' x2='727' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='727' y1='512' x2='726' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='726' y1='512' x2='724' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='724' y1='512' x2='723' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='723' y1='513' x2='721' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='721' y1='513' x2='719' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='719' y1='513' x2='717' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='717' y1='513' x2='716' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='716' y1='513' x2='714' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='714' y1='513' x2='712' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='712' y1='513' x2='710' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='710' y1='513' x2='708' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='708' y1='513' x2='706' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='706' y1='513' x2='704' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='704' y1='513' x2='702' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='702' y1='513' x2='699' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='699' y1='513' x2='697' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='697' y1='513' x2='695' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='695' y1='513' x2='693' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='693' y1='513' x2='690' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='690' y1='513' x2='688' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='688' y1='512' x2='686' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='686' y1='512' x2='683' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='683' y1='512' x2='681' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='681' y1='512' x2='678' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='678' y1='511' x2='676' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='676' y1='511' x2='673' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='673' y1='511' x2='671' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='671' y1='510' x2='668' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='668' y1='510' x2='665' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='665' y1='509' x2='663' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='663' y1='509' x2='660' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='660' y1='509' x2='657' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='657' y1='508' x2='655' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='655' y1='507' x2='652' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='652' y1='507' x2='649' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='649' y1='506' x2='646' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='646' y1='506' x2='643' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='643' y1='505' x2='640' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='640' y1='504' x2='638' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='638' y1='503' x2='635' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='635' y1='503' x2='632' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='632' y1='502' x2='629' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='629' y1='501' x2='626' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='626' y1='500' x2='623' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='623' y1='499' x2='620' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='620' y1='498' x2='617' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='617' y1='498' x2='614' y2='497' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='614' y1='497' x2='611' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='611' y1='496' x2='608' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='608' y1='495' x2='605' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='605' y1='493' x2='602' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='602' y1='492' x2='599' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='599' y1='491' x2='595' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='595' y1='490' x2='592' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='592' y1='489' x2='589' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='589' y1='488' x2='586' y2='486' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='586' y1='486' x2='583' y2='485' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='583' y1='485' x2='580' y2='484' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='580' y1='484' x2='577' y2='483' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='577' y1='483' x2='574' y2='481' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='574' y1='481' x2='571' y2='480' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='571' y1='480' x2='567' y2='478' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='567' y1='478' x2='564' y2='477' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='564' y1='477' x2='561' y2='476' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='561' y1='476' x2='558' y2='474' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='558' y1='474' x2='555' y2='473' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='555' y1='473' x2='552' y2='471' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='552' y1='471' x2='549' y2='470' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='549' y1='470' x2='546' y2='468' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='546' y1='468' x2='543' y2='466' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='543' y1='466' x2='539' y2='465' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='539' y1='465' x2='536' y2='463' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='536' y1='463' x2='533' y2='461' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='533' y1='461' x2='530' y2='460' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='530' y1='460' x2='527' y2='458' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='527' y1='458' x2='524' y2='456' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='524' y1='456' x2='521' y2='454' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='521' y1='454' x2='518' y2='453' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='518' y1='453' x2='515' y2='451' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='515' y1='451' x2='512' y2='449' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='512' y1='449' x2='509' y2='447' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='509' y1='447' x2='506' y2='445' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='506' y1='445' x2='503' y2='443' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='503' y1='443' x2='500' y2='442' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='500' y1='442' x2='498' y2='440' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='498' y1='440' x2='495' y2='438' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='495' y1='438' x2='492' y2='436' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='492' y1='436' x2='489' y2='434' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='489' y1='434' x2='486' y2='432' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='486' y1='432' x2='483' y2='430' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='483' y1='430' x2='481' y2='428' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='481' y1='428' x2='478' y2='426' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='478' y1='426' x2='475' y2='424' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='475' y1='424' x2='472' y2='422' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='472' y1='422' x2='470' y2='420' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='470' y1='420' x2='467' y2='417' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='467' y1='417' x2='465' y2='415' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='465' y1='415' x2='462' y2='413' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='462' y1='413' x2='459' y2='411' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='459' y1='411' x2='457' y2='409' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='457' y1='409' x2='454' y2='407' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='454' y1='407' x2='452' y2='405' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='452' y1='405' x2='450' y2='403' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='403' x2='447' y2='401' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='401' x2='445' y2='399' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='399' x2='442' y2='396' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='396' x2='440' y2='394' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='394' x2='438' y2='392' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='392' x2='436' y2='390' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='390' x2='433' y2='388' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='388' x2='431' y2='386' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='386' x2='429' y2='384' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='429' y1='384' x2='427' y2='381' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='427' y1='381' x2='425' y2='379' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='425' y1='379' x2='423' y2='377' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='423' y1='377' x2='421' y2='375' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='421' y1='375' x2='419' y2='373' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='419' y1='373' x2='417' y2='371' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='371' x2='415' y2='369' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='415' y1='369' x2='413' y2='367' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='413' y1='367' x2='412' y2='364' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='412' y1='364' x2='410' y2='362' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='410' y1='362' x2='408' y2='360' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='408' y1='360' x2='406' y2='358' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='406' y1='358' x2='405' y2='356' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='405' y1='356' x2='403' y2='354' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='403' y1='354' x2='402' y2='352' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='402' y1='352' x2='400' y2='350' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='400' y1='350' x2='399' y2='348' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='399' y1='348' x2='397' y2='346' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='346' x2='396' y2='344' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='396' y1='344' x2='394' y2='342' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='342' x2='393' y2='340' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='393' y1='340' x2='392' y2='338' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='338' x2='391' y2='337' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='337' x2='389' y2='335' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='335' x2='388' y2='333' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='388' y1='333' x2='387' y2='331' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='331' x2='386' y2='329' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='329' x2='385' y2='327' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='327' x2='384' y2='326' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='326' x2='383' y2='324' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='324' x2='382' y2='322' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='322' x2='381' y2='321' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='321' x2='380' y2='319' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='319' x2='380' y2='317' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='317' x2='379' y2='316' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='316' x2='378' y2='314' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='314' x2='377' y2='313' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='313' x2='377' y2='311' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='311' x2='376' y2='310' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='310' x2='376' y2='308' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='308' x2='375' y2='307' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='307' x2='375' y2='305' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='305' x2='374' y2='304' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='304' x2='374' y2='303' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='303' x2='373' y2='302' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='302' x2='373' y2='300' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='300' x2='373' y2='299' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='299' x2='373' y2='298' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='298' x2='372' y2='297' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='297' x2='372' y2='296' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='296' x2='372' y2='295' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='295' x2='372' y2='294' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='294' x2='372' y2='293' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='293' x2='372' y2='292' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='292' x2='372' y2='291' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='291' x2='372' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='290' x2='372' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='289' x2='372' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='289' x2='372' y2='288' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='288' x2='372' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='287' x2='373' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='287' x2='373' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='286' x2='373' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='286' x2='373' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='285' x2='374' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='285' x2='374' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='284' x2='374' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='284' x2='375' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='284' x2='375' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='283' x2='376' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='283' x2='376' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='283' x2='377' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='283' x2='377' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='283' x2='378' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='283' x2='378' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='283' x2='379' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='283' x2='380' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='283' x2='380' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='283' x2='381' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='284' x2='382' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='284' x2='382' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='284' x2='383' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='285' x2='384' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='285' x2='385' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='286' x2='385' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='286' x2='386' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='287' x2='387' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='287' x2='388' y2='288' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='388' y1='288' x2='389' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='289' x2='390' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='390' y1='290' x2='391' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='290' x2='392' y2='291' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='291' x2='392' y2='292' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='292' x2='393' y2='293' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='393' y1='293' x2='394' y2='294' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='294' x2='395' y2='295' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='395' y1='295' x2='396' y2='297' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='396' y1='297' x2='397' y2='298' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='298' x2='398' y2='299' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='398' y1='299' x2='399' y2='300' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='399' y1='300' x2='400' y2='302' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='400' y1='302' x2='401' y2='303' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='401' y1='303' x2='402' y2='305' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='402' y1='305' x2='403' y2='306' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='403' y1='306' x2='404' y2='308' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='404' y1='308' x2='405' y2='309' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='405' y1='309' x2='406' y2='311' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='406' y1='311' x2='407' y2='313' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='407' y1='313' x2='408' y2='314' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='408' y1='314' x2='409' y2='316' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='409' y1='316' x2='410' y2='318' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='410' y1='318' x2='411' y2='320' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='411' y1='320' x2='412' y2='322' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='412' y1='322' x2='413' y2='324' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='413' y1='324' x2='414' y2='326' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='414' y1='326' x2='415' y2='328' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='415' y1='328' x2='416' y2='330' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='416' y1='330' x2='417' y2='332' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='332' x2='418' y2='334' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='334' x2='419' y2='337' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='419' y1='337' x2='420' y2='339' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='339' x2='421' y2='341' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='421' y1='341' x2='422' y2='344' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='344' x2='423' y2='346' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='423' y1='346' x2='424' y2='348' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='348' x2='425' y2='351' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='425' y1='351' x2='426' y2='353' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='353' x2='427' y2='356' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='427' y1='356' x2='428' y2='359' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='359' x2='429' y2='361' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='429' y1='361' x2='430' y2='364' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='430' y1='364' x2='431' y2='367' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='367' x2='431' y2='369' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='369' x2='432' y2='372' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='372' x2='433' y2='375' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='375' x2='434' y2='378' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='378' x2='435' y2='381' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='381' x2='435' y2='384' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='384' x2='436' y2='387' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='387' x2='437' y2='390' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='390' x2='438' y2='393' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='393' x2='438' y2='396' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='396' x2='439' y2='399' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='399' x2='440' y2='402' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='402' x2='440' y2='405' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='405' x2='441' y2='408' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='408' x2='442' y2='411' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='411' x2='442' y2='414' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='414' x2='443' y2='418' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='418' x2='443' y2='421' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='421' x2='444' y2='424' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='424' x2='445' y2='427' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='427' x2='445' y2='431' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='431' x2='445' y2='434' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='434' x2='446' y2='437' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='437' x2='446' y2='441' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='441' x2='447' y2='444' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='444' x2='447' y2='447' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='447' x2='448' y2='451' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='451' x2='448' y2='454' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='454' x2='448' y2='458' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='458' x2='448' y2='461' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='461' x2='449' y2='465' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='465' x2='449' y2='468' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='468' x2='449' y2='472' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='472' x2='449' y2='475' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='475' x2='450' y2='478' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='478' x2='450' y2='482' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='482' x2='450' y2='485' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='485' x2='450' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='489' x2='450' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='492' x2='450' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='496' x2='450' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='499' x2='450' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='503' x2='450' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='506' x2='450' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='510' x2='450' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='513' x2='450' y2='517' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='517' x2='450' y2='520' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='520' x2='449' y2='524' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='524' x2='449' y2='527' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='527' x2='449' y2='531' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='531' x2='449' y2='534' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='534' x2='449' y2='538' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='538' x2='448' y2='541' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='541' x2='448' y2='545' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='545' x2='448' y2='548' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='548' x2='447' y2='551' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='551' x2='447' y2='555' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='555' x2='447' y2='558' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='558' x2='446' y2='562' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='562' x2='446' y2='565' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='565' x2='445' y2='568' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='568' x2='445' y2='572' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='572' x2='444' y2='575' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='575' x2='444' y2='578' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='578' x2='443' y2='581' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='581' x2='443' y2='585' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='585' x2='442' y2='588' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='588' x2='441' y2='591' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='591' x2='441' y2='594' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='594' x2='440' y2='597' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='597' x2='439' y2='600' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='600' x2='439' y2='603' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='603' x2='438' y2='606' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='606' x2='437' y2='609' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='609' x2='436' y2='612' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='612' x2='436' y2='615' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='615' x2='435' y2='618' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='618' x2='434' y2='621' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='621' x2='433' y2='624' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='624' x2='432' y2='627' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='627' x2='432' y2='630' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='630' x2='431' y2='632' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='632' x2='430' y2='635' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='430' y1='635' x2='429' y2='638' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='429' y1='638' x2='428' y2='641' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='641' x2='427' y2='643' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='427' y1='643' x2='426' y2='646' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='646' x2='425' y2='648' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='425' y1='648' x2='424' y2='651' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='651' x2='424' y2='653' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='653' x2='423' y2='656' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='423' y1='656' x2='422' y2='658' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='658' x2='421' y2='660' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='421' y1='660' x2='420' y2='663' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='663' x2='419' y2='665' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='419' y1='665' x2='418' y2='667' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='667' x2='417' y2='669' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='669' x2='416' y2='671' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='416' y1='671' x2='415' y2='674' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='415' y1='674' x2='414' y2='676' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='414' y1='676' x2='413' y2='678' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='413' y1='678' x2='412' y2='680' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='412' y1='680' x2='411' y2='681' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='411' y1='681' x2='410' y2='683' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='410' y1='683' x2='409' y2='685' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='409' y1='685' x2='407' y2='687' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='407' y1='687' x2='406' y2='689' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='406' y1='689' x2='405' y2='690' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='405' y1='690' x2='404' y2='692' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='404' y1='692' x2='403' y2='693' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='403' y1='693' x2='402' y2='695' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='402' y1='695' x2='401' y2='696' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='401' y1='696' x2='400' y2='698' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='400' y1='698' x2='399' y2='699' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='399' y1='699' x2='398' y2='701' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='398' y1='701' x2='397' y2='702' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='702' x2='397' y2='703' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='703' x2='396' y2='704' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='396' y1='704' x2='395' y2='705' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='395' y1='705' x2='394' y2='706' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='706' x2='393' y2='707' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='393' y1='707' x2='392' y2='708' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='708' x2='391' y2='709' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='709' x2='390' y2='710' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='390' y1='710' x2='389' y2='711' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='711' x2='388' y2='712' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='388' y1='712' x2='387' y2='712' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='712' x2='387' y2='713' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='713' x2='386' y2='714' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='714' x2='385' y2='714' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='714' x2='384' y2='715' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='715' x2='383' y2='715' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='715' x2='383' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='716' x2='382' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='716' x2='381' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='716' x2='381' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='717' x2='380' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='717' x2='379' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='717' x2='379' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='717' x2='378' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='717' x2='377' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='717' x2='377' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='717' x2='376' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='717' x2='376' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='717' x2='375' y2='717' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='717' x2='375' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='716' x2='375' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='716' x2='374' y2='716' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='716' x2='374' y2='715' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='715' x2='373' y2='715' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='715' x2='373' y2='715' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='715' x2='373' y2='714' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='714' x2='373' y2='714' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='714' x2='372' y2='713' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='713' x2='372' y2='712' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='712' x2='372' y2='712' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='712' x2='372' y2='711' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='711' x2='372' y2='710' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='710' x2='372' y2='709' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='709' x2='372' y2='708' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='708' x2='372' y2='707' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='707' x2='372' y2='707' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='707' x2='372' y2='706' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='706' x2='372' y2='705' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='705' x2='372' y2='703' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='703' x2='373' y2='702' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='702' x2='373' y2='701' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='701' x2='373' y2='700' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='700' x2='373' y2='699' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='699' x2='374' y2='698' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='698' x2='374' y2='696' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='696' x2='375' y2='695' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='695' x2='375' y2='694' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='694' x2='376' y2='692' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='692' x2='376' y2='691' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='691' x2='377' y2='689' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='689' x2='377' y2='688' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='688' x2='378' y2='686' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='686' x2='379' y2='685' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='685' x2='379' y2='683' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='683' x2='380' y2='682' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='682' x2='381' y2='680' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='680' x2='382' y2='678' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='678' x2='383' y2='677' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='677' x2='384' y2='675' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='675' x2='385' y2='673' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='673' x2='386' y2='671' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='671' x2='387' y2='670' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='670' x2='388' y2='668' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='388' y1='668' x2='389' y2='666' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='666' x2='390' y2='664' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='390' y1='664' x2='391' y2='662' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='662' x2='393' y2='660' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='393' y1='660' x2='394' y2='658' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='658' x2='395' y2='656' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='395' y1='656' x2='397' y2='654' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='654' x2='398' y2='652' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='398' y1='652' x2='400' y2='650' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='400' y1='650' x2='401' y2='648' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='401' y1='648' x2='403' y2='646' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='403' y1='646' x2='404' y2='644' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='404' y1='644' x2='406' y2='642' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='406' y1='642' x2='408' y2='640' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='408' y1='640' x2='409' y2='638' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='409' y1='638' x2='411' y2='636' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='411' y1='636' x2='413' y2='634' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='413' y1='634' x2='415' y2='632' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='415' y1='632' x2='417' y2='630' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='630' x2='418' y2='628' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='628' x2='420' y2='626' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='626' x2='422' y2='624' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='624' x2='424' y2='621' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='621' x2='426' y2='619' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='619' x2='428' y2='617' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='617' x2='431' y2='615' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='615' x2='433' y2='613' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='613' x2='435' y2='611' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='611' x2='437' y2='609' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='609' x2='439' y2='606' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='606' x2='442' y2='604' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='604' x2='444' y2='602' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='602' x2='446' y2='600' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='600' x2='449' y2='598' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='598' x2='451' y2='596' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='451' y1='596' x2='454' y2='594' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='454' y1='594' x2='456' y2='592' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='456' y1='592' x2='459' y2='589' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='459' y1='589' x2='461' y2='587' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='461' y1='587' x2='464' y2='585' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='464' y1='585' x2='466' y2='583' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='466' y1='583' x2='469' y2='581' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='469' y1='581' x2='472' y2='579' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='472' y1='579' x2='474' y2='577' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='474' y1='577' x2='477' y2='575' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='477' y1='575' x2='480' y2='573' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='480' y1='573' x2='482' y2='571' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='482' y1='571' x2='485' y2='569' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='485' y1='569' x2='488' y2='567' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='488' y1='567' x2='491' y2='565' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='491' y1='565' x2='494' y2='563' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='494' y1='563' x2='497' y2='561' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='497' y1='561' x2='499' y2='559' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='499' y1='559' x2='502' y2='557' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='502' y1='557' x2='505' y2='555' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='505' y1='555' x2='508' y2='553' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='508' y1='553' x2='511' y2='552' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='511' y1='552' x2='514' y2='550' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='514' y1='550' x2='517' y2='548' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='517' y1='548' x2='520' y2='546' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='520' y1='546' x2='523' y2='544' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='523' y1='544' x2='526' y2='543' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='526' y1='543' x2='529' y2='541' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='529' y1='541' x2='532' y2='539' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='532' y1='539' x2='535' y2='537' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='535' y1='537' x2='538' y2='536' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='538' y1='536' x2='542' y2='534' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='542' y1='534' x2='545' y2='533' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='545' y1='533' x2='548' y2='531' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='548' y1='531' x2='551' y2='529' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='551' y1='529' x2='554' y2='528' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='554' y1='528' x2='557' y2='526' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='557' y1='526' x2='560' y2='525' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='560' y1='525' x2='563' y2='523' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='563' y1='523' x2='566' y2='522' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='566' y1='522' x2='570' y2='521' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='570' y1='521' x2='573' y2='519' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='573' y1='519' x2='576' y2='518' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='576' y1='518' x2='579' y2='516' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='579' y1='516' x2='582' y2='515' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='582' y1='515' x2='585' y2='514' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='585' y1='514' x2='588' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='588' y1='513' x2='591' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='591' y1='511' x2='594' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='594' y1='510' x2='598' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='598' y1='509' x2='601' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='601' y1='508' x2='604' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='604' y1='507' x2='607' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='607' y1='506' x2='610' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='610' y1='505' x2='613' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='613' y1='504' x2='616' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='616' y1='503' x2='619' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='619' y1='502' x2='622' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='622' y1='501' x2='625' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='625' y1='500' x2='628' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='628' y1='499' x2='631' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='631' y1='498' x2='634' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='634' y1='498' x2='637' y2='497' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='637' y1='497' x2='640' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='640' y1='496' x2='642' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='642' y1='495' x2='645' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='645' y1='495' x2='648' y2='494' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='648' y1='494' x2='651' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='651' y1='493' x2='654' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='654' y1='493' x2='656' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='656' y1='492' x2='659' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='659' y1='492' x2='662' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='662' y1='491' x2='665' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='665' y1='491' x2='667' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='667' y1='490' x2='670' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='670' y1='490' x2='672' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='672' y1='489' x2='675' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='675' y1='489' x2='678' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='678' y1='489' x2='680' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='680' y1='488' x2='682' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='682' y1='488' x2='685' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='685' y1='488' x2='687' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='687' y1='488' x2='690' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='690' y1='487' x2='692' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='692' y1='487' x2='694' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='694' y1='487' x2='697' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='697' y1='487' x2='699' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='699' y1='487' x2='701' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='701' y1='487' x2='703' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='703' y1='487' x2='705' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='705' y1='487' x2='707' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='707' y1='487' x2='709' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='709' y1='487' x2='711' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='711' y1='487' x2='713' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='713' y1='487' x2='715' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='715' y1='487' x2='717' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='717' y1='487' x2='719' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='719' y1='487' x2='720' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='720' y1='487' x2='722' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='722' y1='487' x2='724' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='724' y1='488' x2='725' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='725' y1='488' x2='727' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='727' y1='488' x2='728' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='728' y1='488' x2='730' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='730' y1='489' x2='731' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='731' y1='489' x2='733' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='733' y1='489' x2='734' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='734' y1='489' x2='735' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='735' y1='490' x2='736' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='736' y1='490' x2='738' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='738' y1='490' x2='739' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='739' y1='491' x2='740' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='740' y1='491' x2='741' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='741' y1='492' x2='742' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='742' y1='492' x2='743' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='743' y1='492' x2='744' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='744' y1='493' x2='744' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='744' y1='493' x2='745' y2='494' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='745' y1='494' x2='746' y2='494' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='746' y1='494' x2='746' y2='494' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='746' y1='494' x2='747' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='747' y1='495' x2='748' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='495' x2='748' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='496' x2='749' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='496' x2='749' y2='497' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='497' x2='749' y2='497' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='497' x2='749' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='498' x2='750' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='498' x2='750' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='499' x2='750' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='499' x2='750' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='500' x2='750' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='500' x2='750' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='501' x2='750' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='501' x2='750' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='750' y1='502' x2='749' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='502' x2='749' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='503' x2='749' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='749' y1='503' x2='748' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='504' x2='748' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='748' y1='504' x2='747' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='747' y1='505' x2='747' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='747' y1='505' x2='746' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='746' y1='506' x2='746' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='746' y1='506' x2='745' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='745' y1='507' x2='744' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='744' y1='507' x2='743' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='743' y1='507' x2='742' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='742' y1='508' x2='741' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='741' y1='508' x2='740' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='740' y1='509' x2='739' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='739' y1='509' x2='738' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='738' y1='509' x2='737' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='737' y1='510' x2='736' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='736' y1='510' x2='735' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='735' y1='510' x2='734' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='734' y1='511' x2='732' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='732' y1='511' x2='731' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='731' y1='511' x2='729' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='729' y1='512' x2='728' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='728' y1='512' x2='726' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='726' y1='512' x2='725' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='725' y1='512' x2='723' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='723' y1='512' x2='721' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='721' y1='513' x2='720' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='720' y1='513' x2='718' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='718' y1='513' x2='716' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='716' y1='513' x2='714' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='714' y1='513' x2='712' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='712' y1='513' x2='710' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='710' y1='513' x2='708' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='708' y1='513' x2='706' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='706' y1='513' x2='704' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='704' y1='513' x2='702' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='702' y1='513' x2='700' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='700' y1='513' x2='698' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='698' y1='513' x2='696' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='696' y1='513' x2='693' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='693' y1='513' x2='691' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='691' y1='513' x2='689' y2='513' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='689' y1='513' x2='686' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='686' y1='512' x2='684' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='684' y1='512' x2='682' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='682' y1='512' x2='679' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='679' y1='512' x2='677' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='677' y1='511' x2='674' y2='511' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='674' y1='511' x2='671' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='671' y1='510' x2='669' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='669' y1='510' x2='666' y2='510' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='666' y1='510' x2='664' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='664' y1='509' x2='661' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='661' y1='509' x2='658' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='658' y1='508' x2='655' y2='508' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='655' y1='508' x2='653' y2='507' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='653' y1='507' x2='650' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='650' y1='506' x2='647' y2='506' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='647' y1='506' x2='644' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='644' y1='505' x2='641' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='641' y1='504' x2='638' y2='504' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='638' y1='504' x2='636' y2='503' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='636' y1='503' x2='633' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='633' y1='502' x2='630' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='630' y1='501' x2='627' y2='501' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='627' y1='501' x2='624' y2='500' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='624' y1='500' x2='621' y2='499' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='621' y1='499' x2='618' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='618' y1='498' x2='615' y2='497' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='615' y1='497' x2='612' y2='496' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='612' y1='496' x2='609' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='609' y1='495' x2='606' y2='494' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='606' y1='494' x2='603' y2='493' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='603' y1='493' x2='599' y2='492' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='599' y1='492' x2='596' y2='490' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='596' y1='490' x2='593' y2='489' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='593' y1='489' x2='590' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='590' y1='488' x2='587' y2='487' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='587' y1='487' x2='584' y2='486' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='584' y1='486' x2='581' y2='484' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='581' y1='484' x2='578' y2='483' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='578' y1='483' x2='575' y2='482' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='575' y1='482' x2='572' y2='480' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='572' y1='480' x2='568' y2='479' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='568' y1='479' x2='565' y2='478' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='565' y1='478' x2='562' y2='476' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='562' y1='476' x2='559' y2='475' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='559' y1='475' x2='556' y2='473' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='556' y1='473' x2='553' y2='472' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='553' y1='472' x2='550' y2='470' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='550' y1='470' x2='547' y2='468' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='547' y1='468' x2='543' y2='467' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='543' y1='467' x2='540' y2='465' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='540' y1='465' x2='537' y2='464' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='537' y1='464' x2='534' y2='462' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='534' y1='462' x2='531' y2='460' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='531' y1='460' x2='528' y2='459' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='528' y1='459' x2='525' y2='457' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='525' y1='457' x2='522' y2='455' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='522' y1='455' x2='519' y2='453' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='519' y1='453' x2='516' y2='451' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='516' y1='451' x2='513' y2='450' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='513' y1='450' x2='510' y2='448' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='510' y1='448' x2='507' y2='446' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='507' y1='446' x2='504' y2='444' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='504' y1='444' x2='501' y2='442' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='501' y1='442' x2='498' y2='440' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='498' y1='440' x2='496' y2='438' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='496' y1='438' x2='493' y2='436' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='493' y1='436' x2='490' y2='434' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='490' y1='434' x2='487' y2='432' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='487' y1='432' x2='484' y2='430' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='484' y1='430' x2='481' y2='428' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='481' y1='428' x2='479' y2='426' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='479' y1='426' x2='476' y2='424' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='476' y1='424' x2='473' y2='422' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='473' y1='422' x2='471' y2='420' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='471' y1='420' x2='468' y2='418' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='468' y1='418' x2='465' y2='416' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='465' y1='416' x2='463' y2='414' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='463' y1='414' x2='460' y2='412' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='460' y1='412' x2='458' y2='410' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='458' y1='410' x2='455' y2='408' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='455' y1='408' x2='453' y2='406' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='453' y1='406' x2='450' y2='403' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='403' x2='448' y2='401' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='401' x2='446' y2='399' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='399' x2='443' y2='397' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='397' x2='441' y2='395' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='395' x2='439' y2='393' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='393' x2='436' y2='391' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='391' x2='434' y2='389' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='389' x2='432' y2='386' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='386' x2='430' y2='384' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='430' y1='384' x2='428' y2='382' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='382' x2='426' y2='380' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='380' x2='424' y2='378' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='378' x2='422' y2='376' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='376' x2='420' y2='374' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='374' x2='418' y2='371' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='371' x2='416' y2='369' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='416' y1='369' x2='414' y2='367' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='414' y1='367' x2='412' y2='365' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='412' y1='365' x2='410' y2='363' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='410' y1='363' x2='409' y2='361' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='409' y1='361' x2='407' y2='359' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='407' y1='359' x2='405' y2='357' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='405' y1='357' x2='404' y2='355' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='404' y1='355' x2='402' y2='353' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='402' y1='353' x2='401' y2='351' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='401' y1='351' x2='399' y2='349' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='399' y1='349' x2='398' y2='347' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='398' y1='347' x2='396' y2='345' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='396' y1='345' x2='395' y2='343' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='395' y1='343' x2='394' y2='341' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='341' x2='392' y2='339' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='339' x2='391' y2='337' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='337' x2='390' y2='335' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='390' y1='335' x2='389' y2='333' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='333' x2='387' y2='332' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='332' x2='386' y2='330' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='330' x2='385' y2='328' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='328' x2='384' y2='326' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='326' x2='383' y2='325' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='325' x2='382' y2='323' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='323' x2='382' y2='321' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='321' x2='381' y2='319' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='319' x2='380' y2='318' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='318' x2='379' y2='316' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='316' x2='378' y2='315' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='315' x2='378' y2='313' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='313' x2='377' y2='312' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='312' x2='376' y2='310' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='310' x2='376' y2='309' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='309' x2='375' y2='307' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='307' x2='375' y2='306' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='306' x2='374' y2='305' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='305' x2='374' y2='303' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='303' x2='374' y2='302' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='302' x2='373' y2='301' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='301' x2='373' y2='300' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='300' x2='373' y2='298' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='298' x2='372' y2='297' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='297' x2='372' y2='296' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='296' x2='372' y2='295' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='295' x2='372' y2='294' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='294' x2='372' y2='293' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='293' x2='372' y2='292' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='292' x2='372' y2='291' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='291' x2='372' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='290' x2='372' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='290' x2='372' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='289' x2='372' y2='288' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='288' x2='372' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='372' y1='287' x2='373' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='287' x2='373' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='286' x2='373' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='286' x2='373' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='373' y1='285' x2='374' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='285' x2='374' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='284' x2='374' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='374' y1='284' x2='375' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='284' x2='375' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='375' y1='283' x2='376' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='283' x2='376' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='376' y1='283' x2='377' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='283' x2='377' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='377' y1='283' x2='378' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='283' x2='378' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='378' y1='283' x2='379' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='283' x2='379' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='379' y1='283' x2='380' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='380' y1='283' x2='381' y2='283' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='283' x2='381' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='381' y1='284' x2='382' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='382' y1='284' x2='383' y2='284' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='383' y1='284' x2='384' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='285' x2='384' y2='285' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='384' y1='285' x2='385' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='385' y1='286' x2='386' y2='286' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='386' y1='286' x2='387' y2='287' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='387' y1='287' x2='388' y2='288' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='388' y1='288' x2='389' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='289' x2='389' y2='289' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='389' y1='289' x2='390' y2='290' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='390' y1='290' x2='391' y2='291' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='391' y1='291' x2='392' y2='292' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='392' y1='292' x2='393' y2='293' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='393' y1='293' x2='394' y2='294' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='394' y1='294' x2='395' y2='295' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='395' y1='295' x2='396' y2='296' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='396' y1='296' x2='397' y2='297' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='397' y1='297' x2='398' y2='299' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='398' y1='299' x2='399' y2='300' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='399' y1='300' x2='400' y2='301' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='400' y1='301' x2='401' y2='303' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='401' y1='303' x2='402' y2='304' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='402' y1='304' x2='403' y2='306' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='403' y1='306' x2='404' y2='307' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='404' y1='307' x2='405' y2='309' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='405' y1='309' x2='406' y2='310' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='406' y1='310' x2='407' y2='312' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='407' y1='312' x2='408' y2='314' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='408' y1='314' x2='409' y2='316' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='409' y1='316' x2='410' y2='317' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='410' y1='317' x2='411' y2='319' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='411' y1='319' x2='412' y2='321' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='412' y1='321' x2='413' y2='323' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='413' y1='323' x2='414' y2='325' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='414' y1='325' x2='415' y2='327' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='415' y1='327' x2='416' y2='329' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='416' y1='329' x2='417' y2='331' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='331' x2='418' y2='334' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='334' x2='419' y2='336' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='419' y1='336' x2='420' y2='338' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='338' x2='421' y2='340' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='421' y1='340' x2='422' y2='343' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='343' x2='423' y2='345' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='423' y1='345' x2='424' y2='348' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='348' x2='425' y2='350' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='425' y1='350' x2='426' y2='353' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='353' x2='427' y2='355' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='427' y1='355' x2='428' y2='358' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='358' x2='428' y2='360' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='360' x2='429' y2='363' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='429' y1='363' x2='430' y2='366' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='430' y1='366' x2='431' y2='369' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='369' x2='432' y2='371' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='371' x2='433' y2='374' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='374' x2='434' y2='377' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='377' x2='434' y2='380' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='380' x2='435' y2='383' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='383' x2='436' y2='386' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='386' x2='437' y2='389' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='389' x2='437' y2='392' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='392' x2='438' y2='395' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='395' x2='439' y2='398' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='398' x2='440' y2='401' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='401' x2='440' y2='404' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='404' x2='441' y2='407' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='407' x2='442' y2='410' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='410' x2='442' y2='413' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='413' x2='443' y2='417' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='417' x2='443' y2='420' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='420' x2='444' y2='423' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='423' x2='444' y2='426' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='426' x2='445' y2='430' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='430' x2='445' y2='433' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='433' x2='446' y2='436' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='436' x2='446' y2='440' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='440' x2='447' y2='443' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='443' x2='447' y2='446' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='446' x2='447' y2='450' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='450' x2='448' y2='453' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='453' x2='448' y2='457' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='457' x2='448' y2='460' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='460' x2='449' y2='464' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='464' x2='449' y2='467' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='467' x2='449' y2='470' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='470' x2='449' y2='474' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='474' x2='449' y2='477' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='477' x2='450' y2='481' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='481' x2='450' y2='484' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='484' x2='450' y2='488' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='488' x2='450' y2='491' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='491' x2='450' y2='495' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='495' x2='450' y2='498' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='498' x2='450' y2='502' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='502' x2='450' y2='505' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='505' x2='450' y2='509' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='509' x2='450' y2='512' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='512' x2='450' y2='516' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='516' x2='450' y2='519' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='450' y1='519' x2='449' y2='523' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='523' x2='449' y2='526' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='526' x2='449' y2='530' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='530' x2='449' y2='533' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='533' x2='449' y2='537' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='449' y1='537' x2='448' y2='540' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='540' x2='448' y2='544' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='544' x2='448' y2='547' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='448' y1='547' x2='447' y2='550' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='550' x2='447' y2='554' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='554' x2='447' y2='557' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='447' y1='557' x2='446' y2='560' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='560' x2='446' y2='564' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='446' y1='564' x2='445' y2='567' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='567' x2='445' y2='570' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='445' y1='570' x2='444' y2='574' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='574' x2='444' y2='577' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='444' y1='577' x2='443' y2='580' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='580' x2='443' y2='584' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='443' y1='584' x2='442' y2='587' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='587' x2='442' y2='590' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='442' y1='590' x2='441' y2='593' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='441' y1='593' x2='440' y2='596' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='596' x2='440' y2='599' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='440' y1='599' x2='439' y2='602' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='439' y1='602' x2='438' y2='605' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='438' y1='605' x2='437' y2='608' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='608' x2='437' y2='611' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='437' y1='611' x2='436' y2='614' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='436' y1='614' x2='435' y2='617' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='435' y1='617' x2='434' y2='620' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='620' x2='434' y2='623' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='434' y1='623' x2='433' y2='626' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='433' y1='626' x2='432' y2='629' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='432' y1='629' x2='431' y2='632' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='431' y1='632' x2='430' y2='634' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='430' y1='634' x2='429' y2='637' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='429' y1='637' x2='428' y2='640' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='640' x2='428' y2='642' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='428' y1='642' x2='427' y2='645' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='427' y1='645' x2='426' y2='647' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='426' y1='647' x2='425' y2='650' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='425' y1='650' x2='424' y2='652' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='424' y1='652' x2='423' y2='655' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='423' y1='655' x2='422' y2='657' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='422' y1='657' x2='421' y2='660' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='421' y1='660' x2='420' y2='662' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='420' y1='662' x2='419' y2='664' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='419' y1='664' x2='418' y2='666' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='418' y1='666' x2='417' y2='669' style='stroke: #000000; stroke-width: 2px;'/> | |
| <line x1='417' y1='669' x2='416' y2='671' style='stroke: #000000; stroke-width: 2px;'/> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment