]> granicus.if.org Git - graphviz/commitdiff
baseline new polypoly test cases
authorellson <devnull@localhost>
Wed, 7 Nov 2007 03:17:51 +0000 (03:17 +0000)
committerellson <devnull@localhost>
Wed, 7 Nov 2007 03:17:51 +0000 (03:17 +0000)
rtest/nshare/polypoly_dot.png [new file with mode: 0644]
rtest/nshare/polypoly_dot.ps [new file with mode: 0644]

diff --git a/rtest/nshare/polypoly_dot.png b/rtest/nshare/polypoly_dot.png
new file mode 100644 (file)
index 0000000..42a9128
Binary files /dev/null and b/rtest/nshare/polypoly_dot.png differ
diff --git a/rtest/nshare/polypoly_dot.ps b/rtest/nshare/polypoly_dot.ps
new file mode 100644 (file)
index 0000000..fc34983
--- /dev/null
@@ -0,0 +1,3534 @@
+%!PS-Adobe-2.0
+%%Creator: Graphviz version 2.15 (Sat Nov  3 14:12:46 UTC 2007)
+%%For: (ellson) John Ellson
+%%Title: polypoly
+%%Pages: (atend)
+%%BoundingBox: (atend)
+%%EndComments
+save
+%%BeginProlog
+/DotDict 200 dict def
+DotDict begin
+
+/setupLatin1 {
+mark
+/EncodingVector 256 array def
+ EncodingVector 0
+
+ISOLatin1Encoding 0 255 getinterval putinterval
+EncodingVector 45 /hyphen put
+
+% Set up ISO Latin 1 character encoding
+/starnetISO {
+        dup dup findfont dup length dict begin
+        { 1 index /FID ne { def }{ pop pop } ifelse
+        } forall
+        /Encoding EncodingVector def
+        currentdict end definefont
+} def
+/Times-Roman starnetISO def
+/Times-Italic starnetISO def
+/Times-Bold starnetISO def
+/Times-BoldItalic starnetISO def
+/Helvetica starnetISO def
+/Helvetica-Oblique starnetISO def
+/Helvetica-Bold starnetISO def
+/Helvetica-BoldOblique starnetISO def
+/Courier starnetISO def
+/Courier-Oblique starnetISO def
+/Courier-Bold starnetISO def
+/Courier-BoldOblique starnetISO def
+cleartomark
+} bind def
+
+%%BeginResource: procset graphviz 0 0
+/coord-font-family /Times-Roman def
+/default-font-family /Times-Roman def
+/coordfont coord-font-family findfont 8 scalefont def
+
+/InvScaleFactor 1.0 def
+/set_scale {
+       dup 1 exch div /InvScaleFactor exch def
+       scale
+} bind def
+
+% styles
+/solid { [] 0 setdash } bind def
+/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
+/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
+/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
+/bold { 2 setlinewidth } bind def
+/filled { } bind def
+/unfilled { } bind def
+/rounded { } bind def
+/diagonals { } bind def
+
+% hooks for setting color 
+/nodecolor { sethsbcolor } bind def
+/edgecolor { sethsbcolor } bind def
+/graphcolor { sethsbcolor } bind def
+/nopcolor {pop pop pop} bind def
+
+/beginpage {   % i j npages
+       /npages exch def
+       /j exch def
+       /i exch def
+       /str 10 string def
+       npages 1 gt {
+               gsave
+                       coordfont setfont
+                       0 0 moveto
+                       (\() show i str cvs show (,) show j str cvs show (\)) show
+               grestore
+       } if
+} bind def
+
+/set_font {
+       findfont exch
+       scalefont setfont
+} def
+
+% draw aligned label in bounding box aligned to current point
+/alignedtext {                 % width adj text
+       /text exch def
+       /adj exch def
+       /width exch def
+       gsave
+               width 0 gt {
+                       text stringwidth pop adj mul 0 rmoveto
+               } if
+               [] 0 setdash
+               text show
+       grestore
+} def
+
+/boxprim {                             % xcorner ycorner xsize ysize
+               4 2 roll
+               moveto
+               2 copy
+               exch 0 rlineto
+               0 exch rlineto
+               pop neg 0 rlineto
+               closepath
+} bind def
+
+/ellipse_path {
+       /ry exch def
+       /rx exch def
+       /y exch def
+       /x exch def
+       matrix currentmatrix
+       newpath
+       x y translate
+       rx ry scale
+       0 0 1 0 360 arc
+       setmatrix
+} bind def
+
+/endpage { showpage } bind def
+/showpage { } def
+
+/layercolorseq
+       [       % layer color sequence - darkest to lightest
+               [0 0 0]
+               [.2 .8 .8]
+               [.4 .8 .8]
+               [.6 .8 .8]
+               [.8 .8 .8]
+       ]
+def
+
+/layerlen layercolorseq length def
+
+/setlayer {/maxlayer exch def /curlayer exch def
+       layercolorseq curlayer 1 sub layerlen mod get
+       aload pop sethsbcolor
+       /nodecolor {nopcolor} def
+       /edgecolor {nopcolor} def
+       /graphcolor {nopcolor} def
+} bind def
+
+/onlayer { curlayer ne {invis} if } def
+
+/onlayers {
+       /myupper exch def
+       /mylower exch def
+       curlayer mylower lt
+       curlayer myupper gt
+       or
+       {invis} if
+} def
+
+/curlayer 0 def
+
+%%EndResource
+%%EndProlog
+%%BeginSetup
+14 default-font-family set_font
+1 setmiterlimit
+% /arrowlength 10 def
+% /arrowwidth 5 def
+
+% make sure pdfmark is harmless for PS-interpreters other than Distiller
+/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
+% make '<<' and '>>' safe on PS Level 1 devices
+/languagelevel where {pop languagelevel}{1} ifelse
+2 lt {
+    userdict (<<) cvn ([) cvn load put
+    userdict (>>) cvn ([) cvn load put
+} if
+
+%%EndSetup
+setupLatin1
+%%Page: 1 1
+%%PageBoundingBox: 36 36 2584 2150
+%%PageOrientation: Portrait
+0 0 1 beginpage
+gsave
+36 36 2548 2114 boxprim clip newpath
+1 1 set_scale 0 rotate 40 40 translate
+% 0000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+39 540 27 18 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 535.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+39 340 27 18 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 335.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0000->10000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 522 moveto
+39 487 39 410 39 368 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 368 moveto
+39 358 lineto
+35.5001 368 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 368 moveto
+39 358 lineto
+35.5001 368 lineto
+closepath stroke
+grestore
+% 0001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+161 540 76.8241 18 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+161 535.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 0002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+283 540 27 59.4543 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 576.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 560.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 543.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 527.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 510.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 494.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+422 540 93.9104 75.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 576.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 560.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 543.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 527.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 510.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 494.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 0010
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+565 540 27 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+565 540 31 22 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+565 535.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0011
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+695 540 76.8241 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+695 540 80.8241 22 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+695 535.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 0012
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+825 540 27 59.4543 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+825 540 31 63.4543 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 576.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 560.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 543.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 527.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 510.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 494.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0013
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+972 540 93.9104 75.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+972 540 97.9104 79.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 576.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 560.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 543.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 527.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 510.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 494.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 0110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1122.62 522.049 moveto
+1124.35 522.148 lineto
+1126.07 522.295 lineto
+1127.76 522.491 lineto
+1129.42 522.735 lineto
+1131.04 523.027 lineto
+1132.62 523.364 lineto
+1134.14 523.748 lineto
+1135.61 524.176 lineto
+1137.02 524.647 lineto
+1138.35 525.161 lineto
+1139.62 525.715 lineto
+1140.81 526.308 lineto
+1141.92 526.939 lineto
+1142.95 527.605 lineto
+1143.89 528.306 lineto
+1144.74 529.039 lineto
+1145.51 529.801 lineto
+1146.18 530.592 lineto
+1146.76 531.408 lineto
+1147.24 532.248 lineto
+1147.64 533.109 lineto
+1147.94 533.989 lineto
+1148.15 534.886 lineto
+1148.27 535.797 lineto
+1148.3 536.719 lineto
+1148.25 537.65 lineto
+1148.11 538.587 lineto
+1147.89 539.529 lineto
+1147.6 540.471 lineto
+1147.23 541.413 lineto
+1146.79 542.35 lineto
+1146.28 543.281 lineto
+1145.71 544.203 lineto
+1145.08 545.114 lineto
+1144.39 546.011 lineto
+1143.65 546.891 lineto
+1142.86 547.752 lineto
+1142.03 548.592 lineto
+1141.15 549.408 lineto
+1140.24 550.199 lineto
+1139.3 550.961 lineto
+1138.32 551.694 lineto
+1137.32 552.395 lineto
+1136.29 553.061 lineto
+1135.24 553.692 lineto
+1134.17 554.285 lineto
+1133.09 554.839 lineto
+1131.99 555.353 lineto
+1130.88 555.824 lineto
+1129.76 556.252 lineto
+1128.63 556.636 lineto
+1127.49 556.973 lineto
+1126.35 557.265 lineto
+1125.2 557.509 lineto
+1124.05 557.705 lineto
+1122.89 557.852 lineto
+1121.74 557.951 lineto
+1120.58 558 lineto
+1119.42 558 lineto
+1118.26 557.951 lineto
+1117.11 557.852 lineto
+1115.95 557.705 lineto
+1114.8 557.509 lineto
+1113.65 557.265 lineto
+1112.51 556.973 lineto
+1111.37 556.636 lineto
+1110.24 556.252 lineto
+1109.12 555.824 lineto
+1108.01 555.353 lineto
+1106.91 554.839 lineto
+1105.83 554.285 lineto
+1104.76 553.692 lineto
+1103.71 553.061 lineto
+1102.68 552.395 lineto
+1101.68 551.694 lineto
+1100.7 550.961 lineto
+1099.76 550.199 lineto
+1098.85 549.408 lineto
+1097.97 548.592 lineto
+1097.14 547.752 lineto
+1096.35 546.891 lineto
+1095.61 546.011 lineto
+1094.92 545.114 lineto
+1094.29 544.203 lineto
+1093.72 543.281 lineto
+1093.21 542.35 lineto
+1092.77 541.413 lineto
+1092.4 540.471 lineto
+1092.11 539.529 lineto
+1091.89 538.587 lineto
+1091.75 537.65 lineto
+1091.7 536.719 lineto
+1091.73 535.797 lineto
+1091.85 534.886 lineto
+1092.06 533.989 lineto
+1092.36 533.109 lineto
+1092.76 532.248 lineto
+1093.24 531.408 lineto
+1093.82 530.592 lineto
+1094.49 529.801 lineto
+1095.26 529.039 lineto
+1096.11 528.306 lineto
+1097.05 527.605 lineto
+1098.08 526.939 lineto
+1099.19 526.308 lineto
+1100.38 525.715 lineto
+1101.65 525.161 lineto
+1102.98 524.647 lineto
+1104.39 524.176 lineto
+1105.86 523.748 lineto
+1107.38 523.364 lineto
+1108.96 523.027 lineto
+1110.58 522.735 lineto
+1112.24 522.491 lineto
+1113.93 522.295 lineto
+1115.65 522.148 lineto
+1117.38 522.049 lineto
+1119.13 522 lineto
+1120.87 522 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1122.78 518.052 moveto
+1124.63 518.157 lineto
+1126.46 518.315 lineto
+1128.27 518.524 lineto
+1130.04 518.786 lineto
+1131.79 519.099 lineto
+1133.5 519.465 lineto
+1135.16 519.883 lineto
+1136.77 520.353 lineto
+1138.33 520.875 lineto
+1139.83 521.451 lineto
+1141.27 522.08 lineto
+1142.64 522.764 lineto
+1143.95 523.505 lineto
+1145.18 524.303 lineto
+1146.33 525.162 lineto
+1147.4 526.082 lineto
+1148.38 527.065 lineto
+1149.27 528.112 lineto
+1150.06 529.221 lineto
+1150.74 530.388 lineto
+1151.29 531.607 lineto
+1151.72 532.866 lineto
+1152.03 534.155 lineto
+1152.2 535.458 lineto
+1152.24 536.764 lineto
+1152.17 538.06 lineto
+1151.98 539.339 lineto
+1151.69 540.594 lineto
+1151.31 541.82 lineto
+1150.84 543.017 lineto
+1150.29 544.183 lineto
+1149.67 545.318 lineto
+1148.99 546.423 lineto
+1148.24 547.497 lineto
+1147.44 548.54 lineto
+1146.59 549.553 lineto
+1145.69 550.534 lineto
+1144.75 551.485 lineto
+1143.76 552.402 lineto
+1142.74 553.287 lineto
+1141.69 554.137 lineto
+1140.61 554.951 lineto
+1139.49 555.729 lineto
+1138.35 556.469 lineto
+1137.19 557.169 lineto
+1136 557.828 lineto
+1134.8 558.444 lineto
+1133.57 559.016 lineto
+1132.33 559.543 lineto
+1131.07 560.022 lineto
+1129.8 560.453 lineto
+1128.52 560.834 lineto
+1127.23 561.164 lineto
+1125.93 561.44 lineto
+1124.62 561.663 lineto
+1123.3 561.831 lineto
+1121.98 561.944 lineto
+1120.66 562 lineto
+1119.34 562 lineto
+1118.02 561.944 lineto
+1116.7 561.831 lineto
+1115.38 561.663 lineto
+1114.07 561.44 lineto
+1112.77 561.164 lineto
+1111.48 560.834 lineto
+1110.2 560.453 lineto
+1108.93 560.022 lineto
+1107.67 559.543 lineto
+1106.43 559.016 lineto
+1105.2 558.444 lineto
+1104 557.828 lineto
+1102.81 557.169 lineto
+1101.65 556.469 lineto
+1100.51 555.729 lineto
+1099.39 554.951 lineto
+1098.31 554.137 lineto
+1097.26 553.287 lineto
+1096.24 552.402 lineto
+1095.25 551.485 lineto
+1094.31 550.534 lineto
+1093.41 549.553 lineto
+1092.56 548.54 lineto
+1091.76 547.497 lineto
+1091.01 546.423 lineto
+1090.33 545.318 lineto
+1089.71 544.183 lineto
+1089.16 543.017 lineto
+1088.69 541.82 lineto
+1088.31 540.594 lineto
+1088.02 539.339 lineto
+1087.83 538.06 lineto
+1087.76 536.764 lineto
+1087.8 535.458 lineto
+1087.97 534.155 lineto
+1088.28 532.866 lineto
+1088.71 531.607 lineto
+1089.26 530.388 lineto
+1089.94 529.221 lineto
+1090.73 528.112 lineto
+1091.62 527.065 lineto
+1092.6 526.082 lineto
+1093.67 525.162 lineto
+1094.82 524.303 lineto
+1096.05 523.505 lineto
+1097.36 522.764 lineto
+1098.73 522.08 lineto
+1100.17 521.451 lineto
+1101.67 520.875 lineto
+1103.23 520.353 lineto
+1104.84 519.883 lineto
+1106.5 519.465 lineto
+1108.21 519.099 lineto
+1109.96 518.786 lineto
+1111.73 518.524 lineto
+1113.54 518.315 lineto
+1115.37 518.157 lineto
+1117.22 518.052 lineto
+1119.07 518 lineto
+1120.93 518 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1120 535.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1263.57 522.049 moveto
+1268.58 522.148 lineto
+1273.54 522.295 lineto
+1278.43 522.491 lineto
+1283.23 522.735 lineto
+1287.91 523.027 lineto
+1292.47 523.364 lineto
+1296.88 523.748 lineto
+1301.12 524.176 lineto
+1305.19 524.647 lineto
+1309.06 525.161 lineto
+1312.72 525.715 lineto
+1316.16 526.308 lineto
+1319.37 526.939 lineto
+1322.34 527.605 lineto
+1325.06 528.306 lineto
+1327.53 529.039 lineto
+1329.74 529.801 lineto
+1331.68 530.592 lineto
+1333.35 531.408 lineto
+1334.76 532.248 lineto
+1335.89 533.109 lineto
+1336.76 533.989 lineto
+1337.37 534.886 lineto
+1337.72 535.797 lineto
+1337.81 536.719 lineto
+1337.66 537.65 lineto
+1337.26 538.587 lineto
+1336.63 539.529 lineto
+1335.78 540.471 lineto
+1334.71 541.413 lineto
+1333.44 542.35 lineto
+1331.97 543.281 lineto
+1330.32 544.203 lineto
+1328.49 545.114 lineto
+1326.5 546.011 lineto
+1324.36 546.891 lineto
+1322.08 547.752 lineto
+1319.67 548.592 lineto
+1317.15 549.408 lineto
+1314.51 550.199 lineto
+1311.78 550.961 lineto
+1308.96 551.694 lineto
+1306.06 552.395 lineto
+1303.09 553.061 lineto
+1300.05 553.692 lineto
+1296.97 554.285 lineto
+1293.83 554.839 lineto
+1290.66 555.353 lineto
+1287.45 555.824 lineto
+1284.2 556.252 lineto
+1280.94 556.636 lineto
+1277.65 556.973 lineto
+1274.35 557.265 lineto
+1271.03 557.509 lineto
+1267.7 557.705 lineto
+1264.36 557.852 lineto
+1261.02 557.951 lineto
+1257.67 558 lineto
+1254.33 558 lineto
+1250.98 557.951 lineto
+1247.64 557.852 lineto
+1244.3 557.705 lineto
+1240.97 557.509 lineto
+1237.65 557.265 lineto
+1234.35 556.973 lineto
+1231.06 556.636 lineto
+1227.8 556.252 lineto
+1224.55 555.824 lineto
+1221.34 555.353 lineto
+1218.17 554.839 lineto
+1215.03 554.285 lineto
+1211.95 553.692 lineto
+1208.91 553.061 lineto
+1205.94 552.395 lineto
+1203.04 551.694 lineto
+1200.22 550.961 lineto
+1197.49 550.199 lineto
+1194.85 549.408 lineto
+1192.33 548.592 lineto
+1189.92 547.752 lineto
+1187.64 546.891 lineto
+1185.5 546.011 lineto
+1183.51 545.114 lineto
+1181.68 544.203 lineto
+1180.03 543.281 lineto
+1178.56 542.35 lineto
+1177.29 541.413 lineto
+1176.22 540.471 lineto
+1175.37 539.529 lineto
+1174.74 538.587 lineto
+1174.34 537.65 lineto
+1174.19 536.719 lineto
+1174.28 535.797 lineto
+1174.63 534.886 lineto
+1175.24 533.989 lineto
+1176.11 533.109 lineto
+1177.24 532.248 lineto
+1178.65 531.408 lineto
+1180.32 530.592 lineto
+1182.26 529.801 lineto
+1184.47 529.039 lineto
+1186.94 528.306 lineto
+1189.66 527.605 lineto
+1192.63 526.939 lineto
+1195.84 526.308 lineto
+1199.28 525.715 lineto
+1202.94 525.161 lineto
+1206.81 524.647 lineto
+1210.88 524.176 lineto
+1215.12 523.748 lineto
+1219.53 523.364 lineto
+1224.09 523.027 lineto
+1228.77 522.735 lineto
+1233.57 522.491 lineto
+1238.46 522.295 lineto
+1243.42 522.148 lineto
+1248.43 522.049 lineto
+1253.47 522 lineto
+1258.53 522 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1263.63 518.05 moveto
+1268.68 518.149 lineto
+1273.68 518.298 lineto
+1278.61 518.495 lineto
+1283.45 518.742 lineto
+1288.19 519.036 lineto
+1292.79 519.377 lineto
+1297.25 519.765 lineto
+1301.55 520.199 lineto
+1305.68 520.678 lineto
+1309.62 521.2 lineto
+1313.36 521.766 lineto
+1316.89 522.374 lineto
+1320.2 523.024 lineto
+1323.28 523.716 lineto
+1326.13 524.451 lineto
+1328.75 525.229 lineto
+1331.14 526.056 lineto
+1333.31 526.938 lineto
+1335.26 527.888 lineto
+1337 528.927 lineto
+1338.53 530.093 lineto
+1339.87 531.439 lineto
+1340.94 533.025 lineto
+1341.65 534.864 lineto
+1341.85 536.846 lineto
+1341.53 538.771 lineto
+1340.8 540.493 lineto
+1339.8 541.995 lineto
+1338.59 543.323 lineto
+1337.22 544.53 lineto
+1335.7 545.654 lineto
+1334.02 546.72 lineto
+1332.18 547.742 lineto
+1330.2 548.729 lineto
+1328.08 549.685 lineto
+1325.83 550.612 lineto
+1323.45 551.512 lineto
+1320.95 552.384 lineto
+1318.34 553.227 lineto
+1315.62 554.041 lineto
+1312.82 554.824 lineto
+1309.93 555.574 lineto
+1306.96 556.29 lineto
+1303.93 556.971 lineto
+1300.84 557.614 lineto
+1297.69 558.219 lineto
+1294.5 558.783 lineto
+1291.27 559.306 lineto
+1288 559.786 lineto
+1284.7 560.221 lineto
+1281.38 560.612 lineto
+1278.03 560.955 lineto
+1274.67 561.252 lineto
+1271.29 561.5 lineto
+1267.91 561.699 lineto
+1264.51 561.85 lineto
+1261.11 561.95 lineto
+1257.7 562 lineto
+1254.3 562 lineto
+1250.89 561.95 lineto
+1247.49 561.85 lineto
+1244.09 561.699 lineto
+1240.71 561.5 lineto
+1237.33 561.252 lineto
+1233.97 560.955 lineto
+1230.62 560.612 lineto
+1227.3 560.221 lineto
+1224 559.786 lineto
+1220.73 559.306 lineto
+1217.5 558.783 lineto
+1214.31 558.219 lineto
+1211.16 557.614 lineto
+1208.07 556.971 lineto
+1205.04 556.29 lineto
+1202.07 555.574 lineto
+1199.18 554.824 lineto
+1196.38 554.041 lineto
+1193.66 553.227 lineto
+1191.05 552.384 lineto
+1188.55 551.512 lineto
+1186.17 550.612 lineto
+1183.92 549.685 lineto
+1181.8 548.729 lineto
+1179.82 547.742 lineto
+1177.98 546.72 lineto
+1176.3 545.654 lineto
+1174.78 544.53 lineto
+1173.41 543.323 lineto
+1172.2 541.995 lineto
+1171.2 540.493 lineto
+1170.47 538.771 lineto
+1170.15 536.846 lineto
+1170.35 534.864 lineto
+1171.06 533.025 lineto
+1172.13 531.439 lineto
+1173.47 530.093 lineto
+1175 528.927 lineto
+1176.74 527.888 lineto
+1178.69 526.938 lineto
+1180.86 526.056 lineto
+1183.25 525.229 lineto
+1185.87 524.451 lineto
+1188.72 523.716 lineto
+1191.8 523.024 lineto
+1195.11 522.374 lineto
+1198.64 521.766 lineto
+1202.38 521.2 lineto
+1206.32 520.678 lineto
+1210.45 520.199 lineto
+1214.75 519.765 lineto
+1219.21 519.377 lineto
+1223.81 519.036 lineto
+1228.55 518.742 lineto
+1233.39 518.495 lineto
+1238.32 518.298 lineto
+1243.32 518.149 lineto
+1248.37 518.05 lineto
+1253.45 518 lineto
+1258.55 518 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1256 535.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 0112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1394.62 480.688 moveto
+1396.35 481.014 lineto
+1398.07 481.501 lineto
+1399.76 482.149 lineto
+1401.42 482.955 lineto
+1403.04 483.917 lineto
+1404.62 485.034 lineto
+1406.14 486.301 lineto
+1407.61 487.715 lineto
+1409.02 489.272 lineto
+1410.35 490.969 lineto
+1411.62 492.799 lineto
+1412.81 494.76 lineto
+1413.92 496.844 lineto
+1414.95 499.046 lineto
+1415.89 501.361 lineto
+1416.74 503.782 lineto
+1417.51 506.302 lineto
+1418.18 508.914 lineto
+1418.76 511.611 lineto
+1419.24 514.387 lineto
+1419.64 517.232 lineto
+1419.94 520.14 lineto
+1420.15 523.102 lineto
+1420.27 526.111 lineto
+1420.3 529.158 lineto
+1420.25 532.234 lineto
+1420.11 535.332 lineto
+1419.89 538.443 lineto
+1419.6 541.557 lineto
+1419.23 544.668 lineto
+1418.79 547.766 lineto
+1418.28 550.842 lineto
+1417.71 553.889 lineto
+1417.08 556.898 lineto
+1416.39 559.86 lineto
+1415.65 562.768 lineto
+1414.86 565.613 lineto
+1414.03 568.389 lineto
+1413.15 571.086 lineto
+1412.24 573.698 lineto
+1411.3 576.218 lineto
+1410.32 578.639 lineto
+1409.32 580.954 lineto
+1408.29 583.156 lineto
+1407.24 585.24 lineto
+1406.17 587.201 lineto
+1405.09 589.031 lineto
+1403.99 590.728 lineto
+1402.88 592.285 lineto
+1401.76 593.699 lineto
+1400.63 594.966 lineto
+1399.49 596.083 lineto
+1398.35 597.045 lineto
+1397.2 597.851 lineto
+1396.05 598.499 lineto
+1394.89 598.986 lineto
+1393.74 599.312 lineto
+1392.58 599.475 lineto
+1391.42 599.475 lineto
+1390.26 599.312 lineto
+1389.11 598.986 lineto
+1387.95 598.499 lineto
+1386.8 597.851 lineto
+1385.65 597.045 lineto
+1384.51 596.083 lineto
+1383.37 594.966 lineto
+1382.24 593.699 lineto
+1381.12 592.285 lineto
+1380.01 590.728 lineto
+1378.91 589.031 lineto
+1377.83 587.201 lineto
+1376.76 585.24 lineto
+1375.71 583.156 lineto
+1374.68 580.954 lineto
+1373.68 578.639 lineto
+1372.7 576.218 lineto
+1371.76 573.698 lineto
+1370.85 571.086 lineto
+1369.97 568.389 lineto
+1369.14 565.613 lineto
+1368.35 562.768 lineto
+1367.61 559.86 lineto
+1366.92 556.898 lineto
+1366.29 553.889 lineto
+1365.72 550.842 lineto
+1365.21 547.766 lineto
+1364.77 544.668 lineto
+1364.4 541.557 lineto
+1364.11 538.443 lineto
+1363.89 535.332 lineto
+1363.75 532.234 lineto
+1363.7 529.158 lineto
+1363.73 526.111 lineto
+1363.85 523.102 lineto
+1364.06 520.14 lineto
+1364.36 517.232 lineto
+1364.76 514.387 lineto
+1365.24 511.611 lineto
+1365.82 508.914 lineto
+1366.49 506.302 lineto
+1367.26 503.782 lineto
+1368.11 501.361 lineto
+1369.05 499.046 lineto
+1370.08 496.844 lineto
+1371.19 494.76 lineto
+1372.38 492.799 lineto
+1373.65 490.969 lineto
+1374.98 489.272 lineto
+1376.39 487.715 lineto
+1377.86 486.301 lineto
+1379.38 485.034 lineto
+1380.96 483.917 lineto
+1382.58 482.955 lineto
+1384.24 482.149 lineto
+1385.93 481.501 lineto
+1387.65 481.014 lineto
+1389.38 480.688 lineto
+1391.13 480.525 lineto
+1392.87 480.525 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1395.16 476.722 moveto
+1397.24 477.113 lineto
+1399.3 477.696 lineto
+1401.31 478.466 lineto
+1403.27 479.418 lineto
+1405.16 480.545 lineto
+1406.99 481.84 lineto
+1408.75 483.297 lineto
+1410.42 484.908 lineto
+1412.01 486.667 lineto
+1413.5 488.565 lineto
+1414.91 490.597 lineto
+1416.22 492.756 lineto
+1417.44 495.034 lineto
+1418.55 497.425 lineto
+1419.57 499.923 lineto
+1420.48 502.519 lineto
+1421.3 505.208 lineto
+1422.01 507.982 lineto
+1422.62 510.835 lineto
+1423.13 513.758 lineto
+1423.55 516.745 lineto
+1423.86 519.787 lineto
+1424.08 522.877 lineto
+1424.21 526.008 lineto
+1424.24 529.172 lineto
+1424.18 532.359 lineto
+1424.04 535.564 lineto
+1423.82 538.776 lineto
+1423.51 541.989 lineto
+1423.13 545.194 lineto
+1422.68 548.383 lineto
+1422.16 551.548 lineto
+1421.57 554.681 lineto
+1420.92 557.774 lineto
+1420.21 560.82 lineto
+1419.45 563.81 lineto
+1418.64 566.739 lineto
+1417.78 569.597 lineto
+1416.88 572.38 lineto
+1415.94 575.079 lineto
+1414.96 577.688 lineto
+1413.94 580.203 lineto
+1412.9 582.616 lineto
+1411.82 584.923 lineto
+1410.72 587.119 lineto
+1409.58 589.2 lineto
+1408.42 591.162 lineto
+1407.23 593.001 lineto
+1406.01 594.715 lineto
+1404.75 596.299 lineto
+1403.46 597.75 lineto
+1402.12 599.065 lineto
+1400.73 600.236 lineto
+1399.28 601.254 lineto
+1397.76 602.107 lineto
+1396.18 602.775 lineto
+1394.54 603.237 lineto
+1392.85 603.475 lineto
+1391.15 603.475 lineto
+1389.46 603.237 lineto
+1387.82 602.775 lineto
+1386.24 602.107 lineto
+1384.72 601.254 lineto
+1383.27 600.236 lineto
+1381.88 599.065 lineto
+1380.54 597.75 lineto
+1379.25 596.299 lineto
+1377.99 594.715 lineto
+1376.77 593.001 lineto
+1375.58 591.162 lineto
+1374.42 589.2 lineto
+1373.28 587.119 lineto
+1372.18 584.923 lineto
+1371.1 582.616 lineto
+1370.06 580.203 lineto
+1369.04 577.688 lineto
+1368.06 575.079 lineto
+1367.12 572.38 lineto
+1366.22 569.597 lineto
+1365.36 566.739 lineto
+1364.55 563.81 lineto
+1363.79 560.82 lineto
+1363.08 557.774 lineto
+1362.43 554.681 lineto
+1361.84 551.548 lineto
+1361.32 548.383 lineto
+1360.87 545.194 lineto
+1360.49 541.989 lineto
+1360.18 538.776 lineto
+1359.96 535.564 lineto
+1359.82 532.359 lineto
+1359.76 529.172 lineto
+1359.79 526.008 lineto
+1359.92 522.877 lineto
+1360.14 519.787 lineto
+1360.45 516.745 lineto
+1360.87 513.758 lineto
+1361.38 510.835 lineto
+1361.99 507.982 lineto
+1362.7 505.208 lineto
+1363.52 502.519 lineto
+1364.43 499.923 lineto
+1365.45 497.425 lineto
+1366.56 495.034 lineto
+1367.78 492.756 lineto
+1369.09 490.597 lineto
+1370.5 488.565 lineto
+1371.99 486.667 lineto
+1373.58 484.908 lineto
+1375.25 483.297 lineto
+1377.01 481.84 lineto
+1378.84 480.545 lineto
+1380.73 479.418 lineto
+1382.69 478.466 lineto
+1384.7 477.696 lineto
+1386.76 477.113 lineto
+1388.84 476.722 lineto
+1390.95 476.525 lineto
+1393.05 476.525 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 576.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 560.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 543.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 527.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 510.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1392 494.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 0113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1555.25 464.521 moveto
+1561.38 464.935 lineto
+1567.45 465.556 lineto
+1573.42 466.38 lineto
+1579.28 467.406 lineto
+1585.01 468.63 lineto
+1590.58 470.051 lineto
+1595.97 471.663 lineto
+1601.16 473.463 lineto
+1606.13 475.445 lineto
+1610.86 477.604 lineto
+1615.33 479.933 lineto
+1619.54 482.428 lineto
+1623.47 485.08 lineto
+1627.1 487.883 lineto
+1630.42 490.829 lineto
+1633.44 493.909 lineto
+1636.13 497.116 lineto
+1638.51 500.44 lineto
+1640.55 503.873 lineto
+1642.27 507.405 lineto
+1643.66 511.026 lineto
+1644.73 514.727 lineto
+1645.47 518.497 lineto
+1645.89 522.325 lineto
+1646.01 526.203 lineto
+1645.82 530.118 lineto
+1645.34 534.06 lineto
+1644.57 538.018 lineto
+1643.52 541.982 lineto
+1642.22 545.94 lineto
+1640.66 549.882 lineto
+1638.86 553.797 lineto
+1636.84 557.675 lineto
+1634.61 561.503 lineto
+1632.18 565.273 lineto
+1629.57 568.974 lineto
+1626.78 572.595 lineto
+1623.83 576.127 lineto
+1620.74 579.56 lineto
+1617.52 582.884 lineto
+1614.18 586.091 lineto
+1610.74 589.171 lineto
+1607.19 592.117 lineto
+1603.56 594.92 lineto
+1599.85 597.572 lineto
+1596.08 600.067 lineto
+1592.25 602.396 lineto
+1588.36 604.555 lineto
+1584.44 606.537 lineto
+1580.48 608.337 lineto
+1576.49 609.949 lineto
+1572.47 611.37 lineto
+1568.43 612.594 lineto
+1564.37 613.62 lineto
+1560.3 614.444 lineto
+1556.22 615.065 lineto
+1552.14 615.479 lineto
+1548.05 615.686 lineto
+1543.95 615.686 lineto
+1539.86 615.479 lineto
+1535.78 615.065 lineto
+1531.7 614.444 lineto
+1527.63 613.62 lineto
+1523.57 612.594 lineto
+1519.53 611.37 lineto
+1515.51 609.949 lineto
+1511.52 608.337 lineto
+1507.56 606.537 lineto
+1503.64 604.555 lineto
+1499.75 602.396 lineto
+1495.92 600.067 lineto
+1492.15 597.572 lineto
+1488.44 594.92 lineto
+1484.81 592.117 lineto
+1481.26 589.171 lineto
+1477.82 586.091 lineto
+1474.48 582.884 lineto
+1471.26 579.56 lineto
+1468.17 576.127 lineto
+1465.22 572.595 lineto
+1462.43 568.974 lineto
+1459.82 565.273 lineto
+1457.39 561.503 lineto
+1455.16 557.675 lineto
+1453.14 553.797 lineto
+1451.34 549.882 lineto
+1449.78 545.94 lineto
+1448.48 541.982 lineto
+1447.43 538.018 lineto
+1446.66 534.06 lineto
+1446.18 530.118 lineto
+1445.99 526.203 lineto
+1446.11 522.325 lineto
+1446.53 518.497 lineto
+1447.27 514.727 lineto
+1448.34 511.026 lineto
+1449.73 507.405 lineto
+1451.45 503.873 lineto
+1453.49 500.44 lineto
+1455.87 497.116 lineto
+1458.56 493.909 lineto
+1461.58 490.829 lineto
+1464.9 487.883 lineto
+1468.53 485.08 lineto
+1472.46 482.428 lineto
+1476.67 479.933 lineto
+1481.14 477.604 lineto
+1485.87 475.445 lineto
+1490.84 473.463 lineto
+1496.03 471.663 lineto
+1501.42 470.051 lineto
+1506.99 468.63 lineto
+1512.72 467.406 lineto
+1518.58 466.38 lineto
+1524.55 465.556 lineto
+1530.62 464.935 lineto
+1536.75 464.521 lineto
+1542.91 464.314 lineto
+1549.09 464.314 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1555.46 460.526 moveto
+1561.72 460.949 lineto
+1567.92 461.583 lineto
+1574.04 462.427 lineto
+1580.05 463.478 lineto
+1585.93 464.735 lineto
+1591.65 466.195 lineto
+1597.2 467.856 lineto
+1602.56 469.714 lineto
+1607.7 471.765 lineto
+1612.61 474.008 lineto
+1617.28 476.436 lineto
+1621.68 479.047 lineto
+1625.81 481.837 lineto
+1629.65 484.799 lineto
+1633.18 487.929 lineto
+1636.4 491.22 lineto
+1639.3 494.664 lineto
+1641.86 498.251 lineto
+1644.08 501.971 lineto
+1645.94 505.81 lineto
+1647.46 509.754 lineto
+1648.62 513.785 lineto
+1649.43 517.888 lineto
+1649.89 522.045 lineto
+1650.01 526.24 lineto
+1649.81 530.458 lineto
+1649.29 534.685 lineto
+1648.47 538.909 lineto
+1647.36 543.119 lineto
+1645.98 547.303 lineto
+1644.34 551.452 lineto
+1642.46 555.557 lineto
+1640.35 559.608 lineto
+1638.02 563.596 lineto
+1635.5 567.512 lineto
+1632.78 571.349 lineto
+1629.9 575.096 lineto
+1626.86 578.746 lineto
+1623.67 582.29 lineto
+1620.35 585.719 lineto
+1616.9 589.026 lineto
+1613.35 592.202 lineto
+1609.69 595.239 lineto
+1605.95 598.131 lineto
+1602.12 600.868 lineto
+1598.22 603.445 lineto
+1594.26 605.855 lineto
+1590.24 608.09 lineto
+1586.17 610.145 lineto
+1582.05 612.014 lineto
+1577.9 613.691 lineto
+1573.71 615.171 lineto
+1569.5 616.449 lineto
+1565.26 617.522 lineto
+1561 618.384 lineto
+1556.72 619.034 lineto
+1552.44 619.469 lineto
+1548.15 619.686 lineto
+1543.85 619.686 lineto
+1539.56 619.469 lineto
+1535.28 619.034 lineto
+1531 618.384 lineto
+1526.74 617.522 lineto
+1522.5 616.449 lineto
+1518.29 615.171 lineto
+1514.1 613.691 lineto
+1509.95 612.014 lineto
+1505.83 610.145 lineto
+1501.76 608.09 lineto
+1497.74 605.855 lineto
+1493.78 603.445 lineto
+1489.88 600.868 lineto
+1486.05 598.131 lineto
+1482.31 595.239 lineto
+1478.65 592.202 lineto
+1475.1 589.026 lineto
+1471.65 585.719 lineto
+1468.33 582.29 lineto
+1465.14 578.746 lineto
+1462.1 575.096 lineto
+1459.22 571.349 lineto
+1456.5 567.512 lineto
+1453.98 563.596 lineto
+1451.65 559.608 lineto
+1449.54 555.557 lineto
+1447.66 551.452 lineto
+1446.02 547.303 lineto
+1444.64 543.119 lineto
+1443.53 538.909 lineto
+1442.71 534.685 lineto
+1442.19 530.458 lineto
+1441.99 526.24 lineto
+1442.11 522.045 lineto
+1442.57 517.888 lineto
+1443.38 513.785 lineto
+1444.54 509.754 lineto
+1446.06 505.81 lineto
+1447.92 501.971 lineto
+1450.14 498.251 lineto
+1452.7 494.664 lineto
+1455.6 491.22 lineto
+1458.82 487.929 lineto
+1462.35 484.799 lineto
+1466.19 481.837 lineto
+1470.32 479.047 lineto
+1474.72 476.436 lineto
+1479.39 474.008 lineto
+1484.3 471.765 lineto
+1489.44 469.714 lineto
+1494.8 467.856 lineto
+1500.35 466.195 lineto
+1506.07 464.735 lineto
+1511.95 463.478 lineto
+1517.96 462.427 lineto
+1524.08 461.583 lineto
+1530.28 460.949 lineto
+1536.54 460.526 lineto
+1542.84 460.314 lineto
+1549.16 460.314 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 576.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 560.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 543.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 527.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 510.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1546 494.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 3000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 39 848.648 moveto
+0.101768 796.676 lineto
+77.8982 796.676 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 809.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 3000->0000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 796 moveto
+39 750 39 625 39 568 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 568 moveto
+39 558 lineto
+35.5001 568 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 568 moveto
+39 558 lineto
+35.5001 568 lineto
+closepath stroke
+grestore
+% 3001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 249 848.648 moveto
+95.8523 796.676 lineto
+402.148 796.676 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+249 809.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 3002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 460 932.909 moveto
+419.843 754.546 lineto
+500.157 754.546 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 850.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 834.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 817.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 801.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 784.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+460 768.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 3003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 706 965.321 moveto
+518.179 738.34 lineto
+893.821 738.34 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 850.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 834.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 817.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 801.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 784.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+706 768.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 3110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 920.102 831.324 moveto
+959 779.352 lineto
+997.898 831.324 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 912.112 835.324 moveto
+959 772.676 lineto
+1005.89 835.324 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+959 809.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 3111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1048.35 831.324 moveto
+1202 779.352 lineto
+1355.65 831.324 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1024.04 835.324 moveto
+1202 775.129 lineto
+1379.96 835.324 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1202 809.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 3112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1402.79 873.454 moveto
+1443 695.091 lineto
+1483.21 873.454 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1397.83 877.454 moveto
+1443 677.094 lineto
+1488.17 877.454 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 850.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 834.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 817.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 801.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 784.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1443 768.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 3113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1514.66 889.66 moveto
+1702 662.679 lineto
+1889.34 889.66 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1506.18 893.66 moveto
+1702 656.405 lineto
+1897.82 893.66 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 850.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 834.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 817.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 801.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 784.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1702 768.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 4000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 66 1138 moveto
+12 1138 lineto
+12 1102 lineto
+66 1102 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 1115.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 4000->3000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 1102 moveto
+39 1054 39 927 39 859 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 859 moveto
+39 849 lineto
+35.5001 859 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 859 moveto
+39 849 lineto
+35.5001 859 lineto
+closepath stroke
+grestore
+% 4001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 227.75 1138 moveto
+84.25 1138 lineto
+84.25 1102 lineto
+227.75 1102 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+156 1115.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 4002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 300 1173.5 moveto
+246 1173.5 lineto
+246 1066.5 lineto
+300 1066.5 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1156.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1140.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1123.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1107.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1090.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+273 1074.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 4003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 461.75 1173.5 moveto
+318.25 1173.5 lineto
+318.25 1066.5 lineto
+461.75 1066.5 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1156.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1140.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1123.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1107.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1090.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+390 1074.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 4110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 513 1144.5 moveto
+485.905 1120 lineto
+513 1095.5 lineto
+540.095 1120 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 513 1149.86 moveto
+479.981 1120 lineto
+513 1090.14 lineto
+546.019 1120 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+513 1115.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 4111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 691 1144.5 moveto
+582.354 1120 lineto
+691 1095.5 lineto
+799.646 1120 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 691 1148.6 moveto
+564.171 1120 lineto
+691 1091.4 lineto
+817.829 1120 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+691 1115.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 4112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 869 1204.08 moveto
+840.25 1120 lineto
+869 1035.92 lineto
+897.75 1120 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 869 1216.44 moveto
+836.023 1120 lineto
+869 1023.56 lineto
+901.977 1120 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1156.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1140.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1123.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1107.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1090.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+869 1074.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 4113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1059 1227 moveto
+926.191 1120 lineto
+1059 1013 lineto
+1191.81 1120 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1059 1232.14 moveto
+919.815 1120 lineto
+1059 1007.86 lineto
+1198.19 1120 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1156.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1140.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1123.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1107.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1090.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1059 1074.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 5000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 66 1372.62 moveto
+39 1387.41 lineto
+12 1372.62 lineto
+22.3131 1348.68 lineto
+55.6869 1348.68 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 1361.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 5000->4000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 1348 moveto
+39 1306 39 1199 39 1148 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1148 moveto
+39 1138 lineto
+35.5001 1148 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1148 moveto
+39 1138 lineto
+35.5001 1148 lineto
+closepath stroke
+grestore
+% 5001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 273.96 1372.62 moveto
+179 1387.41 lineto
+84.0402 1372.62 lineto
+120.312 1348.68 lineto
+237.688 1348.68 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+179 1361.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 5002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 346 1388.71 moveto
+319 1439.49 lineto
+292 1388.71 lineto
+302.313 1306.55 lineto
+335.687 1306.55 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1402.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1386.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1369.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1353.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1336.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+319 1320.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 5003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 596.08 1394.9 moveto
+480 1459.52 lineto
+363.92 1394.9 lineto
+408.259 1290.34 lineto
+551.741 1290.34 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1402.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1386.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1369.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1353.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1336.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+480 1320.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 5110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 662.687 1383.32 moveto
+629.313 1383.32 lineto
+619 1359.38 lineto
+646 1344.59 lineto
+673 1359.38 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 665.319 1387.32 moveto
+626.681 1387.32 lineto
+613.887 1357.62 lineto
+646 1340.02 lineto
+678.113 1357.62 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+646 1361.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 5111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 860.688 1383.32 moveto
+743.312 1383.32 lineto
+707.04 1359.38 lineto
+802 1344.59 lineto
+896.96 1359.38 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 861.889 1387.32 moveto
+742.111 1387.32 lineto
+696.204 1357.02 lineto
+802 1340.54 lineto
+907.796 1357.02 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+802 1361.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 5112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 973.687 1425.45 moveto
+940.313 1425.45 lineto
+930 1343.29 lineto
+957 1292.51 lineto
+984 1343.29 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 977.216 1429.45 moveto
+936.784 1429.45 lineto
+925.873 1342.53 lineto
+957 1283.99 lineto
+988.127 1342.53 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1402.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1386.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1369.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1353.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1336.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+957 1320.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 5113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1198.74 1441.66 moveto
+1055.26 1441.66 lineto
+1010.92 1337.1 lineto
+1127 1272.48 lineto
+1243.08 1337.1 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1201.39 1445.66 moveto
+1052.61 1445.66 lineto
+1005.83 1335.35 lineto
+1127 1267.9 lineto
+1248.17 1335.35 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1402.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1386.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1369.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1353.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1336.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1127 1320.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 6000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 66 1592 moveto
+52.5 1612 lineto
+25.5 1612 lineto
+12 1592 lineto
+25.5 1572 lineto
+52.5 1572 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 1587.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 6000->5000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 1572 moveto
+39 1533 39 1446 39 1398 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1398 moveto
+39 1388 lineto
+35.5001 1398 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1398 moveto
+39 1388 lineto
+35.5001 1398 lineto
+closepath stroke
+grestore
+% 6001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 260.208 1592 moveto
+216.104 1612 lineto
+127.896 1612 lineto
+83.7923 1592 lineto
+127.896 1572 lineto
+216.104 1572 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+172 1587.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 6002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 332 1592 moveto
+318.5 1660.65 lineto
+291.5 1660.65 lineto
+278 1592 lineto
+291.5 1523.35 lineto
+318.5 1523.35 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1628.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1612.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1595.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1579.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1562.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+305 1546.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 6003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 565.939 1592 moveto
+511.969 1679.37 lineto
+404.031 1679.37 lineto
+350.061 1592 lineto
+404.031 1504.63 lineto
+511.969 1504.63 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1628.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1612.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1595.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1579.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1562.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+458 1546.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 6110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 642 1602 moveto
+615 1612 lineto
+588 1602 lineto
+588 1582 lineto
+615 1572 lineto
+642 1582 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 646 1604.79 moveto
+615 1616.27 lineto
+584 1604.79 lineto
+584 1579.21 lineto
+615 1567.73 lineto
+646 1579.21 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+615 1587.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 6111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 844.229 1602 moveto
+756 1612 lineto
+667.771 1602 lineto
+667.771 1582 lineto
+756 1572 lineto
+844.229 1582 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 848.208 1605.58 moveto
+756 1616.03 lineto
+663.792 1605.58 lineto
+663.792 1578.42 lineto
+756 1567.97 lineto
+848.208 1578.42 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+756 1587.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 6112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 924 1626.33 moveto
+897 1660.65 lineto
+870 1626.33 lineto
+870 1557.67 lineto
+897 1523.35 lineto
+924 1557.67 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 928 1627.71 moveto
+897 1667.12 lineto
+866 1627.71 lineto
+866 1556.29 lineto
+897 1516.88 lineto
+928 1556.29 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1628.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1612.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1595.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1579.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1562.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+897 1546.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 6113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1165.96 1635.68 moveto
+1058 1679.37 lineto
+950.044 1635.68 lineto
+950.044 1548.32 lineto
+1058 1504.63 lineto
+1165.96 1548.32 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1169.94 1638.38 moveto
+1058 1683.68 lineto
+946.061 1638.38 lineto
+946.061 1545.62 lineto
+1058 1500.32 lineto
+1169.94 1545.62 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1628.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1612.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1595.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1579.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1562.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 1546.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 7000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 66 1804.72 moveto
+60.6523 1820.99 lineto
+39 1828.23 lineto
+17.3477 1820.99 lineto
+12 1804.72 lineto
+26.9839 1791.68 lineto
+51.0161 1791.68 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 1804.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 7000->6000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 1792 moveto
+39 1755 39 1669 39 1622 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1622 moveto
+39 1612 lineto
+35.5001 1622 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1622 moveto
+39 1612 lineto
+35.5001 1622 lineto
+closepath stroke
+grestore
+% 7001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 253.77 1804.72 moveto
+236.98 1820.99 lineto
+169 1828.23 lineto
+101.02 1820.99 lineto
+84.2303 1804.72 lineto
+131.274 1791.68 lineto
+206.726 1791.68 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+169 1804.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 7002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 326 1794.32 moveto
+320.652 1850.14 lineto
+299 1874.99 lineto
+277.348 1850.14 lineto
+272 1794.32 lineto
+286.984 1749.55 lineto
+311.016 1749.55 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1845.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1829.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1812.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1796.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1779.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+299 1763.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 7003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 552.233 1790.31 moveto
+531.588 1861.36 lineto
+448 1892.98 lineto
+364.412 1861.36 lineto
+343.767 1790.31 lineto
+401.612 1733.34 lineto
+494.388 1733.34 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1845.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1829.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1812.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1796.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1779.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+448 1763.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 7110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 627.571 1813.27 moveto
+612.831 1826.32 lineto
+589.181 1826.33 lineto
+574.432 1813.28 lineto
+579.688 1797.02 lineto
+600.993 1789.77 lineto
+622.303 1797.01 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 632.128 1814.55 moveto
+614.305 1830.32 lineto
+587.709 1830.33 lineto
+569.876 1814.56 lineto
+576.565 1793.86 lineto
+600.992 1785.55 lineto
+625.425 1793.85 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+601 1804.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 7111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 828.268 1813.27 moveto
+780.965 1826.32 lineto
+705.074 1826.33 lineto
+657.741 1813.28 lineto
+674.61 1797.02 lineto
+742.978 1789.77 lineto
+811.362 1797.01 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 836.104 1815.26 moveto
+781.507 1830.32 lineto
+704.533 1830.33 lineto
+649.914 1815.28 lineto
+672.823 1793.18 lineto
+742.978 1785.75 lineto
+813.147 1793.17 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+743 1804.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 7112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 912 1823.67 moveto
+897.022 1868.45 lineto
+872.991 1868.46 lineto
+858.003 1823.7 lineto
+863.345 1767.87 lineto
+884.993 1743.01 lineto
+906.647 1767.84 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 916.063 1824.13 moveto
+899.902 1872.45 lineto
+870.112 1872.46 lineto
+853.94 1824.16 lineto
+859.485 1766.21 lineto
+884.991 1736.92 lineto
+910.506 1766.18 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1845.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1829.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1812.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1796.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1779.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+885 1763.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 7113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1145.75 1827.67 moveto
+1088.2 1884.65 lineto
+995.852 1884.67 lineto
+938.259 1827.71 lineto
+958.785 1756.66 lineto
+1041.97 1725.02 lineto
+1125.18 1756.62 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1150.24 1828.84 moveto
+1089.83 1888.65 lineto
+994.222 1888.67 lineto
+933.774 1828.88 lineto
+955.516 1753.62 lineto
+1041.97 1720.75 lineto
+1128.45 1753.59 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1845.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1829.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1812.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1796.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1779.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1042 1763.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 8000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 66 2012.23 moveto
+66 2027.77 lineto
+50.1838 2038.75 lineto
+27.8162 2038.75 lineto
+12 2027.77 lineto
+12 2012.23 lineto
+27.8162 2001.25 lineto
+50.1838 2001.25 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 8000->7000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 2001 moveto
+39 1964 39 1882 39 1838 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1838 moveto
+39 1828 lineto
+35.5001 1838 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 1838 moveto
+39 1828 lineto
+35.5001 1838 lineto
+closepath stroke
+grestore
+% 8001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 250.154 2012.23 moveto
+250.154 2027.77 lineto
+201.443 2038.75 lineto
+132.557 2038.75 lineto
+83.8462 2027.77 lineto
+83.8462 2012.23 lineto
+132.557 2001.25 lineto
+201.443 2001.25 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+167 2015.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 8002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 322 1993.34 moveto
+322 2046.66 lineto
+306.184 2084.35 lineto
+283.816 2084.35 lineto
+268 2046.66 lineto
+268 1993.34 lineto
+283.816 1955.65 lineto
+306.184 1955.65 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 2056.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 2040.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 2023.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 2007.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 1990.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+295 1974.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 8003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 542.147 1986.08 moveto
+542.147 2053.92 lineto
+482.897 2101.89 lineto
+399.103 2101.89 lineto
+339.853 2053.92 lineto
+339.853 1986.08 lineto
+399.103 1938.11 lineto
+482.897 1938.11 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 2056.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 2040.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 2023.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 2007.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 1990.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+441 1974.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 8110
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 617.571 2020 moveto
+609.789 2033.26 lineto
+591 2038.75 lineto
+572.211 2033.26 lineto
+564.429 2020 lineto
+572.211 2006.74 lineto
+591 2001.25 lineto
+609.789 2006.74 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 622.155 2020 moveto
+612.373 2036.67 lineto
+591 2042.91 lineto
+569.627 2036.67 lineto
+559.845 2020 lineto
+569.627 2003.33 lineto
+591 1997.09 lineto
+612.373 2003.33 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+591 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 8111
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 813.699 2020 moveto
+789.477 2033.26 lineto
+731 2038.75 lineto
+672.523 2033.26 lineto
+648.301 2020 lineto
+672.523 2006.74 lineto
+731 2001.25 lineto
+789.477 2006.74 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 822.019 2020 moveto
+790.661 2037.17 lineto
+731 2042.77 lineto
+671.339 2037.17 lineto
+639.981 2020 lineto
+671.339 2002.83 lineto
+731 1997.23 lineto
+790.661 2002.83 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+731 2015.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 8112
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 898 2020 moveto
+890.092 2065.5 lineto
+871 2084.35 lineto
+851.908 2065.5 lineto
+844 2020 lineto
+851.908 1974.5 lineto
+871 1955.65 lineto
+890.092 1974.5 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 902.06 2020 moveto
+893.814 2067.45 lineto
+871 2089.97 lineto
+848.186 2067.45 lineto
+839.94 2020 lineto
+848.186 1972.55 lineto
+871 1950.03 lineto
+893.814 1972.55 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 2056.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 2040.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 2023.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 2007.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 1990.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+871 1974.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 8113
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1127.65 2020 moveto
+1097.88 2077.91 lineto
+1026 2101.89 lineto
+954.124 2077.91 lineto
+924.352 2020 lineto
+954.124 1962.09 lineto
+1026 1938.11 lineto
+1097.88 1962.09 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1132.15 2020 moveto
+1100.69 2081.19 lineto
+1026 2106.11 lineto
+951.312 2081.19 lineto
+919.854 2020 lineto
+951.312 1958.81 lineto
+1026 1933.89 lineto
+1100.69 1958.81 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 2056.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 2040.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 2023.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 2007.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 1990.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1026 1974.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 9000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1209.92 2048.75 moveto
+1150.08 2048.75 lineto
+1164.46 1991.25 lineto
+1195.54 1991.25 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1180 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1269.68 2055.53 moveto
+1227.97 2013.22 lineto
+1266.34 1994.64 lineto
+1288.01 2016.61 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1263 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1315.75 2049.92 moveto
+1315.75 1990.08 lineto
+1372.25 2004.46 lineto
+1372.25 2035.54 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1344 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1389.97 2026.78 moveto
+1431.68 1984.47 lineto
+1450.01 2023.39 lineto
+1428.34 2045.36 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1425 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9004
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1478.08 1991.25 moveto
+1537.92 1991.25 lineto
+1523.54 2048.75 lineto
+1492.46 2048.75 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1508 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9005
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1584.32 1984.47 moveto
+1626.03 2026.78 lineto
+1587.66 2045.36 lineto
+1565.99 2023.39 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1591 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9006
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1700.25 1990.08 moveto
+1700.25 2049.92 lineto
+1643.75 2035.54 lineto
+1643.75 2004.46 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1672 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9007
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1788.03 2013.22 moveto
+1746.32 2055.53 lineto
+1727.99 2016.61 lineto
+1749.66 1994.64 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1753 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9010
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1870.92 2048.75 moveto
+1811.08 2048.75 lineto
+1825.46 1991.25 lineto
+1856.54 1991.25 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1876.04 2052.75 moveto
+1805.96 2052.75 lineto
+1822.34 1987.25 lineto
+1859.66 1987.25 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1841 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9011
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1942.7 2055.53 moveto
+1900.89 2013.22 lineto
+1939.35 1994.64 lineto
+1961.07 2016.61 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1943.86 2062.36 moveto
+1894.14 2012.05 lineto
+1940.16 1989.81 lineto
+1965.84 2015.79 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1936 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9012
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2000.25 2049.92 moveto
+2000.25 1990.08 lineto
+2057.75 2004.46 lineto
+2057.75 2035.54 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 1996.25 2055.04 moveto
+1996.25 1984.96 lineto
+2061.75 2001.34 lineto
+2061.75 2038.66 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2029 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9013
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2086.89 2026.78 moveto
+2128.7 1984.47 lineto
+2147.07 2023.39 lineto
+2125.35 2045.36 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2080.14 2027.95 moveto
+2129.86 1977.64 lineto
+2151.84 2024.21 lineto
+2126.16 2050.19 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2122 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9014
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2187.08 1991.25 moveto
+2246.92 1991.25 lineto
+2232.54 2048.75 lineto
+2201.46 2048.75 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2181.96 1987.25 moveto
+2252.04 1987.25 lineto
+2235.66 2052.75 lineto
+2198.34 2052.75 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2217 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9015
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2305.3 1984.47 moveto
+2347.11 2026.78 lineto
+2308.65 2045.36 lineto
+2286.93 2023.39 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2304.14 1977.64 moveto
+2353.86 2027.95 lineto
+2307.84 2050.19 lineto
+2282.16 2024.21 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2312 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9016
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2433.75 1990.08 moveto
+2433.75 2049.92 lineto
+2376.25 2035.54 lineto
+2376.25 2004.46 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2437.75 1984.96 moveto
+2437.75 2055.04 lineto
+2372.25 2038.66 lineto
+2372.25 2001.34 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2405 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 9017
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2533.11 2013.22 moveto
+2491.3 2055.53 lineto
+2472.93 2016.61 lineto
+2494.65 1994.64 lineto
+closepath stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+newpath 2539.86 2012.05 moveto
+2490.14 2062.36 lineto
+2468.16 2015.79 lineto
+2493.84 1989.81 lineto
+closepath stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+2498 2015.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+39 110 19.8335 20.3293 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+39 105.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10000->20000
+gsave
+1 setlinewidth
+0.000 0.000 0.000 edgecolor
+newpath 39 322 moveto
+39 283 39 189 39 141 curveto
+stroke
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 141 moveto
+39 131 lineto
+35.5001 141 lineto
+closepath fill
+1 setlinewidth
+solid
+0.000 0.000 0.000 edgecolor
+newpath 42.5001 141 moveto
+39 131 lineto
+35.5001 141 lineto
+closepath stroke
+grestore
+% 10001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+161 340 76.8241 18 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+161 335.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 10002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+283 340 27 59.4543 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 376.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 360.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 343.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 327.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 310.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+283 294.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+422 340 93.9104 75.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 376.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 360.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 343.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 327.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 310.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+422 294.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 10010
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+565 340 27 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+565 340 31 22 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+565 335.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10011
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+695 340 76.8241 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+695 340 80.8241 22 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+695 335.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 10012
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+825 340 27 59.4543 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+825 340 31 63.4543 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 376.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 360.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 343.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 327.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 310.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+825 294.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10013
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+972 340 93.9104 75.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+972 340 97.9104 79.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 376.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 360.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 343.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 327.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 310.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+972 294.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 10014
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1123 340 27 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1123 340 31 22 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1123 340 35 26 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1123 335.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10015
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1261 340 76.8241 18 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1261 340 80.8241 22 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1261 340 84.8241 26 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1261 335.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 10016
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1399 340 27 59.4543 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1399 340 31 63.4543 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1399 340 35 67.4543 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 376.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 360.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 343.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 327.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 310.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1399 294.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 10017
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1554 340 93.9104 75.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1554 340 97.9104 79.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1554 340 101.91 83.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 376.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 360.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 343.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 327.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 310.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1554 294.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20001
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+178 110 100.97 101.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+178 105.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20002
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+372 110 75.1594 75.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 146.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 130.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 113.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 97.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 80.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+372 64.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20003
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+566 110 100.97 101.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 146.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 130.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 113.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 97.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 80.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+566 64.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20010
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+709 110 19.9144 20.3293 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+709 110 23.8328 24.3293 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+709 105.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20011
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+856 110 100.989 101.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+856 110 104.97 105.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+856 105.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20012
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1058 110 75.1846 75.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1058 110 79.1594 79.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 146.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 130.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 113.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 97.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 80.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1058 64.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20013
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1260 110 100.989 101.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1260 110 104.97 105.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 146.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 130.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 113.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 97.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 80.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1260 64.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20014
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1411 110 19.9727 20.3293 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1411 110 23.9025 24.3293 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1411 110 27.8323 28.3293 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1411 105.65 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20015
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1566 110 101.006 101.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1566 110 104.988 105.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1566 110 108.97 109.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1566 105.65 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+% 20016
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1776 110 75.2074 75.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1776 110 79.1834 79.6604 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1776 110 83.1595 83.6604 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 146.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 130.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 113.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 97.4 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 80.9 moveto 12.75 -0.5 (M) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1776 64.4 moveto 12.75 -0.5 (M) alignedtext
+grestore
+% 20017
+gsave
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1986 110 101.006 101.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1986 110 104.988 105.47 ellipse_path stroke
+1 setlinewidth
+0.000 0.000 0.000 nodecolor
+1986 110 108.97 109.47 ellipse_path stroke
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 146.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 130.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 113.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 97.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 80.9 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+0.000 0.000 0.000 nodecolor
+14.00 /Times-Roman set_font
+1986 64.4 moveto 127.5 -0.5 (MMMMMMMMMM) alignedtext
+grestore
+endpage
+showpage
+grestore
+%%PageTrailer
+%%EndPage: 1
+%%Trailer
+%%Pages: 1
+%%BoundingBox: 36 36 2584 2150
+end
+restore
+%%EOF