summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2005-10-25 10:14:05 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2005-10-25 10:14:05 (GMT)
commite2ca157a7bbe75b62312b5deda122648884fcdf7 (patch)
tree93c991b88fbb0ff90cfe579ce2e3f742a1f45deb
parent2eaedaae9189751acee683b450365a18d1588fae (diff)
download2ii10-e2ca157a7bbe75b62312b5deda122648884fcdf7.zip
2ii10-e2ca157a7bbe75b62312b5deda122648884fcdf7.tar.gz
2ii10-e2ca157a7bbe75b62312b5deda122648884fcdf7.tar.bz2
UseCase and Class Diagrams initial import.
-rw-r--r--ADD/Images/ClassDiagram.eps16313
-rw-r--r--ADD/Images/ClassDiagram.pngbin0 -> 65415 bytes
-rw-r--r--ADD/Images/UseCaseDiagram.eps4475
-rw-r--r--ADD/Images/UseCaseDiagram.pngbin0 -> 58900 bytes
4 files changed, 20788 insertions, 0 deletions
diff --git a/ADD/Images/ClassDiagram.eps b/ADD/Images/ClassDiagram.eps
new file mode 100644
index 0000000..c340e1b
--- /dev/null
+++ b/ADD/Images/ClassDiagram.eps
@@ -0,0 +1,16313 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 20 111 575 731
+%%Creator: FreeHEP Graphics2D Driver
+%%Producer: org.freehep.graphicsio.ps.PSGraphics2D Revision: 1.20
+%%For:
+%%Title:
+%%CreationDate: dinsdag 25 oktober 2005 12:13:18 uur CEST
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+100 dict dup begin
+
+%
+% File: org/freehep/graphicsio.ps/PSProlog.txt
+% Author: Charles Loomis
+%
+
+% Redefinitions which save some space in the output file. These are also
+% the same as the PDF operators.
+/q {gsave} def
+/Q {grestore} def
+
+/n {newpath} def
+/m {moveto} def
+/l {lineto} def
+/c {curveto} def
+/h {closepath} def
+
+/re {4 -2 roll moveto
+ dup 0 exch rlineto exch 0 rlineto
+ neg 0 exch rlineto closepath} def
+
+/f {fill} def
+/f* {eofill} def
+/F {gsave vg&FC fill grestore} def
+/F* {gsave vg&FC eofill grestore} def
+
+/s {closepath stroke} def
+/S {stroke} def
+
+/b {closepath gsave vg&FC fill grestore
+ gsave stroke grestore newpath} def
+/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
+/b* {closepath gsave vg&FC eofill grestore
+ gsave stroke grestore newpath} def
+/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
+
+/g {1 array astore /vg&fcolor exch def} def
+/G {setgray} def
+/k {4 array astore /vg&fcolor exch def} def
+/K {setcmykcolor} def
+/rg {3 array astore /vg&fcolor exch def} def
+/RG {setrgbcolor} def
+
+% Initialize the fill color.
+0 0 0 rg
+
+/vg&FC {mark vg&fcolor aload pop
+ counttomark 1 eq {G} if
+ counttomark 3 eq {RG} if
+ counttomark 4 eq {K} if
+ cleartomark } def
+
+/vg&DFC {/vg&fcolor exch def} def
+
+/vg&C {mark exch aload pop
+ counttomark 1 eq {G} if
+ counttomark 3 eq {RG} if
+ counttomark 4 eq {K} if
+ cleartomark } def
+
+/w {setlinewidth} def
+/j {setlinejoin} def
+/J {setlinecap} def
+/M {setmiterlimit} def
+/d {setdash} def
+/i {setflat} def
+
+/W {clip} def
+/W* {eoclip} def
+
+% Setup the default graphics state.
+% (black; 1 pt. linewidth; miter join; butt-ends; solid)
+/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
+
+% Emulation of the rectangle operators for PostScript implementations
+% which do not implement all Level 2 features. This is an INCOMPLETE
+% emulation; only the "x y width height rect..." form is emulated.
+/*rf {gsave newpath re fill grestore} def
+/*rs {gsave newpath re stroke grestore} def
+/*rc {newpath re clip} def
+/rf /rectfill where {pop /rectfill}{/*rf} ifelse load def
+/rs /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
+/rc /rectclip where {pop /rectclip}{/*rc} ifelse load def
+
+% Emulation of the selectfont operator. This includes a 20% increase in
+% the fontsize which is necessary to get sizes similar to the Java fonts.
+/*sf {exch findfont exch
+ dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
+/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
+
+% Special version of stroke which allows the dash pattern to continue
+% across path segments. (This may be needed for PostScript although
+% modern printers seem to do this correctly.)
+/vg&stroke {
+ currentdash pop length 0 eq
+ {stroke}
+ {
+ currentdash /vg&doffset exch def pop
+ flattenpath
+ {m vg&resetdash}
+ {2 copy
+ currentpoint
+ 3 -1 roll sub dup mul
+ 3 1 roll sub dup mul
+ add sqrt
+ 3 1 roll l
+ currentdash 3 -1 roll add setdash}
+ {}
+ {h vg&resetdash}
+ pathforall
+ stroke
+ vg&resetdash
+ } ifelse
+} def
+/vg&resetdash {currentdash pop vg&doffset setdash} def
+
+% Initialize variables for safety.
+/delta 0 def
+/xv 0 def /yv 0 def /width 0 def /height 0 def
+
+% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
+/pw 595 def /ph 791 def /po true def /ftp false def
+
+% Initialize margins to 20 points.
+/ml 20 def /mr 20 def /mt 20 def /mb 20 def
+
+% Temporary matrices.
+/smatrix 0 def /nmatrix 0 def
+
+% set page size (usage: <page width><page height> setpagesize)
+/setpagesize {/ph exch def /pw exch def} def
+
+% set page orientation (usage: portrait or landscape)
+/portrait {/po true def} def
+/landscape {/po false def} def
+
+% force natural size for image (usage: naturalsize)
+/naturalsize {/ftp false def} def
+
+% resize image to fill page (usage: fittopage)
+/fittopage {/ftp true def} def
+
+% set margins of the page (usage: <left><bottom><top><right> setmargins)
+/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
+
+% set the graphic's size (usage: <width><height> setsize)
+/setsize {/gh exch def /gw exch def} def
+
+% set the graphic's origin (usage: <x0><y0> setorigin)
+/setorigin {/gy exch def /gx exch def} def
+
+% calculate image center
+/imagecenter {pw ml sub mr sub 2 div ml add
+ ph mt sub mb sub 2 div mb add} def
+
+% calculate the necessary scaling
+/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
+ po {gh}{gw} ifelse ph mt sub mb sub div
+ 2 copy lt {exch} if pop
+ ftp not {1 2 copy lt {exch} if pop} if
+ 1 exch div /sfactor exch def
+ /gw gw sfactor mul def /gh gh sfactor mul def} def
+
+% calculate image origin
+/imageorigin {pw ml sub mr sub 2 div ml add
+ po {gw}{gh} ifelse 2 div sub
+ ph mt sub mb sub 2 div mb add
+ po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
+
+% calculate the clipping origin
+/cliporigin {pw ml sub mr sub 2 div ml add
+ po {gw}{gh} ifelse 2 div sub floor
+ ph mt sub mb sub 2 div mb add
+ po {gh}{gw} ifelse 2 div sub floor} def
+
+% Set the clipping region to the bounding box.
+/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
+ po {gh}{gw} ifelse 1 add rc} def
+
+% set the base transformation matrix (usage: setbasematrix)
+/setbasematrix {imageorigin translate
+ po {0}{90} ifelse rotate
+ sfactor sfactor neg scale
+ /defaultmatrix matrix currentmatrix def} def
+
+% The lower-right bias in drawing 1 pt. wide lines.
+/bias {q 0.5 0.5 translate} def
+/unbias {Q} def
+
+% Draw a line. (x0 y0 x1 y1 line)
+/L {bias n m l S unbias} def
+
+% Polyline primitive.
+/polyline {n m 1 exch 1 exch
+ {pop currentfile token pop currentfile token pop l} for
+ } def
+
+% Draw a polyline (n x0 y0 OPL x1 y1 x2 y2 ... ... xn yn)
+/OPL {bias polyline S unbias} def
+
+% Draw a closed polyline (n x0 y0 CPL x1 y1 x2 y2 ... ... xn yn)
+/CPL {bias polyline s unbias} def
+
+% Draw a filled polyline (n x0 y0 FPL x1 y1 x2 y2 ... ... xn yn)
+/FPL {polyline h f*} def
+
+% Draw an oval. (x y w h OVL)
+/OVL {matrix currentmatrix /smatrix exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ width 2 div xv add height 2 div yv add translate
+ width currentlinewidth sub 2 div
+ height currentlinewidth sub 2 div neg
+ scale n 0 0 1 5 -2 roll arc
+ smatrix setmatrix S} def
+
+% Draw a filled oval. (x y w h FOVL)
+/FOVL {matrix currentmatrix /smatrix exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ width 2 div xv add height 2 div yv add translate
+ width 2 div
+ height 2 div neg
+ scale n 0 0 m 0 0 1 5 -2 roll arc
+ h smatrix setmatrix f} def
+
+% Draw a rounded rectangle. (x y w h arcwidth archeight RREC)
+/RREC {matrix currentmatrix /smatrix exch def
+ 2 div /ah exch def
+ 2 div /aw exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ aw ah scale matrix
+ currentmatrix /nmatrix exch def
+ smatrix setmatrix
+ n xv width add aw sub yv m
+ nmatrix setmatrix
+ currentpoint exch 1 add exch
+ currentpoint 1 add exch 1 add exch
+ 1 arct smatrix setmatrix
+ xv width add yv height add ah sub l
+ nmatrix setmatrix
+ currentpoint 1 add
+ currentpoint exch 1 sub exch 1 add
+ 1 arct smatrix setmatrix
+ xv aw add yv height add l
+ nmatrix setmatrix
+ currentpoint exch 1 sub exch
+ currentpoint exch 1 sub exch 1 sub
+ 1 arct smatrix setmatrix
+ xv yv ah add l
+ nmatrix setmatrix
+ currentpoint 1 sub
+ currentpoint exch 1 add exch 1 sub
+ 1 arct smatrix setmatrix
+ s} def
+
+% Draw a filled rounded rectangle. (x y w h arcwidth archeight FRREC)
+/FRREC{matrix currentmatrix /smatrix exch def
+ 2 div /ah exch def
+ 2 div /aw exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ aw ah scale matrix
+ currentmatrix /nmatrix exch def
+ smatrix setmatrix
+ n xv width add aw sub yv m
+ nmatrix setmatrix
+ currentpoint exch 1 add exch
+ currentpoint 1 add exch 1 add exch
+ 1 arct smatrix setmatrix
+ xv width add yv height add ah sub l
+ nmatrix setmatrix
+ currentpoint 1 add
+ currentpoint exch 1 sub exch 1 add
+ 1 arct smatrix setmatrix
+ xv aw add yv height add l
+ nmatrix setmatrix
+ currentpoint exch 1 sub exch
+ currentpoint exch 1 sub exch 1 sub
+ 1 arct smatrix setmatrix
+ xv yv ah add l
+ nmatrix setmatrix
+ currentpoint 1 sub
+ currentpoint exch 1 add exch 1 sub
+ 1 arct smatrix setmatrix
+ h f} def
+
+% Draw a string. (string x y STR)
+/STR {q m 1 -1 scale recshow Q} def
+
+% Define basic plot symbols.
+/xys {/siz exch def /yv exch def /xv exch def} def
+/hline {xys n xv siz 2. div sub yv m siz 0 rlineto S} def
+/vline {xys n xv yv siz 2. div sub m 0 siz rlineto S} def
+/plus {xys n xv yv siz 2. div sub m 0 siz rlineto
+ xv siz 2. div sub yv m siz 0 rlineto S} def
+/dot {n 2. div 0 360 arc s} def
+/fdot {n 2. div 0 360 arc h f} def
+/box {xys n xv siz 2 sqrt div 2 div sub yv siz 2 sqrt div 2 div sub
+ siz 2 sqrt div dup rs} def
+/fbox {xys n xv siz 2 sqrt div 2 div sub yv siz 2 sqrt div 2 div sub
+ siz 2 sqrt div dup rf} def
+/tridn{xys n xv yv siz 3 sqrt div add m
+ siz 2. div neg 3 sqrt 2. div siz mul neg rlineto
+ siz 0 rlineto s} def
+/ftridn{xys n xv yv siz 3 sqrt div add m
+ siz 2. div neg 3 sqrt 2. div siz mul neg rlineto
+ siz 0 rlineto h f} def
+
+% Symbols defined in terms of the others.
+/star {3 copy cross plus} def
+/cross {xys q xv yv translate 45 rotate 0 0 siz plus Q} def
+/diamond {xys q xv yv translate 45 rotate 0 0 siz box Q} def
+/fdiamond {xys q xv yv translate 45 rotate 0 0 siz fbox Q} def
+/triup {xys q xv yv translate 180 rotate 0 0 siz tridn Q} def
+/ftriup {xys q xv yv translate 180 rotate 0 0 siz ftridn Q} def
+
+% Define the composite fonts used to print Unicode strings.
+% Undefine particular values in an encoding array.
+/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
+/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
+
+% usage: key encoding basefontname vg&newbasefont font
+/vg&newbasefont {
+findfont dup length dict copy
+ begin
+ currentdict /FID undef
+ /Encoding exch def
+ dup /FontName exch def
+ currentdict
+ end
+definefont
+} def
+
+% usage: key encoding basefontname vg&newskewedbasefont font
+/vg&newskewedbasefont {
+findfont dup length dict copy
+ begin
+ currentdict /FID undef
+ /Encoding exch def
+ dup /FontName exch def
+ exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
+ currentdict
+ end
+definefont
+} def
+
+% usage: basekey suffix vg&nconcat name
+/vg&nconcat {
+ 2 {dup length string cvs exch} repeat
+ dup length 3 -1 roll dup length 3 -1 roll add string
+ dup 0 4 -1 roll dup length 5 1 roll putinterval
+ dup 4 -2 roll exch putinterval cvn
+} def
+
+%usage: fontname vg&skewmatrix matrix
+/vg&skewmatrix {
+findfont dup /FontInfo known
+ {
+ /FontInfo get dup /ItalicAngle known
+ {
+ [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
+ }
+ {pop matrix} ifelse
+ }
+ {pop matrix} ifelse
+} def
+
+% usage: newfontname basefontname vg&newcompositefont --
+/vg&newcompositefont {
+/vg&fstyle exch def
+/vg&bfont exch def
+/vg&fname exch def
+<<
+/FontStyleBits vg&fstyle
+/FontType 0
+/FontMatrix matrix
+/FontName vg&fname
+/FMapType 2
+/Encoding [ 0 1 255 {pop 6} for ]
+ dup 16#00 0 put % Latin
+ dup 16#03 1 put % Greek
+ dup 16#20 2 put % Punctuation
+ dup 16#21 3 put % Arrows
+ dup 16#22 4 put % MathOps
+ dup 16#27 5 put % Dingbats
+
+/FDepVector [
+vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
+vg&bfont vg&newbasefont
+
+vg&bfont vg&skewmatrix
+vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
+/Symbol vg&newskewedbasefont
+
+vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
+vg&bfont vg&newbasefont
+
+/Arrows-UC findfont
+/MathOps-UC findfont
+/Dingbats-UC findfont
+/Undefined-UC findfont ]
+>>
+vg&fname exch definefont pop
+} def
+
+% Null encoding vector (all elements set to .notdef)
+/NullEncoding [ 256 {/.notdef} repeat ] def
+
+% Unicode Latin encoding (unicode codes \u0000-\u00ff)
+/UCLatinEncoding
+ ISOLatin1Encoding dup length array copy
+ dup 16#60 /grave put
+ [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
+ 16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
+ ] vg&undef
+ def
+
+% Unicode Greek encoding (unicode codes \u0370-\u03ff)
+/UCGreekEncoding
+ NullEncoding dup length array copy
+ << 16#91 /Alpha 16#92 /Beta 16#93 /Gamma 16#94 /Delta
+ 16#95 /Epsilon 16#96 /Zeta 16#97 /Eta 16#98 /Theta
+ 16#99 /Iota 16#9a /Kappa 16#9b /Lambda 16#9c /Mu
+ 16#9d /Nu 16#9e /Xi 16#9f /Omicron 16#a0 /Pi
+ 16#a1 /Rho 16#a3 /Sigma 16#a4 /Tau 16#a5 /Upsilon
+ 16#a6 /Phi 16#a7 /Chi 16#a8 /Psi 16#a9 /Omega
+ 16#b1 /alpha 16#b2 /beta 16#b3 /gamma 16#b4 /delta
+ 16#b5 /epsilon 16#b6 /zeta 16#b7 /eta 16#b8 /theta
+ 16#b9 /iota 16#ba /kappa 16#bb /lambda 16#bc /mu
+ 16#bd /nu 16#be /xi 16#bf /omicron 16#c0 /pi
+ 16#c1 /rho 16#c2 /sigma1 16#c3 /sigma 16#c4 /tau
+ 16#c5 /upsilon 16#c6 /phi1 16#c7 /chi 16#c8 /psi
+ 16#c9 /omega 16#7e /semicolon 16#87 /dotmath 16#d1 /theta1
+ 16#d2 /Upsilon1 16#d5 /phi 16#d6 /omega1
+ >> vg&redef
+ def
+
+% Unicode punctuation encoding (unicode codes \u2000-\u206f)
+/UCPunctuationEncoding
+ NullEncoding dup length array copy
+ << 16#10 /hyphen 16#11 /hyphen 16#12 /endash
+ 16#13 /emdash 16#18 /quoteleft 16#19 /quoteright
+ 16#1a /quotesinglbase 16#1b /quotesingle 16#1c /quotedblleft
+ 16#1d /quotedblright 16#1e /quotedblbase 16#1f /quotedbl
+ 16#20 /dagger 16#21 /daggerdbl 16#22 /bullet
+ 16#24 /period 16#26 /ellipsis 16#27 /periodcentered
+ 16#30 /perthousand 16#44 /fraction
+ 16#70 /zerosuperior 16#74 /foursuperior 16#75 /fivesuperior
+ 16#76 /sixsuperior 16#77 /sevensuperior 16#78 /eightsuperior
+ 16#79 /ninesuperior 16#7b /hyphensuperior 16#7d /parenleftsuperior
+ 16#7e /parenrightsuperior
+ 16#80 /zeroinferior 16#84 /fourinferior 16#85 /fiveinferior
+ 16#81 /oneinferior 16#82 /twoinferior 16#83 /threeinferior
+ 16#86 /sixinferior 16#87 /seveninferior 16#88 /eightinferior
+ 16#89 /nineinferior 16#8b /hypheninferior 16#8d /parenleftinferior
+ 16#8e /parenrightinferior
+ >> vg&redef
+ def
+
+% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
+/UCMathOpsEncoding
+ NullEncoding dup length array copy
+ << 16#00 /universal 16#02 /partialdiff 16#03 /existential
+ 16#05 /emptyset 16#06 /Delta 16#07 /gradient
+ 16#08 /element 16#09 /notelement 16#0b /suchthat
+ 16#0f /product 16#11 /summation 16#12 /minus
+ 16#15 /fraction 16#17 /asteriskmath 16#19 /bullet
+ 16#1a /radical 16#1d /proportional 16#1e /infinity
+ 16#20 /angle 16#23 /bar 16#27 /logicaland
+ 16#28 /logicalor 16#29 /intersection 16#2a /union
+ 16#2b /integral 16#34 /therefore 16#36 /colon
+ 16#3c /similar 16#45 /congruent 16#48 /approxequal
+ 16#60 /notequal 16#61 /equivalence 16#64 /lessequal
+ 16#65 /greaterequal 16#82 /propersubset 16#83 /propersuperset
+ 16#86 /reflexsubset 16#87 /reflexsuperset 16#95 /circleplus
+ 16#97 /circlemultiply 16#a5 /perpendicular 16#03 /existential
+ 16#c0 /logicaland 16#c1 /logicalor 16#c2 /intersection
+ 16#c3 /union 16#c4 /diamond 16#c5 /dotmath
+ >> vg&redef
+ def
+
+% Unicode arrows encoding (unicode codes \u2190-\u21ff)
+% Also includes those "Letterlike" unicode characters
+% which are available in the symbol font. (unicode codes \u2100-\u214f)
+/UCArrowsEncoding
+ NullEncoding dup length array copy
+ << 16#11 /Ifraktur 16#1c /Rfraktur 16#22 /trademarkserif
+ 16#35 /aleph
+ 16#90 /arrowleft 16#91 /arrowup 16#92 /arrowright
+ 16#93 /arrowdown 16#94 /arrowboth 16#d0 /arrowdblleft
+ 16#d1 /arrowdblup 16#d2 /arrowdblright 16#d3 /arrowdbldown
+ 16#d4 /arrowdblboth
+ >> vg&redef
+ def
+
+/ZapfDingbats findfont /Encoding get
+dup length array copy /UCDingbatsEncoding exch def
+16#20 1 16#7f {
+ dup 16#20 sub exch
+ UCDingbatsEncoding exch get
+ UCDingbatsEncoding 3 1 roll put
+} for
+16#a0 1 16#ff {
+ dup 16#40 sub exch
+ UCDingbatsEncoding exch get
+ UCDingbatsEncoding 3 1 roll put
+} for
+UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
+[ 16#00 16#05 16#0a 16#0b 16#28 16#4c 16#4e 16#53 16#54 16#55 16#57 16#5f
+ 16#60 16#68 16#69 16#6a 16#6b 16#6c 16#6d 16#6e 16#6f 16#70 16#71 16#72
+ 16#73 16#74 16#75 16#95 16#96 16#97 16#b0 16#bf
+] vg&undef pop
+
+% Define the base fonts which don't change.
+/Undefined-UC NullEncoding /Helvetica vg&newbasefont pop
+/MathOps-UC UCMathOpsEncoding /Symbol vg&newbasefont pop
+/Arrows-UC UCArrowsEncoding /Symbol vg&newbasefont pop
+/Dingbats-UC UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
+
+% Make the SansSerif composite fonts.
+/SansSerif /Helvetica 16#00 vg&newcompositefont
+/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Serif composite fonts.
+/Serif /Times-Roman 16#00 vg&newcompositefont
+/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
+/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
+/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
+
+% Make the Monospaced composite fonts.
+/Monospaced /Courier 16#00 vg&newcompositefont
+/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Dialog composite fonts.
+/Dialog /Helvetica 16#00 vg&newcompositefont
+/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the DialogInput composite fonts.
+/DialogInput /Helvetica 16#00 vg&newcompositefont
+/DialogInput-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/DialogInput-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/DialogInput-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Typewriter composite fonts (JDK 1.1 only).
+/Typewriter /Courier 16#00 vg&newcompositefont
+/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+
+/cfontH {
+ dup /fontsize exch def /SansSerif exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHB {
+ dup /fontsize exch def /SansSerif-Bold exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHI {
+ dup /fontsize exch def /SansSerif-Italic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHBI {
+ dup /fontsize exch def /SansSerif-BoldItalic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+
+/cfontT {
+ dup /fontsize exch def /Serif exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTB {
+ dup /fontsize exch def /Serif-Bold exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTI {
+ dup /fontsize exch def /Serif-Italic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTBI {
+ dup /fontsize exch def /Serif-BoldItalic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+
+/cfontC {
+ dup /fontsize exch def /Typewriter exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCB {
+ dup /fontsize exch def /Typewriter-Bold exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCI {
+ dup /fontsize exch def /Typewriter-Italic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCBI {
+ dup /fontsize exch def /Typewriter-BoldItalic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+
+% Darken or lighten the current color.
+/darken {0.7 exch exp 3 copy
+ q 4 -1 roll vg&C
+ currentrgbcolor 3 {4 -2 roll mul} repeat
+ 3 array astore Q} def
+
+/displayColorMap
+<< /Cr [1.00 0.00 0.00] /Cg [0.00 1.00 0.00]
+ /Cb [0.00 0.00 1.00] /Cc [1.00 0.00 0.00 0.00]
+ /Cm [0.00 1.00 0.00 0.00] /Cy [0.00 0.00 1.00 0.00]
+ /Co [1.00 0.78 0.00] /Cp [1.00 0.67 0.67]
+ /Cw [1 ] /Cgrl [0.75]
+ /Cgr [0.50] /Cgrd [0.25]
+ /Ck [0 ]
+ /CGr [1.00 0.00 0.00] /CGg [0.00 1.00 0.00]
+ /CGb [0.00 0.00 1.00] /CGc [1.00 0.00 0.00 0.00]
+ /CGm [0.00 1.00 0.00 0.00] /CGy [0.00 0.00 1.00 0.00]
+ /CGo [1.00 0.78 0.00] /CGp [1.00 0.67 0.67]
+ /CGw [1 ] /CGgrl [0.75]
+ /CGgr [0.50] /CGgrd [0.25]
+ /CGk [0 ]
+ /CIr [1.00 0.00 0.00] /CIg [0.00 1.00 0.00]
+ /CIb [0.00 0.00 1.00] /CIc [1.00 0.00 0.00 0.00]
+ /CIm [0.00 1.00 0.00 0.00] /CIy [0.00 0.00 1.00 0.00]
+ /CIo [1.00 0.78 0.00] /CIp [1.00 0.67 0.67]
+ /CIw [1 ] /CIgrl [0.75]
+ /CIgr [0.50] /CIgrd [0.25]
+ /CIk [0 ]
+>> def
+
+/printColorMap
+<< /Cr [1.00 0.33 0.33] /Cg [0.33 1.00 0.33]
+ /Cb [0.33 0.33 1.00] /Cc [1.00 0.00 0.00 0.00]
+ /Cm [0.00 1.00 0.00 0.00] /Cy [0.00 0.00 1.00 0.00]
+ /Co [1.00 0.78 0.00] /Cp [1.00 0.67 0.67]
+ /Cw [1 ] /Cgrl [0.75]
+ /Cgr [0.50] /Cgrd [0.25]
+ /Ck [0 ]
+ /CGr [1.00 0.33 0.33] /CGg [0.33 1.00 0.33]
+ /CGb [0.33 0.33 1.00] /CGc [1.00 0.00 0.00 0.00]
+ /CGm [0.00 1.00 0.00 0.00] /CGy [0.00 0.00 1.00 0.00]
+ /CGo [1.00 0.78 0.00] /CGp [1.00 0.67 0.67]
+ /CGw [1 ] /CGgrl [0.75]
+ /CGgr [0.50] /CGgrd [0.25]
+ /CGk [0 ]
+ /CIr [1.00 0.33 0.33] /CIg [0.33 1.00 0.33]
+ /CIb [0.33 0.33 1.00] /CIc [1.00 0.00 0.00 0.00]
+ /CIm [0.00 1.00 0.00 0.00] /CIy [0.00 0.00 1.00 0.00]
+ /CIo [1.00 0.78 0.00] /CIp [1.00 0.67 0.67]
+ /CIw [1 ] /CIgrl [0.75]
+ /CIgr [0.50] /CIgrd [0.25]
+ /CIk [0 ]
+>> def
+
+/grayColorMap
+<< /Cr [0 ] /Cg [0 ]
+ /Cb [0 ] /Cc [0 ]
+ /Cm [0 ] /Cy [0 ]
+ /Co [0 ] /Cp [0 ]
+ /Cw [0 ] /Cgrl [0 ]
+ /Cgr [0 ] /Cgrd [0 ]
+ /Ck [0 ]
+ /CGr [0.75] /CGg [1 ]
+ /CGb [0.50] /CGc [0.75]
+ /CGm [0.50] /CGy [1 ]
+ /CGo [0.75] /CGp [1 ]
+ /CGw [0 ] /CGgrl [0.25]
+ /CGgr [0.50] /CGgrd [0.75]
+ /CGk [1 ]
+ /CIr [1 ] /CIg [1 ]
+ /CIb [1 ] /CIc [1 ]
+ /CIm [1 ] /CIy [1 ]
+ /CIo [1 ] /CIp [1 ]
+ /CIw [1 ] /CIgrl [1 ]
+ /CIgr [1 ] /CIgrd [1 ]
+ /CIk [1 ]
+>> def
+
+/bwColorMap
+<< /Cr [0 ] /Cg [0 ]
+ /Cb [0 ] /Cc [0 ]
+ /Cm [0 ] /Cy [0 ]
+ /Co [0 ] /Cp [0 ]
+ /Cw [0 ] /Cgrl [0 ]
+ /Cgr [0 ] /Cgrd [0 ]
+ /Ck [0 ]
+ /CGr [1 ] /CGg [1 ]
+ /CGb [1 ] /CGc [1 ]
+ /CGm [1 ] /CGy [1 ]
+ /CGo [1 ] /CGp [1 ]
+ /CGw [0 ] /CGgrl [1 ]
+ /CGgr [1 ] /CGgrd [1 ]
+ /CGk [1 ]
+ /CIr [1 ] /CIg [1 ]
+ /CIb [1 ] /CIc [1 ]
+ /CIm [1 ] /CIy [1 ]
+ /CIo [1 ] /CIp [1 ]
+ /CIw [1 ] /CIgrl [1 ]
+ /CIgr [1 ] /CIgrd [1 ]
+ /CIk [1 ]
+>> def
+
+%
+% The following routines handle the alignment of and printing of
+% tagged strings.
+%
+
+% Predefine the bounding box values.
+/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
+
+% This routine pops the first unicode character off of a string and returns
+% the remainder of the string, the character code of first character,
+% and a "true" if the string was non-zero length.
+% <string> popfirst <remaining string> <true>
+% <null string> popfirst <false>
+/popfirst {
+ dup length 1 gt
+ {dup 0 get /vg&fbyte exch def
+ dup 1 get /vg&cbyte exch def
+ dup length 2 sub 2 exch getinterval true}
+ {pop false} ifelse
+} def
+
+% This routine shows a single unicode character given the font and
+% character codes.
+% <font code> <char code> unicharshow --
+/unicharshow {
+ 2 string
+ dup 0 5 -1 roll put
+ dup 1 4 -1 roll put
+ internalshow
+} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and showing the string for recshow.
+% <string> internalshow --
+/internalshow {show} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and stroking various ornaments.
+% <string> internalstroke --
+/internalstroke {S} def
+
+% Sets up internalshow to use the null device to determine string size.
+% -- nullinternalshow --
+/nullinternalshow {/internalshow {false charpath flattenpath
+ pathbbox updatebbox} def} def
+
+% Sets up internalstroke to use the null device to determine string size.
+% -- nullinternalstroke --
+/nullinternalstroke {
+ /internalstroke {flattenpath pathbbox updatebbox} def} def
+
+% This routine tests to see if the character code matches the first
+% character of a string.
+% <char code> <string> testchar <char code> <true or false>
+/testchar {exch dup 3 -1 roll 0 get eq} def
+
+% Raise the text baseline for superscripts.
+% -- raise --
+/raise {
+ 0 fontsize 2 div rmoveto
+ /fontsize fontsize 2 mul 3 div def
+ currentfont /FontName get fontsize sf
+} def
+
+% Un-raise the text baseline for superscripts.
+% -- unraise --
+/unraise {
+ /fontsize fontsize 1.5 mul def
+ 0 fontsize 2 div neg rmoveto
+} def
+
+% Lower the text baseline for subscripts.
+% -- lower --
+/lower {
+ 0 fontsize 3 div neg rmoveto
+ /fontsize fontsize 2 mul 3 div def
+ currentfont /FontName get fontsize sf
+} def
+
+% Un-lower the text baseline for subscripts.
+% -- unlower --
+/unlower {
+ /fontsize fontsize 1.5 mul def
+ 0 fontsize 3 div rmoveto
+} def
+
+% Compare the top two elements on the stack and leave only the
+% larger one.
+/maxval {2 copy gt {pop} {exch pop} ifelse} def
+
+% Tokenize a string. Do not use the usual PostScript token because
+% parentheses will not be interpreted correctly because of rescanning
+% of the string.
+/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
+0 2 vg&string length 2 sub {
+ dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
+ dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
+ /vg&level exch vg&level add def
+ vg&level 0 eq {/vg&index exch def exit} if pop
+} for
+vg&index 0 ge {
+ vg&string vg&index 2 add dup vg&string length exch sub getinterval
+ vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
+ true}
+{false} ifelse
+} bind def
+
+% Recursively show an unicode string.
+% <string> recshow --
+/recshow {
+ popfirst
+ {
+ % Test to see if this is a string attribute.
+ vg&fbyte 16#f0 and 16#e0 eq
+ {
+ q
+
+ % Font style.
+ currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
+ vg&cbyte or vg&fontstyles exch get fontsize exch exec
+
+ vg&token pop recshow currentpoint Q m recshow
+ }
+ {
+ vg&fbyte 16#F8 and 16#F0 eq {
+
+ % Superscript and/or subscript.
+ vg&cbyte 16#00 eq {
+ vg&token pop exch vg&token pop 3 -1 roll
+ q raise recshow unraise currentpoint pop Q exch
+ q lower recshow unlower currentpoint pop Q
+ maxval currentpoint exch pop m recshow } if
+
+ % Strikeout.
+ vg&cbyte 16#01 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ currentpoint 4 -2 roll fontsize 3 div add moveto
+ fontsize 3 div add lineto internalstroke Q
+ recshow} if
+
+ % Underline.
+ vg&cbyte 16#02 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Dashed underline.
+ vg&cbyte 16#03 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
+ vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Dotted underline.
+ vg&cbyte 16#04 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 1 J [ 0 vg&uthick 3 mul] 0 d
+ vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Thick underline.
+ vg&cbyte 16#05 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick 2 mul w
+ currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+ vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+ recshow} if
+
+ % Gray thick underline.
+ vg&cbyte 16#06 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
+ currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+ vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+ recshow} if
+
+ % Overbar.
+ vg&cbyte 16#07 eq {
+ vg&token pop dup stringsize relative 4 1 roll pop pop exch
+ 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
+ recshow} if
+ }
+ {
+ vg&fbyte vg&cbyte unicharshow recshow
+ } ifelse
+ } ifelse
+ } if
+} def
+
+% Get the underline position and thickness from the current font.
+/vg&underline {
+
+currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
+dup dup /FontInfo known {
+ /FontInfo get dup
+ dup /UnderlinePosition known {
+ /UnderlinePosition get /vg&uoffset exch def
+ }
+ {
+ pop /vg&uoffset 0 def
+ } ifelse
+ dup /UnderlineThickness known {
+ /UnderlineThickness get /vg&uthick exch def
+ }
+ {
+ pop /vg&uthick 0 def
+ } ifelse
+}
+{
+ pop /vg&uoffset 0 def /vg&uthick 0 def
+} ifelse
+/FontMatrix get
+currentfont dup /FontType get 0 eq
+{/FontMatrix get matrix concatmatrix}{pop} ifelse
+dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
+0 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
+} def
+
+% Make a frame with the coordinates on the stack.
+% <llx> <lly> <urx> <ury> frame --
+/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
+
+% Resets the accumulated bounding box to a degenerate box at the
+% current point.
+% -- resetbbox --
+/resetbbox {
+ currentpoint 2 copy
+ /bbury exch def
+ /bburx exch def
+ /bblly exch def
+ /bbllx exch def
+} def
+
+% Update the accumulated bounding box.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/updatebbox {
+ dup bbury gt {/bbury exch def} {pop} ifelse
+ dup bburx gt {/bburx exch def} {pop} ifelse
+ dup bblly lt {/bblly exch def} {pop} ifelse
+ dup bbllx lt {/bbllx exch def} {pop} ifelse
+} def
+
+% Set the bounding box to the values on the stack.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/restorebbox {
+ /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
+} def
+
+% Push the accumulated bounding box onto the stack.
+% -- pushbbox <llx> <lly> <urx> <ury>
+/pushbbox {bbllx bblly bburx bbury} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
+/inflate {
+ 2 {fontsize 0.2 mul add 4 1 roll} repeat
+ 2 {fontsize 0.2 mul sub 4 1 roll} repeat
+} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
+/relative {
+ currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+ currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+} def
+
+% Returns the size of a string appropriate for recshow.
+% <string> stringsize <llx> <lly> <urx> <ury>
+/stringsize {
+ pushbbox /internalshow load /internalstroke load 7 -1 roll
+ q
+ nulldevice 0 0 m
+ nullinternalshow nullinternalstroke
+ resetbbox
+ recshow
+ /internalstroke exch def /internalshow exch def
+ pushbbox 8 -4 roll restorebbox
+ Q
+} def
+
+% Calculate values for string positioning.
+/calcval {4 copy
+ 3 -1 roll sub /widy exch def sub neg /widx exch def
+ pop pop /dy exch def /dx exch def} def
+
+% Utilities to position a string.
+% First letter (U=upper, C=center, B=baseline, L=lower)
+% Second letter (L=left, C=center, R=right)
+/align [
+{calcval dx neg widy dy add neg rmoveto} % UL
+{calcval dx neg widy 2 div dy add neg rmoveto} % CL
+{calcval dx neg 0 rmoveto} % BL
+{calcval dx neg dy neg rmoveto} % LL
+{calcval widx dx add neg widy dy add neg rmoveto} % UR
+{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
+{calcval widx dx add neg 0 rmoveto} % BR
+{calcval widx dx add neg dy neg rmoveto} % LR
+{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
+{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
+{calcval widx 2 div dx add neg 0 rmoveto} % BC
+{calcval widx 2 div dx add neg dy neg rmoveto} % LC
+] def
+
+/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
+ q inflate relative frame exch exec Q recshow Q} def
+
+end /procDict exch def
+%%EndProlog
+
+%%BeginSetup
+save
+procDict begin
+printColorMap begin
+595 842 setpagesize
+20 20 20 20 setmargins
+0 0 setorigin
+1708 1532 setsize
+fittopage
+landscape
+imagescale
+cliptobounds
+setbasematrix
+/Helvetica 10 sf
+defaultGraphicsState
+%%EndSetup
+
+0.0 0.0 0.0 RG
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] defaultmatrix matrix concatmatrix setmatrix
+1.0 w
+2 J
+0 j
+10.0 M
+[ ] 0.0 d
+1.0 1.0 1.0 RG
+0.0 0.0 1708.0 1532.0 rf
+0.0 0.0 0.0 RG
+q
+0 0 1708 1532 rc
+q
+1.0 1.0 1.0 RG
+0.0 0.0 1708.0 1532.0 rf
+0.0 0.0 1708.0 1532.0 rc
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] concat
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+newpath
+-720.0 -600.0 m
+988.0 -600.0 l
+988.0 932.0 l
+-720.0 932.0 l
+-720.0 -600.0 l
+h
+f
+0.501961 0.501961 0.501961 RG
+newpath
+-710.0 -590.0 m
+978.0 -590.0 l
+978.0 900.0 l
+-710.0 900.0 l
+-710.0 -590.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 -710.0 -589.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+92.1855 0.5 m
+92.1855 11.5 l
+84.1855 19.5 l
+0.5 19.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+92.1855 0.5 m
+92.1855 11.5 l
+84.1855 19.5 l
+0.5 19.5 l
+0.5 0.5 l
+h
+S
+0.501961 0.501961 0.501961 RG
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 4.0 2.0 ] concat
+0.0 0.0 0.0 RG
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000a\000s\000s\000 \000D\000i\000a\000g\000r\000a\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 10.0 11.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -250.0 -320.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+194.9644 0.5 l
+194.9644 372.5 l
+0.5 372.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+194.9644 0.5 l
+194.9644 372.5 l
+0.5 372.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 70.7495 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000E\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 471.0 281.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 470.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+192.9644 0.5 l
+192.9644 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+192.9644 0.5 l
+192.9644 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 470.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000m\000p\000l\000o\000y\000e\000e\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.4761 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 71.5322 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 546.5322 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 546.5322 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 305.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000a\000n\000c\000e\000_\000n\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.2568 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 70.313 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 545.313 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.313 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 321.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000e\000n\000e\000f\000i\000t\000_\000s\000t\000r\000u\000c\000t\000u\000r\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.5991 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 88.6553 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000f\000 \000s\000t\000r\000u\000c\000u\000r\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 563.6553 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 563.6553 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000l\000e\000a\000v\000e\000_\000a\000c\000c\000r\000u\000e\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 75.2114 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 78.2676 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 553.2676 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 553.2676 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 66.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000o\000n\000t\000r\000a\000c\000t\000_\000s\000t\000a\000f\000f) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 69.6953 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 72.7515 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000o\000o\000l\000e\000a\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 547.7515 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 547.7515 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 369.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 82.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000a\000r\000e\000e\000r\000_\000s\000t\000e\000p\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.2515 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 70.3076 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 545.3076 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.3076 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 385.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 98.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000a\000l\000a\000r\000i\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 41.5669 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 44.623 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 519.623 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 519.623 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 401.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 114.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000i\000m\000e\000s\000h\000e\000e\000t\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.853 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.9092 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 534.9092 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 534.9092 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 417.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 130.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000u\000t\000h\000_\000l\000e\000v\000e\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.813 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.8691 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 531.8691 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 531.8691 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 433.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 471.0 301.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 470.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 172.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+192.9644 0.5 l
+192.9644 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+192.9644 0.5 l
+192.9644 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 470.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 173.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 490.8477 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.4199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.2676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 117.606 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 121.269 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 124.9321 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 127.9883 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 602.9883 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 602.9883 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 457.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 490.8477 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000E\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 154.9028 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 158.5659 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 162.229 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 165.2852 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 640.2852 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 640.2852 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 473.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000e\000a\000r\000c\000h\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.6299 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 96.293 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 99.9561 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 103.0122 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 578.0122 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 578.0122 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 489.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000e\000a\000r\000c\000h\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 72.4561 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 76.1191 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.7822 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.8384 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 557.8384 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 557.8384 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 505.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 66.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000e\000a\000r\000c\000h\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 97.5283 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 101.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 104.8545 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 107.9106 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 582.9106 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 582.9106 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 521.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 82.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.2476 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.9106 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.5737 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.6299 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 567.6299 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 567.6299 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 537.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 98.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 57.1753 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 60.8384 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 64.5015 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.5576 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 542.5576 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 542.5576 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 553.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 114.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 77.3491 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 81.0122 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 84.6753 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 87.7314 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 562.7314 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 562.7314 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 569.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 130.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 103.6353 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 107.2983 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 110.9614 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 114.0176 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 589.0176 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 589.0176 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 585.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 146.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 78.563 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.2261 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.8892 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 88.9453 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 563.9453 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 563.9453 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 162.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 98.7368 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 102.3999 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 106.063 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.1191 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 584.1191 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 584.1191 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 617.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 178.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000h\000e\000c\000k\000A\000u\000t\000h\000o\000r\000i\000z\000a\000t\000i\000o\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 101.8091 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 105.4722 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.1353 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 112.1914 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 587.1914 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 587.1914 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 633.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 473.0 455.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 471.0 453.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 470.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -190.0 90.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+118.2383 0.5 l
+118.2383 156.5 l
+0.5 156.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+118.2383 0.5 l
+118.2383 156.5 l
+0.5 156.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 39.3584 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000P\000e\000r\000s\000o\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 531.0 691.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 530.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+116.2383 0.5 l
+116.2383 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+116.2383 0.5 l
+116.2383 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 530.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 34.0137 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 37.3477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 572.3477 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 572.3477 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000r\000e\000s\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 46.6875 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 50.0215 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 585.0215 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 585.0215 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000e\000l\000e\000p\000h\000o\000n\000e\000_\000n\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.0566 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 77.3906 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 612.3906 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 612.3906 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 53.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000-\000m\000a\000i\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 36.668 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 40.002 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 575.002 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 575.002 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 767.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 70.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000f\000a\000x\000_\000n\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 37.3477 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 40.6816 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 575.6816 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 575.6816 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 784.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 87.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000o\000b\000i\000l\000e\000_\000n\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 51.9653 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 535.0 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 55.0215 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 590.0215 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 590.0215 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 535.0 801.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 531.0 712.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 530.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 131.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+116.2383 0.5 l
+116.2383 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+116.2383 0.5 l
+116.2383 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 530.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 132.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 531.0 822.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 530.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -180.0 315.5473 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+188.5977 0.5 l
+188.5977 189.5 l
+0.5 189.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+188.5977 0.5 l
+188.5977 189.5 l
+0.5 189.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 541.0 916.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 540.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+186.5977 0.5 l
+186.5977 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+186.5977 0.5 l
+186.5977 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 540.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000i\000e\000n\000t\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 50.6836 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.0176 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 599.0176 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 599.0176 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 941.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 939.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e\000_\000I\000D\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 104.7129 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 108.0469 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 653.0469 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 653.0469 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 958.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 939.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.0 937.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 540.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 63.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+186.5977 0.5 l
+186.5977 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+186.5977 0.5 l
+186.5977 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 540.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 64.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 562.0156 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 105.0703 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.0664 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 113.0625 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 116.3965 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 661.3965 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 661.3965 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 983.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 562.0156 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 145.7578 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 149.7539 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 153.75 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 157.084 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 702.084 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 702.084 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1000.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.3652 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.3613 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 66.3574 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 69.6914 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 614.6914 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 614.6914 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1017.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 53.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 64.5015 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.1646 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 71.8276 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.8838 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 619.8838 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 619.8838 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1034.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 69.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.0723 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 113.0684 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 117.0645 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 120.3984 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 665.3984 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 665.3984 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1050.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 86.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 132.4043 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 136.4004 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 140.3965 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 143.7305 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 688.7305 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 688.7305 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 1067.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 543.0 981.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.0 979.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 540.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-90.3232 315.5473 m
+-90.3232 247.0 l
+S
+2 J
+10.0 M
+[ 0.0 1.0 -1.0 -0.0 -90.3232 247.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 282.1979 436.745 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+264.6348 0.5 l
+264.6348 273.5 l
+0.5 273.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+264.6348 0.5 l
+264.6348 273.5 l
+0.5 273.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 89.2129 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1003.1979 1037.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1002.1979 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+262.6348 0.5 l
+262.6348 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+262.6348 0.5 l
+262.6348 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1002.1979 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000o\000l\000i\000c\000y\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3496 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.6836 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1063.8815 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1063.8815 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1062.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000s\000u\000e\000_\000f\000r\000e\000q\000u\000e\000n\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.8237 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000_\000f\000r\000e\000q\000u\000e\000n\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1094.0216 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1094.0216 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1079.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 35.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000e\000g\000i\000n\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.1045 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 61.1606 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1068.3585 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1068.3585 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1095.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 51.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000n\000d\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.0469 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 57.3809 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1064.5788 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1064.5788 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1111.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 68.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000t\000a\000i\000l\000s\000_\000e\000x\000c\000e\000s\000s\000_\000p\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.4043 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.7383 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1145.9362 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1145.9362 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1128.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 85.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000o\000b\000l\000i\000g\000a\000t\000i\000o\000n\000_\000t\000e\000r\000m\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.0449 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 95.3789 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1102.5768 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1102.5768 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1145.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 102.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000a\000i\000m\000_\000I\000D\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.6719 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 60.0059 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 1067.2038 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1067.2038 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1162.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1060.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1003.1979 1058.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1002.1979 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 146.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+262.6348 0.5 l
+262.6348 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+262.6348 0.5 l
+262.6348 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1002.1979 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 147.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1024.2135 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 159.0996 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 163.0957 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 167.0918 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 170.4258 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1177.6237 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1177.6237 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1187.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1024.2135 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 199.7871 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.7832 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 207.7793 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 211.1133 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1218.3112 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1218.3112 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1204.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 124.3945 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 128.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 132.3867 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.7207 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1142.9186 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1142.9186 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1221.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 53.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 112.3945 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 116.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 120.3867 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 123.7207 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1130.9186 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1130.9186 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1238.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 70.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000G\000e\000n\000e\000r\000a\000t\000e\000G\000o\000v\000e\000r\000n\000m\000e\000n\000t\000R\000e\000p\000o\000r\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 159.0879 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 163.084 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 167.0801 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 170.4141 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1177.612 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1177.612 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1255.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 87.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.3594 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.3555 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.3516 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 93.6855 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1100.8834 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1100.8834 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1272.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 104.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.0273 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 63.0234 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.0195 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 70.3535 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1077.5514 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1077.5514 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1007.1979 1289.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1005.1979 1185.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1003.1979 1183.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1002.1979 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 310.0 90.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+295.3379 0.5 l
+295.3379 240.5 l
+0.5 240.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+295.3379 0.5 l
+295.3379 240.5 l
+0.5 240.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 96.8887 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1031.0 691.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1030.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+293.3379 0.5 l
+293.3379 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+293.3379 0.5 l
+293.3379 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1030.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000r\000o\000p\000o\000s\000a\000l\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.7012 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 72.0352 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1107.0352 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1107.0352 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 716.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000i\000s\000k\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 28.6582 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 31.9922 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 1066.9922 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1066.9922 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 733.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000r\000e\000m\000i\000u\000m\000_\000a\000m\000o\000u\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 97.3711 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 100.7051 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1135.7051 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1135.7051 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 714.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1031.0 712.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1030.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 80.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+293.3379 0.5 l
+293.3379 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+293.3379 0.5 l
+293.3379 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1030.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 81.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1052.0156 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 174.4512 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 178.4473 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 182.4434 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 185.7773 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1220.7773 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1220.7773 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 775.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1052.0156 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 215.1387 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 219.1348 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 223.1309 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 226.4648 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1261.4648 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1261.4648 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 792.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 128.1006 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 131.7637 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.4268 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.4829 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1173.4829 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1173.4829 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 809.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 52.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000a\000l\000c\000u\000l\000a\000t\000e\000P\000r\000e\000m\000i\000u\000m\000A\000m\000o\000u\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 146.3965 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 150.3926 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 154.3887 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 157.7227 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1192.7227 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1192.7227 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 825.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 69.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000o\000n\000v\000e\000r\000t\000T\000o\000P\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 95.0391 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 99.0352 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 103.0313 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 106.3652 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1141.3652 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1141.3652 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 842.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 86.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 51.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 55.6875 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.6836 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 63.0176 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1098.0176 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1098.0176 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 859.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 103.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 75.0234 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.0195 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.0156 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.3496 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1121.3496 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1121.3496 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 876.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 120.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000h\000e\000c\000k\000F\000o\000r\000U\000p\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 91.3594 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 95.3555 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 99.3516 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 102.6855 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1137.6855 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1137.6855 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 893.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 137.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000h\000e\000c\000k\000F\000o\000r\000C\000r\000o\000s\000s\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 107.3555 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 111.3516 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 115.3477 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 118.6816 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1153.6816 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1153.6816 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1035.0 910.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1033.0 773.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1031.0 771.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1030.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 766.0891 78.4411 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+181.25 0.5 l
+181.25 154.5 l
+0.5 154.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+181.25 0.5 l
+181.25 154.5 l
+0.5 154.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1487.0891 679.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1486.0891 678.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+179.25 0.5 l
+179.25 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+179.25 0.5 l
+179.25 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1486.0891 678.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000i\000s\000k\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 41.332 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 44.666 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1535.7551 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1535.7551 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 704.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 702.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000i\000s\000k\000_\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3496 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.6836 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1553.7727 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1553.7727 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 721.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 702.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000i\000s\000k\000_\000d\000e\000s\000c\000r\000p\000i\000t\000i\000o\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 87.3633 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.6973 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1581.7864 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1581.7864 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 738.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 702.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1487.0891 700.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1486.0891 678.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 80.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+179.25 0.5 l
+179.25 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+179.25 0.5 l
+179.25 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1486.0891 678.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 81.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1508.1047 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 97.7227 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 101.7188 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 105.7148 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.0488 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1600.1379 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1600.1379 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 763.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 761.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1508.1047 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.4102 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 142.4063 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 146.4023 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 149.7363 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1640.8254 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1640.8254 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 780.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 761.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 46.7661 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 50.4292 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.0923 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 57.1484 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1548.2375 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1548.2375 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 797.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 761.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 52.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000R\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 57.7661 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 61.4292 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 65.0923 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.1484 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1559.2375 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1559.2375 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1491.0891 813.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1489.0891 761.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1487.0891 759.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1486.0891 678.4411 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 565.0 -390.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+243.9746 0.5 l
+243.9746 139.5 l
+0.5 139.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+243.9746 0.5 l
+243.9746 139.5 l
+0.5 139.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000S\000i\000n\000g\000l\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1286.0 211.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1285.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+241.9746 0.5 l
+241.9746 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+241.9746 0.5 l
+241.9746 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1285.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000a\000n\000c\000e\000_\000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.0488 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.3828 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1375.3828 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1375.3828 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 236.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1288.0 234.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000a\000n\000c\000e\000_\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.7188 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 96.0527 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1386.0527 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1386.0527 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 253.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1288.0 234.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1286.0 232.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1285.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 63.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+241.9746 0.5 l
+241.9746 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+241.9746 0.5 l
+241.9746 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1285.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 64.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1307.0156 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000i\000n\000g\000l\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 160.4473 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 164.4434 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 168.4395 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 171.7734 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1461.7734 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1461.7734 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 278.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1288.0 276.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1307.0156 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000S\000i\000n\000g\000l\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 201.1348 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.1309 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 209.127 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 212.4609 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1502.4609 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1502.4609 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 295.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1288.0 276.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000S\000i\000n\000g\000l\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 104.2637 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 107.9268 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 111.5898 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 114.646 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1404.646 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1404.646 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1290.0 312.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1288.0 276.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1286.0 274.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1285.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 140.0 -290.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+257.3164 0.5 l
+257.3164 189.5 l
+0.5 189.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+257.3164 0.5 l
+257.3164 189.5 l
+0.5 189.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 861.0 311.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 860.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+255.3164 0.5 l
+255.3164 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+255.3164 0.5 l
+255.3164 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000c\000k\000a\000g\000e\000_\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.0566 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.3906 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 954.3906 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 954.3906 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 336.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 334.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000a\000n\000c\000e\000_\000I\000D\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.7012 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 84.0352 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 949.0352 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 949.0352 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 353.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 334.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000c\000k\000a\000g\000e\000_\000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 75.3867 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 78.7207 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 943.7207 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 943.7207 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 334.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 861.0 332.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 860.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 80.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+255.3164 0.5 l
+255.3164 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+255.3164 0.5 l
+255.3164 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 81.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 882.0156 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 173.7891 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 177.7852 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 181.7813 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 185.1152 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1050.1152 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1050.1152 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 395.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 882.0156 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 214.4766 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 218.4727 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 222.4688 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 225.8027 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1090.8027 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1090.8027 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 127.084 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 131.0801 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.0762 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.4102 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1003.4102 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1003.4102 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 429.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 53.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 81.0586 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.0547 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.0508 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.3848 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 957.3848 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 957.3848 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 446.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 70.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 104.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 108.3867 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 112.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 115.7168 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 980.7168 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 980.7168 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 463.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 87.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 127.4937 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 131.1567 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 134.8198 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 137.876 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000P\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1002.876 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1002.876 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 865.0 480.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 863.0 393.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 861.0 391.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 860.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 20.0 50.0 ] concat
+0 J
+1.0 M
+newpath
+377.8164 -340.0 m
+545.0 -340.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 377.8164 -340.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000i\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 1117.8164 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1117.8164 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1117.8164 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 740.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 545.0 -340.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1285.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -53.9611 -19.387 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000o\000n\000t\000a\000i\000n\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -62.3849 -19.387 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -29.5011 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 310.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 740.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 -3.4845 ] concat
+0 J
+1.0 M
+newpath
+605.8379 156.832 m
+766.0891 156.832 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 605.8379 156.832 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 2.9462 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000i\000n\000s\000u\000r\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1325.8379 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.9462 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1325.8379 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 596.5155 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 766.0891 156.832 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1486.0891 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -50.578 -27.4813 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1486.0891 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -59.0018 -27.4813 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1486.0891 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -30.5649 18.1383 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1486.0891 753.3475 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 596.5155 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+9.0977 315.5473 m
+310.0 315.5473 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 9.0977 315.5473 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 13.0604 5.8145 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000p\000r\000o\000p\000o\000s\000e\000d\000 \000t\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 729.0977 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.6366 5.8145 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 729.0977 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 310.0 315.5473 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -36.7266 -32.3185 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1030.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -45.1504 -32.3185 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1030.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -29.5011 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1030.0 915.5473 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 700.0 424.3897 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+212.0874 0.5 l
+212.0874 133.5 l
+0.5 133.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+212.0874 0.5 l
+212.0874 133.5 l
+0.5 133.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 72.2883 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t\000I\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1421.0 1025.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1420.0 1024.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+210.0874 0.5 l
+210.0874 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+210.0874 0.5 l
+210.0874 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1420.0 1024.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000i\000n\000f\000o\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.8237 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.8799 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1514.8799 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1514.8799 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1049.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1047.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000f\000r\000e\000q\000u\000e\000n\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 100.2783 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 103.3345 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000_\000f\000r\000e\000q\000u\000e\000n\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1528.3345 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1528.3345 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1065.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1047.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000m\000e\000t\000h\000o\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 88.6606 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 91.7168 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000e\000t\000h\000o\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1516.7168 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1516.7168 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1081.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1047.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000r\000e\000n\000e\000w\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.4922 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 93.5483 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1518.5483 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1518.5483 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1097.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1047.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1421.0 1045.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1420.0 1024.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 92.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+210.0874 0.5 l
+210.0874 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+210.0874 0.5 l
+210.0874 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1420.0 1024.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 93.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1440.8477 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.4199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.2676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t\000I\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 130.4482 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 134.1113 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 137.7744 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 140.8306 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t\000I\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1565.8306 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1565.8306 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1121.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1119.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1440.8477 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000P\000a\000y\000m\000e\000n\000t\000I\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 167.7451 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 171.4082 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 175.0713 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 178.1274 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1603.1274 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1603.1274 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.0 1137.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1423.0 1119.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1421.0 1117.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1420.0 1024.3897 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+9.0977 442.6212 m
+282.1979 442.6212 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 9.0977 442.6212 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 3.5276 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000p\000o\000l\000i\000c\000y\000 \000o\000f) show
+Q
+[ 1.0 0.0 0.0 1.0 729.0977 1042.6212 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 3.5276 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 729.0977 1042.6212 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 282.1979 442.6212 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -61.905 -18.6983 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s\000 \000p\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1002.1979 1042.6212 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.3288 -18.6983 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1002.1979 1042.6212 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -29.5011 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1002.1979 1042.6212 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 20.0 500.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+189.459 0.5 l
+189.459 164.5 l
+0.5 164.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+189.459 0.5 l
+189.459 164.5 l
+0.5 164.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 71.053 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 741.0 1101.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 740.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+187.459 0.5 l
+187.459 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+187.459 0.5 l
+187.459 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 740.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000m\000o\000u\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 40.353 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 43.4092 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 788.4092 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 788.4092 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3799 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 76.436 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 821.436 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 821.436 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1141.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000e\000t\000h\000o\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 40.353 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 43.4092 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000e\000t\000h\000o\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 788.4092 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 788.4092 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1157.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000y\000m\000e\000n\000t\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.9707 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 66.0269 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 811.0269 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 811.0269 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1173.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 741.0 1121.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 740.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 92.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+187.459 0.5 l
+187.459 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+187.459 0.5 l
+187.459 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 740.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 93.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 760.8477 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 149.3975 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 153.0605 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 156.7236 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 159.7798 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 904.7798 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 904.7798 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1197.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1195.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000Q\000u\000e\000r\000y\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.7876 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.4507 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 87.1138 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.1699 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 835.1699 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 835.1699 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1213.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1195.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 760.8477 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.4199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.2676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 112.1006 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 115.7637 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 119.4268 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 122.4829 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 867.4829 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 867.4829 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1229.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1195.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000P\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.7876 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 72.4507 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 76.1138 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.1699 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 824.1699 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 824.1699 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 745.0 1245.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 743.0 1195.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 741.0 1193.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 740.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+[ 5.0 10.0 ] 0.0 d
+newpath
+104.585 442.6212 m
+104.585 500.0 l
+S
+2 J
+10.0 M
+[ ] 0.0 d
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 320.0 730.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+188.5859 0.5 l
+188.5859 138.5 l
+0.5 138.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+188.5859 0.5 l
+188.5859 138.5 l
+0.5 138.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1041.0 1331.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1040.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+186.5859 0.5 l
+186.5859 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+186.5859 0.5 l
+186.5859 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1040.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000a\000i\000m\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 50.6719 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.0059 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1099.0059 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1099.0059 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1356.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1354.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000a\000i\000m\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.8584 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.9146 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1104.9146 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1104.9146 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1373.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1354.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 35.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000a\000i\000m\000_\000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.0195 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 61.3535 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1106.3535 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1106.3535 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1389.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1354.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1041.0 1352.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1040.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 79.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+186.5859 0.5 l
+186.5859 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+186.5859 0.5 l
+186.5859 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1040.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 80.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1062.0156 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 105.0586 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 109.0547 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 113.0508 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 116.3848 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1161.3848 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1161.3848 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1414.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1062.0156 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 145.7461 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 149.7422 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 153.7383 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 157.0723 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1202.0723 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1202.0723 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1431.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000C\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.3535 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.3496 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 66.3457 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 69.6797 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1114.6797 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1114.6797 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1045.0 1448.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1043.0 1412.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1041.0 1410.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1040.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-150.0 53.0 m
+-150.0 90.0 l
+S
+2 J
+10.0 M
+[ -0.0 -1.0 1.0 0.0 -150.0 90.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 294.2081 -233.6904 ] concat
+0 J
+1.0 M
+newpath
+515.2665 -33.3096 m
+595.7919 -33.3096 l
+595.7919 36.6904 l
+495.7919 36.6904 l
+495.7919 -16.3096 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 515.2665 -33.3096 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 14.2373 5.2086 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s\000 \000u\000p\000-\000s\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 333.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 5.8135 5.2086 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 333.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 5.0483 -32.1424 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 333.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1014.2081 366.3096 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 495.7919 -16.3096 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -64.151 4.1504 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000u\000p\000-\000s\000e\000l\000l\000 \000f\000o\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 1510.0 350.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -72.5748 4.1504 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1510.0 350.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -11.0689 33.8472 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1510.0 350.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1014.2081 366.3096 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 294.2081 -233.6904 ] concat
+0 J
+1.0 M
+newpath
+485.7919 -156.3096 m
+485.7919 -186.3096 l
+595.7919 -186.3096 l
+595.7919 -106.3096 l
+515.2665 -106.3096 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 485.7919 -156.3096 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -71.0166 -17.7968 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s\000 \000c\000r\000o\000s\000s\000-\000s\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1500.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -79.4404 -17.7968 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1500.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -17.1679 -20.4702 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1500.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1014.2081 366.3096 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 515.2665 -106.3096 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 3.5267 3.1022 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000c\000r\000o\000s\000s\000-\000s\000e\000l\000l\000 \000f\000o\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -4.8971 3.1022 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.4486 26.5811 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1529.4746 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1014.2081 366.3096 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -535.0 -340.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+191.9316 0.5 l
+191.9316 138.5 l
+0.5 138.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+191.9316 0.5 l
+191.9316 138.5 l
+0.5 138.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 186.0 261.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 185.0 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+189.9316 0.5 l
+189.9316 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+189.9316 0.5 l
+189.9316 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 185.0 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000a\000l\000a\000r\000y\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.6797 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.0137 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 248.0137 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 248.0137 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 286.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 284.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000a\000x\000_\000p\000r\000e\000c\000e\000n\000t\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.7246 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.0586 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 280.0586 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 280.0586 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 303.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 284.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000a\000l\000a\000r\000y\000_\000a\000m\000o\000u\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.7051 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 86.0391 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 276.0391 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 276.0391 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 320.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 284.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 53.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000a\000l\000a\000r\000y\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 60.5322 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 63.5884 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 253.5884 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 253.5884 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 337.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 284.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 186.0 282.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 185.0 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 96.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+189.9316 0.5 l
+189.9316 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+189.9316 0.5 l
+189.9316 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 185.0 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 97.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 207.0156 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 108.4043 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 112.4004 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 116.3965 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 119.7305 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 309.7305 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 309.7305 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 361.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 359.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 207.0156 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000S\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 149.0918 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 153.0879 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 157.084 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 160.418 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 350.418 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 350.418 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.0 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 188.0 359.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 186.0 357.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 185.0 260.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-250.0 -222.0 m
+-342.5684 -222.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -250.0 -222.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -342.5684 -222.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -0.0 -0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 377.4316 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 2.4666 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000c\000i\000e\000v\000e\000d\000 \000s\000a\000l\000a\000r\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 377.4316 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.4666 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 377.4316 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 377.4316 378.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -520.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+213.9395 0.5 l
+213.9395 138.5 l
+0.5 138.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+213.9395 0.5 l
+213.9395 138.5 l
+0.5 138.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 201.0 601.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+211.9395 0.5 l
+211.9395 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+211.9395 0.5 l
+211.9395 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 200.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000i\000m\000e\000s\000h\000e\000e\000t\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.6953 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 78.0293 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 283.0293 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 283.0293 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 626.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 624.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000s\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 39.7461 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 42.8022 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 247.8022 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 247.8022 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 643.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 624.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 35.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000o\000u\000r\000s\000_\000w\000o\000r\000k\000e\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.3711 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.7051 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 287.7051 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 287.7051 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 659.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 624.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 52.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000o\000u\000r\000s\000_\000l\000e\000a\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 69.375 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 72.709 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 277.709 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 277.709 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 676.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 624.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 201.0 622.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 96.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+211.9395 0.5 l
+211.9395 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+211.9395 0.5 l
+211.9395 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 200.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 97.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 222.0156 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 130.4121 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 134.4082 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.4043 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 141.7383 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 346.7383 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 346.7383 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 699.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 222.0156 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000T\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 171.0996 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 175.0957 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 179.0918 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 182.4258 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 387.4258 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 387.4258 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 718.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 699.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 201.0 697.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-250.0 0.0 m
+-305.5605 0.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -250.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -305.5605 0.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -0.0 -0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 414.4395 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 2.6615 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s\000 \000t\000i\000m\000e\000s\000h\000e\000e\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 414.4395 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.6615 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 414.4395 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 414.4395 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -525.0 300.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+256.6426 0.5 l
+256.6426 87.5 l
+0.5 87.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+256.6426 0.5 l
+256.6426 87.5 l
+0.5 87.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 87.2149 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 196.0 901.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 195.0 900.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+254.6426 0.5 l
+254.6426 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+254.6426 0.5 l
+254.6426 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 195.0 900.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 98.7129 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 102.0469 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 302.0469 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 302.0469 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 926.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 198.0 924.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 196.0 922.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 195.0 900.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 46.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+254.6426 0.5 l
+254.6426 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+254.6426 0.5 l
+254.6426 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 195.0 900.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 47.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 217.0156 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 155.1035 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 159.0996 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 163.0957 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 166.4297 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 366.4297 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 366.4297 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 951.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 198.0 949.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 215.8477 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000R\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 179.9751 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 183.6382 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 187.3013 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 190.3574 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 390.3574 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 390.3574 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 968.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 198.0 949.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 196.0 947.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 195.0 900.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-267.8574 300.0 m
+-190.0 247.0 l
+S
+2 J
+10.0 M
+[ -0.826645 0.562724 -0.562724 -0.826645 -190.0 247.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-180.0 331.0 m
+-267.8574 331.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -180.0 331.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -267.8574 331.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 2.1658 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000r\000e\000p\000r\000e\000s\000e\000n\000t\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 452.1426 931.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.1658 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 452.1426 931.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 452.1426 931.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 80.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+214.4937 0.5 l
+214.4937 116.5 l
+0.5 116.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+214.4937 0.5 l
+214.4937 116.5 l
+0.5 116.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 73.18 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000W\000e\000b\000s\000i\000t\000e\000U\000s\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 721.0 681.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 680.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+212.4937 0.5 l
+212.4937 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+212.4937 0.5 l
+212.4937 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 680.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000u\000s\000e\000r\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 42.1792 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 45.2354 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 770.2354 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 770.2354 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 705.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 723.0 703.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000l\000o\000g\000i\000n\000_\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 60.5376 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 63.5938 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 788.5938 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 788.5938 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 721.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 723.0 703.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000p\000a\000s\000s\000w\000o\000r\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 50.7407 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.7969 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 778.7969 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 778.7969 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 737.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 723.0 703.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 721.0 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 680.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 76.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+212.4937 0.5 l
+212.4937 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+212.4937 0.5 l
+212.4937 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 680.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 77.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 740.8477 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.4199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.2676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000W\000e\000b\000s\000i\000t\000e\000U\000s\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 131.6514 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.3145 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 138.9775 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 142.0337 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000W\000e\000b\000s\000i\000t\000e\000U\000s\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 867.0337 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 867.0337 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 761.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 723.0 759.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 740.8477 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000W\000e\000b\000s\000i\000t\000e\000U\000s\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 168.9482 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 172.6113 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 176.2744 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 179.3306 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 904.3306 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 904.3306 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 725.0 777.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 723.0 759.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 721.0 757.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 680.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+0.0 134.51 m
+-71.2617 134.51 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -71.2617 134.51 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+214.9937 128.5 m
+310.0 128.5 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 214.9937 128.5 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 2.638 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000p\000r\000o\000p\000o\000s\000e\000d\000 \000t\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 934.9937 728.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.638 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 934.9937 728.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 310.0 128.5 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -30.7258 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1030.0 728.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -39.1496 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1030.0 728.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 460.0 -115.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+187.396 0.5 l
+187.396 180.5 l
+0.5 180.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+187.396 0.5 l
+187.396 180.5 l
+0.5 180.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 66.9653 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1181.0 486.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1180.0 485.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+185.396 0.5 l
+185.396 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+185.396 0.5 l
+185.396 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1180.0 485.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000s\000u\000r\000a\000n\000c\000e\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.4761 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 71.5322 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1256.5322 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1256.5322 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 510.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 508.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000o\000s\000s\000_\000s\000e\000l\000l\000_\000I\000D\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 75.1846 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 78.2407 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 1263.2407 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1263.2407 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 526.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 508.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000u\000p\000_\000s\000e\000l\000l\000_\000I\000D\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 61.1392 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 64.1953 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000[\000]) show
+Q
+[ 1.0 0.0 0.0 1.0 1249.1953 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1249.1953 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 542.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 508.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1181.0 506.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1180.0 485.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 76.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+185.396 0.5 l
+185.396 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+185.396 0.5 l
+185.396 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1180.0 485.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 77.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000U\000p\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.3999 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.063 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 65.7261 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.7822 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1253.7822 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1253.7822 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 566.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000C\000r\000o\000s\000s\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.063 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 76.7261 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3892 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.4453 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1268.4453 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1268.4453 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 582.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000U\000p\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 79.7876 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.4507 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 87.1138 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 90.1699 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1275.1699 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1275.1699 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 598.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000R\000e\000m\000o\000v\000e\000C\000r\000o\000s\000s\000S\000e\000l\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 94.4507 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 98.1138 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 101.7769 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 104.833 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1289.833 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1289.833 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 614.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 66.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000h\000e\000c\000k\000C\000r\000o\000s\000s\000S\000e\000l\000l\000O\000p\000p\000o\000r\000t\000u\000n\000i\000t\000i\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 147.3345 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 150.9976 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 154.6606 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 157.7168 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1342.7168 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1342.7168 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 630.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 82.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000h\000e\000c\000k\000U\000p\000S\000e\000l\000l\000O\000p\000p\000o\000r\000t\000u\000n\000i\000t\000i\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 132.6714 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 136.3345 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 139.9976 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 143.0537 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 1328.0537 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1328.0537 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 646.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1183.0 564.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1181.0 562.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1180.0 485.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+565.0 -250.0 m
+565.0 -115.0 l
+S
+2 J
+10.0 M
+[ -0.0 -1.0 1.0 0.0 565.0 -115.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+397.8164 -115.0 m
+460.0 -115.0 l
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 460.0 -115.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+12.0 -6.0 m
+0.0 0.0 l
+12.0 6.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -245.0 -530.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+202.3013 0.5 l
+202.3013 154.5 l
+0.5 154.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+202.3013 0.5 l
+202.3013 154.5 l
+0.5 154.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 71.053 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 476.0 71.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 70.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+200.3013 0.5 l
+200.3013 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+200.3013 0.5 l
+200.3013 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 475.0 70.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000t\000e\000p\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 41.5723 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 44.6284 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 524.6284 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 524.6284 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 95.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 93.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000j\000o\000b\000_\000f\000u\000n\000c\000t\000i\000o\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.9868 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 66.043 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 546.043 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 546.043 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 111.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 93.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000e\000g\000i\000n\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 58.1045 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 61.1606 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 541.1606 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.1606 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 127.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 93.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 50.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000n\000d\000_\000d\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.543 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 52.5991 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 532.5991 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 532.5991 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 143.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 93.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 66.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.6631 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000t\000e\000p\000_\000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 48.3076 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 51.3638 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 531.3638 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 531.3638 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 93.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 476.0 91.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 70.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 108.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+200.3013 0.5 l
+200.3013 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+200.3013 0.5 l
+200.3013 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 475.0 70.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 109.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 495.8477 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 49.4199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 62.2676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 68.6914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 124.9429 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 128.606 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 132.269 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.3252 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 615.3252 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 615.3252 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 183.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 181.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 15.8477 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 495.8477 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 54.9199 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.7676 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.1914 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000C\000a\000r\000e\000e\000r\000S\000t\000e\000p) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 162.2397 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 165.9028 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 169.5659 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 172.6221 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 652.6221 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 652.6221 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 199.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.0 181.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 476.0 179.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 475.0 70.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-75.8379 -320.0 m
+-75.8379 -375.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -75.8379 -320.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -75.8379 -375.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 0.0 1.0 -1.0 -0.0 0.0 -0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 644.1621 225.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -95.0563 10.2021 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000a\000r\000e\000e\000r\000 \000s\000t\000e\000p\000 \000t\000a\000k\000e\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 644.1621 225.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -103.4801 10.2021 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 644.1621 225.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.3438 12.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 644.1621 225.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+547.3327 497.5674 m
+700.0 497.5674 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 547.3327 497.5674 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 4.3876 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000i\000n\000f\000o\000 \000o\000f) show
+Q
+[ 1.0 0.0 0.0 1.0 1267.3327 1097.5674 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 4.3876 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1267.3327 1097.5674 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 700.0 497.5674 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1420.0 1097.5674 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -96.7633 -17.1814 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s\000 \000p\000a\000y\000m\000e\000n\000t\000 \000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 1420.0 1097.5674 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -105.1871 -17.1814 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1420.0 1097.5674 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+505.9707 66.0 m
+505.9707 90.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 505.9707 66.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -57.9318 8.1756 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000o\000f\000 \000t\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1225.9707 666.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -66.3556 8.1756 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1225.9707 666.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 505.9707 90.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 13.9103 -24.7701 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000u\000s\000e\000d\000 \000i\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 1225.9707 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 5.4865 -24.7701 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1225.9707 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -10.6246 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1225.9707 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -520.0 440.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+215.2754 0.5 l
+215.2754 139.5 l
+0.5 139.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+215.2754 0.5 l
+215.2754 139.5 l
+0.5 139.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 78.209 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t\000T\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 201.0 1041.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 1040.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+213.2754 0.5 l
+213.2754 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+213.2754 0.5 l
+213.2754 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 200.0 1040.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 22.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000l\000i\000e\000n\000t\000_\000t\000y\000p\000e\000_\000I\000D) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.0391 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 83.373 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 288.373 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 288.373 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1066.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1064.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000y\000p\000e\000_\000n\000a\000m\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 63.3691 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 66.7031 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 271.7031 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 271.7031 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1083.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1064.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000-) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 3.9961 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000t\000y\000p\000e\000_\000i\000n\000f\000o) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 52.6992 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 56.0332 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000t\000r\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 261.0332 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 261.0332 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1064.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 201.0 1062.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 1040.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 80.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+213.2754 0.5 l
+213.2754 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+213.2754 0.5 l
+213.2754 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 200.0 1040.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 81.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 222.0156 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 53.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 67.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 74.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t\000T\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 131.748 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 135.7441 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 139.7402 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 143.0742 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t\000T\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 348.0742 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 348.0742 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1125.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 19.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000<\000<) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 17.0156 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000s\000t\000r\000o\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 222.0156 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 59.3672 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000>\000>) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.3828 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3906 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000D\000e\000l\000e\000t\000e\000C\000l\000i\000e\000n\000t\000T\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 172.4355 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 176.4316 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 180.4277 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 183.7617 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 388.7617 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 388.7617 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1142.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 36.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.0078 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000E\000d\000i\000t\000C\000l\000i\000e\000n\000t\000T\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.043 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.0391 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 93.0352 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 96.3691 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 301.3691 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 301.3691 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 205.0 1159.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 203.0 1123.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 201.0 1121.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 200.0 1040.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-180.0 477.7737 m
+-304.2246 477.7737 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -180.0 477.7737 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -17.2712 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 540.0 1077.7737 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -304.2246 477.7737 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -0.0 -0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 415.7754 1077.7737 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 18.1186 10.0298 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000o\000f\000 \000t\000y\000p\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 415.7754 1077.7737 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 9.6948 10.0298 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 415.7754 1077.7737 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+680.0 -390.0 m
+680.0 -540.0 l
+-680.0 -540.0 l
+-680.0 500.0 l
+-520.0 500.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 680.0 -390.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -10.6246 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1400.0 210.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -520.0 500.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 200.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -36.8273 -22.2438 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000f\000o\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -45.2511 -22.2438 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 1100.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -575.0 150.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+223.2617 0.5 l
+223.2617 121.5 l
+0.5 121.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+223.2617 0.5 l
+223.2617 121.5 l
+0.5 121.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1.0 1.0 ] concat
+[ 1.0 0.0 0.0 1.0 91.314 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif-Bold findfont 11.0 scalefont setfont
+(\000S\000y\000s\000t\000e\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 146.0 751.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 145.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 20.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+221.2617 0.5 l
+221.2617 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+221.2617 0.5 l
+221.2617 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 145.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 21.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 146.0 771.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 145.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 45.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+0.5 0.5 m
+221.2617 0.5 l
+221.2617 0.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+0.5 0.5 m
+221.2617 0.5 l
+221.2617 0.5 l
+0.5 0.5 l
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 145.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1.0 46.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000L\000o\000g\000i\000n\000W\000e\000b\000s\000i\000t\000e\000U\000s\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 96.2983 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 99.9614 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 103.6245 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 106.6807 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 256.6807 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 256.6807 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 150.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 148.0 798.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 18.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000L\000o\000g\000i\000n\000E\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 82.2529 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 85.916 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 89.5791 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 92.6353 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 242.6353 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 242.6353 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 150.0 816.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 148.0 798.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 2.0 34.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+newpath
+S
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.4238 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000e\000a\000r\000c\000h\000C\000a\000l\000l\000e\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 70.0068 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\050) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 73.6699 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000\051) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 77.333 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000:) show
+Q
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.3892 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000v\000o\000i\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 230.3892 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 230.3892 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 150.0 832.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 148.0 798.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 146.0 796.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 145.0 750.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+410.0 710.745 m
+410.0 730.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 410.0 710.745 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 410.0 730.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -0.0 -1.0 1.0 0.0 -0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1130.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 7.5 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000h\000a\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 1130.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -0.9238 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1130.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -10.6246 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1130.0 1330.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-351.2383 160.0 m
+-190.0 160.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -351.2383 160.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -190.0 160.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 530.0 760.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -97.3542 -17.1662 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000k\000n\000o\000w\000n\000 \000b\000y\000 \000s\000y\000s\000t\000e\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 530.0 760.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -105.778 -17.1662 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 530.0 760.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -17.2712 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 530.0 760.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-54.5356 -203.0 m
+140.0 -203.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -54.5356 -203.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 2.5492 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000m\000a\000n\000a\000g\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 2.5492 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.9904 -22.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 140.0 -203.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 860.0 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -58.2419 -18.9874 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000a\000n\000a\000g\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 860.0 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -66.6657 -18.9874 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 860.0 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -17.2712 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 860.0 397.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-54.5356 -320.0 m
+60.0 -380.0 l
+565.0 -380.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -54.5356 -320.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 14.9874 -6.7017 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000m\000a\000n\000a\000g\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.5636 -6.7017 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 6.6785 -27.6716 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001\000.\000.\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 565.0 -380.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1285.0 220.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -90.0387 -17.3695 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000i\000n\000g\000l\000e\000I\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 220.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -98.4625 -17.3695 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 220.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -17.2712 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1285.0 220.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-250.0 -60.0 m
+-640.0 -60.0 l
+-640.0 460.0 l
+-520.0 460.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -250.0 -60.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -64.3542 -18.5269 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 470.0 540.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -72.778 -18.5269 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 470.0 540.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -19.1081 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\0001) show
+Q
+[ 1.0 0.0 0.0 1.0 470.0 540.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -520.0 460.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 200.0 1060.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -49.6803 -19.8732 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 1060.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -58.1041 -19.8732 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 1060.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -17.2712 7.5 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 200.0 1060.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -497.1265 -85.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000r\000e\000a\000t\000e\000d\000 \000b\000y\000 \000-\000>\000 \000c\000r\000e\000a\000t\000e\000d) show
+Q
+[ 1.0 0.0 0.0 1.0 222.8735 515.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-54.5356 -40.0 m
+40.0 -40.0 l
+40.0 20.0 l
+-54.5356 20.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -54.5356 -40.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 4.6629 -16.7755 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000a\000n\000a\000g\000e\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 560.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -3.7609 -16.7755 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 560.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.0579 -27.8871 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 560.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -54.5356 20.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 3.5267 3.2358 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000m\000a\000n\000a\000g\000e\000d\000 \000b\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 620.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -4.8971 3.2358 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 620.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-54.5356 -100.0 m
+340.0 -100.0 l
+340.0 90.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -54.5356 -100.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 12.9904 1.7112 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000s\000p\000o\000n\000s\000i\000b\000l\000e\000 \000e\000m\000p\000l\000o\000y\000e\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 500.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.5666 1.7112 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 665.4644 500.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 340.0 90.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -0.0 -1.0 1.0 0.0 -0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 1060.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 12.6282 -33.3549 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000s\000p\000o\000n\000s\000i\000b\000l\000e\000 \000f\000o\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 1060.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 4.2044 -33.3549 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1060.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -10.6246 -27.9904 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000*) show
+Q
+[ 1.0 0.0 0.0 1.0 1060.0 690.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+417.3153 331.0 m
+417.3153 436.745 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 417.3153 331.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -92.4761 11.6927 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000s\000 \000c\000o\000n\000v\000e\000r\000t\000e\000d\000 \000f\000r\000o\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 1137.3153 931.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -100.8999 11.6927 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1137.3153 931.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 417.3153 436.745 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 7.5 -27.7869 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000s\000 \000c\000o\000n\000v\000e\000r\000t\000e\000d\000 \000i\000n) show
+Q
+[ 1.0 0.0 0.0 1.0 1137.3153 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -0.9238 -27.7869 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000+) show
+Q
+[ 1.0 0.0 0.0 1.0 1137.3153 1036.745 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+-180.0 410.0 m
+-620.0 410.0 l
+-620.0 -30.0 l
+-250.0 -30.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -180.0 410.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ -1.0 0.0 0.0 -1.0 0.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+f
+0.0 0.0 0.0 RG
+newpath
+10.0 -5.0 m
+0.0 0.0 l
+h
+10.0 5.0 m
+0.0 0.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 540.0 1010.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -250.0 -30.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -710.0 155.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 978.0 155.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 134.0 -590.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 134.0 900.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -710.0 -590.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 978.0 -590.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -710.0 900.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 978.0 900.0 ] concat
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.407227 900.0 ] concat
+0.0 13.0 moveto
+q 1 -1 scale
+/Helvetica findfont 12.0 scalefont setfont
+(Created with Poseidon for UML Community Edition. Not for Commercial Use.) show
+Q
+[ 1.0 0.0 0.0 1.0 720.0 600.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] defaultmatrix matrix concatmatrix setmatrix
+newpath
+0.0 0.0 m
+0.0 1532.0 l
+1708.0 1532.0 l
+1708.0 0.0 l
+h
+W
+Q
+end end restore showpage
+
+%%Trailer
+%%EOF
diff --git a/ADD/Images/ClassDiagram.png b/ADD/Images/ClassDiagram.png
new file mode 100644
index 0000000..6438467
--- /dev/null
+++ b/ADD/Images/ClassDiagram.png
Binary files differ
diff --git a/ADD/Images/UseCaseDiagram.eps b/ADD/Images/UseCaseDiagram.eps
new file mode 100644
index 0000000..35404c8
--- /dev/null
+++ b/ADD/Images/UseCaseDiagram.eps
@@ -0,0 +1,4475 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 20 166 575 676
+%%Creator: FreeHEP Graphics2D Driver
+%%Producer: org.freehep.graphicsio.ps.PSGraphics2D Revision: 1.20
+%%For:
+%%Title:
+%%CreationDate: dinsdag 25 oktober 2005 12:13:03 uur CEST
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+100 dict dup begin
+
+%
+% File: org/freehep/graphicsio.ps/PSProlog.txt
+% Author: Charles Loomis
+%
+
+% Redefinitions which save some space in the output file. These are also
+% the same as the PDF operators.
+/q {gsave} def
+/Q {grestore} def
+
+/n {newpath} def
+/m {moveto} def
+/l {lineto} def
+/c {curveto} def
+/h {closepath} def
+
+/re {4 -2 roll moveto
+ dup 0 exch rlineto exch 0 rlineto
+ neg 0 exch rlineto closepath} def
+
+/f {fill} def
+/f* {eofill} def
+/F {gsave vg&FC fill grestore} def
+/F* {gsave vg&FC eofill grestore} def
+
+/s {closepath stroke} def
+/S {stroke} def
+
+/b {closepath gsave vg&FC fill grestore
+ gsave stroke grestore newpath} def
+/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
+/b* {closepath gsave vg&FC eofill grestore
+ gsave stroke grestore newpath} def
+/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
+
+/g {1 array astore /vg&fcolor exch def} def
+/G {setgray} def
+/k {4 array astore /vg&fcolor exch def} def
+/K {setcmykcolor} def
+/rg {3 array astore /vg&fcolor exch def} def
+/RG {setrgbcolor} def
+
+% Initialize the fill color.
+0 0 0 rg
+
+/vg&FC {mark vg&fcolor aload pop
+ counttomark 1 eq {G} if
+ counttomark 3 eq {RG} if
+ counttomark 4 eq {K} if
+ cleartomark } def
+
+/vg&DFC {/vg&fcolor exch def} def
+
+/vg&C {mark exch aload pop
+ counttomark 1 eq {G} if
+ counttomark 3 eq {RG} if
+ counttomark 4 eq {K} if
+ cleartomark } def
+
+/w {setlinewidth} def
+/j {setlinejoin} def
+/J {setlinecap} def
+/M {setmiterlimit} def
+/d {setdash} def
+/i {setflat} def
+
+/W {clip} def
+/W* {eoclip} def
+
+% Setup the default graphics state.
+% (black; 1 pt. linewidth; miter join; butt-ends; solid)
+/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
+
+% Emulation of the rectangle operators for PostScript implementations
+% which do not implement all Level 2 features. This is an INCOMPLETE
+% emulation; only the "x y width height rect..." form is emulated.
+/*rf {gsave newpath re fill grestore} def
+/*rs {gsave newpath re stroke grestore} def
+/*rc {newpath re clip} def
+/rf /rectfill where {pop /rectfill}{/*rf} ifelse load def
+/rs /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
+/rc /rectclip where {pop /rectclip}{/*rc} ifelse load def
+
+% Emulation of the selectfont operator. This includes a 20% increase in
+% the fontsize which is necessary to get sizes similar to the Java fonts.
+/*sf {exch findfont exch
+ dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
+/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
+
+% Special version of stroke which allows the dash pattern to continue
+% across path segments. (This may be needed for PostScript although
+% modern printers seem to do this correctly.)
+/vg&stroke {
+ currentdash pop length 0 eq
+ {stroke}
+ {
+ currentdash /vg&doffset exch def pop
+ flattenpath
+ {m vg&resetdash}
+ {2 copy
+ currentpoint
+ 3 -1 roll sub dup mul
+ 3 1 roll sub dup mul
+ add sqrt
+ 3 1 roll l
+ currentdash 3 -1 roll add setdash}
+ {}
+ {h vg&resetdash}
+ pathforall
+ stroke
+ vg&resetdash
+ } ifelse
+} def
+/vg&resetdash {currentdash pop vg&doffset setdash} def
+
+% Initialize variables for safety.
+/delta 0 def
+/xv 0 def /yv 0 def /width 0 def /height 0 def
+
+% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
+/pw 595 def /ph 791 def /po true def /ftp false def
+
+% Initialize margins to 20 points.
+/ml 20 def /mr 20 def /mt 20 def /mb 20 def
+
+% Temporary matrices.
+/smatrix 0 def /nmatrix 0 def
+
+% set page size (usage: <page width><page height> setpagesize)
+/setpagesize {/ph exch def /pw exch def} def
+
+% set page orientation (usage: portrait or landscape)
+/portrait {/po true def} def
+/landscape {/po false def} def
+
+% force natural size for image (usage: naturalsize)
+/naturalsize {/ftp false def} def
+
+% resize image to fill page (usage: fittopage)
+/fittopage {/ftp true def} def
+
+% set margins of the page (usage: <left><bottom><top><right> setmargins)
+/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
+
+% set the graphic's size (usage: <width><height> setsize)
+/setsize {/gh exch def /gw exch def} def
+
+% set the graphic's origin (usage: <x0><y0> setorigin)
+/setorigin {/gy exch def /gx exch def} def
+
+% calculate image center
+/imagecenter {pw ml sub mr sub 2 div ml add
+ ph mt sub mb sub 2 div mb add} def
+
+% calculate the necessary scaling
+/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
+ po {gh}{gw} ifelse ph mt sub mb sub div
+ 2 copy lt {exch} if pop
+ ftp not {1 2 copy lt {exch} if pop} if
+ 1 exch div /sfactor exch def
+ /gw gw sfactor mul def /gh gh sfactor mul def} def
+
+% calculate image origin
+/imageorigin {pw ml sub mr sub 2 div ml add
+ po {gw}{gh} ifelse 2 div sub
+ ph mt sub mb sub 2 div mb add
+ po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
+
+% calculate the clipping origin
+/cliporigin {pw ml sub mr sub 2 div ml add
+ po {gw}{gh} ifelse 2 div sub floor
+ ph mt sub mb sub 2 div mb add
+ po {gh}{gw} ifelse 2 div sub floor} def
+
+% Set the clipping region to the bounding box.
+/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
+ po {gh}{gw} ifelse 1 add rc} def
+
+% set the base transformation matrix (usage: setbasematrix)
+/setbasematrix {imageorigin translate
+ po {0}{90} ifelse rotate
+ sfactor sfactor neg scale
+ /defaultmatrix matrix currentmatrix def} def
+
+% The lower-right bias in drawing 1 pt. wide lines.
+/bias {q 0.5 0.5 translate} def
+/unbias {Q} def
+
+% Draw a line. (x0 y0 x1 y1 line)
+/L {bias n m l S unbias} def
+
+% Polyline primitive.
+/polyline {n m 1 exch 1 exch
+ {pop currentfile token pop currentfile token pop l} for
+ } def
+
+% Draw a polyline (n x0 y0 OPL x1 y1 x2 y2 ... ... xn yn)
+/OPL {bias polyline S unbias} def
+
+% Draw a closed polyline (n x0 y0 CPL x1 y1 x2 y2 ... ... xn yn)
+/CPL {bias polyline s unbias} def
+
+% Draw a filled polyline (n x0 y0 FPL x1 y1 x2 y2 ... ... xn yn)
+/FPL {polyline h f*} def
+
+% Draw an oval. (x y w h OVL)
+/OVL {matrix currentmatrix /smatrix exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ width 2 div xv add height 2 div yv add translate
+ width currentlinewidth sub 2 div
+ height currentlinewidth sub 2 div neg
+ scale n 0 0 1 5 -2 roll arc
+ smatrix setmatrix S} def
+
+% Draw a filled oval. (x y w h FOVL)
+/FOVL {matrix currentmatrix /smatrix exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ width 2 div xv add height 2 div yv add translate
+ width 2 div
+ height 2 div neg
+ scale n 0 0 m 0 0 1 5 -2 roll arc
+ h smatrix setmatrix f} def
+
+% Draw a rounded rectangle. (x y w h arcwidth archeight RREC)
+/RREC {matrix currentmatrix /smatrix exch def
+ 2 div /ah exch def
+ 2 div /aw exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ aw ah scale matrix
+ currentmatrix /nmatrix exch def
+ smatrix setmatrix
+ n xv width add aw sub yv m
+ nmatrix setmatrix
+ currentpoint exch 1 add exch
+ currentpoint 1 add exch 1 add exch
+ 1 arct smatrix setmatrix
+ xv width add yv height add ah sub l
+ nmatrix setmatrix
+ currentpoint 1 add
+ currentpoint exch 1 sub exch 1 add
+ 1 arct smatrix setmatrix
+ xv aw add yv height add l
+ nmatrix setmatrix
+ currentpoint exch 1 sub exch
+ currentpoint exch 1 sub exch 1 sub
+ 1 arct smatrix setmatrix
+ xv yv ah add l
+ nmatrix setmatrix
+ currentpoint 1 sub
+ currentpoint exch 1 add exch 1 sub
+ 1 arct smatrix setmatrix
+ s} def
+
+% Draw a filled rounded rectangle. (x y w h arcwidth archeight FRREC)
+/FRREC{matrix currentmatrix /smatrix exch def
+ 2 div /ah exch def
+ 2 div /aw exch def
+ /height exch def /width exch def
+ /yv exch def /xv exch def
+ aw ah scale matrix
+ currentmatrix /nmatrix exch def
+ smatrix setmatrix
+ n xv width add aw sub yv m
+ nmatrix setmatrix
+ currentpoint exch 1 add exch
+ currentpoint 1 add exch 1 add exch
+ 1 arct smatrix setmatrix
+ xv width add yv height add ah sub l
+ nmatrix setmatrix
+ currentpoint 1 add
+ currentpoint exch 1 sub exch 1 add
+ 1 arct smatrix setmatrix
+ xv aw add yv height add l
+ nmatrix setmatrix
+ currentpoint exch 1 sub exch
+ currentpoint exch 1 sub exch 1 sub
+ 1 arct smatrix setmatrix
+ xv yv ah add l
+ nmatrix setmatrix
+ currentpoint 1 sub
+ currentpoint exch 1 add exch 1 sub
+ 1 arct smatrix setmatrix
+ h f} def
+
+% Draw a string. (string x y STR)
+/STR {q m 1 -1 scale recshow Q} def
+
+% Define basic plot symbols.
+/xys {/siz exch def /yv exch def /xv exch def} def
+/hline {xys n xv siz 2. div sub yv m siz 0 rlineto S} def
+/vline {xys n xv yv siz 2. div sub m 0 siz rlineto S} def
+/plus {xys n xv yv siz 2. div sub m 0 siz rlineto
+ xv siz 2. div sub yv m siz 0 rlineto S} def
+/dot {n 2. div 0 360 arc s} def
+/fdot {n 2. div 0 360 arc h f} def
+/box {xys n xv siz 2 sqrt div 2 div sub yv siz 2 sqrt div 2 div sub
+ siz 2 sqrt div dup rs} def
+/fbox {xys n xv siz 2 sqrt div 2 div sub yv siz 2 sqrt div 2 div sub
+ siz 2 sqrt div dup rf} def
+/tridn{xys n xv yv siz 3 sqrt div add m
+ siz 2. div neg 3 sqrt 2. div siz mul neg rlineto
+ siz 0 rlineto s} def
+/ftridn{xys n xv yv siz 3 sqrt div add m
+ siz 2. div neg 3 sqrt 2. div siz mul neg rlineto
+ siz 0 rlineto h f} def
+
+% Symbols defined in terms of the others.
+/star {3 copy cross plus} def
+/cross {xys q xv yv translate 45 rotate 0 0 siz plus Q} def
+/diamond {xys q xv yv translate 45 rotate 0 0 siz box Q} def
+/fdiamond {xys q xv yv translate 45 rotate 0 0 siz fbox Q} def
+/triup {xys q xv yv translate 180 rotate 0 0 siz tridn Q} def
+/ftriup {xys q xv yv translate 180 rotate 0 0 siz ftridn Q} def
+
+% Define the composite fonts used to print Unicode strings.
+% Undefine particular values in an encoding array.
+/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
+/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
+
+% usage: key encoding basefontname vg&newbasefont font
+/vg&newbasefont {
+findfont dup length dict copy
+ begin
+ currentdict /FID undef
+ /Encoding exch def
+ dup /FontName exch def
+ currentdict
+ end
+definefont
+} def
+
+% usage: key encoding basefontname vg&newskewedbasefont font
+/vg&newskewedbasefont {
+findfont dup length dict copy
+ begin
+ currentdict /FID undef
+ /Encoding exch def
+ dup /FontName exch def
+ exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
+ currentdict
+ end
+definefont
+} def
+
+% usage: basekey suffix vg&nconcat name
+/vg&nconcat {
+ 2 {dup length string cvs exch} repeat
+ dup length 3 -1 roll dup length 3 -1 roll add string
+ dup 0 4 -1 roll dup length 5 1 roll putinterval
+ dup 4 -2 roll exch putinterval cvn
+} def
+
+%usage: fontname vg&skewmatrix matrix
+/vg&skewmatrix {
+findfont dup /FontInfo known
+ {
+ /FontInfo get dup /ItalicAngle known
+ {
+ [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
+ }
+ {pop matrix} ifelse
+ }
+ {pop matrix} ifelse
+} def
+
+% usage: newfontname basefontname vg&newcompositefont --
+/vg&newcompositefont {
+/vg&fstyle exch def
+/vg&bfont exch def
+/vg&fname exch def
+<<
+/FontStyleBits vg&fstyle
+/FontType 0
+/FontMatrix matrix
+/FontName vg&fname
+/FMapType 2
+/Encoding [ 0 1 255 {pop 6} for ]
+ dup 16#00 0 put % Latin
+ dup 16#03 1 put % Greek
+ dup 16#20 2 put % Punctuation
+ dup 16#21 3 put % Arrows
+ dup 16#22 4 put % MathOps
+ dup 16#27 5 put % Dingbats
+
+/FDepVector [
+vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
+vg&bfont vg&newbasefont
+
+vg&bfont vg&skewmatrix
+vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
+/Symbol vg&newskewedbasefont
+
+vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
+vg&bfont vg&newbasefont
+
+/Arrows-UC findfont
+/MathOps-UC findfont
+/Dingbats-UC findfont
+/Undefined-UC findfont ]
+>>
+vg&fname exch definefont pop
+} def
+
+% Null encoding vector (all elements set to .notdef)
+/NullEncoding [ 256 {/.notdef} repeat ] def
+
+% Unicode Latin encoding (unicode codes \u0000-\u00ff)
+/UCLatinEncoding
+ ISOLatin1Encoding dup length array copy
+ dup 16#60 /grave put
+ [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
+ 16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
+ ] vg&undef
+ def
+
+% Unicode Greek encoding (unicode codes \u0370-\u03ff)
+/UCGreekEncoding
+ NullEncoding dup length array copy
+ << 16#91 /Alpha 16#92 /Beta 16#93 /Gamma 16#94 /Delta
+ 16#95 /Epsilon 16#96 /Zeta 16#97 /Eta 16#98 /Theta
+ 16#99 /Iota 16#9a /Kappa 16#9b /Lambda 16#9c /Mu
+ 16#9d /Nu 16#9e /Xi 16#9f /Omicron 16#a0 /Pi
+ 16#a1 /Rho 16#a3 /Sigma 16#a4 /Tau 16#a5 /Upsilon
+ 16#a6 /Phi 16#a7 /Chi 16#a8 /Psi 16#a9 /Omega
+ 16#b1 /alpha 16#b2 /beta 16#b3 /gamma 16#b4 /delta
+ 16#b5 /epsilon 16#b6 /zeta 16#b7 /eta 16#b8 /theta
+ 16#b9 /iota 16#ba /kappa 16#bb /lambda 16#bc /mu
+ 16#bd /nu 16#be /xi 16#bf /omicron 16#c0 /pi
+ 16#c1 /rho 16#c2 /sigma1 16#c3 /sigma 16#c4 /tau
+ 16#c5 /upsilon 16#c6 /phi1 16#c7 /chi 16#c8 /psi
+ 16#c9 /omega 16#7e /semicolon 16#87 /dotmath 16#d1 /theta1
+ 16#d2 /Upsilon1 16#d5 /phi 16#d6 /omega1
+ >> vg&redef
+ def
+
+% Unicode punctuation encoding (unicode codes \u2000-\u206f)
+/UCPunctuationEncoding
+ NullEncoding dup length array copy
+ << 16#10 /hyphen 16#11 /hyphen 16#12 /endash
+ 16#13 /emdash 16#18 /quoteleft 16#19 /quoteright
+ 16#1a /quotesinglbase 16#1b /quotesingle 16#1c /quotedblleft
+ 16#1d /quotedblright 16#1e /quotedblbase 16#1f /quotedbl
+ 16#20 /dagger 16#21 /daggerdbl 16#22 /bullet
+ 16#24 /period 16#26 /ellipsis 16#27 /periodcentered
+ 16#30 /perthousand 16#44 /fraction
+ 16#70 /zerosuperior 16#74 /foursuperior 16#75 /fivesuperior
+ 16#76 /sixsuperior 16#77 /sevensuperior 16#78 /eightsuperior
+ 16#79 /ninesuperior 16#7b /hyphensuperior 16#7d /parenleftsuperior
+ 16#7e /parenrightsuperior
+ 16#80 /zeroinferior 16#84 /fourinferior 16#85 /fiveinferior
+ 16#81 /oneinferior 16#82 /twoinferior 16#83 /threeinferior
+ 16#86 /sixinferior 16#87 /seveninferior 16#88 /eightinferior
+ 16#89 /nineinferior 16#8b /hypheninferior 16#8d /parenleftinferior
+ 16#8e /parenrightinferior
+ >> vg&redef
+ def
+
+% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
+/UCMathOpsEncoding
+ NullEncoding dup length array copy
+ << 16#00 /universal 16#02 /partialdiff 16#03 /existential
+ 16#05 /emptyset 16#06 /Delta 16#07 /gradient
+ 16#08 /element 16#09 /notelement 16#0b /suchthat
+ 16#0f /product 16#11 /summation 16#12 /minus
+ 16#15 /fraction 16#17 /asteriskmath 16#19 /bullet
+ 16#1a /radical 16#1d /proportional 16#1e /infinity
+ 16#20 /angle 16#23 /bar 16#27 /logicaland
+ 16#28 /logicalor 16#29 /intersection 16#2a /union
+ 16#2b /integral 16#34 /therefore 16#36 /colon
+ 16#3c /similar 16#45 /congruent 16#48 /approxequal
+ 16#60 /notequal 16#61 /equivalence 16#64 /lessequal
+ 16#65 /greaterequal 16#82 /propersubset 16#83 /propersuperset
+ 16#86 /reflexsubset 16#87 /reflexsuperset 16#95 /circleplus
+ 16#97 /circlemultiply 16#a5 /perpendicular 16#03 /existential
+ 16#c0 /logicaland 16#c1 /logicalor 16#c2 /intersection
+ 16#c3 /union 16#c4 /diamond 16#c5 /dotmath
+ >> vg&redef
+ def
+
+% Unicode arrows encoding (unicode codes \u2190-\u21ff)
+% Also includes those "Letterlike" unicode characters
+% which are available in the symbol font. (unicode codes \u2100-\u214f)
+/UCArrowsEncoding
+ NullEncoding dup length array copy
+ << 16#11 /Ifraktur 16#1c /Rfraktur 16#22 /trademarkserif
+ 16#35 /aleph
+ 16#90 /arrowleft 16#91 /arrowup 16#92 /arrowright
+ 16#93 /arrowdown 16#94 /arrowboth 16#d0 /arrowdblleft
+ 16#d1 /arrowdblup 16#d2 /arrowdblright 16#d3 /arrowdbldown
+ 16#d4 /arrowdblboth
+ >> vg&redef
+ def
+
+/ZapfDingbats findfont /Encoding get
+dup length array copy /UCDingbatsEncoding exch def
+16#20 1 16#7f {
+ dup 16#20 sub exch
+ UCDingbatsEncoding exch get
+ UCDingbatsEncoding 3 1 roll put
+} for
+16#a0 1 16#ff {
+ dup 16#40 sub exch
+ UCDingbatsEncoding exch get
+ UCDingbatsEncoding 3 1 roll put
+} for
+UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
+[ 16#00 16#05 16#0a 16#0b 16#28 16#4c 16#4e 16#53 16#54 16#55 16#57 16#5f
+ 16#60 16#68 16#69 16#6a 16#6b 16#6c 16#6d 16#6e 16#6f 16#70 16#71 16#72
+ 16#73 16#74 16#75 16#95 16#96 16#97 16#b0 16#bf
+] vg&undef pop
+
+% Define the base fonts which don't change.
+/Undefined-UC NullEncoding /Helvetica vg&newbasefont pop
+/MathOps-UC UCMathOpsEncoding /Symbol vg&newbasefont pop
+/Arrows-UC UCArrowsEncoding /Symbol vg&newbasefont pop
+/Dingbats-UC UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
+
+% Make the SansSerif composite fonts.
+/SansSerif /Helvetica 16#00 vg&newcompositefont
+/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Serif composite fonts.
+/Serif /Times-Roman 16#00 vg&newcompositefont
+/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
+/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
+/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
+
+% Make the Monospaced composite fonts.
+/Monospaced /Courier 16#00 vg&newcompositefont
+/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Dialog composite fonts.
+/Dialog /Helvetica 16#00 vg&newcompositefont
+/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the DialogInput composite fonts.
+/DialogInput /Helvetica 16#00 vg&newcompositefont
+/DialogInput-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/DialogInput-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/DialogInput-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Typewriter composite fonts (JDK 1.1 only).
+/Typewriter /Courier 16#00 vg&newcompositefont
+/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+
+/cfontH {
+ dup /fontsize exch def /SansSerif exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHB {
+ dup /fontsize exch def /SansSerif-Bold exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHI {
+ dup /fontsize exch def /SansSerif-Italic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHBI {
+ dup /fontsize exch def /SansSerif-BoldItalic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+
+/cfontT {
+ dup /fontsize exch def /Serif exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTB {
+ dup /fontsize exch def /Serif-Bold exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTI {
+ dup /fontsize exch def /Serif-Italic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTBI {
+ dup /fontsize exch def /Serif-BoldItalic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+
+/cfontC {
+ dup /fontsize exch def /Typewriter exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCB {
+ dup /fontsize exch def /Typewriter-Bold exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCI {
+ dup /fontsize exch def /Typewriter-Italic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCBI {
+ dup /fontsize exch def /Typewriter-BoldItalic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+
+% Darken or lighten the current color.
+/darken {0.7 exch exp 3 copy
+ q 4 -1 roll vg&C
+ currentrgbcolor 3 {4 -2 roll mul} repeat
+ 3 array astore Q} def
+
+/displayColorMap
+<< /Cr [1.00 0.00 0.00] /Cg [0.00 1.00 0.00]
+ /Cb [0.00 0.00 1.00] /Cc [1.00 0.00 0.00 0.00]
+ /Cm [0.00 1.00 0.00 0.00] /Cy [0.00 0.00 1.00 0.00]
+ /Co [1.00 0.78 0.00] /Cp [1.00 0.67 0.67]
+ /Cw [1 ] /Cgrl [0.75]
+ /Cgr [0.50] /Cgrd [0.25]
+ /Ck [0 ]
+ /CGr [1.00 0.00 0.00] /CGg [0.00 1.00 0.00]
+ /CGb [0.00 0.00 1.00] /CGc [1.00 0.00 0.00 0.00]
+ /CGm [0.00 1.00 0.00 0.00] /CGy [0.00 0.00 1.00 0.00]
+ /CGo [1.00 0.78 0.00] /CGp [1.00 0.67 0.67]
+ /CGw [1 ] /CGgrl [0.75]
+ /CGgr [0.50] /CGgrd [0.25]
+ /CGk [0 ]
+ /CIr [1.00 0.00 0.00] /CIg [0.00 1.00 0.00]
+ /CIb [0.00 0.00 1.00] /CIc [1.00 0.00 0.00 0.00]
+ /CIm [0.00 1.00 0.00 0.00] /CIy [0.00 0.00 1.00 0.00]
+ /CIo [1.00 0.78 0.00] /CIp [1.00 0.67 0.67]
+ /CIw [1 ] /CIgrl [0.75]
+ /CIgr [0.50] /CIgrd [0.25]
+ /CIk [0 ]
+>> def
+
+/printColorMap
+<< /Cr [1.00 0.33 0.33] /Cg [0.33 1.00 0.33]
+ /Cb [0.33 0.33 1.00] /Cc [1.00 0.00 0.00 0.00]
+ /Cm [0.00 1.00 0.00 0.00] /Cy [0.00 0.00 1.00 0.00]
+ /Co [1.00 0.78 0.00] /Cp [1.00 0.67 0.67]
+ /Cw [1 ] /Cgrl [0.75]
+ /Cgr [0.50] /Cgrd [0.25]
+ /Ck [0 ]
+ /CGr [1.00 0.33 0.33] /CGg [0.33 1.00 0.33]
+ /CGb [0.33 0.33 1.00] /CGc [1.00 0.00 0.00 0.00]
+ /CGm [0.00 1.00 0.00 0.00] /CGy [0.00 0.00 1.00 0.00]
+ /CGo [1.00 0.78 0.00] /CGp [1.00 0.67 0.67]
+ /CGw [1 ] /CGgrl [0.75]
+ /CGgr [0.50] /CGgrd [0.25]
+ /CGk [0 ]
+ /CIr [1.00 0.33 0.33] /CIg [0.33 1.00 0.33]
+ /CIb [0.33 0.33 1.00] /CIc [1.00 0.00 0.00 0.00]
+ /CIm [0.00 1.00 0.00 0.00] /CIy [0.00 0.00 1.00 0.00]
+ /CIo [1.00 0.78 0.00] /CIp [1.00 0.67 0.67]
+ /CIw [1 ] /CIgrl [0.75]
+ /CIgr [0.50] /CIgrd [0.25]
+ /CIk [0 ]
+>> def
+
+/grayColorMap
+<< /Cr [0 ] /Cg [0 ]
+ /Cb [0 ] /Cc [0 ]
+ /Cm [0 ] /Cy [0 ]
+ /Co [0 ] /Cp [0 ]
+ /Cw [0 ] /Cgrl [0 ]
+ /Cgr [0 ] /Cgrd [0 ]
+ /Ck [0 ]
+ /CGr [0.75] /CGg [1 ]
+ /CGb [0.50] /CGc [0.75]
+ /CGm [0.50] /CGy [1 ]
+ /CGo [0.75] /CGp [1 ]
+ /CGw [0 ] /CGgrl [0.25]
+ /CGgr [0.50] /CGgrd [0.75]
+ /CGk [1 ]
+ /CIr [1 ] /CIg [1 ]
+ /CIb [1 ] /CIc [1 ]
+ /CIm [1 ] /CIy [1 ]
+ /CIo [1 ] /CIp [1 ]
+ /CIw [1 ] /CIgrl [1 ]
+ /CIgr [1 ] /CIgrd [1 ]
+ /CIk [1 ]
+>> def
+
+/bwColorMap
+<< /Cr [0 ] /Cg [0 ]
+ /Cb [0 ] /Cc [0 ]
+ /Cm [0 ] /Cy [0 ]
+ /Co [0 ] /Cp [0 ]
+ /Cw [0 ] /Cgrl [0 ]
+ /Cgr [0 ] /Cgrd [0 ]
+ /Ck [0 ]
+ /CGr [1 ] /CGg [1 ]
+ /CGb [1 ] /CGc [1 ]
+ /CGm [1 ] /CGy [1 ]
+ /CGo [1 ] /CGp [1 ]
+ /CGw [0 ] /CGgrl [1 ]
+ /CGgr [1 ] /CGgrd [1 ]
+ /CGk [1 ]
+ /CIr [1 ] /CIg [1 ]
+ /CIb [1 ] /CIc [1 ]
+ /CIm [1 ] /CIy [1 ]
+ /CIo [1 ] /CIp [1 ]
+ /CIw [1 ] /CIgrl [1 ]
+ /CIgr [1 ] /CIgrd [1 ]
+ /CIk [1 ]
+>> def
+
+%
+% The following routines handle the alignment of and printing of
+% tagged strings.
+%
+
+% Predefine the bounding box values.
+/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
+
+% This routine pops the first unicode character off of a string and returns
+% the remainder of the string, the character code of first character,
+% and a "true" if the string was non-zero length.
+% <string> popfirst <remaining string> <true>
+% <null string> popfirst <false>
+/popfirst {
+ dup length 1 gt
+ {dup 0 get /vg&fbyte exch def
+ dup 1 get /vg&cbyte exch def
+ dup length 2 sub 2 exch getinterval true}
+ {pop false} ifelse
+} def
+
+% This routine shows a single unicode character given the font and
+% character codes.
+% <font code> <char code> unicharshow --
+/unicharshow {
+ 2 string
+ dup 0 5 -1 roll put
+ dup 1 4 -1 roll put
+ internalshow
+} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and showing the string for recshow.
+% <string> internalshow --
+/internalshow {show} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and stroking various ornaments.
+% <string> internalstroke --
+/internalstroke {S} def
+
+% Sets up internalshow to use the null device to determine string size.
+% -- nullinternalshow --
+/nullinternalshow {/internalshow {false charpath flattenpath
+ pathbbox updatebbox} def} def
+
+% Sets up internalstroke to use the null device to determine string size.
+% -- nullinternalstroke --
+/nullinternalstroke {
+ /internalstroke {flattenpath pathbbox updatebbox} def} def
+
+% This routine tests to see if the character code matches the first
+% character of a string.
+% <char code> <string> testchar <char code> <true or false>
+/testchar {exch dup 3 -1 roll 0 get eq} def
+
+% Raise the text baseline for superscripts.
+% -- raise --
+/raise {
+ 0 fontsize 2 div rmoveto
+ /fontsize fontsize 2 mul 3 div def
+ currentfont /FontName get fontsize sf
+} def
+
+% Un-raise the text baseline for superscripts.
+% -- unraise --
+/unraise {
+ /fontsize fontsize 1.5 mul def
+ 0 fontsize 2 div neg rmoveto
+} def
+
+% Lower the text baseline for subscripts.
+% -- lower --
+/lower {
+ 0 fontsize 3 div neg rmoveto
+ /fontsize fontsize 2 mul 3 div def
+ currentfont /FontName get fontsize sf
+} def
+
+% Un-lower the text baseline for subscripts.
+% -- unlower --
+/unlower {
+ /fontsize fontsize 1.5 mul def
+ 0 fontsize 3 div rmoveto
+} def
+
+% Compare the top two elements on the stack and leave only the
+% larger one.
+/maxval {2 copy gt {pop} {exch pop} ifelse} def
+
+% Tokenize a string. Do not use the usual PostScript token because
+% parentheses will not be interpreted correctly because of rescanning
+% of the string.
+/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
+0 2 vg&string length 2 sub {
+ dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
+ dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
+ /vg&level exch vg&level add def
+ vg&level 0 eq {/vg&index exch def exit} if pop
+} for
+vg&index 0 ge {
+ vg&string vg&index 2 add dup vg&string length exch sub getinterval
+ vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
+ true}
+{false} ifelse
+} bind def
+
+% Recursively show an unicode string.
+% <string> recshow --
+/recshow {
+ popfirst
+ {
+ % Test to see if this is a string attribute.
+ vg&fbyte 16#f0 and 16#e0 eq
+ {
+ q
+
+ % Font style.
+ currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
+ vg&cbyte or vg&fontstyles exch get fontsize exch exec
+
+ vg&token pop recshow currentpoint Q m recshow
+ }
+ {
+ vg&fbyte 16#F8 and 16#F0 eq {
+
+ % Superscript and/or subscript.
+ vg&cbyte 16#00 eq {
+ vg&token pop exch vg&token pop 3 -1 roll
+ q raise recshow unraise currentpoint pop Q exch
+ q lower recshow unlower currentpoint pop Q
+ maxval currentpoint exch pop m recshow } if
+
+ % Strikeout.
+ vg&cbyte 16#01 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ currentpoint 4 -2 roll fontsize 3 div add moveto
+ fontsize 3 div add lineto internalstroke Q
+ recshow} if
+
+ % Underline.
+ vg&cbyte 16#02 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Dashed underline.
+ vg&cbyte 16#03 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
+ vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Dotted underline.
+ vg&cbyte 16#04 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 1 J [ 0 vg&uthick 3 mul] 0 d
+ vg&underline vg&uthick w
+ currentpoint 4 -2 roll vg&uoffset add moveto
+ vg&uoffset add lineto internalstroke Q
+ recshow} if
+
+ % Thick underline.
+ vg&cbyte 16#05 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick 2 mul w
+ currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+ vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+ recshow} if
+
+ % Gray thick underline.
+ vg&cbyte 16#06 eq {
+ vg&token pop currentpoint 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
+ currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+ vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+ recshow} if
+
+ % Overbar.
+ vg&cbyte 16#07 eq {
+ vg&token pop dup stringsize relative 4 1 roll pop pop exch
+ 3 -1 roll recshow
+ q 0 J vg&underline vg&uthick w
+ vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
+ recshow} if
+ }
+ {
+ vg&fbyte vg&cbyte unicharshow recshow
+ } ifelse
+ } ifelse
+ } if
+} def
+
+% Get the underline position and thickness from the current font.
+/vg&underline {
+
+currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
+dup dup /FontInfo known {
+ /FontInfo get dup
+ dup /UnderlinePosition known {
+ /UnderlinePosition get /vg&uoffset exch def
+ }
+ {
+ pop /vg&uoffset 0 def
+ } ifelse
+ dup /UnderlineThickness known {
+ /UnderlineThickness get /vg&uthick exch def
+ }
+ {
+ pop /vg&uthick 0 def
+ } ifelse
+}
+{
+ pop /vg&uoffset 0 def /vg&uthick 0 def
+} ifelse
+/FontMatrix get
+currentfont dup /FontType get 0 eq
+{/FontMatrix get matrix concatmatrix}{pop} ifelse
+dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
+0 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
+} def
+
+% Make a frame with the coordinates on the stack.
+% <llx> <lly> <urx> <ury> frame --
+/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
+
+% Resets the accumulated bounding box to a degenerate box at the
+% current point.
+% -- resetbbox --
+/resetbbox {
+ currentpoint 2 copy
+ /bbury exch def
+ /bburx exch def
+ /bblly exch def
+ /bbllx exch def
+} def
+
+% Update the accumulated bounding box.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/updatebbox {
+ dup bbury gt {/bbury exch def} {pop} ifelse
+ dup bburx gt {/bburx exch def} {pop} ifelse
+ dup bblly lt {/bblly exch def} {pop} ifelse
+ dup bbllx lt {/bbllx exch def} {pop} ifelse
+} def
+
+% Set the bounding box to the values on the stack.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/restorebbox {
+ /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
+} def
+
+% Push the accumulated bounding box onto the stack.
+% -- pushbbox <llx> <lly> <urx> <ury>
+/pushbbox {bbllx bblly bburx bbury} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
+/inflate {
+ 2 {fontsize 0.2 mul add 4 1 roll} repeat
+ 2 {fontsize 0.2 mul sub 4 1 roll} repeat
+} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
+/relative {
+ currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+ currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+} def
+
+% Returns the size of a string appropriate for recshow.
+% <string> stringsize <llx> <lly> <urx> <ury>
+/stringsize {
+ pushbbox /internalshow load /internalstroke load 7 -1 roll
+ q
+ nulldevice 0 0 m
+ nullinternalshow nullinternalstroke
+ resetbbox
+ recshow
+ /internalstroke exch def /internalshow exch def
+ pushbbox 8 -4 roll restorebbox
+ Q
+} def
+
+% Calculate values for string positioning.
+/calcval {4 copy
+ 3 -1 roll sub /widy exch def sub neg /widx exch def
+ pop pop /dy exch def /dx exch def} def
+
+% Utilities to position a string.
+% First letter (U=upper, C=center, B=baseline, L=lower)
+% Second letter (L=left, C=center, R=right)
+/align [
+{calcval dx neg widy dy add neg rmoveto} % UL
+{calcval dx neg widy 2 div dy add neg rmoveto} % CL
+{calcval dx neg 0 rmoveto} % BL
+{calcval dx neg dy neg rmoveto} % LL
+{calcval widx dx add neg widy dy add neg rmoveto} % UR
+{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
+{calcval widx dx add neg 0 rmoveto} % BR
+{calcval widx dx add neg dy neg rmoveto} % LR
+{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
+{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
+{calcval widx 2 div dx add neg 0 rmoveto} % BC
+{calcval widx 2 div dx add neg dy neg rmoveto} % LC
+] def
+
+/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
+ q inflate relative frame exch exec Q recshow Q} def
+
+end /procDict exch def
+%%EndProlog
+
+%%BeginSetup
+save
+procDict begin
+printColorMap begin
+595 842 setpagesize
+20 20 20 20 setmargins
+0 0 setorigin
+1579 1722 setsize
+fittopage
+landscape
+imagescale
+cliptobounds
+setbasematrix
+/Helvetica 10 sf
+defaultGraphicsState
+%%EndSetup
+
+0.0 0.0 0.0 RG
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] defaultmatrix matrix concatmatrix setmatrix
+1.0 w
+2 J
+0 j
+10.0 M
+[ ] 0.0 d
+1.0 1.0 1.0 RG
+0.0 0.0 1579.0 1722.0 rf
+0.0 0.0 0.0 RG
+q
+0 0 1579 1722 rc
+q
+1.0 1.0 1.0 RG
+0.0 0.0 1579.0 1722.0 rf
+0.0 0.0 1579.0 1722.0 rc
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] concat
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+newpath
+70.0 -650.0 m
+1649.0 -650.0 l
+1649.0 1072.0 l
+70.0 1072.0 l
+70.0 -650.0 l
+h
+f
+0.501961 0.501961 0.501961 RG
+newpath
+80.0 -640.0 m
+1639.0 -640.0 l
+1639.0 1040.0 l
+80.0 1040.0 l
+80.0 -640.0 l
+h
+S
+[ 1.0 0.0 0.0 1.0 80.0 -639.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+114.8672 0.5 m
+114.8672 11.5 l
+106.8672 19.5 l
+0.5 19.5 l
+0.5 0.5 l
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+114.8672 0.5 m
+114.8672 11.5 l
+106.8672 19.5 l
+0.5 19.5 l
+0.5 0.5 l
+h
+S
+0.501961 0.501961 0.501961 RG
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 4.0 2.0 ] concat
+0.0 0.0 0.0 RG
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000U\000s\000e\000 \000C\000a\000s\000e\000 \000D\000i\000a\000g\000r\000a\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 10.0 11.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 850.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 8.1885 85.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000C\000l\000i\000e\000n\000t\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 870.0 1500.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 140.0 150.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+40.0 21.333333 m
+26.666666 21.333333 26.666666 0.0 40.0 0.0 c
+53.333333 0.0 53.333333 21.333333 40.0 21.333333 c
+40.0 21.333333 m
+40.0 26.666666 l
+13.333333 26.666666 m
+66.666666 26.666666 l
+40.0 26.666666 m
+40.0 53.333333 l
+40.0 53.333333 m
+13.333333 80.0 l
+40.0 53.333333 m
+66.666666 80.0 l
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+40.0 21.333333 m
+26.666666 21.333333 26.666666 0.0 40.0 0.0 c
+53.333333 0.0 53.333333 21.333333 40.0 21.333333 c
+40.0 21.333333 m
+40.0 26.666666 l
+13.333333 26.666666 m
+66.666666 26.666666 l
+40.0 26.666666 m
+40.0 53.333333 l
+40.0 53.333333 m
+13.333333 80.0 l
+40.0 53.333333 m
+66.666666 80.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -21.1472 85.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000I\000n\000s\000u\000r\000a\000n\000c\000e\000 \000R\000e\000p\000r\000e\000s\000e\000n\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 70.0 800.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+1.0 1.0 1.0 RG
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -27.2634 85.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000S\000y\000s\000t\000e\000m\000 \000A\000d\000m\000i\000n\000i\000s\000t\000r\000a\000t\000o\000r) show
+Q
+[ 1.0 0.0 0.0 1.0 870.0 795.7534 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1350.0 110.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -27.5803 85.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000B\000u\000s\000i\000n\000e\000s\000s\000 \000D\000e\000p\000a\000r\000t\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1280.0 760.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1065.0 870.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+232.9834 25.0 m
+232.9834 38.807118 180.828289 50.0 116.4917 50.0 c
+52.155110 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 52.155110 0.0 116.4917 0.0 c
+180.828289 0.0 232.9834 11.192881 232.9834 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+232.9834 25.0 m
+232.9834 38.807118 180.828289 50.0 116.4917 50.0 c
+52.155110 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 52.155110 0.0 116.4917 0.0 c
+180.828289 0.0 232.9834 11.192881 232.9834 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 42.6506 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000b\000a\000s\000i\000c\000 \000c\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s\000 \000v\000i\000a\000 \000w\000e\000b\000s\000i\000t\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1037.6506 1533.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 995.0 1520.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1185.0 720.0 ] concat
+0 J
+1.0 M
+newpath
+-195.0 175.0 m
+-120.0 175.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -195.0 175.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1115.0 1370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -120.0 175.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1115.0 1370.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 548.1107 106.5217 ] concat
+1.0 1.0 1.0 RG
+newpath
+109.4331 25.0 m
+109.4331 38.807118 84.935666 50.0 54.71655 50.0 c
+24.497433 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.497433 0.0 54.71655 0.0 c
+84.935666 0.0 109.4331 11.192881 109.4331 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+109.4331 25.0 m
+109.4331 38.807118 84.935666 50.0 54.71655 50.0 c
+24.497433 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.497433 0.0 54.71655 0.0 c
+84.935666 0.0 109.4331 11.192881 109.4331 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 18.0261 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000p\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 496.1368 769.5217 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.1107 756.5217 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+548.1276 132.1431 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 548.1276 132.1431 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 548.5872 172.1739 ] concat
+1.0 1.0 1.0 RG
+newpath
+108.4801 25.0 m
+108.4801 38.807118 84.196002 50.0 54.24005 50.0 c
+24.284097 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.284097 0.0 54.24005 0.0 c
+84.196002 0.0 108.4801 11.192881 108.4801 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+108.4801 25.0 m
+108.4801 38.807118 84.196002 50.0 54.24005 50.0 c
+24.284097 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.284097 0.0 54.24005 0.0 c
+84.196002 0.0 108.4801 11.192881 108.4801 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 17.8865 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000p\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 496.4737 835.1739 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.5872 822.1739 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 -156.087 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 22.3154 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 505.1427 506.913 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 493.913 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+556.4644 -121.7264 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 556.4644 -121.7264 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 -90.4348 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 22.6523 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 505.4796 572.5652 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 559.5652 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+555.075 -58.0233 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 555.075 -58.0233 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 -24.7826 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 17.3174 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 500.1447 638.2174 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 625.2174 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+553.9578 5.5036 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 553.9578 5.5036 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1094.54 -147.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+173.9034 25.0 m
+173.9034 38.807118 134.973797 50.0 86.9517 50.0 c
+38.929602 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 38.929602 0.0 86.9517 0.0 c
+134.973797 0.0 173.9034 11.192881 173.9034 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+173.9034 25.0 m
+173.9034 38.807118 134.973797 50.0 86.9517 50.0 c
+38.929602 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 38.929602 0.0 86.9517 0.0 c
+134.973797 0.0 173.9034 11.192881 173.9034 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 27.4676 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000A\000d\000d\000 \000i\000n\000s\000u\000r\000a\000n\000c\000e\000 \000p\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1052.0076 516.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1024.54 502.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 930.0 -460.0 ] concat
+0 J
+1.0 M
+newpath
+420.0 570.0 m
+324.1802 351.2196 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 420.0 570.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 190.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 324.1802 351.2196 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 190.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1095.8389 -55.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+171.3056 25.0 m
+171.3056 38.807118 132.957535 50.0 85.6528 50.0 c
+38.348064 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 38.348064 0.0 85.6528 0.0 c
+132.957535 0.0 171.3056 11.192881 171.3056 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+171.3056 25.0 m
+171.3056 38.807118 132.957535 50.0 85.6528 50.0 c
+38.348064 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 38.348064 0.0 85.6528 0.0 c
+132.957535 0.0 171.3056 11.192881 171.3056 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 27.0871 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000i\000n\000s\000u\000r\000a\000n\000c\000e\000 \000p\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1052.926 608.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1025.8389 595.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 930.0 -460.0 ] concat
+0 J
+1.0 M
+newpath
+420.0 570.0 m
+330.3484 439.7594 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 420.0 570.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 190.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 330.3484 439.7594 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 860.0 190.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 550.0 960.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+105.6545 25.0 m
+105.6545 38.807118 82.002934 50.0 52.82725 50.0 c
+23.651565 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 23.651565 0.0 52.82725 0.0 c
+82.002934 0.0 105.6545 11.192881 105.6545 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+105.6545 25.0 m
+105.6545 38.807118 82.002934 50.0 52.82725 50.0 c
+23.651565 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 23.651565 0.0 52.82725 0.0 c
+82.002934 0.0 105.6545 11.192881 105.6545 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 17.4728 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000l\000e\000t\000e\000 \000p\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 497.4728 1623.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 480.0 1610.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+929.8108 248.7534 m
+668.1995 839.2852 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 929.8108 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 668.1995 839.2852 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+940.0 145.7534 m
+651.4248 6.0971 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 651.4248 6.0971 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+940.0 145.7534 m
+648.308 -120.7006 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 648.308 -120.7006 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+930.5978 248.7534 m
+637.3602 966.0811 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 930.5978 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 637.3602 966.0811 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 197.1751 m
+548.5872 197.175 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 197.1751 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 548.5872 197.175 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+928.0301 248.7534 m
+655.1011 773.1849 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 928.0301 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 655.1011 773.1849 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+924.2663 248.7534 m
+654.0701 643.7342 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 924.2663 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 654.0701 643.7342 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 566.087 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 21.9932 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000r\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 504.8205 1229.087 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 1216.087 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+920.7983 248.7534 m
+645.7227 578.2419 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 920.7983 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 645.7227 578.2419 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 534.4382 40.8696 ] concat
+1.0 1.0 1.0 RG
+newpath
+136.7782 25.0 m
+136.7782 38.807118 106.159356 50.0 68.3891 50.0 c
+30.618843 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 30.618843 0.0 68.3891 0.0 c
+106.159356 0.0 136.7782 11.192881 136.7782 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+136.7782 25.0 m
+136.7782 38.807118 106.159356 50.0 68.3891 50.0 c
+30.618843 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 30.618843 0.0 68.3891 0.0 c
+106.159356 0.0 136.7782 11.192881 136.7782 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 22.0307 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000c\000o\000n\000v\000e\000r\000t\000 \000p\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 486.4689 703.8696 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 464.4382 690.8696 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+534.7445 68.2331 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 534.7445 68.2331 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.0424 237.8261 ] concat
+1.0 1.0 1.0 RG
+newpath
+123.5697 25.0 m
+123.5697 38.807118 95.907680 50.0 61.78485 50.0 c
+27.662019 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 27.662019 0.0 61.78485 0.0 c
+95.907680 0.0 123.5697 11.192881 123.5697 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+123.5697 25.0 m
+123.5697 38.807118 95.907680 50.0 61.78485 50.0 c
+27.662019 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 27.662019 0.0 61.78485 0.0 c
+95.907680 0.0 123.5697 11.192881 123.5697 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 20.0964 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000p\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 491.1388 900.8261 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 471.0424 887.8261 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 548.1066 500.4348 ] concat
+1.0 1.0 1.0 RG
+newpath
+109.4413 25.0 m
+109.4413 38.807118 84.942030 50.0 54.72065 50.0 c
+24.499269 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.499269 0.0 54.72065 0.0 c
+84.942030 0.0 109.4413 11.192881 109.4413 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+109.4413 25.0 m
+109.4413 38.807118 84.942030 50.0 54.72065 50.0 c
+24.499269 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 24.499269 0.0 54.72065 0.0 c
+84.942030 0.0 109.4413 11.192881 109.4413 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 18.0273 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000p\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 496.1339 1163.4348 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 478.1066 1150.4348 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+917.142 248.7534 m
+652.546 514.9927 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 917.142 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 652.546 514.9927 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.0383 434.7826 ] concat
+1.0 1.0 1.0 RG
+newpath
+123.578 25.0 m
+123.578 38.807118 95.914122 50.0 61.789 50.0 c
+27.663877 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 27.663877 0.0 61.789 0.0 c
+95.914122 0.0 123.578 11.192881 123.578 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+123.578 25.0 m
+123.578 38.807118 95.914122 50.0 61.789 50.0 c
+27.663877 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 27.663877 0.0 61.789 0.0 c
+95.914122 0.0 123.578 11.192881 123.578 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 20.0976 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000p\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 491.1359 1097.7826 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 471.0383 1084.7826 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+911.6877 248.7534 m
+661.5268 451.9763 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 911.6877 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 661.5268 451.9763 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 533.97 369.1304 ] concat
+1.0 1.0 1.0 RG
+newpath
+137.7146 25.0 m
+137.7146 38.807118 106.886136 50.0 68.8573 50.0 c
+30.828463 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 30.828463 0.0 68.8573 0.0 c
+106.886136 0.0 137.7146 11.192881 137.7146 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+137.7146 25.0 m
+137.7146 38.807118 106.886136 50.0 68.8573 50.0 c
+30.828463 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 30.828463 0.0 68.8573 0.0 c
+106.886136 0.0 137.7146 11.192881 137.7146 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 25.827 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000l\000e\000t\000e\000 \000p\000r\000o\000p\000o\000s\000a\000l) show
+Q
+[ 1.0 0.0 0.0 1.0 489.797 1032.1304 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 463.97 1019.1304 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+909.7366 244.0319 m
+670.0865 388.7755 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 909.7366 244.0319 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 670.0865 388.7755 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 580.0 -590.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+159.4167 25.0 m
+159.4167 38.807118 123.730056 50.0 79.70835 50.0 c
+35.686643 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 35.686643 0.0 79.70835 0.0 c
+123.730056 0.0 159.4167 11.192881 159.4167 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+159.4167 25.0 m
+159.4167 38.807118 123.730056 50.0 79.70835 50.0 c
+35.686643 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 35.686643 0.0 79.70835 0.0 c
+123.730056 0.0 159.4167 11.192881 159.4167 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 25.346 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000m\000a\000n\000a\000g\000e\000 \000t\000i\000m\000e\000s\000h\000e\000e\000t\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 535.346 73.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 510.0 60.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1350.0 110.0 m
+735.1688 -556.9476 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1350.0 110.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 735.1688 -556.9476 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+591.1608 -552.2418 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 591.1608 -552.2418 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+940.0 145.7534 m
+716.801 -547.5544 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 716.801 -547.5544 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1088.9229 37.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+185.1377 25.0 m
+185.1377 38.807118 143.693214 50.0 92.56885 50.0 c
+41.444485 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 41.444485 0.0 92.56885 0.0 c
+143.693214 0.0 185.1377 11.192881 185.1377 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+185.1377 25.0 m
+185.1377 38.807118 143.693214 50.0 92.56885 50.0 c
+41.444485 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 41.444485 0.0 92.56885 0.0 c
+143.693214 0.0 185.1377 11.192881 185.1377 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 29.1128 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000i\000n\000s\000u\000r\000a\000n\000c\000e\000 \000p\000a\000c\000k\000a\000g\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1048.0357 701.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1018.9229 687.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 920.0 -400.0 ] concat
+0 J
+1.0 M
+newpath
+430.0 510.0 m
+352.9917 466.2882 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 430.0 510.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 250.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 352.9917 466.2882 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 250.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1092.379 130.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+178.2254 25.0 m
+178.2254 38.807118 138.328285 50.0 89.1127 50.0 c
+39.897114 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 39.897114 0.0 89.1127 0.0 c
+138.328285 0.0 178.2254 11.192881 178.2254 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+178.2254 25.0 m
+178.2254 38.807118 138.328285 50.0 89.1127 50.0 c
+39.897114 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 39.897114 0.0 89.1127 0.0 c
+138.328285 0.0 178.2254 11.192881 178.2254 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 28.1005 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000i\000n\000d\000i\000v\000i\000d\000u\000a\000l\000 \000i\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1050.4795 793.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1022.379 780.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 920.0 -400.0 ] concat
+0 J
+1.0 M
+newpath
+430.0 555.0 m
+350.6044 555.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 430.0 555.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 250.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 350.6044 555.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 250.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1117.0276 315.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+128.9282 25.0 m
+128.9282 38.807118 100.066639 50.0 64.4641 50.0 c
+28.861560 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.861560 0.0 64.4641 0.0 c
+100.066639 0.0 128.9282 11.192881 128.9282 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+128.9282 25.0 m
+128.9282 38.807118 100.066639 50.0 64.4641 50.0 c
+28.861560 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.861560 0.0 64.4641 0.0 c
+100.066639 0.0 128.9282 11.192881 128.9282 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 20.8811 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000t\000y\000p\000e\000 \000o\000f\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1067.9087 978.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1047.0276 965.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 920.0 -370.0 ] concat
+0 J
+1.0 M
+newpath
+411.7102 583.0 m
+319.4327 699.0416 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 411.7102 583.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 319.4327 699.0416 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1117.4644 407.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+128.0547 25.0 m
+128.0547 38.807118 99.388678 50.0 64.02735 50.0 c
+28.666021 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.666021 0.0 64.02735 0.0 c
+99.388678 0.0 128.0547 11.192881 128.0547 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+128.0547 25.0 m
+128.0547 38.807118 99.388678 50.0 64.02735 50.0 c
+28.666021 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.666021 0.0 64.02735 0.0 c
+99.388678 0.0 128.0547 11.192881 128.0547 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 20.7532 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000t\000y\000p\000e\000 \000o\000f\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1068.2176 1071.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1047.4644 1057.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 920.0 -370.0 ] concat
+0 J
+1.0 M
+newpath
+418.1231 583.0 m
+312.5628 787.4218 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 418.1231 583.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 312.5628 787.4218 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1092.8158 222.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+177.3519 25.0 m
+177.3519 38.807118 137.650324 50.0 88.67595 50.0 c
+39.701575 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 39.701575 0.0 88.67595 0.0 c
+137.650324 0.0 177.3519 11.192881 177.3519 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+177.3519 25.0 m
+177.3519 38.807118 137.650324 50.0 88.67595 50.0 c
+39.701575 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 39.701575 0.0 88.67595 0.0 c
+137.650324 0.0 177.3519 11.192881 177.3519 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 27.9726 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000i\000n\000d\000i\000v\000i\000d\000u\000a\000l\000 \000i\000n\000s\000u\000r\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1050.7884 886.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1022.8158 872.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 920.0 -370.0 ] concat
+0 J
+1.0 M
+newpath
+399.4197 579.9306 m
+348.7076 612.982 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 399.4197 579.9306 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 348.7076 612.982 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 850.0 280.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+244.1472 232.3933 m
+541.092 261.8243 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 244.1472 232.3933 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 541.092 261.8243 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 507.8273 894.3478 ] concat
+1.0 1.0 1.0 RG
+newpath
+190.0 25.0 m
+190.0 38.807118 147.467051 50.0 95.0 50.0 c
+42.532948 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.532948 0.0 95.0 0.0 c
+147.467051 0.0 190.0 11.192881 190.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+190.0 25.0 m
+190.0 38.807118 147.467051 50.0 95.0 50.0 c
+42.532948 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.532948 0.0 95.0 0.0 c
+147.467051 0.0 190.0 11.192881 190.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 66.3193 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000p\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 504.1466 1557.3478 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 437.8273 1544.3478 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+931.2321 248.7534 m
+681.0082 905.1452 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 931.2321 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 681.0082 905.1452 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+926.529 248.7534 m
+657.1596 708.6686 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 926.529 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 657.1596 708.6686 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+670.8428 68.479 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 670.8428 68.479 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+657.5304 132.0747 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 657.5304 132.0747 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+657.0673 197.174 m
+940.0 197.1758 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 657.0673 197.174 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 197.1758 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+664.4313 260.915 m
+909.7366 229.6149 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 664.4313 260.915 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 909.7366 229.6149 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1107.6917 -109.28 m
+990.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1107.6917 -109.28 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 990.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1102.7854 -20.1377 m
+990.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1102.7854 -20.1377 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 990.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1090.8838 67.6185 m
+990.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1090.8838 67.6185 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 990.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1092.3937 155.4546 m
+990.0 156.1778 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1092.3937 155.4546 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 990.0 156.1778 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1092.9532 246.1086 m
+1020.2635 231.7369 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1092.9532 246.1086 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1020.2635 231.7369 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1120.0601 332.4224 m
+1018.0436 248.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1120.0601 332.4224 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1018.0436 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1125.6283 420.2844 m
+1006.0358 248.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1125.6283 420.2844 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1006.0358 248.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1422.3699 60.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+183.9279 25.0 m
+183.9279 38.807118 142.754237 50.0 91.96395 50.0 c
+41.173662 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 41.173662 0.0 91.96395 0.0 c
+142.754237 0.0 183.9279 11.192881 183.9279 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+183.9279 25.0 m
+183.9279 38.807118 142.754237 50.0 91.96395 50.0 c
+41.173662 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 41.173662 0.0 91.96395 0.0 c
+142.754237 0.0 183.9279 11.192881 183.9279 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 28.9356 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000i\000n\000t\000e\000r\000n\000a\000l\000 \000c\000a\000r\000e\000e\000r\000 \000t\000r\000a\000c\000k\000i\000n\000g) show
+Q
+[ 1.0 0.0 0.0 1.0 1381.3055 723.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1352.3699 710.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1400.0 110.0 m
+1424.4866 90.3329 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1400.0 110.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1424.4866 90.3329 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1420.0 210.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+188.6677 25.0 m
+188.6677 38.807118 146.432996 50.0 94.33385 50.0 c
+42.234703 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.234703 0.0 94.33385 0.0 c
+146.432996 0.0 188.6677 11.192881 188.6677 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+188.6677 25.0 m
+188.6677 38.807118 146.432996 50.0 94.33385 50.0 c
+42.234703 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.234703 0.0 94.33385 0.0 c
+146.432996 0.0 188.6677 11.192881 188.6677 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 29.6297 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000m\000p\000l\000o\000y\000e\000e\000 \000m\000a\000n\000a\000g\000e\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1379.6297 873.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1350.0 860.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1416.413 213.0 m
+1425.9014 226.2964 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1416.413 213.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1425.9014 226.2964 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1350.0 -270.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+25.0 20.0 m
+12.5 20.0 12.5 0.0 25.0 0.0 c
+37.5 0.0 37.5 20.0 25.0 20.0 c
+25.0 20.0 m
+25.0 25.0 l
+0.0 25.0 m
+50.0 25.0 l
+25.0 25.0 m
+25.0 50.0 l
+25.0 50.0 m
+0.0 75.0 l
+25.0 50.0 m
+50.0 75.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -27.2769 85.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000G\000o\000v\000e\000r\000n\000m\000e\000n\000t\000 \000i\000n\000s\000t\000a\000n\000c\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 1280.0 380.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1122.6486 -240.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+117.6863 25.0 m
+117.6863 38.807118 91.341324 50.0 58.84315 50.0 c
+26.344975 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 26.344975 0.0 58.84315 0.0 c
+91.341324 0.0 117.6863 11.192881 117.6863 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+117.6863 25.0 m
+117.6863 38.807118 91.341324 50.0 58.84315 50.0 c
+26.344975 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 26.344975 0.0 58.84315 0.0 c
+91.341324 0.0 117.6863 11.192881 117.6863 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 19.2348 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000g\000e\000n\000e\000r\000a\000t\000e\000 \000r\000e\000p\000o\000r\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 1071.8834 423.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1052.6486 410.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -340.0 80.0 ] concat
+0 J
+1.0 M
+newpath
+1690.0 -295.0 m
+1580.3349 -295.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1690.0 -295.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -410.0 730.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1580.3349 -295.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -410.0 730.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+543.3135 453.061 m
+244.1472 246.6597 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 543.3135 453.061 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 244.1472 246.6597 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+534.4387 840.7241 m
+231.8418 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 534.4387 840.7241 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 231.8418 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+551.9164 516.2697 m
+244.1472 250.8264 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 551.9164 516.2697 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 244.1472 250.8264 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+558.4041 579.6133 m
+242.2626 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 558.4041 579.6133 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 242.2626 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+546.2584 710.0778 m
+235.6307 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 546.2584 710.0778 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 235.6307 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+548.0426 774.5895 m
+233.8544 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 548.0426 774.5895 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 233.8544 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 522.8273 828.6957 ] concat
+1.0 1.0 1.0 RG
+newpath
+160.0 25.0 m
+160.0 38.807118 124.182779 50.0 80.0 50.0 c
+35.817220 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 35.817220 0.0 80.0 0.0 c
+124.182779 0.0 160.0 11.192881 160.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+160.0 25.0 m
+160.0 38.807118 124.182779 50.0 80.0 50.0 c
+35.817220 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 35.817220 0.0 80.0 0.0 c
+124.182779 0.0 160.0 11.192881 160.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 48.6523 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000q\000u\000e\000r\000y\000 \000p\000o\000l\000i\000c\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 501.4796 1492.1957 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 452.8273 1478.6957 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 537.8273 763.0435 ] concat
+1.0 1.0 1.0 RG
+newpath
+130.0 25.0 m
+130.0 38.807118 100.898508 50.0 65.0 50.0 c
+29.101491 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 29.101491 0.0 65.0 0.0 c
+100.898508 0.0 130.0 11.192881 130.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+130.0 25.0 m
+130.0 38.807118 100.898508 50.0 65.0 50.0 c
+29.101491 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 29.101491 0.0 65.0 0.0 c
+100.898508 0.0 130.0 11.192881 130.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 41.9912 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000r\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 509.8185 1426.0435 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 467.8273 1413.0435 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 537.8273 697.3913 ] concat
+1.0 1.0 1.0 RG
+newpath
+130.0 25.0 m
+130.0 38.807118 100.898508 50.0 65.0 50.0 c
+29.101491 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 29.101491 0.0 65.0 0.0 c
+100.898508 0.0 130.0 11.192881 130.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+130.0 25.0 m
+130.0 38.807118 100.898508 50.0 65.0 50.0 c
+29.101491 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 29.101491 0.0 65.0 0.0 c
+100.898508 0.0 130.0 11.192881 130.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 42.3281 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000r\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 510.1554 1360.3913 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 467.8273 1347.3913 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 542.8273 631.7391 ] concat
+1.0 1.0 1.0 RG
+newpath
+120.0 25.0 m
+120.0 38.807118 93.137084 50.0 60.0 50.0 c
+26.862915 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 26.862915 0.0 60.0 0.0 c
+93.137084 0.0 120.0 11.192881 120.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+120.0 25.0 m
+120.0 38.807118 93.137084 50.0 60.0 50.0 c
+26.862915 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 26.862915 0.0 60.0 0.0 c
+93.137084 0.0 120.0 11.192881 120.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 26.9951 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000m\000o\000v\000e\000 \000r\000i\000s\000k) show
+Q
+[ 1.0 0.0 0.0 1.0 499.8224 1294.7391 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 472.8273 1281.7391 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+521.0583 906.6211 m
+230.2337 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 521.0583 906.6211 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 230.2337 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+647.6477 -54.354 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 647.6477 -54.354 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 539.149 303.4783 ] concat
+1.0 1.0 1.0 RG
+newpath
+127.3566 25.0 m
+127.3566 38.807118 98.846853 50.0 63.6783 50.0 c
+28.509746 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.509746 0.0 63.6783 0.0 c
+98.846853 0.0 127.3566 11.192881 127.3566 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+127.3566 25.0 m
+127.3566 38.807118 98.846853 50.0 63.6783 50.0 c
+28.509746 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 28.509746 0.0 63.6783 0.0 c
+98.846853 0.0 127.3566 11.192881 127.3566 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 20.651 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000d\000e\000l\000e\000t\000e\000 \000p\000a\000y\000m\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 489.8 966.4783 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 469.149 953.4783 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+665.8724 324.9615 m
+909.7366 236.7059 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 665.8724 324.9615 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 909.7366 236.7059 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 110.0 0.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+148.7914 25.0 m
+148.7914 38.807118 115.483310 50.0 74.3957 50.0 c
+33.308089 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 33.308089 0.0 74.3957 0.0 c
+115.483310 0.0 148.7914 11.192881 148.7914 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+148.7914 25.0 m
+148.7914 38.807118 115.483310 50.0 74.3957 50.0 c
+33.308089 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 33.308089 0.0 74.3957 0.0 c
+115.483310 0.0 148.7914 11.192881 148.7914 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 23.79 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000s\000e\000a\000r\000c\000h\000 \000c\000a\000l\000l\000e\000r\000 \000d\000e\000t\000a\000i\000l\000s) show
+Q
+[ 1.0 0.0 0.0 1.0 63.79 663.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 40.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+184.5186 150.0 m
+184.5167 50.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 184.5186 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 184.5167 50.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 471.2543 -484.3478 ] concat
+1.0 1.0 1.0 RG
+newpath
+263.1459 25.0 m
+263.1459 38.807118 204.238683 50.0 131.57295 50.0 c
+58.907216 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 58.907216 0.0 131.57295 0.0 c
+204.238683 0.0 263.1459 11.192881 263.1459 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+263.1459 25.0 m
+263.1459 38.807118 204.238683 50.0 131.57295 50.0 c
+58.907216 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 58.907216 0.0 131.57295 0.0 c
+204.238683 0.0 263.1459 11.192881 263.1459 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 40.5368 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000m\000o\000v\000e\000 \000r\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e\000 \000f\000r\000o\000m\000 \000c\000l\000i\000e\000n\000t) show
+Q
+[ 1.0 0.0 0.0 1.0 441.7911 178.6522 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 401.2543 165.6522 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+482.1505 -449.3863 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.1505 -449.3863 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 526.8851 -418.6957 ] concat
+1.0 1.0 1.0 RG
+newpath
+151.8843 25.0 m
+151.8843 38.807118 117.883841 50.0 75.94215 50.0 c
+34.000458 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 34.000458 0.0 75.94215 0.0 c
+117.883841 0.0 151.8843 11.192881 151.8843 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+151.8843 25.0 m
+151.8843 38.807118 117.883841 50.0 75.94215 50.0 c
+34.000458 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 34.000458 0.0 75.94215 0.0 c
+117.883841 0.0 151.8843 11.192881 151.8843 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 24.2429 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000r\000e\000p\000r\000e\000s\000e\000n\000t\000a\000t\000i\000v\000e) show
+Q
+[ 1.0 0.0 0.0 1.0 481.128 244.3043 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 456.8851 231.3043 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+536.3739 -381.595 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 536.3739 -381.595 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+706.524 -443.9601 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 706.524 -443.9601 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+659.22 -376.9516 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 659.22 -376.9516 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+549.6954 645.1246 m
+238.2668 253.0 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 549.6954 645.1246 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 238.2668 253.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1087.6354 592.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+187.7127 25.0 m
+187.7127 38.807118 145.691780 50.0 93.85635 50.0 c
+42.020919 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.020919 0.0 93.85635 0.0 c
+145.691780 0.0 187.7127 11.192881 187.7127 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+187.7127 25.0 m
+187.7127 38.807118 145.691780 50.0 93.85635 50.0 c
+42.020919 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 42.020919 0.0 93.85635 0.0 c
+145.691780 0.0 187.7127 11.192881 187.7127 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 29.4899 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000c\000r\000o\000s\000s\000 \000s\000e\000l\000l\000 \000o\000p\000p\000o\000r\000t\000u\000n\000i\000t\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1047.1253 1256.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1017.6354 1242.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1344.1685 213.0 m
+1246.2018 599.3919 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1344.1685 213.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1246.2018 599.3919 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1097.567 500.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+167.8495 25.0 m
+167.8495 38.807118 130.275109 50.0 83.92475 50.0 c
+37.574390 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 37.574390 0.0 83.92475 0.0 c
+130.275109 0.0 167.8495 11.192881 167.8495 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+167.8495 25.0 m
+167.8495 38.807118 130.275109 50.0 83.92475 50.0 c
+37.574390 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 37.574390 0.0 83.92475 0.0 c
+130.275109 0.0 167.8495 11.192881 167.8495 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 26.581 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000u\000p\000 \000s\000e\000l\000l\000 \000o\000p\000p\000o\000r\000t\000u\000n\000i\000t\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1054.148 1163.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1027.567 1150.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1342.3436 213.0 m
+1244.0323 508.3289 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1342.3436 213.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1244.0323 508.3289 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1084.6084 685.0 ] concat
+1.0 1.0 1.0 RG
+newpath
+193.7666 25.0 m
+193.7666 38.807118 150.390469 50.0 96.8833 50.0 c
+43.376130 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 43.376130 0.0 96.8833 0.0 c
+150.390469 0.0 193.7666 11.192881 193.7666 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+193.7666 25.0 m
+193.7666 38.807118 150.390469 50.0 96.8833 50.0 c
+43.376130 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 43.376130 0.0 96.8833 0.0 c
+150.390469 0.0 193.7666 11.192881 193.7666 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 30.3765 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000m\000o\000v\000e\000 \000u\000p\000 \000s\000e\000l\000l\000 \000o\000p\000p\000o\000r\000t\000u\000n\000i\000t\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1044.9849 1348.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1014.6084 1335.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1345.0949 213.0 m
+1243.212 690.7296 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1345.0949 213.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1243.212 690.7296 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1074.6768 777.5 ] concat
+1.0 1.0 1.0 RG
+newpath
+213.6298 25.0 m
+213.6298 38.807118 165.807140 50.0 106.8149 50.0 c
+47.822659 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 47.822659 0.0 106.8149 0.0 c
+165.807140 0.0 213.6298 11.192881 213.6298 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+213.6298 25.0 m
+213.6298 38.807118 165.807140 50.0 106.8149 50.0 c
+47.822659 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 47.822659 0.0 106.8149 0.0 c
+165.807140 0.0 213.6298 11.192881 213.6298 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 33.2854 13.5 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000m\000o\000v\000e\000 \000c\000r\000o\000s\000s\000 \000s\000e\000l\000l\000 \000o\000p\000p\000o\000r\000t\000u\000n\000i\000t\000y) show
+Q
+[ 1.0 0.0 0.0 1.0 1037.9622 1441.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1004.6768 1427.5 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+1345.9512 213.0 m
+1245.6965 782.5204 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 1345.9512 213.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1245.6965 782.5204 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 -221.7391 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 22.3213 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000a\000d\000d\000 \000c\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 505.1486 441.2609 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 428.2609 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+558.042 -185.6229 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 558.042 -185.6229 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+642.1259 -181.2826 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 642.1259 -181.2826 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 546.7186 -353.0435 ] concat
+1.0 1.0 1.0 RG
+newpath
+112.2173 25.0 m
+112.2173 38.807118 87.096601 50.0 56.10865 50.0 c
+25.120698 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 25.120698 0.0 56.10865 0.0 c
+87.096601 0.0 112.2173 11.192881 112.2173 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+112.2173 25.0 m
+112.2173 38.807118 87.096601 50.0 56.10865 50.0 c
+25.120698 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 25.120698 0.0 56.10865 0.0 c
+87.096601 0.0 112.2173 11.192881 112.2173 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 18.4338 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000r\000e\000m\000o\000v\000e\000 \000c\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 495.1524 309.9565 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 476.7186 296.9565 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+648.7328 -313.6686 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 648.7328 -313.6686 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 552.8273 -287.3913 ] concat
+1.0 1.0 1.0 RG
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+f
+0.0 0.0 0.0 RG
+0 J
+1.0 M
+newpath
+100.0 25.0 m
+100.0 38.807118 77.614237 50.0 50.0 50.0 c
+22.385762 50.0 0.0 38.807118 0.0 25.0 c
+0.0 11.192881 22.385762 0.0 50.0 0.0 c
+77.614237 0.0 100.0 11.192881 100.0 25.0 c
+h
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 22.6582 13.0 ] concat
+[ 1.0 0.0 0.0 1.0 2.0 2.0 ] concat
+0.0 12.0 moveto
+q 1 -1 scale
+/SansSerif findfont 11.0 scalefont setfont
+(\000e\000d\000i\000t\000 \000c\000l\000a\000i\000m) show
+Q
+[ 1.0 0.0 0.0 1.0 505.4855 375.6087 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 482.8273 362.6087 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+220.0 150.0 m
+559.7314 -249.7151 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 220.0 150.0 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 559.7314 -249.7151 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] concat
+0 J
+1.0 M
+newpath
+644.4242 -248.5196 m
+940.0 145.7534 l
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 644.4242 -248.5196 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 940.0 145.7534 ] concat
+0 J
+1.0 M
+newpath
+S
+2 J
+10.0 M
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.0 200.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1639.0 200.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 859.5 -640.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 859.5 1040.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.0 -640.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1639.0 -640.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 80.0 1040.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 1639.0 1040.0 ] concat
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 655.092773 1040.0 ] concat
+0.0 13.0 moveto
+q 1 -1 scale
+/Helvetica findfont 12.0 scalefont setfont
+(Created with Poseidon for UML Community Edition. Not for Commercial Use.) show
+Q
+[ 1.0 0.0 0.0 1.0 -70.0 650.0 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.0 0.0 0.0 1.0 0.0 0.0 ] defaultmatrix matrix concatmatrix setmatrix
+newpath
+0.0 0.0 m
+0.0 1722.0 l
+1579.0 1722.0 l
+1579.0 0.0 l
+h
+W
+Q
+end end restore showpage
+
+%%Trailer
+%%EOF
diff --git a/ADD/Images/UseCaseDiagram.png b/ADD/Images/UseCaseDiagram.png
new file mode 100644
index 0000000..82a4248
--- /dev/null
+++ b/ADD/Images/UseCaseDiagram.png
Binary files differ